diff --git a/src/Classes/CalcBreakdownControl.lua b/src/Classes/CalcBreakdownControl.lua index fbd5399d5a..38eac39da4 100644 --- a/src/Classes/CalcBreakdownControl.lua +++ b/src/Classes/CalcBreakdownControl.lua @@ -274,6 +274,7 @@ function CalcBreakdownClass:AddModSection(sectionData, modList) -- Build list of modifiers to display local cfg = (sectionData.cfg and actor.mainSkill[sectionData.cfg.."Cfg"] and copyTable(actor.mainSkill[sectionData.cfg.."Cfg"], true)) or { } cfg.source = sectionData.modSource + cfg.ignoreSourceinCheckConditions = true cfg.actor = sectionData.actor local rowList local modStore = (sectionData.enemy and actor.enemy.modDB) or (sectionData.cfg and actor.mainSkill.skillModList) or actor.modDB diff --git a/src/Classes/CalcSectionControl.lua b/src/Classes/CalcSectionControl.lua index bee372e91f..9e5ea3a2cf 100644 --- a/src/Classes/CalcSectionControl.lua +++ b/src/Classes/CalcSectionControl.lua @@ -190,6 +190,7 @@ function CalcSectionClass:FormatStr(str, actor, colData) local modCfg = (sectionData.cfg and actor.mainSkill[sectionData.cfg.."Cfg"]) or { } if sectionData.modSource then modCfg.source = sectionData.modSource + modCfg.ignoreSourceinCheckConditions = true end if sectionData.actor then modCfg.actor = sectionData.actor diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua index d5c7688f9a..9f38a18f11 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -628,6 +628,12 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) end return "" end) + + -- Used to flag Bonded soul core mods + if line:find("Bonded:") then + modLine.bonded = true + end + if modLine.rune then modLine.enchant = true end diff --git a/src/Classes/ModDB.lua b/src/Classes/ModDB.lua index 44f725f0d3..3ff5c16a37 100644 --- a/src/Classes/ModDB.lua +++ b/src/Classes/ModDB.lua @@ -158,7 +158,8 @@ function ModDBClass:FlagInternal(context, cfg, flags, keywordFlags, source, ...) if modList then for i = 1, #modList do local mod = modList[i] - if mod.type == "FLAG" and band(flags, mod.flags) == mod.flags and MatchKeywordFlags(keywordFlags, mod.keywordFlags) and (not source or mod.source:match("[^:]+") == source) then + local checkSource = not cfg or not cfg.ignoreSourceinCheckConditions + if mod.type == "FLAG" and band(flags, mod.flags) == mod.flags and MatchKeywordFlags(keywordFlags, mod.keywordFlags) and (not checkSource or not source or mod.source:match("[^:]+") == source) then if mod[1] then if context:EvalMod(mod, cfg) then return true diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua index ae0efa0307..a6eadba162 100644 --- a/src/Classes/PassiveSpec.lua +++ b/src/Classes/PassiveSpec.lua @@ -836,6 +836,14 @@ function PassiveSpecClass:BuildPathFromNode(root) -- All nodes that are 1 node away from the root will be processed first, then all nodes that are 2 nodes away, etc local node = queue[o] o = o + 1 + + if node.unlockConstraint then + for _, nodeId in ipairs(node.unlockConstraint.nodes) do + if not self.nodes[nodeId].alloc then + goto continue + end + end + end local curDist = node.pathDist -- Iterate through all nodes that are connected to this one for _, other in ipairs(node.linked) do @@ -845,10 +853,23 @@ function PassiveSpecClass:BuildPathFromNode(root) -- The one exception to that rule is that a path may start from an ascendancy node and pass into the main tree -- This permits pathing from the Ascendant 'Path of the X' nodes into the respective class start areas -- 3. They must not pass away from mastery nodes + -- 4. Unlock constraints must be satisfied + + -- validate if the other node have unlockConstraints met + local canPath = true + if other.unlockConstraint then + for _, nodeId in ipairs(other.unlockConstraint.nodes) do + if not self.nodes[nodeId].alloc then + canPath = false + break + end + end + end + if not other.pathDist then ConPrintTable(other, true) end - if node.type ~= "Mastery" and other.type ~= "ClassStart" and other.type ~= "AscendClassStart" and other.pathDist > curDist and (node.ascendancyName == other.ascendancyName or (curDist == 0 and not other.ascendancyName)) then + if node.type ~= "Mastery" and other.type ~= "ClassStart" and other.type ~= "AscendClassStart" and other.pathDist > curDist and (node.ascendancyName == other.ascendancyName or (curDist == 0 and not other.ascendancyName)) and canPath then -- The shortest path to the other node is through the current node other.pathDist = curDist if not other.alloc then @@ -864,6 +885,7 @@ function PassiveSpecClass:BuildPathFromNode(root) i = i + 1 end end + ::continue:: end end @@ -1021,6 +1043,16 @@ function PassiveSpecClass:BuildAllDependsAndPaths() end for _, node in pairs(self.nodes) do + -- if the node have unlockConstraints, add this node as dependent to the constraint nodes + -- we are running here after wiping all depends above + if node.unlockConstraint then + for _, nodeId in ipairs(node.unlockConstraint.nodes) do + if self.nodes[nodeId] then + t_insert(self.nodes[nodeId].depends, node) + end + end + end + -- set attribute nodes if self.hashOverrides[node.id] then self:ReplaceNode(node, self.hashOverrides[node.id]) diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index df11dbf57f..a89122abdf 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -137,47 +137,6 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) end end - self.nodeOverlay = { - Normal = { - artWidth = 70, - alloc = "PSSkillFrameActive", - path = "PSSkillFrameHighlighted", - unalloc = "PSSkillFrame", - allocAscend = "AscendancyFrameSmallAllocated", - pathAscend = "AscendancyFrameSmallCanAllocate", - unallocAscend = "AscendancyFrameSmallNormal" - }, - Notable = { - artWidth = 100, - alloc = "NotableFrameAllocated", - path = "NotableFrameCanAllocate", - unalloc = "NotableFrameUnallocated", - allocAscend = "AscendancyFrameLargeAllocated", - pathAscend = "AscendancyFrameLargeCanAllocate", - unallocAscend = "AscendancyFrameLargeNormal", - allocBlighted = "BlightedNotableFrameAllocated", - pathBlighted = "BlightedNotableFrameCanAllocate", - unallocBlighted = "BlightedNotableFrameUnallocated", - }, - Keystone = { - artWidth = 138, - alloc = "KeystoneFrameAllocated", - path = "KeystoneFrameCanAllocate", - unalloc = "KeystoneFrameUnallocated", - allocBlighted = "KeystoneFrameAllocated", - pathBlighted = "KeystoneFrameCanAllocate", - unallocBlighted = "KeystoneFrameUnallocated", - }, - Socket = { - artWidth = 100, - alloc = "JewelFrameAllocated", - path = "JewelFrameCanAllocate", - unalloc = "JewelFrameUnallocated", - allocAlt = "JewelSocketAltActive", - pathAlt = "JewelSocketAltCanAllocate", - unallocAlt = "JewelSocketAltNormal", - }, - } for type, data in pairs(self.nodeOverlay) do local asset = self:GetAssetByName(data.alloc) local artWidth = asset.width * self.scaleImage @@ -518,7 +477,21 @@ end -- Common processing code for nodes (used for both real tree nodes and subgraph nodes) function PassiveTreeClass:ProcessNode(node) node.targetSize = self:GetNodeTargetSize(node) - node.overlay = node.containJewelSocket and node.jewelOverlay or self.nodeOverlay[node.type] + local overlayData + if node.nodeOverlay then + overlayData = { } + for type, data in pairs(node.nodeOverlay) do + overlayData[type] = data + end + local asset = self:GetAssetByName(overlayData.alloc) + local artWidth = asset.width * self.scaleImage + overlayData.artWidth = artWidth + overlayData.size = artWidth + overlayData.rsq = overlayData.size * overlayData.size + else + overlayData = self.nodeOverlay[node.type] + end + node.overlay = overlayData if node.overlay then local size = node.targetSize["overlay"] and node.targetSize["overlay"].width or node.targetSize.width node.rsq = size * size @@ -588,6 +561,7 @@ end function PassiveTreeClass:BuildConnector(node1, node2, connection) local connector = { ascendancyName = node1.ascendancyName, + connectionArt = node1.connectionArt or node2.connectionArt or self.connectionArt[node1.ascendancyName and "ascendancy" or "default"], nodeId1 = node1.id, nodeId2 = node2.id, c = { } -- This array will contain the quad's data: 1-8 are the vertex coordinates, 9-16 are the texture coordinates @@ -682,7 +656,7 @@ function PassiveTreeClass:BuildConnector(node1, node2, connection) -- Generate a straight line connector.type = "LineConnector" - local art = self:GetAssetByName("LineConnectorNormal") + local art = self:GetAssetByName(connector.connectionArt .. "LineConnectorNormal") local vX, vY = node2.x - node1.x, node2.y - node1.y local dist = m_sqrt(vX * vX + vY * vY) local scale = art.height * 0.5 * self.scaleImage / dist @@ -718,7 +692,7 @@ function PassiveTreeClass:BuildArc(arcAngle, orbit, xScale, yScale, angle, conne connector.vert = { } for _, state in pairs({ "Normal", "Intermediate", "Active" }) do -- The different line states have differently-sized artwork, so the vertex coords must be calculated separately for each one - local art = self:GetAssetByName(connector.type .. state) + local art = self:GetAssetByName( connector.connectionArt .. connector.type .. state) local size = art.width * self.scaleImage --self.orbitRadii[orbit + 1] * self.scaleImage local oX, oY = size * m_sqrt(2) * m_sin(angle + m_pi / 4), size * m_sqrt(2) * -m_cos(angle + m_pi / 4) local cX, cY = xScale + oX, yScale + oY diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index c3bf54082b..e3fe96a9cf 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -528,7 +528,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) setConnectorColor(0.75, 0.75, 0.75) end SetDrawColor(unpack(connectorColor)) - handle = tree:GetAssetByName(connector.type..state).handle + handle = tree:GetAssetByName(connector.connectionArt .. connector.type..state).handle DrawImageQuad(handle, unpack(connector.c)) end @@ -671,11 +671,7 @@ function PassiveTreeViewClass:Draw(build, viewPort, inputEvents) base = tree:GetAssetByName(node.icon) - overlay = node.overlay[state .. (node.ascendancyName and "Ascend" or "") .. (node.isBlighted and "Blighted" or "")] - - if node.ascendancyName and tree.secondaryAscendNameMap and tree.secondaryAscendNameMap[node.ascendancyName] then - overlay = "Azmeri"..overlay - end + overlay = node.overlay[state] end end @@ -1119,6 +1115,15 @@ function PassiveTreeViewClass:DoesNodeMatchSearchParams(node) if #needMatches == 0 then return true end + + -- Check unlock ascendancy + if node.unlockConstraint then + err, needMatches = PCall(search, node.unlockConstraint.ascendancy:lower(), needMatches) + if err then return false end + if #needMatches == 0 then + return true + end + end -- Check node id for devs if launch.devMode then diff --git a/src/Export/Scripts/passivetree.lua b/src/Export/Scripts/passivetree.lua index 71b925b4a3..3e843c368b 100644 --- a/src/Export/Scripts/passivetree.lua +++ b/src/Export/Scripts/passivetree.lua @@ -251,7 +251,7 @@ local use4kIfPossible = false local idPassiveTree = 'Default' -- Find a way to get version local basePath = GetWorkDir() .. "/../TreeData/" -local version = "0_3" +local version = "0_4" local path = basePath .. version .. "/" local fileTree = path .. "tree.lua" @@ -388,6 +388,10 @@ local sheetLocations = { ["legion"] = 10, ["monster-categories"] = 11, } +local connectionArtToDecompose = { + CharacterPlanned = true, +} + local function getSheet(sheetLocation) return sheets[sheetLocations[sheetLocation]] end @@ -457,34 +461,19 @@ local gBgLargeBlank = uiImages[string.lower(uIArt.GroupBackgroundLarge)].path addToSheet(getSheet("group-background"), gBgLargeBlank, "groupBackground", commonMetadata("PSGroupBackgroundLargeBlank")) printf("Getting JewelSocketFrame") -local jFrameNormal = uiImages[string.lower("Art/2DArt/UIImages/InGame/SanctumPassiveSkillScreenJewelSocketCanAllocate")].path +local jFrameNormal = uiImages[string.lower(uIArt.JewelFrame.CanAllocate)].path addToSheet(getSheet("group-background"), jFrameNormal, "frame", commonMetadata("JewelFrameCanAllocate")) -local jFrameActive = uiImages[string.lower("Art/2DArt/UIImages/InGame/SanctumPassiveSkillScreenJewelSocketActive")].path +local jFrameActive = uiImages[string.lower(uIArt.JewelFrame.Active)].path addToSheet(getSheet("group-background"), jFrameActive, "frame", commonMetadata("JewelFrameAllocated")) -local jFrameCanAllocate = uiImages[string.lower("Art/2DArt/UIImages/InGame/SanctumPassiveSkillScreenJewelSocketNormal")].path +local jFrameCanAllocate = uiImages[string.lower(uIArt.JewelFrame.Normal)].path addToSheet(getSheet("group-background"), jFrameCanAllocate, "frame", commonMetadata("JewelFrameUnallocated")) -printf("Getting Ascendancy frames") -local ascFrameNormal = uiImages[string.lower("Art/2DArt/UIImages/InGame/PassiveSkillScreenAscendancyFrameSmallCanAllocate")].path -addToSheet(getSheet("group-background"), ascFrameNormal, "frame", commonMetadata("AscendancyFrameSmallCanAllocate")) - -local ascFrameActive = uiImages[string.lower("Art/2DArt/UIImages/InGame/PassiveSkillScreenAscendancyFrameSmallNormal")].path -addToSheet(getSheet("group-background"), ascFrameActive, "frame", commonMetadata("AscendancyFrameSmallNormal")) - -local ascFrameCanAllocate = uiImages[string.lower("Art/2DArt/UIImages/InGame/PassiveSkillScreenAscendancyFrameSmallAllocated")].path -addToSheet(getSheet("group-background"), ascFrameCanAllocate, "frame", commonMetadata("AscendancyFrameSmallAllocated")) - -local ascFrameLargeNormal = uiImages[string.lower("Art/2DArt/UIImages/InGame/PassiveSkillScreenAscendancyFrameLargeNormal")].path -addToSheet(getSheet("group-background"), ascFrameLargeNormal, "frame", commonMetadata("AscendancyFrameLargeNormal")) - -local ascFrameLargeCanAllocate = uiImages[string.lower("Art/2DArt/UIImages/InGame/PassiveSkillScreenAscendancyFrameLargeCanAllocate")].path -addToSheet(getSheet("group-background"), ascFrameLargeCanAllocate, "frame", commonMetadata("AscendancyFrameLargeCanAllocate")) - -local ascFrameLargeAllocated = uiImages[string.lower("Art/2DArt/UIImages/InGame/PassiveSkillScreenAscendancyFrameLargeAllocated")].path -addToSheet(getSheet("group-background"), ascFrameLargeAllocated, "frame", commonMetadata("AscendancyFrameLargeAllocated")) +print("Getting Orbits art") +connectionArtToDecompose[uIArt.ConnectionsArt.Id] = true +printf("Getting Ascendancy frames") local ascMiddle = uiImages[string.lower("Art/2DArt/UIImages/InGame/PassiveSkillScreenAscendancyMiddle")].path addToSheet(getSheet("group-background"), ascMiddle, "frame", commonMetadata("AscendancyMiddle")) @@ -495,11 +484,6 @@ addToSheet(getSheet("group-background"), ascStart, "startNode", commonMetadata(" addToSheet(getSheet("ascendancy-background"), "art/textures/interface/2d/2dart/uiimages/ingame/passivetree/passivetreemaincircle.dds", "AscendancyBackground", commonMetadata("BGTree")) addToSheet(getSheet("ascendancy-background"), "art/textures/interface/2d/2dart/uiimages/ingame/passivetree/passivetreemaincircleactive2.dds", "AscendancyBackground", commonMetadata("BGTreeActive")) --- adding lines to sprite -addToSheet(getSheet("lines"), "art/2dart/passivetree/passiveskillscreencurvesactivetogether.dds", "line", commonMetadata( "CurvesActive")) -addToSheet(getSheet("lines"), "art/2dart/passivetree/passiveskillscreencurvesintermediatetogether.dds", "line", commonMetadata( "CurvesIntermediate")) -addToSheet(getSheet("lines"), "art/2dart/passivetree/passiveskillscreencurvesnormaltogether.dds", "line", commonMetadata( "CurvesNormal")) - -- adding jewel sockets local jewelArt = dat("PassiveJewelArt") for jewel in jewelArt:Rows() do @@ -603,6 +587,32 @@ local tree = { 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", + }, } printf("Generating classes...") @@ -682,6 +692,27 @@ for i, classId in ipairs(psg.passives) do -- add assets addToSheet(getSheet("ascendancy-background"), ascendency.PassiveTreeImage, "AscendancyBackground", commonMetadata( "Classes" .. ascendency.Name)) + printf("Getting Ascendancy frames " .. ascendency.Name) + local ascFrameNormal = uiImages[string.lower(ascendency.UIArt.PassiveFrame.CanAllocate)].path + addToSheet(getSheet("group-background"), ascFrameNormal, "frame", commonMetadata(ascendency.Name .. "FrameSmallCanAllocate")) + + local ascFrameActive = uiImages[string.lower(ascendency.UIArt.PassiveFrame.Normal)].path + addToSheet(getSheet("group-background"), ascFrameActive, "frame", commonMetadata(ascendency.Name .. "FrameSmallNormal")) + + local ascFrameCanAllocate = uiImages[string.lower(ascendency.UIArt.PassiveFrame.Active)].path + addToSheet(getSheet("group-background"), ascFrameCanAllocate, "frame", commonMetadata(ascendency.Name .. "FrameSmallAllocated")) + + local ascFrameLargeNormal = uiImages[string.lower(ascendency.UIArt.NotableFrame.Normal)].path + addToSheet(getSheet("group-background"), ascFrameLargeNormal, "frame", commonMetadata(ascendency.Name .. "FrameLargeNormal")) + + local ascFrameLargeCanAllocate = uiImages[string.lower(ascendency.UIArt.NotableFrame.CanAllocate)].path + addToSheet(getSheet("group-background"), ascFrameLargeCanAllocate, "frame", commonMetadata(ascendency.Name .. "FrameLargeCanAllocate")) + + local ascFrameLargeAllocated = uiImages[string.lower(ascendency.UIArt.NotableFrame.Active)].path + addToSheet(getSheet("group-background"), ascFrameLargeAllocated, "frame", commonMetadata(ascendency.Name .. "FrameLargeAllocated")) + + -- include the connection art in case doesn't exist + connectionArtToDecompose[ascendency.UIArt.ConnectionsArt.Id] = true :: continue3 :: end @@ -822,7 +853,7 @@ for i, group in ipairs(psg.groups) do local uiSocketCanAllocate = uiImages[string.lower(uioverride.CanAllocate)] addToSheet(getSheet("group-background"), uiSocketCanAllocate.path, "frame", commonMetadata(nil)) - node.jewelOverlay = { + node.nodeOverlay = { alloc = uiSocketActive.path, path = uiSocketCanAllocate.path, unalloc = uiSocketNormal.path, @@ -831,6 +862,13 @@ for i, group in ipairs(psg.groups) do else printf("Jewel socket not found for ascendancy " .. passiveRow.Ascendancy.Name) end + elseif node["isOnlyImage"] == nil then + local typeFrame = node["isNotable"] and "Large" or "Small" + node.nodeOverlay = { + alloc = passiveRow.Ascendancy.Name .. "Frame" .. typeFrame .. "Allocated", + path = passiveRow.Ascendancy.Name .. "Frame" .. typeFrame .. "CanAllocate", + unalloc = passiveRow.Ascendancy.Name .. "Frame" .. typeFrame .. "Normal", + } end ascendancyGroups = ascendancyGroups or {} @@ -839,6 +877,43 @@ for i, group in ipairs(psg.groups) do ascendancyGroups[passiveRow.Ascendancy.Name][i] = true end + -- enable custom frameArt by node + if passiveRow.FrameArt ~= nil and node["isOnlyImage"] == nil then + local frameArt = passiveRow.FrameArt + if frameArt ~= nil then + local uiNormal = uiImages[string.lower(frameArt.Normal)] + addToSheet(getSheet("group-background"), uiNormal.path, "frame", commonMetadata(nil)) + + local uiActive = uiImages[string.lower(frameArt.Active)] + addToSheet(getSheet("group-background"), uiActive.path, "frame", commonMetadata(nil)) + + local uiCanAllocate = uiImages[string.lower(frameArt.CanAllocate)] + addToSheet(getSheet("group-background"), uiCanAllocate.path, "frame", commonMetadata(nil)) + + node.nodeOverlay = { + alloc = uiActive.path, + path = uiCanAllocate.path, + unalloc = uiNormal.path, + } + end + end + + -- Enable Ascendancy Unlock + if passiveRow.AscendancyUnlock ~= nil then + node.unlockConstraint = { + ascendancy = passiveRow.AscendancyUnlock.Name, + nodes = {} + } + + for id, refNode in ipairs(passiveRow.RefNodes) do + printf(" - adding node " .. refNode.Name .. " to unlock constraint") + node.unlockConstraint.nodes[id] = refNode.PassiveSkillNodeId + end + + -- enable the alternative connectionArt for this node + node.connectionArt = "CharacterPlanned" + end + -- Stats if passiveRow.Stats ~= nil then node["stats"] = node["stats"] or {} @@ -1026,13 +1101,22 @@ for i, group in ipairs(psg.groups) do local uiSocketCanAllocate = uiImages[string.lower(uioverride.CanAllocate)] addToSheet(getSheet("group-background"), uiSocketCanAllocate.path, "frame", commonMetadata(nil)) - nodeInfo.jewelOverlay = { + nodeInfo.nodeOverlay = { alloc = uiSocketActive.path, path = uiSocketCanAllocate.path, unalloc = uiSocketNormal.path, } + elseif node["isOnlyImage"] == nil then + local typeFrame = nodeInfo["isNotable"] and "Large" or "Small" + nodeInfo.nodeOverlay = { + alloc = ascendancyRow.Name .. "Frame" .. typeFrame .. "Allocated", + path = ascendancyRow.Name .. "Frame" .. typeFrame .. "CanAllocate", + unalloc = ascendancyRow.Name .. "Frame" .. typeFrame .. "Normal", + } end + + node["options"] = { [ascedancyReplacements[passiveRow.Ascendancy.Name]] = nodeInfo } @@ -1132,9 +1216,8 @@ end -- 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) / 2 -local arcAngle = { [0] = 0, [1] = 0, [2] = 12, [3] = 24, [4] = 36, [5] = 48, [6] = 60} - +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(psg.passives) do local nodeStart = tree.nodes[classId] local group = tree.groups[nodeStart.group] @@ -1260,40 +1343,37 @@ for i, sheet in ipairs(sheets) do end printf("Generating decompose lines images...") -local linesFiles = { - { - file = "art/2dart/passivetree/passiveskillscreencurvesactivetogether.dds", - mask = "art/2dart/uieffects/passiveskillscreen/linestogethermask.dds", - extension = ".png", - basename = "orbit_active", - first = "LineConnector", - prefix = "Orbit", - postfix = "Active", - meta = 0.3835, - total = 10 - }, - { - file = "art/2dart/passivetree/passiveskillscreencurvesintermediatetogether.dds", - mask = "art/2dart/uieffects/passiveskillscreen/linestogethermask.dds", - extension = ".png", - basename = "orbit_intermediate", - first = "LineConnector", - prefix = "Orbit", - postfix = "Intermediate", - total = 10 - }, - { - file = "art/2dart/passivetree/passiveskillscreencurvesnormaltogether.dds", - mask = "art/2dart/uieffects/passiveskillscreen/linestogethermask.dds", - extension = ".png", - basename = "orbit_normal", - first = "LineConnector", - prefix = "Orbit", - postfix = "Normal", - total = 10 - } +local linesFiles = {} + +local typeOfConnections = { + "Normal", "Intermediate", "IntermediateActive" } +for connectionArtId, _ in pairs(connectionArtToDecompose) do + local connectionArt = dat("PassiveSkillTreeConnectionArt"):GetRow("Id", connectionArtId) + if connectionArt == nil then + printf("Connection art " .. connectionArtId .. " not found") + goto continueConnectionArtId + end + + for _, typeName in ipairs(typeOfConnections) do + local linesFile = { + file = connectionArt[typeName], + mask = connectionArt.Mask, + extension = ".png", + basename = connectionArtId .."_orbit_" .. string.lower(typeName), + first = connectionArtId .. "LineConnector", + prefix = connectionArtId .. "Orbit", + postfix = typeName == "IntermediateActive" and "Active" or typeName, + total = 10 + } + + table.insert(linesFiles, linesFile) + end + + :: continueConnectionArtId :: +end + local linesDds = {} for _, lines in ipairs(linesFiles) do table.insert(linesDds, lines.file) diff --git a/src/GameVersions.lua b/src/GameVersions.lua index 7a964067d8..58f1637903 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" } +treeVersionList = { "0_1", "0_2", "0_3", "0_4" } --- Always points to the latest skill tree version. latestTreeVersion = treeVersionList[#treeVersionList] ---Tree version where multiple skill trees per build were introduced to PoBC. @@ -27,4 +27,8 @@ treeVersions = { display = "0_3", num = 0.3, }, + ["0_4"] = { + display = "0_4", + num = 0.4, + }, } diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 508b430e55..ef9fe93595 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -529,12 +529,14 @@ data.weaponTypeInfo = { } data.unarmedWeaponData = { [0] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Scion - [1] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 8 }, -- Marauder - [2] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Ranger - [3] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Witch - [4] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Duelist - [5] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Templar - [6] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Shadow + [1] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Ranger + [2] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Huntress + [3] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 8 }, -- Warrior + [4] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Mercenary + [5] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 6 }, -- Druid + [6] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Witch + [7] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Sorceress + [8] = { type = "None", AttackRate = 1.4, CritChance = data.characterConstants["unarmed_base_critical_strike_chance"] / 100, PhysicalMin = 2, PhysicalMax = 5 }, -- Monk } data.setJewelRadiiGlobally = function(treeVersion) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 2164cfa17e..6cfef4ff7b 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -1374,6 +1374,8 @@ local preFlagList = { ["^enemies in your presence "] = { applyToEnemy = true, tag = { type = "ActorCondition", actor = "enemy", var = "EnemyInPresence" } }, ["^enemies in your presence [hgd][ae][via][enl] "] = { applyToEnemy = true, tag = { type = "ActorCondition", actor = "enemy", var = "EnemyInPresence" } }, ["^body armour grants "] = { tag = { type = "ItemCondition", itemSlot = "Body Armour", rarityCond = "NORMAL" } }, + -- Bonded + ["^bonded: "] = { tag = { type = "Condition", var = "CanUseBondedModifiers" } }, } -- List of modifier tags @@ -3232,6 +3234,11 @@ local specialModList = { } end, -- Witch -- Infernalist ["demonflame has no maximum"] = { mod("Multiplier:DemonFlameMaximum", "BASE", 999) }, + -- Druid -- Oracle + ["walk the paths not taken"] = {}, + ["gain the benefits of bonded modifiers on runes and idols"] = { + flag("Condition:CanUseBondedModifiers"), + }, -- Item local modifiers ["has no sockets"] = { flag("NoSockets") }, ["reflects your other ring"] = { diff --git a/src/TreeData/0_1/tree.lua b/src/TreeData/0_1/tree.lua index 097d3de344..99120c5492 100644 --- a/src/TreeData/0_1/tree.lua +++ b/src/TreeData/0_1/tree.lua @@ -983,6 +983,10 @@ return { [10]=144 } }, + connectionArt={ + ascendancy="", + default="" + }, ddsCoords={ ["ascendancy-background_1500_1500_BC7.dds.zst"]={ ["ClassesAcolyte of Chayula"]=24, @@ -15107,6 +15111,28 @@ return { ["max_y"]=23710.965494807, ["min_x"]=-22452.056819509, ["min_y"]=-23481.530076896, + 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={ diff --git a/src/TreeData/0_2/tree.lua b/src/TreeData/0_2/tree.lua index 351d6e6d9c..4e27358d01 100644 --- a/src/TreeData/0_2/tree.lua +++ b/src/TreeData/0_2/tree.lua @@ -1072,6 +1072,10 @@ return { [10]=144 } }, + connectionArt={ + ascendancy="", + default="" + }, ddsCoords={ ["ascendancy-background_1500_1500_BC7.dds.zst"]={ ["ClassesAcolyte of Chayula"]=29, @@ -16969,6 +16973,28 @@ return { ["max_y"]=23653.407362728, ["min_x"]=-23209.233331872, ["min_y"]=-23641.571796875, + 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={ diff --git a/src/TreeData/0_3/tree.lua b/src/TreeData/0_3/tree.lua index 66c059dddd..9e2d9ea3e2 100644 --- a/src/TreeData/0_3/tree.lua +++ b/src/TreeData/0_3/tree.lua @@ -497,6 +497,10 @@ return { name="Monk" } }, + connectionArt={ + ascendancy="", + default="" + }, constants={ PSSCentreInnerRadius=130, characterAttributes={ @@ -19543,6 +19547,28 @@ return { ["max_y"]=23749.535199651, ["min_x"]=-23185.06380285, ["min_y"]=-23534.129135817, + 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={ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate0.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate0.png new file mode 100644 index 0000000000..d0b9c4bc8a Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate0.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate1.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate1.png new file mode 100644 index 0000000000..b93d5d6882 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate1.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate2.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate2.png new file mode 100644 index 0000000000..bf6d950725 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate2.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate3.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate3.png new file mode 100644 index 0000000000..94ddd1a22b Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate3.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate4.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate4.png new file mode 100644 index 0000000000..dcbab51756 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate4.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate5.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate5.png new file mode 100644 index 0000000000..ee5562a775 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate5.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate6.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate6.png new file mode 100644 index 0000000000..1fe8b5a373 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate6.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate7.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate7.png new file mode 100644 index 0000000000..defdfa7acd Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate7.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate8.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate8.png new file mode 100644 index 0000000000..a3ca0a0dbf Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate8.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate9.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate9.png new file mode 100644 index 0000000000..8b94084715 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediate9.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive0.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive0.png new file mode 100644 index 0000000000..dbaa4e3b69 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive0.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive1.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive1.png new file mode 100644 index 0000000000..aaf88076ef Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive1.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive2.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive2.png new file mode 100644 index 0000000000..afdeb91b0d Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive2.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive3.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive3.png new file mode 100644 index 0000000000..903c5cbe8d Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive3.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive4.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive4.png new file mode 100644 index 0000000000..326d2144ae Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive4.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive5.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive5.png new file mode 100644 index 0000000000..b61513cee6 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive5.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive6.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive6.png new file mode 100644 index 0000000000..69e4551c32 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive6.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive7.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive7.png new file mode 100644 index 0000000000..902d993241 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive7.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive8.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive8.png new file mode 100644 index 0000000000..24dc570436 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive8.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive9.png b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive9.png new file mode 100644 index 0000000000..c74b9e2df5 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_intermediateactive9.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal0.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal0.png new file mode 100644 index 0000000000..b90b7adb8b Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal0.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal1.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal1.png new file mode 100644 index 0000000000..a984544532 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal1.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal2.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal2.png new file mode 100644 index 0000000000..0a6be76e1d Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal2.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal3.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal3.png new file mode 100644 index 0000000000..165512ec08 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal3.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal4.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal4.png new file mode 100644 index 0000000000..9a48c60e84 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal4.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal5.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal5.png new file mode 100644 index 0000000000..587fcbb8e9 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal5.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal6.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal6.png new file mode 100644 index 0000000000..23a8ec76cc Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal6.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal7.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal7.png new file mode 100644 index 0000000000..f7d320ce70 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal7.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal8.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal8.png new file mode 100644 index 0000000000..755a6d8b92 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal8.png differ diff --git a/src/TreeData/0_4/CharacterAscendancy_orbit_normal9.png b/src/TreeData/0_4/CharacterAscendancy_orbit_normal9.png new file mode 100644 index 0000000000..764576e8c2 Binary files /dev/null and b/src/TreeData/0_4/CharacterAscendancy_orbit_normal9.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate0.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate0.png new file mode 100644 index 0000000000..98df978e95 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate0.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate1.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate1.png new file mode 100644 index 0000000000..fd0ec54d41 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate1.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate2.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate2.png new file mode 100644 index 0000000000..6ce5eab63a Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate2.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate3.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate3.png new file mode 100644 index 0000000000..5fb7ac4465 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate3.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate4.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate4.png new file mode 100644 index 0000000000..1ecee36297 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate4.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate5.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate5.png new file mode 100644 index 0000000000..2b2cf516c9 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate5.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate6.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate6.png new file mode 100644 index 0000000000..8fcd21330d Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate6.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate7.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate7.png new file mode 100644 index 0000000000..9d926e14b6 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate7.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate8.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate8.png new file mode 100644 index 0000000000..b2580f944d Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate8.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediate9.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate9.png new file mode 100644 index 0000000000..aab717a1d4 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediate9.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive0.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive0.png new file mode 100644 index 0000000000..c6201f88b4 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive0.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive1.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive1.png new file mode 100644 index 0000000000..2e30c8b9ae Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive1.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive2.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive2.png new file mode 100644 index 0000000000..96ccbc8265 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive2.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive3.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive3.png new file mode 100644 index 0000000000..4957d536cb Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive3.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive4.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive4.png new file mode 100644 index 0000000000..f22d74b0ef Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive4.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive5.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive5.png new file mode 100644 index 0000000000..ab2560a413 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive5.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive6.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive6.png new file mode 100644 index 0000000000..bd73ff3667 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive6.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive7.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive7.png new file mode 100644 index 0000000000..fea8189895 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive7.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive8.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive8.png new file mode 100644 index 0000000000..d0944c55db Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive8.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive9.png b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive9.png new file mode 100644 index 0000000000..daf4593029 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_intermediateactive9.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal0.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal0.png new file mode 100644 index 0000000000..44a7491829 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal0.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal1.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal1.png new file mode 100644 index 0000000000..59c6d9c38c Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal1.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal2.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal2.png new file mode 100644 index 0000000000..424077ab06 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal2.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal3.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal3.png new file mode 100644 index 0000000000..d406fc300a Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal3.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal4.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal4.png new file mode 100644 index 0000000000..4dc950ad5a Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal4.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal5.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal5.png new file mode 100644 index 0000000000..8a4d95c4d7 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal5.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal6.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal6.png new file mode 100644 index 0000000000..9e10714a7e Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal6.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal7.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal7.png new file mode 100644 index 0000000000..3139bc8d0d Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal7.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal8.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal8.png new file mode 100644 index 0000000000..0d501fc4fa Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal8.png differ diff --git a/src/TreeData/0_4/CharacterPlanned_orbit_normal9.png b/src/TreeData/0_4/CharacterPlanned_orbit_normal9.png new file mode 100644 index 0000000000..9397871a22 Binary files /dev/null and b/src/TreeData/0_4/CharacterPlanned_orbit_normal9.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate0.png b/src/TreeData/0_4/Character_orbit_intermediate0.png new file mode 100644 index 0000000000..f9ede85d46 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate0.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate1.png b/src/TreeData/0_4/Character_orbit_intermediate1.png new file mode 100644 index 0000000000..d33f3f4d48 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate1.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate2.png b/src/TreeData/0_4/Character_orbit_intermediate2.png new file mode 100644 index 0000000000..c87601ef18 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate2.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate3.png b/src/TreeData/0_4/Character_orbit_intermediate3.png new file mode 100644 index 0000000000..ac9591b7eb Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate3.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate4.png b/src/TreeData/0_4/Character_orbit_intermediate4.png new file mode 100644 index 0000000000..abab064ac2 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate4.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate5.png b/src/TreeData/0_4/Character_orbit_intermediate5.png new file mode 100644 index 0000000000..89c38f2df7 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate5.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate6.png b/src/TreeData/0_4/Character_orbit_intermediate6.png new file mode 100644 index 0000000000..f91eeac3a3 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate6.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate7.png b/src/TreeData/0_4/Character_orbit_intermediate7.png new file mode 100644 index 0000000000..f477d1dcdd Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate7.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate8.png b/src/TreeData/0_4/Character_orbit_intermediate8.png new file mode 100644 index 0000000000..c8cb8aa9ea Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate8.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediate9.png b/src/TreeData/0_4/Character_orbit_intermediate9.png new file mode 100644 index 0000000000..837eb68bc1 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediate9.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive0.png b/src/TreeData/0_4/Character_orbit_intermediateactive0.png new file mode 100644 index 0000000000..7f51d1400f Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive0.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive1.png b/src/TreeData/0_4/Character_orbit_intermediateactive1.png new file mode 100644 index 0000000000..11533afd81 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive1.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive2.png b/src/TreeData/0_4/Character_orbit_intermediateactive2.png new file mode 100644 index 0000000000..9ad7f1a178 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive2.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive3.png b/src/TreeData/0_4/Character_orbit_intermediateactive3.png new file mode 100644 index 0000000000..60d6198117 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive3.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive4.png b/src/TreeData/0_4/Character_orbit_intermediateactive4.png new file mode 100644 index 0000000000..d09e82f271 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive4.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive5.png b/src/TreeData/0_4/Character_orbit_intermediateactive5.png new file mode 100644 index 0000000000..28c93d7e40 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive5.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive6.png b/src/TreeData/0_4/Character_orbit_intermediateactive6.png new file mode 100644 index 0000000000..e641e40c0a Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive6.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive7.png b/src/TreeData/0_4/Character_orbit_intermediateactive7.png new file mode 100644 index 0000000000..51074892c4 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive7.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive8.png b/src/TreeData/0_4/Character_orbit_intermediateactive8.png new file mode 100644 index 0000000000..6482589693 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive8.png differ diff --git a/src/TreeData/0_4/Character_orbit_intermediateactive9.png b/src/TreeData/0_4/Character_orbit_intermediateactive9.png new file mode 100644 index 0000000000..db98c69741 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_intermediateactive9.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal0.png b/src/TreeData/0_4/Character_orbit_normal0.png new file mode 100644 index 0000000000..e6ddecf92c Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal0.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal1.png b/src/TreeData/0_4/Character_orbit_normal1.png new file mode 100644 index 0000000000..57c48b8c48 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal1.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal2.png b/src/TreeData/0_4/Character_orbit_normal2.png new file mode 100644 index 0000000000..a341adce63 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal2.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal3.png b/src/TreeData/0_4/Character_orbit_normal3.png new file mode 100644 index 0000000000..d3b64412ee Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal3.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal4.png b/src/TreeData/0_4/Character_orbit_normal4.png new file mode 100644 index 0000000000..2c27d5ca27 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal4.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal5.png b/src/TreeData/0_4/Character_orbit_normal5.png new file mode 100644 index 0000000000..964ada9a79 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal5.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal6.png b/src/TreeData/0_4/Character_orbit_normal6.png new file mode 100644 index 0000000000..081c13f485 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal6.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal7.png b/src/TreeData/0_4/Character_orbit_normal7.png new file mode 100644 index 0000000000..64d5aa242c Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal7.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal8.png b/src/TreeData/0_4/Character_orbit_normal8.png new file mode 100644 index 0000000000..cc45095c13 Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal8.png differ diff --git a/src/TreeData/0_4/Character_orbit_normal9.png b/src/TreeData/0_4/Character_orbit_normal9.png new file mode 100644 index 0000000000..e3c804544e Binary files /dev/null and b/src/TreeData/0_4/Character_orbit_normal9.png differ diff --git a/src/TreeData/0_4/ascendancy-background_1500_1500_BC7.dds.zst b/src/TreeData/0_4/ascendancy-background_1500_1500_BC7.dds.zst new file mode 100644 index 0000000000..ff6f5cc607 Binary files /dev/null and b/src/TreeData/0_4/ascendancy-background_1500_1500_BC7.dds.zst differ diff --git a/src/TreeData/0_4/ascendancy-background_4000_4000_BC7.dds.zst b/src/TreeData/0_4/ascendancy-background_4000_4000_BC7.dds.zst new file mode 100644 index 0000000000..750a561da2 Binary files /dev/null and b/src/TreeData/0_4/ascendancy-background_4000_4000_BC7.dds.zst differ diff --git a/src/TreeData/0_4/background_1024_1024_BC7.dds.zst b/src/TreeData/0_4/background_1024_1024_BC7.dds.zst new file mode 100644 index 0000000000..9436feba1f Binary files /dev/null and b/src/TreeData/0_4/background_1024_1024_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_104_104_BC7.dds.zst b/src/TreeData/0_4/group-background_104_104_BC7.dds.zst new file mode 100644 index 0000000000..7cc4c26dcc Binary files /dev/null and b/src/TreeData/0_4/group-background_104_104_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_152_156_BC7.dds.zst b/src/TreeData/0_4/group-background_152_156_BC7.dds.zst new file mode 100644 index 0000000000..d1a8570b94 Binary files /dev/null and b/src/TreeData/0_4/group-background_152_156_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_160_164_BC7.dds.zst b/src/TreeData/0_4/group-background_160_164_BC7.dds.zst new file mode 100644 index 0000000000..9f4b88c698 Binary files /dev/null and b/src/TreeData/0_4/group-background_160_164_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_208_208_BC7.dds.zst b/src/TreeData/0_4/group-background_208_208_BC7.dds.zst new file mode 100644 index 0000000000..ff125840be Binary files /dev/null and b/src/TreeData/0_4/group-background_208_208_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_220_224_BC7.dds.zst b/src/TreeData/0_4/group-background_220_224_BC7.dds.zst new file mode 100644 index 0000000000..d495125899 Binary files /dev/null and b/src/TreeData/0_4/group-background_220_224_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_360_360_BC7.dds.zst b/src/TreeData/0_4/group-background_360_360_BC7.dds.zst new file mode 100644 index 0000000000..6cdf217bd3 Binary files /dev/null and b/src/TreeData/0_4/group-background_360_360_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_468_468_BC7.dds.zst b/src/TreeData/0_4/group-background_468_468_BC7.dds.zst new file mode 100644 index 0000000000..261878b6f2 Binary files /dev/null and b/src/TreeData/0_4/group-background_468_468_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_528_528_BC7.dds.zst b/src/TreeData/0_4/group-background_528_528_BC7.dds.zst new file mode 100644 index 0000000000..e6936a9e13 Binary files /dev/null and b/src/TreeData/0_4/group-background_528_528_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_740_376_BC7.dds.zst b/src/TreeData/0_4/group-background_740_376_BC7.dds.zst new file mode 100644 index 0000000000..58fa643449 Binary files /dev/null and b/src/TreeData/0_4/group-background_740_376_BC7.dds.zst differ diff --git a/src/TreeData/0_4/group-background_92_92_BC7.dds.zst b/src/TreeData/0_4/group-background_92_92_BC7.dds.zst new file mode 100644 index 0000000000..97af0d583a Binary files /dev/null and b/src/TreeData/0_4/group-background_92_92_BC7.dds.zst differ diff --git a/src/TreeData/0_4/jewel-sockets_152_156_BC7.dds.zst b/src/TreeData/0_4/jewel-sockets_152_156_BC7.dds.zst new file mode 100644 index 0000000000..a1279c45bd Binary files /dev/null and b/src/TreeData/0_4/jewel-sockets_152_156_BC7.dds.zst differ diff --git a/src/TreeData/0_4/legion_1024_1024_BC7.dds.zst b/src/TreeData/0_4/legion_1024_1024_BC7.dds.zst new file mode 100644 index 0000000000..18b7d340b3 Binary files /dev/null and b/src/TreeData/0_4/legion_1024_1024_BC7.dds.zst differ diff --git a/src/TreeData/0_4/legion_128_128_BC1.dds.zst b/src/TreeData/0_4/legion_128_128_BC1.dds.zst new file mode 100644 index 0000000000..f9b0c51790 Binary files /dev/null and b/src/TreeData/0_4/legion_128_128_BC1.dds.zst differ diff --git a/src/TreeData/0_4/legion_564_564_BC7.dds.zst b/src/TreeData/0_4/legion_564_564_BC7.dds.zst new file mode 100644 index 0000000000..73c032e108 Binary files /dev/null and b/src/TreeData/0_4/legion_564_564_BC7.dds.zst differ diff --git a/src/TreeData/0_4/legion_64_64_BC1.dds.zst b/src/TreeData/0_4/legion_64_64_BC1.dds.zst new file mode 100644 index 0000000000..b38a56a91e Binary files /dev/null and b/src/TreeData/0_4/legion_64_64_BC1.dds.zst differ diff --git a/src/TreeData/0_4/mastery-active-effect_776_768_BC7.dds.zst b/src/TreeData/0_4/mastery-active-effect_776_768_BC7.dds.zst new file mode 100644 index 0000000000..02211596ba Binary files /dev/null and b/src/TreeData/0_4/mastery-active-effect_776_768_BC7.dds.zst differ diff --git a/src/TreeData/0_4/monster-categories_36_36_BC7.dds.zst b/src/TreeData/0_4/monster-categories_36_36_BC7.dds.zst new file mode 100644 index 0000000000..453ab9729a Binary files /dev/null and b/src/TreeData/0_4/monster-categories_36_36_BC7.dds.zst differ diff --git a/src/TreeData/0_4/oils_108_108_RGBA.dds.zst b/src/TreeData/0_4/oils_108_108_RGBA.dds.zst new file mode 100644 index 0000000000..8cac6599c7 Binary files /dev/null and b/src/TreeData/0_4/oils_108_108_RGBA.dds.zst differ diff --git a/src/TreeData/0_4/skills-disabled_128_128_BC1.dds.zst b/src/TreeData/0_4/skills-disabled_128_128_BC1.dds.zst new file mode 100644 index 0000000000..b57ae66602 Binary files /dev/null and b/src/TreeData/0_4/skills-disabled_128_128_BC1.dds.zst differ diff --git a/src/TreeData/0_4/skills-disabled_172_172_BC1.dds.zst b/src/TreeData/0_4/skills-disabled_172_172_BC1.dds.zst new file mode 100644 index 0000000000..d91d43834f Binary files /dev/null and b/src/TreeData/0_4/skills-disabled_172_172_BC1.dds.zst differ diff --git a/src/TreeData/0_4/skills-disabled_176_176_BC1.dds.zst b/src/TreeData/0_4/skills-disabled_176_176_BC1.dds.zst new file mode 100644 index 0000000000..5c2419bcdf Binary files /dev/null and b/src/TreeData/0_4/skills-disabled_176_176_BC1.dds.zst differ diff --git a/src/TreeData/0_4/skills-disabled_64_64_BC1.dds.zst b/src/TreeData/0_4/skills-disabled_64_64_BC1.dds.zst new file mode 100644 index 0000000000..3ffdd9b458 Binary files /dev/null and b/src/TreeData/0_4/skills-disabled_64_64_BC1.dds.zst differ diff --git a/src/TreeData/0_4/skills_128_128_BC1.dds.zst b/src/TreeData/0_4/skills_128_128_BC1.dds.zst new file mode 100644 index 0000000000..824f23902d Binary files /dev/null and b/src/TreeData/0_4/skills_128_128_BC1.dds.zst differ diff --git a/src/TreeData/0_4/skills_172_172_BC1.dds.zst b/src/TreeData/0_4/skills_172_172_BC1.dds.zst new file mode 100644 index 0000000000..d91d43834f Binary files /dev/null and b/src/TreeData/0_4/skills_172_172_BC1.dds.zst differ diff --git a/src/TreeData/0_4/skills_176_176_BC1.dds.zst b/src/TreeData/0_4/skills_176_176_BC1.dds.zst new file mode 100644 index 0000000000..5c2419bcdf Binary files /dev/null and b/src/TreeData/0_4/skills_176_176_BC1.dds.zst differ diff --git a/src/TreeData/0_4/skills_64_64_BC1.dds.zst b/src/TreeData/0_4/skills_64_64_BC1.dds.zst new file mode 100644 index 0000000000..e81aaf85a3 Binary files /dev/null and b/src/TreeData/0_4/skills_64_64_BC1.dds.zst differ diff --git a/src/TreeData/0_4/tree.json b/src/TreeData/0_4/tree.json new file mode 100644 index 0000000000..0056302ad5 --- /dev/null +++ b/src/TreeData/0_4/tree.json @@ -0,0 +1 @@ +{"tree":"Default","min_x":-23887.484495557,"min_y":-24295.632110005,"max_x":23983.291432028,"max_y":24475.572859619,"groups":[{"nodes":[42761],"orbits":[0],"x":-15304.90389222,"y":-7077.31698124},{"nodes":[25092],"orbits":[0],"x":-14965.39389222,"y":-7075.62698124},null,{"nodes":[11335],"orbits":[0],"x":-14964.17389222,"y":-6594.24698124},{"nodes":[22541],"orbits":[0],"x":-16119.101927197,"y":4438.4370503224},{"nodes":[5386],"orbits":[0],"x":-16119.101927197,"y":4819.1370503224},{"nodes":[15275],"orbits":[0],"x":-14735.81389222,"y":-7075.62698124},{"nodes":[21284],"orbits":[0],"x":-14735.81389222,"y":-6824.05698124},{"nodes":[57959],"orbits":[0],"x":-15906.431927197,"y":4073.9070503224},{"nodes":[14960],"orbits":[0],"x":-15906.431927197,"y":4819.1370503224},{"nodes":[5571],"orbits":[0],"x":-14615.85389222,"y":-6148.10698124},{"nodes":[34313],"orbits":[0],"x":-14615.79389222,"y":-7507.15698124},{"nodes":[56505],"orbits":[0],"x":-14615.79389222,"y":-6937.15698124},{"nodes":[39659],"orbits":[0],"x":-14615.79389222,"y":-6709.09698124},{"nodes":[60298],"orbits":[0],"x":-15694.431927197,"y":4438.4370503224},{"nodes":[47236],"orbits":[0],"x":-15694.431927197,"y":4819.1370503224},{"nodes":[47184],"orbits":[0],"x":-15482.431927197,"y":4438.4370503224},{"nodes":[20895],"orbits":[0],"x":-15482.431927197,"y":4819.1370503224},{"nodes":[64962],"orbits":[0],"x":-15479.931927197,"y":5558.0570503224},{"nodes":[110],"orbits":[0],"x":-15422.891927197,"y":5717.9970503224},{"nodes":[52374],"orbits":[0],"x":-14144.72389222,"y":-7263.50698124},{"nodes":[30904],"orbits":[0],"x":-14144.72389222,"y":-6824.05698124},{"nodes":[32905,55135],"orbits":[6],"x":-14123.92389222,"y":-6819.93698124},{"nodes":[22908],"orbits":[0],"x":-15325.041927197,"y":5867.8370503224},{"nodes":[48537],"orbits":[0],"x":-15270.431927197,"y":4438.4370503224},{"nodes":[63401],"orbits":[0],"x":-15270.391927197,"y":4073.9070503224},{"nodes":[8525],"orbits":[0],"x":-15190.211927197,"y":5992.6870503224},{"nodes":[49380],"orbits":[0],"x":-14606.81101513,"y":7334.015606703},{"nodes":[58704],"orbits":[0],"x":-14606.81101513,"y":7697.015606703},{"nodes":[38769],"orbits":[0],"x":-14606.81101513,"y":8060.015606703},{"nodes":[36659],"orbits":[0],"x":-14539.78101513,"y":7083.845606703},{"nodes":[9997],"orbits":[0],"x":-15031.611927197,"y":6079.3970503224},{"nodes":[6127],"orbits":[0],"x":-14450.05101513,"y":7505.725606703},{"nodes":[18585],"orbits":[0],"x":-14450.05101513,"y":7918.875606703},{"nodes":[378],"orbits":[0],"x":-13677.60389222,"y":-7508.15698124},{"nodes":[4197],"orbits":[0],"x":-13677.60389222,"y":-6937.15698124},{"nodes":[37782],"orbits":[0],"x":-13677.60389222,"y":-6709.11698124},{"nodes":[47190],"orbits":[0],"x":-13677.60389222,"y":-6148.10698124},{"nodes":[13772],"orbits":[0],"x":-14861.501927197,"y":6123.0170503224},{"nodes":[40915],"orbits":[0],"x":-14352.33101513,"y":7083.805606703},{"nodes":[5852],"orbits":[9],"x":-14787.651927197,"y":4798.3970503224},{"nodes":[1994],"orbits":[0],"x":-14285.47101513,"y":8597.995606703},{"nodes":[48682],"orbits":[0],"x":-14285.29101513,"y":7334.015606703},{"nodes":[39411],"orbits":[0],"x":-14285.29101513,"y":7697.015606703},{"nodes":[25935],"orbits":[0],"x":-14285.29101513,"y":8423.795606703},{"nodes":[39365],"orbits":[0],"x":-14284.67101513,"y":8060.015606703},{"nodes":[9988],"orbits":[0],"x":-14769.631927197,"y":5458.3970503224},{"nodes":[25438],"orbits":[0],"x":-14678.231927197,"y":6123.0170503224},{"nodes":[49340],"orbits":[0],"x":-14511.001927197,"y":6079.3970503224},{"nodes":[35535],"orbits":[0],"x":-13664.02358899,"y":-9880.4330959001},{"nodes":[33812],"orbits":[6],"x":-13880.21101513,"y":8004.295606703},{"nodes":[60913],"orbits":[0],"x":-14353.191927197,"y":5992.6870503224},{"nodes":[47097],"orbits":[0],"x":-13831.53101513,"y":8677.045606703},{"nodes":[23005],"orbits":[0],"x":-13827.72101513,"y":8346.605606703},{"nodes":[61039],"orbits":[0],"x":-14229.211927197,"y":5867.8370503224},{"nodes":[20195],"orbits":[0],"x":-14136.951927197,"y":5717.9970503224},{"nodes":[16276],"orbits":[0],"x":-14062.601927197,"y":5558.0570503224},{"nodes":[16204],"orbits":[0],"x":-13233.22358899,"y":-9717.0130959001},{"nodes":[10072],"orbits":[0],"x":-13456.74101513,"y":8286.915606703},{"nodes":[52068],"orbits":[0],"x":-13427.83101513,"y":8705.925606703},null,{"nodes":[42253],"orbits":[0],"x":-12936.00358899,"y":-9284.5530959001},{"nodes":[33824],"orbits":[0],"x":-12936.00358899,"y":-8851.5530959001},{"nodes":[54512],"orbits":[0],"x":-12658.85358899,"y":-8617.4730959001},{"nodes":[58646,28022,61722,1855],"orbits":[6,8],"x":-12394.22358899,"y":-9283.8730959001},{"nodes":[35762],"orbits":[0],"x":-11956.16358899,"y":-9717.0130959001},{"nodes":[35920],"orbits":[0],"x":-11956.16358899,"y":-9241.2030959001},{"nodes":[56933],"orbits":[0],"x":-11956.16358899,"y":-8744.5430959001},{"nodes":[24807],"orbits":[0],"x":-12395.901045607,"y":9837.0838448507},{"nodes":[61983],"orbits":[0],"x":-11751.52358899,"y":-9863.9930959001},{"nodes":[46654],"orbits":[0],"x":-11751.52358899,"y":-9304.3030959001},{"nodes":[28745],"orbits":[0],"x":-11486.44358899,"y":-10044.1730959},{"nodes":[26063],"orbits":[0],"x":-11483.26358899,"y":-9396.9630959001},{"nodes":[62523],"orbits":[0],"x":-11481.39358899,"y":-8744.5730959001},{"nodes":[38014],"orbits":[0],"x":-11998.951045607,"y":9614.1838448507},{"nodes":[42275],"orbits":[0],"x":-11821.031045607,"y":10122.973844851},{"nodes":[3762,59540,30115,60634,35453,13715,19424,27418,51690,29323,32534],"orbits":[4,5,6,7,9],"x":-11560.091045607,"y":10394.963844851},{"nodes":[12000],"orbits":[0],"x":-11494.591045607,"y":11397.883844851},{"nodes":[59372],"orbits":[0],"x":-11454.221045607,"y":10756.733844851},{"nodes":[56842],"orbits":[0],"x":-11100.601045607,"y":11172.483844851},null,null,null,null,null,{"nodes":[58058,21218,60708,45226,11666,13950,7066,23932,8423,17894],"orbits":[0,2,3,4,5],"x":-12135.66,"y":-1230.15},{"nodes":[47753],"orbits":[0],"x":-11896.79,"y":-1926.84},{"nodes":[36025,57079,44309,44485,829,19966,43385,22221,7553,64139,15842],"orbits":[2,3,5,6,7],"x":-11682.6,"y":-5712.79},{"nodes":[18353,42762,11984,20496,3544,19953,50142,58197,35980],"orbits":[0,3,4,6,7],"x":-11664.2,"y":614.3},{"nodes":[38320],"orbits":[0],"x":-11504.95,"y":-1807.32},{"nodes":[28201,56174,1887,10713,16615,10636,38697,20391,16947,18713],"orbits":[0,3,4],"x":-11380.71,"y":-3346},{"nodes":[32845,23630,64819,31746,51868,19794,17885,11392],"orbits":[3,4,5],"x":-11338.93,"y":-2050.8},{"nodes":[65,36504,55260,19751,15698,35618],"orbits":[7,2],"x":-11081.72,"y":-622.4},{"nodes":[28589,7395,38670,30007,12565,3245,30300,3188,46051],"orbits":[0,1,2,3],"x":-11072.17,"y":1430.79},{"nodes":[55190],"orbits":[1],"x":-10939.38,"y":88.39},{"nodes":[41012],"orbits":[0],"x":-10916.6,"y":-2156.56},{"nodes":[24630],"orbits":[0],"x":-10708.76,"y":2443.13},{"nodes":[1200],"orbits":[4],"x":-10682.77,"y":445.3},{"nodes":[28982],"orbits":[0],"x":-10667.72,"y":-1117.08},{"nodes":[64489,25162,6952,750],"orbits":[2],"x":-10654.45,"y":2047.3},{"nodes":[3348],"orbits":[0],"x":-10649.96,"y":-3724.53},{"nodes":[48314],"orbits":[0],"x":-10649.96,"y":-3509.98},{"nodes":[43941],"orbits":[0],"x":-10648.12,"y":-3316.27},{"nodes":[17348,11433,15522,13893,11275,42390,44753,63608],"orbits":[0,3,4,7],"x":-10615.17,"y":3051.94},{"nodes":[440],"orbits":[0],"x":-10594.08,"y":-4757.69},{"nodes":[14509,589,46399,50820,65472,9323,40395],"orbits":[0,2,3,7],"x":-10593.41,"y":-2769.62},{"nodes":[65192,33423,15672,6999,59908,36197,27096,45400,63170,13691],"orbits":[0,3,7],"x":-10575.67,"y":-6386.37},{"nodes":[8850],"orbits":[0],"x":-10520.26,"y":-3933.98},{"nodes":[61896],"orbits":[0],"x":-10520.26,"y":-3710.82},{"nodes":[61393],"orbits":[0],"x":-10448.6,"y":-3316.27},{"nodes":[55897],"orbits":[0],"x":-10443.83,"y":-4121.17},{"nodes":[50767,20289],"orbits":[0,2],"x":-10439.87,"y":-3500.92},{"nodes":[14432],"orbits":[0],"x":-10437.87,"y":-4316.54},{"nodes":[20989,42984,21184,20251],"orbits":[1,3,7],"x":-10401.12,"y":-377.96},{"nodes":[41768],"orbits":[0],"x":-10398.41,"y":-2166.4},{"nodes":[55888],"orbits":[0],"x":-10371.25,"y":-4590.02},{"nodes":[17349,5728,23940,14342,49256,14439,58138,46384,33402,58125,6133,10681,27581,50510],"orbits":[1,3,4,7],"x":-10371.18,"y":-5305.09},{"nodes":[53354],"orbits":[0],"x":-10368.75,"y":-3710.82},{"nodes":[33408],"orbits":[0],"x":-10368.59,"y":-3933.98},{"nodes":[30141],"orbits":[0],"x":-10364.84,"y":5.97},{"nodes":[59785],"orbits":[0],"x":-10358.72,"y":2132.05},{"nodes":[14511,54999,64900,30780,53261,18207,17112,5410,4331],"orbits":[2,3,4,7],"x":-10266.25,"y":5666.88},{"nodes":[36250],"orbits":[0],"x":-10252.92,"y":-3509.98},{"nodes":[56368],"orbits":[0],"x":-10251.16,"y":-3312.73},{"nodes":[49214],"orbits":[0],"x":-10248.76,"y":-3724.53},{"nodes":[375,12276,14693,13937,13980,17791,526,2645,52829,14832],"orbits":[0,4,7],"x":-10240.12,"y":4633.75},{"nodes":[18684],"orbits":[0],"x":-10198.25,"y":3732.13},{"nodes":[18746],"orbits":[0],"x":-10160.38,"y":-4757.69},{"nodes":[51749],"orbits":[0],"x":-10158.37,"y":296.7},{"nodes":[29611],"orbits":[0],"x":-10134.33,"y":-3151.93},{"nodes":[33590],"orbits":[0],"x":-10128.99,"y":5639.94},{"nodes":[11656,9106,53822,54937],"orbits":[1,7],"x":-10089.33,"y":1201.49},{"nodes":[37484],"orbits":[0],"x":-10073.8,"y":-2358.14},{"nodes":[9352,31295,32071,49111,39190,8800,15427,57379],"orbits":[0,3],"x":-10026.06,"y":-1117.08},{"nodes":[27296],"orbits":[0],"x":-10009.75,"y":3405.64},{"nodes":[31554,49929,31757],"orbits":[6,5],"x":-9932.89,"y":-7295.29},{"nodes":[51535,18397,55063,8852,4139],"orbits":[0,2,3],"x":-9927.8,"y":2362.11},{"nodes":[9328],"orbits":[0],"x":-9903.54,"y":-6537.44},{"nodes":[58496],"orbits":[0],"x":-9903.54,"y":-6355.19},{"nodes":[39598,3949,28613,15247,46683],"orbits":[3,2],"x":-9851.18,"y":2995.92},{"nodes":[1130,50847,33393,42914],"orbits":[0,4,5,7],"x":-9825.21,"y":-3241.28},{"nodes":[32474],"orbits":[0],"x":-9791.13,"y":-4500.02},{"nodes":[4442,59886,62313,62034,55931,33939,6872],"orbits":[0,3,4,5],"x":-9765.33,"y":710.66},{"nodes":[53123,43250,34818,22697,8421,35404,5862,54982],"orbits":[1,2,7],"x":-9735.55,"y":-2055.78},{"nodes":[14026],"orbits":[0],"x":-9717.96,"y":-6634.67},{"nodes":[37187],"orbits":[0],"x":-9717.96,"y":-6452.32},{"nodes":[55152,42710,65287,56996,9568,41186,58117,13839,5580],"orbits":[0,2,3,4,5],"x":-9716.02,"y":6484.44},{"nodes":[59777],"orbits":[0],"x":-9701.92,"y":4489.54},{"nodes":[62670,41497,30554,21164,18245,10055],"orbits":[0,7],"x":-9699.83,"y":-2798.91},{"nodes":[917,44069,65160,21670,29358],"orbits":[1,2,3],"x":-9636.83,"y":3334.63},{"nodes":[30553],"orbits":[0],"x":-9621.33,"y":3036.16},{"nodes":[30457,13293,54416,19236,60274],"orbits":[0,7],"x":-9598.42,"y":-542.54},{"nodes":[18448],"orbits":[0],"x":-9598.42,"y":4},{"nodes":[19563,34782,34490,18972],"orbits":[0,2,3,7],"x":-9524.42,"y":-6101.02},{"nodes":[47931],"orbits":[0],"x":-9524.42,"y":-5501.21},{"nodes":[36100],"orbits":[0],"x":-9522.16,"y":-6739.15},{"nodes":[63085],"orbits":[0],"x":-9522.16,"y":-6562.27},{"nodes":[61942],"orbits":[0],"x":-9449.45,"y":-4442.32},{"nodes":[53719],"orbits":[0],"x":-9427.5,"y":5442.15},{"nodes":[10362,10830,9163,59589,44952,6153,52659],"orbits":[0,3,7],"x":-9363.33,"y":4400.29},{"nodes":[63678],"orbits":[0],"x":-9318.59,"y":-6631.85},{"nodes":[43460],"orbits":[0],"x":-9318.59,"y":-6434.75},{"nodes":[61847],"orbits":[0],"x":-9265.01,"y":-2982.99},{"nodes":[17587,59039,28223,6100,20963],"orbits":[1,2,4,5,7],"x":-9247.14,"y":-875.71},{"nodes":[29098,32549,10727,56237,43588,61835,1825],"orbits":[0,2,3],"x":-9224.21,"y":-4865.33},{"nodes":[41935],"orbits":[0],"x":-9155.13,"y":-6541.86},{"nodes":[6735],"orbits":[0],"x":-9155.13,"y":-6351.08},{"nodes":[65154,2575,56757,11292],"orbits":[0,2],"x":-9064.75,"y":362.33},{"nodes":[49370,32148,8535,43443],"orbits":[0,2],"x":-9058.33,"y":-2717.44},{"nodes":[6502],"orbits":[0],"x":-9056.17,"y":-2715.81},{"nodes":[41747],"orbits":[0],"x":-9050.55,"y":-3180.38},{"nodes":[53440,52300,11178,62439,57880,11306,6269,45990,39448,24224],"orbits":[0,2,3],"x":-9040.02,"y":6723.44},{"nodes":[33203,55033,17059,6874,34940],"orbits":[0,3,4,7],"x":-8963.6,"y":-1538.12},{"nodes":[33452,57471,53823,23192,21684,1214,42578,52796,10508,30371,27687],"orbits":[2,3,4,5,7],"x":-8945,"y":1954.01},{"nodes":[11525,64724,53329,53030,30334,9324,43939,56214,48267],"orbits":[0,2,3],"x":-8860.46,"y":-5419.21},{"nodes":[65042,60068,55925,37869,28892,13845,28408,21413,37290],"orbits":[0,1,3,7],"x":-8776.24,"y":-545.92},{"nodes":[61811,44452,21809,19162,34143,36408,15141],"orbits":[6,5],"x":-8734.51,"y":-7310.37},{"nodes":[21387],"orbits":[0],"x":-8724.91,"y":5036.5},{"nodes":[51129,26437,15892],"orbits":[3,7],"x":-8699.47,"y":5504.76},{"nodes":[52],"orbits":[0],"x":-8682.17,"y":-4609.87},{"nodes":[39131],"orbits":[0],"x":-8680.79,"y":-5014.13},{"nodes":[47606,28981,34871,27980,270,56219,52764],"orbits":[0,1,2,7],"x":-8664.77,"y":-6794.46},{"nodes":[33722],"orbits":[0],"x":-8664.77,"y":-6378.53},{"nodes":[47173,51832,6514,31373,47722,12418,50561,3988],"orbits":[0,2,3,4],"x":-8647.35,"y":4650.55},{"nodes":[10100],"orbits":[0],"x":-8622.21,"y":522.51},{"nodes":[23307],"orbits":[0],"x":-8621.47,"y":988.33},{"nodes":[27082],"orbits":[0],"x":-8618.25,"y":6301.67},{"nodes":[63243,48160,13108,49543,37778,24929],"orbits":[2,3,5],"x":-8606.47,"y":-3419.53},{"nodes":[61404,38923,44902,61429,511],"orbits":[0,7],"x":-8575.54,"y":-2302.44},{"nodes":[8460,40328,62200,9528,38053,29762,28564],"orbits":[0,2,3],"x":-8509.27,"y":-1418.16},{"nodes":[47263],"orbits":[0],"x":-8484.8,"y":9.69},{"nodes":[51210],"orbits":[0],"x":-8483,"y":-2227.56},{"nodes":[13482],"orbits":[0],"x":-8394.02,"y":5599.53},{"nodes":[22626,45227,30136],"orbits":[3,7],"x":-8335.67,"y":5293.13},{"nodes":[42111,48717],"orbits":[7,3],"x":-8316.62,"y":5282.9},{"nodes":[25300],"orbits":[0],"x":-8308.16,"y":504.36},{"nodes":[55048],"orbits":[0],"x":-8287.77,"y":-6378.53},{"nodes":[55635,57089,53893,55450,21784,50118,51807,52440,34443],"orbits":[0,1,2,7],"x":-8253.67,"y":-5967.44},{"nodes":[25315,25591,19820,5686],"orbits":[2],"x":-8242.08,"y":-2760.44},{"nodes":[59945],"orbits":[0],"x":-8233.08,"y":1737.23},{"nodes":[12005,28489,56890,33562,41609,31010,27611,27216,30546,57273,60619,26104,43282,55672,32186,541],"orbits":[0,2,4,5,6,7],"x":-8221.2,"y":-7830.17},{"nodes":[50392],"orbits":[0],"x":-8217.79,"y":6324.33},{"nodes":[32349],"orbits":[0],"x":-8206.04,"y":7089.13},{"nodes":[38365,61142,34626,46499],"orbits":[0,2],"x":-8204.79,"y":2567.51},{"nodes":[61796,38066,8260,10286],"orbits":[7],"x":-8193.04,"y":453.74},{"nodes":[31779,20791,13777,38532],"orbits":[0,2],"x":-8166.54,"y":-4543.78},{"nodes":[38707],"orbits":[0],"x":-8161.98,"y":-1195.09},{"nodes":[24855,17138,53308,51903,39347,48014,55058,63790],"orbits":[0,3,4,5],"x":-8158.65,"y":3447.68},{"nodes":[11741],"orbits":[3],"x":-8149.73,"y":-4707.52},{"nodes":[41821],"orbits":[0],"x":-8141.21,"y":7641.73},{"nodes":[24801,34305,40736,8171,45162,63031,15606,31545],"orbits":[3,4,7],"x":-8131.61,"y":7618.79},{"nodes":[52220,60064,3027,54228,64240],"orbits":[0,2],"x":-8115.09,"y":-155.26},{"nodes":[61409,24646],"orbits":[3,7],"x":-8111.51,"y":6128.94},{"nodes":[59061,2672,8509,45569,55596,28267,35085],"orbits":[0,2,3],"x":-8101.59,"y":-5348.53},{"nodes":[8272],"orbits":[0],"x":-1028.4703459825,"y":15926.500291259},{"nodes":[21453],"orbits":[0],"x":-8091.65,"y":379.36},{"nodes":[63114],"orbits":[3],"x":-8046.92,"y":4659.56},{"nodes":[13075],"orbits":[0],"x":-8021.19,"y":6127.75},{"nodes":[60916,41701,11027,59433],"orbits":[0,2],"x":-8013.96,"y":-4798.6},{"nodes":[4140],"orbits":[0],"x":-8008.17,"y":-7035.15},{"nodes":[54849,3723,16413,17092,10484,42660],"orbits":[0,2],"x":-7994.15,"y":-746.39},{"nodes":[49259,25014,62360,36333,50228,20511,42059,53804,56112],"orbits":[0,3,4],"x":-7989.53,"y":-3652.59},{"nodes":[35048,26176,43650,21070,57388,53386,9698],"orbits":[1,2,3,7],"x":-7966.51,"y":4130.84},{"nodes":[49734],"orbits":[0],"x":-7956.51,"y":-1961.91},{"nodes":[40105,30258,20558],"orbits":[2],"x":-7930.61,"y":-2397.42},{"nodes":[39102,43486,13228,54289],"orbits":[0,2],"x":-7915.44,"y":-3108.31},{"nodes":[44017],"orbits":[0],"x":-7860.53,"y":2931.66},{"nodes":[4621,54297,24993,43721,9554,11160,49769,16332,1628,57202,3681,57386,8723,49258,25678,21374],"orbits":[2,3,4,6,7],"x":-7842.42,"y":-9697.42},{"nodes":[3446],"orbits":[0],"x":-7829.04,"y":7089.13},{"nodes":[51737],"orbits":[0],"x":-725.97034598253,"y":16707.190291259},{"nodes":[4527],"orbits":[0],"x":-7762.96,"y":2567.51},{"nodes":[20115],"orbits":[0],"x":-7745.48,"y":-2749.55},{"nodes":[51812,62757,4673,10047,46741],"orbits":[0,2],"x":-7735.13,"y":-1427.91},{"nodes":[64807,46674,35921,57405,5642],"orbits":[2],"x":-7728.69,"y":1935.05},{"nodes":[58855],"orbits":[0],"x":-7717.94,"y":1429.4},{"nodes":[53527,4985,64525,45327,7204,10251],"orbits":[0,2,3,7],"x":-7711.19,"y":1435.92},{"nodes":[35369,1459,47252,17282,43579],"orbits":[0,1,7],"x":-7642.03,"y":-4244.19},{"nodes":[2946,62518,4547,41414,41363],"orbits":[0,1,3,4,7],"x":-7612.36,"y":8202.29},{"nodes":[15913,7542,36737,61362,28516,32599],"orbits":[2],"x":-7585.53,"y":-2160.61},{"nodes":[17646],"orbits":[0],"x":-515.80034598253,"y":15646.330291259},{"nodes":[51821],"orbits":[0],"x":-7574.92,"y":-3386.05},{"nodes":[31159,54962,35849,46017,12382],"orbits":[0,1,7],"x":-7523.03,"y":-4513.11},{"nodes":[29197,23436,26300,11428],"orbits":[2,4,5,7],"x":-7495.63,"y":-5422.46},{"nodes":[43653,48171,26518,40803,3218],"orbits":[4],"x":-7479.31,"y":-755.12},{"nodes":[58088,16620,41442,21161,64324,10500,26479,6900,45751],"orbits":[2,3,4,5],"x":-7472.17,"y":6094.06},{"nodes":[9040],"orbits":[0],"x":-7472.17,"y":6133.69},{"nodes":[50616],"orbits":[0],"x":-7470.27,"y":4966.83},{"nodes":[46665],"orbits":[0],"x":-7469.65,"y":409.35},{"nodes":[18505,18496,18073,36027,49952,45090,13856],"orbits":[7],"x":-7463.54,"y":4960.9},{"nodes":[24339,7060,28214,1973,8607,53131],"orbits":[7,2],"x":-7459.86,"y":371.68},{"nodes":[39710],"orbits":[0],"x":-7441.19,"y":-3885.12},{"nodes":[52298],"orbits":[0],"x":-7437.53,"y":3131.16},{"nodes":[53216,52126,21885,1352],"orbits":[0,2,7],"x":-7437.53,"y":3624.13},{"nodes":[45202],"orbits":[0],"x":-7414.29,"y":-8107.33},{"nodes":[34317,8145,2344,23331,30959,31778,12992,16485,296],"orbits":[0,1,2,7],"x":-7383.29,"y":-7035.15},{"nodes":[58295],"orbits":[2],"x":-7366.84,"y":84.99},{"nodes":[47242,34493,48565,23078,65328,54964,49593,4725,17229],"orbits":[0,2,3,4,7],"x":-7350.17,"y":-6377.15},{"nodes":[26196],"orbits":[0],"x":-7344.38,"y":-4246.42},{"nodes":[40117,31848,1286,21089,17903,54701,64023],"orbits":[0,7],"x":-7296.92,"y":2335.67},{"nodes":[24430,47191,3601,8554,63037],"orbits":[4],"x":-7251.15,"y":-371.11},{"nodes":[50629],"orbits":[0],"x":-7241.96,"y":-651.55},{"nodes":[44298],"orbits":[0],"x":-7240.77,"y":-656.16},{"nodes":[17725,24420,33829,18737,9221,9442,37260,30395],"orbits":[0,1,2,7],"x":-7188.4,"y":-2426.53},{"nodes":[45354,64948,48264,12964],"orbits":[0,2],"x":-7177.65,"y":-5009.06},{"nodes":[12232,36556,872,1502,11087,42635],"orbits":[0,2],"x":-7167.85,"y":-3642.67},{"nodes":[28774,17505,52106,2999,44005,10295,27733],"orbits":[4,5,6],"x":-7140.48,"y":-10437.39},{"nodes":[11048,47420,53444,9065,752,64653,52676],"orbits":[1,2,4,7],"x":-7123.17,"y":-8949.18},{"nodes":[50062,64357,6416,506,46857,59596,42916,11030,37641],"orbits":[0,2,3],"x":-7080.06,"y":-3066.48},{"nodes":[23930,30662,45383,26291,46024],"orbits":[4],"x":-7073.34,"y":-821.9},{"nodes":[59093],"orbits":[0],"x":-7050.15,"y":-8009.76},{"nodes":[61973,38601,43131,40719,61897,34501,7120],"orbits":[6,5,9,8],"x":22.379654017468,"y":15546.750291259},{"nodes":[25172],"orbits":[0],"x":22.379654017468,"y":16596.080291259},{"nodes":[46535],"orbits":[0],"x":26.729654017468,"y":15646.330291259},{"nodes":[32559],"orbits":[0],"x":26.729654017468,"y":15948.310291259},{"nodes":[3704],"orbits":[0],"x":26.729654017468,"y":16229.120291259},{"nodes":[52993,9414,32768,8107,18081,14980],"orbits":[0,2,3,7],"x":-7038.4,"y":-1699.91},{"nodes":[25229,7972,21390,5663],"orbits":[0,2],"x":-7025.42,"y":7409.4},{"nodes":[62498],"orbits":[0],"x":-7025.42,"y":7906.98},{"nodes":[12255,989,26416,27740,35792],"orbits":[2],"x":-7025.42,"y":8507.21},{"nodes":[45632,25503,27068,35831,27388,28578,904,24551],"orbits":[0,7],"x":-6938.5,"y":-5539.42},{"nodes":[26725],"orbits":[0],"x":-6934.34,"y":4002.72},{"nodes":[31805,44461,54998,29041,31388,51394,29993],"orbits":[1,2,3,7],"x":-6908.33,"y":2821.11},{"nodes":[43778,36894,17330,3698,61938,14515,61927,33137],"orbits":[2,3],"x":-6902.9,"y":6655.38},{"nodes":[21568],"orbits":[0],"x":-6880.96,"y":-4712.38},{"nodes":[1170,53089,16626,64443,41126,10474,53785,9918,62023],"orbits":[0,2,3],"x":-6862.15,"y":988.33},{"nodes":[39621,14176,18004,8881],"orbits":[0,2,3,4],"x":-6849.92,"y":3687.64},{"nodes":[21127,35974,51105,5398,22484,51820,38124,6355,14110,48979],"orbits":[1,2,3,4,6,7],"x":-6849.4,"y":-7455.59},{"nodes":[48935,61367,64239,2733],"orbits":[0,2,3],"x":-6846.57,"y":-239.4},{"nodes":[16249],"orbits":[0],"x":2206.941488019,"y":15163.039415167},{"nodes":[50757,62303,33045,59938],"orbits":[0,4,7],"x":-6813.53,"y":-3551.71},{"nodes":[40511,58368,29985,61113,53910,9212],"orbits":[0,1,7],"x":-6753.23,"y":-6208.67},{"nodes":[25031,17999,63979,9750,1169,42026,63813],"orbits":[0,7],"x":-6714.29,"y":9037.67},{"nodes":[35966,41105,38368,54288,44316],"orbits":[0,1,7],"x":-6674.42,"y":-4314.1},{"nodes":[11464,27405,30781,63772,37888,29663],"orbits":[2,3,5,6,7],"x":-6663.73,"y":-1193.34},{"nodes":[5800,45075,43149,43507,40292],"orbits":[1,2,7],"x":-6629.67,"y":5303.33},{"nodes":[32560],"orbits":[0],"x":2418.441488019,"y":15529.369415167},{"nodes":[6935],"orbits":[0],"x":560.54965401747,"y":15646.330291259},{"nodes":[10371],"orbits":[0],"x":2527.921488019,"y":15120.769415167},{"nodes":[11248],"orbits":[0],"x":-6473.32,"y":-5120.01},{"nodes":[53921,40596,58838],"orbits":[5],"x":-6456.61,"y":5137.09},{"nodes":[22975],"orbits":[0],"x":-6409.48,"y":4911.79},{"nodes":[15044],"orbits":[0],"x":2629.941488019,"y":15895.699415167},{"nodes":[22270,1144,12471,19942,42070,26148],"orbits":[0,2],"x":-6401.88,"y":-5623.51},{"nodes":[21861,52807,61836,60551,65243,46421],"orbits":[0,2],"x":-6391.25,"y":-308.27},{"nodes":[43711,5544,14459],"orbits":[2],"x":-6370.69,"y":420.58},{"nodes":[38921,49023,49198,12817,22967],"orbits":[1,2,3,7],"x":-6353.65,"y":4501.4},{"nodes":[34187,20848,32239,16721,9009,7128,18270,45874],"orbits":[0,3,4,5,6,7],"x":-6348.3,"y":-6484.17},{"nodes":[18678],"orbits":[0],"x":2726.7151094136,"y":-16520.239541646},{"nodes":[63002],"orbits":[0],"x":2726.7151094136,"y":-14316.419541646},{"nodes":[42845],"orbits":[0],"x":2739.421488019,"y":15487.109415167},{"nodes":[20830],"orbits":[0],"x":799.83965401747,"y":16707.190291259},{"nodes":[46380,21327,56876,1104],"orbits":[0,2],"x":-6253.23,"y":-4790.96},{"nodes":[32777,17625,59710,21567,18822,10873,52618,47790],"orbits":[1,2,3,7],"x":-6239.27,"y":-3222.72},{"nodes":[11014,16784,26339,62609,18419,25312,24259,23667,64405,31650,16051,31017],"orbits":[0,1,3,5,7],"x":-6210.4,"y":7289.19},{"nodes":[51561],"orbits":[0],"x":-6210.4,"y":8758.64},{"nodes":[23382],"orbits":[0],"x":-6208.88,"y":-8867.25},{"nodes":[19674],"orbits":[3],"x":-6203.21,"y":3942.14},{"nodes":[10731],"orbits":[0],"x":2828.6351094136,"y":-16082.639541646},{"nodes":[27439],"orbits":[0],"x":-6186.82,"y":5297.48},{"nodes":[11786,7716,29447,18157],"orbits":[2],"x":-6167.94,"y":9255.09},{"nodes":[29162],"orbits":[0],"x":2869.651488019,"y":16135.409415167},{"nodes":[8982,58926,64572,14952,21985,48925,54887],"orbits":[0,3,7],"x":-6160.01,"y":-9509.97},{"nodes":[3363,38433,4970,23195,55375,62748],"orbits":[0,2],"x":-6116.54,"y":-6010.78},{"nodes":[41493],"orbits":[0],"x":-6116.29,"y":3951.76},{"nodes":[41180,6222,17260,61703,9037,57608,32353,65189],"orbits":[0,2,3,7],"x":-6051.67,"y":-646.18},{"nodes":[29126,28770,479],"orbits":[0,7],"x":-6036.75,"y":-1514.07},{"nodes":[21017,26969,16861,55789,41665,27303,50562,43142],"orbits":[0,3,4,5,7],"x":-6026.21,"y":1197.89},{"nodes":[14654],"orbits":[0],"x":-6014.13,"y":4},{"nodes":[54838],"orbits":[0],"x":3024.181488019,"y":14820.959415167},{"nodes":[4245],"orbits":[0],"x":3024.181488019,"y":15243.969415167},{"nodes":[44746],"orbits":[0],"x":3024.181488019,"y":15666.969415167},{"nodes":[26638],"orbits":[0],"x":3040.6851094136,"y":-15421.219541646},{"nodes":[35977,38130,53194,35876,27540,62216,26070,62973],"orbits":[0,2,3],"x":-5982.73,"y":2748.83},{"nodes":[57703],"orbits":[0],"x":-5982.73,"y":3453.31},{"nodes":[37078],"orbits":[0],"x":1106.1996540175,"y":15926.500291259},{"nodes":[56342],"orbits":[0],"x":-5952.13,"y":8688.45},{"nodes":[7341],"orbits":[0],"x":-5946.57,"y":8472.91},{"nodes":[49938],"orbits":[0],"x":-5945.28,"y":-3432.51},{"nodes":[25890,26863,54378,58198],"orbits":[0,2],"x":-5938.61,"y":-8581.7},{"nodes":[46522],"orbits":[0],"x":3111.921488019,"y":15994.419415167},{"nodes":[50253],"orbits":[0],"x":-5918.9,"y":4065.73},{"nodes":[58747],"orbits":[0],"x":3107.3351094136,"y":-14316.419541646},{"nodes":[64318,5088,55101,43893,26739,61063,38535,7777,58016,22873,16596,49537,42205],"orbits":[0,3,4],"x":-5912.67,"y":-7670.09},{"nodes":[23879,51743,42452,57617,41620,35417,57921,16506,14996,37509],"orbits":[0,3,4,5,7],"x":-5885.4,"y":-2365.38},{"nodes":[44872],"orbits":[0],"x":-5846.29,"y":-5740.53},{"nodes":[51795,32271,54311,28482,53632,19846],"orbits":[1,2,7],"x":-5794.96,"y":-3968.54},{"nodes":[42035,28153,50219,54194],"orbits":[2],"x":3230.2751094136,"y":-16146.949541646},{"nodes":[22147],"orbits":[9],"x":3230.2751094136,"y":-15207.249541646},{"nodes":[36252],"orbits":[6],"x":3252.201488019,"y":15678.949415167},{"nodes":[57776,60013,10208,21935,33914,18240,21415,22909,61493],"orbits":[0,3],"x":-5744.12,"y":-6744.4},{"nodes":[43128],"orbits":[4],"x":3294.0451094136,"y":-16066.949541646},{"nodes":[8600],"orbits":[0],"x":-5721.96,"y":6102.63},{"nodes":[32952],"orbits":[0],"x":-4412.0930451617,"y":15102.650574792},{"nodes":[61471,61977,15580,49153],"orbits":[4],"x":-5699.67,"y":-4002.92},{"nodes":[62015,7668,21982,47371],"orbits":[0,2],"x":-5694.65,"y":5052.28},{"nodes":[64870,34090,14655,372,54340],"orbits":[0,2,3,7],"x":-5677.8,"y":5511.25},{"nodes":[3605],"orbits":[0],"x":3370.1251094136,"y":-14316.019541646},{"nodes":[54892],"orbits":[0],"x":3392.521488019,"y":15994.249415167},{"nodes":[10987],"orbits":[0],"x":3402.6551094136,"y":-15421.219541646},{"nodes":[37397],"orbits":[0],"x":-4302.9730451617,"y":14913.650574792},{"nodes":[60287],"orbits":[0],"x":-4302.9730451617,"y":15039.650574792},{"nodes":[7960],"orbits":[1],"x":-5597.85,"y":-9484.56},{"nodes":[40550,46205,41615,49192,44787,43396,10534,33209,2174,51683,19249],"orbits":[0,2,3,4,6,7],"x":-5585.44,"y":-521.46},{"nodes":[33244,52373,16347,52556,37276],"orbits":[0,2],"x":-5585.08,"y":8844.88},{"nodes":[32637],"orbits":[0],"x":3480.491488019,"y":14819.939415167},{"nodes":[30151],"orbits":[0],"x":3480.491488019,"y":15242.949415167},{"nodes":[44371],"orbits":[0],"x":3480.491488019,"y":15665.949415167},{"nodes":[20303,9908],"orbits":[2],"x":-5535.94,"y":811.34},{"nodes":[16311,32600,6304,12125],"orbits":[0,2],"x":-5532.01,"y":426.08},{"nodes":[20350,47006,43174,4948,62785,28542],"orbits":[1,3,7],"x":-5498.11,"y":8167.23},{"nodes":[63259],"orbits":[0],"x":-4193.8630451617,"y":15102.650574792},{"nodes":[55582],"orbits":[0],"x":-4167.0930451617,"y":15546.760574792},{"nodes":[25482,51702,54485,60620,61472],"orbits":[0,7],"x":-5457.8,"y":4362.34},{"nodes":[64995,51867,17924],"orbits":[0,3],"x":-5440.73,"y":6837.73},{"nodes":[27990],"orbits":[0],"x":3593.6051094136,"y":-16317.889541646},{"nodes":[761,22133,39857,4663],"orbits":[0,7],"x":-5431.35,"y":-1790.04},{"nodes":[2491],"orbits":[1],"x":-5399.53,"y":9533.46},{"nodes":[762],"orbits":[0],"x":3635.451488019,"y":16134.699415167},{"nodes":[49049],"orbits":[0],"x":3627.9251094136,"y":-16082.639541646},{"nodes":[44783,19277,35171,10029,8660,18846,22949,14113],"orbits":[0,2,3],"x":-5386.44,"y":-5437.75},{"nodes":[14429],"orbits":[0],"x":-4082.4230451617,"y":14628.030574792},{"nodes":[8629],"orbits":[0],"x":-5326.03,"y":2555.07},{"nodes":[20015,14777,49136,9604,37226,4015,47429,9187,59466],"orbits":[2,3,4,6,7],"x":-5323.67,"y":7500.44},{"nodes":[16084],"orbits":[0],"x":-5314.13,"y":2655.72},{"nodes":[13474],"orbits":[0],"x":-5314.13,"y":2829.25},{"nodes":[10602,24871,57552,46696],"orbits":[4],"x":-5314.13,"y":2922.83},{"nodes":[54811],"orbits":[0],"x":-5314.13,"y":3067.3},{"nodes":[34210],"orbits":[0],"x":-5314.13,"y":3397.64},{"nodes":[25934,6923,1087,64939,30123,26092,52392],"orbits":[2,3,7],"x":-5314.13,"y":3520.75},{"nodes":[20499,34327,32078,16940,25446,2336,63402,29881],"orbits":[0,1,2,7],"x":-5305.62,"y":-3550.7},{"nodes":[1579],"orbits":[0],"x":3733.2751094136,"y":-16527.249541646},{"nodes":[32856],"orbits":[0],"x":3733.2751094136,"y":-14316.019541646},{"nodes":[12054],"orbits":[0],"x":3775.731488019,"y":16377.669415167},{"nodes":[45248],"orbits":[0],"x":-3946.5530451617,"y":15135.140574792},{"nodes":[44406,63451,57846],"orbits":[6],"x":-5197.82,"y":6507.02},{"nodes":[63470,50302,16090],"orbits":[3],"x":-5165.01,"y":833.39},{"nodes":[61490],"orbits":[0],"x":-5159.25,"y":6455.65},{"nodes":[28304],"orbits":[0],"x":-5153.8,"y":8943.84},{"nodes":[8693,35393,23708,3896,56320],"orbits":[0,2,7],"x":-5140.8,"y":745.04},{"nodes":[11641],"orbits":[0],"x":-3810.6630451617,"y":15642.260574792},{"nodes":[56703,28839,56762,20032,28680],"orbits":[0,2],"x":-5107.55,"y":-6981.78},{"nodes":[1988],"orbits":[0],"x":3929.031488019,"y":15965.199415167},{"nodes":[28002],"orbits":[0],"x":-5095.02,"y":-2941.61},{"nodes":[2955,28800,55308,38313,30701],"orbits":[0,2,7],"x":-5085.88,"y":-2565.83},{"nodes":[51183,10635,45301,31724,2074],"orbits":[0,2],"x":-5081.34,"y":-791.76},{"nodes":[35408,36474,38596,24767,31925],"orbits":[2,4,7],"x":-5073.9,"y":-9428.05},{"nodes":[64042,55422,34415,48387,54640,27900,62376],"orbits":[0,3,4,5,7],"x":-5064.25,"y":-4700.96},{"nodes":[18441,34181,45422],"orbits":[7],"x":-5039.48,"y":-3334.46},{"nodes":[51369,56061,6544,45503,37746,42604],"orbits":[0,2,4,7],"x":-5034.82,"y":1520.57},{"nodes":[34412,25915,8916,20547,33340,51267,11886],"orbits":[1,2,7],"x":-5003.08,"y":-1341.35},{"nodes":[45918],"orbits":[0],"x":-4999.75,"y":-8120.71},{"nodes":[49547],"orbits":[0],"x":-4997.46,"y":-3305.76},{"nodes":[10305,45586,35011,14761,53187,45215],"orbits":[2],"x":-4989.69,"y":6154.73},{"nodes":[57775],"orbits":[0],"x":-4987.35,"y":6165.44},{"nodes":[34882],"orbits":[0],"x":-3674.7830451617,"y":16149.370574792},{"nodes":[46628],"orbits":[4],"x":-4966.28,"y":-5972.03},{"nodes":[37523],"orbits":[0],"x":4069.301488019,"y":16208.169415167},{"nodes":[48552],"orbits":[0],"x":-4902.61,"y":-8434.54},{"nodes":[36880,15628,27626,2244,54067,43036],"orbits":[4,5,7],"x":-4890.11,"y":-8497.87},{"nodes":[10452,1878,44213,14328,869,18959,55843],"orbits":[0,2,7],"x":-4876.25,"y":-7652.71},{"nodes":[34990,25337,50184,46069,6088,54380],"orbits":[0,2,7],"x":-4860.65,"y":-5812},{"nodes":[47316,2888,21716,8827,16691,9583,28862],"orbits":[0,4,7],"x":-4814.59,"y":10580.08},{"nodes":[37258],"orbits":[0],"x":-4805.94,"y":8363.52},{"nodes":[59367,10774,26568,51732,35863],"orbits":[2],"x":-4801.92,"y":7834.96},{"nodes":[23062,19122,28432,20416],"orbits":[0,2],"x":-4747.08,"y":-251.96},{"nodes":[24696],"orbits":[0],"x":4295.151488019,"y":15983.139415167},{"nodes":[38965,11284,24764,12324,30985,31697,51303],"orbits":[1,2,7],"x":-4715.21,"y":-10129.75},{"nodes":[56595,23861,54886,56997,64312],"orbits":[0,4,7],"x":-4713.07,"y":5643.94},{"nodes":[15782],"orbits":[0],"x":-4694.67,"y":-6892.17},{"nodes":[54814,59498,53675,16114],"orbits":[0,2],"x":-4694.67,"y":-6482.36},{"nodes":[31419,35787,42813,55491],"orbits":[1,7],"x":-4660.69,"y":223.67},{"nodes":[31238],"orbits":[0],"x":-4643.88,"y":-7996.23},{"nodes":[2653,19203,10260,30896,49172,33730,60809],"orbits":[0,2,7],"x":-4628.58,"y":-3070.51},{"nodes":[65226],"orbits":[0],"x":-4621.23,"y":-10104.85},{"nodes":[38876],"orbits":[0],"x":-4606.4,"y":6774.82},{"nodes":[292],"orbits":[0],"x":-4582.26,"y":-8704.8},{"nodes":[5681],"orbits":[0],"x":-4573.05,"y":9245.21},{"nodes":[4086],"orbits":[0],"x":4459.721488019,"y":15683.469415167},{"nodes":[3339,23036,46931,45585,55617,29914,17825,19546,59208],"orbits":[0,2,3],"x":-4572.75,"y":9245.92},{"nodes":[23825,11572,24325,32923,58215,40006,9896],"orbits":[2,3,4,7],"x":-4568.4,"y":-8712.09},{"nodes":[39083],"orbits":[0],"x":-4542.4,"y":925.6},{"nodes":[33978,30390,31609,36163,62581],"orbits":[0,2,3,7],"x":-4507.44,"y":2159.3},{"nodes":[55536],"orbits":[9],"x":-3208.3430451617,"y":15211.520574792},{"nodes":[10245,34308,65193,36478,48714,43014,37414],"orbits":[0,2,3],"x":-4432.96,"y":-2172.08},{"nodes":[14540],"orbits":[0],"x":-4431.15,"y":7184.65},{"nodes":[7878,48745,53901,34375,45612],"orbits":[0,2,3],"x":-4431.08,"y":-684.43},{"nodes":[9417],"orbits":[0],"x":-4427.82,"y":4646.67},{"nodes":[48505,10372,48240,36191,59213,7392,10571,60886,40325],"orbits":[1,2,3],"x":-4422.17,"y":-1471.64},{"nodes":[7642,6356,71,32859,12189,56547,15114],"orbits":[0,3,4,5,7],"x":-4418.06,"y":-4540.25},{"nodes":[13171],"orbits":[0],"x":-4346.51,"y":4339.79},{"nodes":[9638],"orbits":[0],"x":-4339.42,"y":843.27},{"nodes":[54283,26324,27950,4128,26532,46023,52462],"orbits":[0,2,3],"x":-4335.51,"y":3287.25},{"nodes":[41657,21286,45992,17029],"orbits":[2,3],"x":-4335.51,"y":3380.39},{"nodes":[26798],"orbits":[0],"x":-4335.1,"y":619.91},{"nodes":[51052,22616,17468,53405,22558],"orbits":[6],"x":-4308.23,"y":0.53},{"nodes":[59006],"orbits":[0],"x":-4296.44,"y":407.49},{"nodes":[48631],"orbits":[0],"x":-4289.92,"y":0.53},{"nodes":[14294,48530,4623,39130,48524],"orbits":[2],"x":-4288.8,"y":-6798.65},{"nodes":[43818],"orbits":[0],"x":-4285.55,"y":-6819.23},{"nodes":[14505,3866,22331,19644,32258,14712,33612,40200,61842,33240,45343,57021,8957,37594,50483,8983],"orbits":[0,1,2,3,4,5,7],"x":-4283.82,"y":-11016.96},{"nodes":[34552,61026,17378,40894,1218,8357,10742,41991,1447,38972,14945,22393,28458],"orbits":[0,3],"x":-4261.32,"y":-5891.9},{"nodes":[28175],"orbits":[0],"x":-4254.59,"y":10064.45},{"nodes":[17745],"orbits":[0],"x":-4238.73,"y":4457.57},{"nodes":[62378,47633,57002,48761],"orbits":[0,2],"x":-4230.17,"y":-789.73},{"nodes":[16725],"orbits":[0],"x":-4227.25,"y":2439.49},{"nodes":[4681,25058,48828,26228],"orbits":[0,2],"x":-4208.73,"y":-7738.4},{"nodes":[50104],"orbits":[0],"x":-4185.36,"y":-10001.8},{"nodes":[47212,17417,43843,3652,56714,27999,45777],"orbits":[0,1,2,3,5],"x":-4166,"y":10952.54},{"nodes":[56605],"orbits":[0],"x":-4163.59,"y":6722.67},{"nodes":[18146],"orbits":[0],"x":-2863.1830451617,"y":15383.910574792},{"nodes":[48121],"orbits":[0],"x":-4120.96,"y":4565.35},{"nodes":[4931,42825,21404,27674,44082,27307],"orbits":[0,2],"x":-4117.42,"y":-8135.44},{"nodes":[32745],"orbits":[0],"x":-4116.33,"y":-9838.01},{"nodes":[24438],"orbits":[0],"x":-4114.17,"y":4317.84},{"nodes":[40276],"orbits":[0],"x":-4113.12,"y":-9545.42},{"nodes":[60241],"orbits":[0],"x":-4113.12,"y":-9254.29},{"nodes":[51618,43324,57596,13468,11580,34769,52115,51454],"orbits":[0,2,3,4,7],"x":-4109.59,"y":-3555.51},{"nodes":[17762,2964,18374,28476],"orbits":[0,2],"x":-4107.23,"y":6275.65},{"nodes":[46742],"orbits":[0],"x":-4102.54,"y":-10310.91},{"nodes":[95],"orbits":[0],"x":-4084.76,"y":-7312.1},{"nodes":[26895],"orbits":[0],"x":-4082.88,"y":287.24},{"nodes":[17411,61444,58096,6008,29652,15180,34096],"orbits":[0,2,3],"x":-4077.15,"y":-2691.85},{"nodes":[26490,12751,6229,13356,18489],"orbits":[7,2],"x":-4066.8,"y":8524.92},{"nodes":[31903],"orbits":[0],"x":-4066.02,"y":7086.81},{"nodes":[3084],"orbits":[0],"x":-2738.2930451617,"y":16153.010574792},{"nodes":[32278,58183],"orbits":[2,7],"x":-4030.62,"y":-9550.54},{"nodes":[25990,43461,25753,32932,63268,29372,53989,36389,7720,14205],"orbits":[1,4,5,6,7,8],"x":-4027.59,"y":5238.17},{"nodes":[57819],"orbits":[0],"x":-2727.0430451617,"y":14875.830574792},{"nodes":[46748],"orbits":[0],"x":-3995.5,"y":4196.65},{"nodes":[61179],"orbits":[0],"x":-3955.44,"y":-9600.64},{"nodes":[4661,53367,10835,20842,12821,65439,48026,6623,65353],"orbits":[0,1,2,3],"x":-3944.14,"y":9526.74},{"nodes":[259],"orbits":[0],"x":-3931.69,"y":7603.71},{"nodes":[38010,13352,59180,54923,27638,50023,13524,4921],"orbits":[4,7],"x":-3931.58,"y":7588.67},{"nodes":[37956],"orbits":[0],"x":-3921.6,"y":394.73},{"nodes":[35645],"orbits":[0],"x":-3915.69,"y":-7172.57},{"nodes":[1928],"orbits":[0],"x":-3908.2,"y":-7290.56},{"nodes":[5284],"orbits":[0],"x":-3905.87,"y":-9191.64},{"nodes":[30996],"orbits":[0],"x":-2602.1530451617,"y":15644.940574792},{"nodes":[35581],"orbits":[0],"x":-3872.48,"y":156.68},{"nodes":[51485,41338,31673,48649],"orbits":[0,2],"x":-3861.26,"y":-1010.61},{"nodes":[32847],"orbits":[0],"x":-3856.25,"y":-7033.48},{"nodes":[8867,42522,39204,12882,38578,2857,39640,61985,18849,49189,64789,44484,7246,65413,25618,49759,7998,13673,29398,12488,40721],"orbits":[6,5,9,8],"x":9.0949470177293e-13,"y":-15546.765136719},{"nodes":[21245],"orbits":[0],"x":-3804.23,"y":-9338.75},{"nodes":[57178],"orbits":[0],"x":-3804.23,"y":-8886.17},{"nodes":[1442],"orbits":[0],"x":-2502.4330451617,"y":16388.870574792},{"nodes":[53762],"orbits":[0],"x":-2466.0130451617,"y":15136.860574792},{"nodes":[45962,48589,7922,7183,15617],"orbits":[0,2,3],"x":-3759.41,"y":5937.79},{"nodes":[56284],"orbits":[0],"x":-3754.39,"y":-7303},{"nodes":[9226,13500,47591,41044],"orbits":[1,2,3,7],"x":-3746.22,"y":-5464.19},{"nodes":[46565],"orbits":[0],"x":-3736.26,"y":12649.72},{"nodes":[34487,4882,60568,38172,51206,49642,52348],"orbits":[0,2,3,7],"x":-3727.22,"y":3905.64},{"nodes":[53443,20645,59767,31292,64284,58528,45363,19011,27373,22928],"orbits":[0,3,4,5],"x":-3724.22,"y":1390.39},{"nodes":[27290],"orbits":[0],"x":-3711.3,"y":11983.92},{"nodes":[6077],"orbits":[0],"x":-3709.27,"y":-7173.96},{"nodes":[8248,48079,60014,38474],"orbits":[7,2],"x":-3702.66,"y":-823.68},{"nodes":[8737],"orbits":[0],"x":-3697.15,"y":-7461.02},{"nodes":[53108],"orbits":[0],"x":-2366.0430451617,"y":15879.830574792},{"nodes":[35265],"orbits":[0],"x":-3657.51,"y":6318.1},{"nodes":[36728],"orbits":[0],"x":-2329.8730451617,"y":14628.780574792},{"nodes":[25927],"orbits":[0],"x":-3622.31,"y":-7106.13},{"nodes":[20637,25570,21549,37694,44560,64083,27572,12940],"orbits":[0,2,3,4,7],"x":-3604.52,"y":-11358.09},{"nodes":[62122,6748,37327,34248,48618,4295],"orbits":[0,3,7],"x":-3593.46,"y":-8544.35},{"nodes":[34840],"orbits":[0],"x":-3593.46,"y":-7995.13},{"nodes":[33601,5692,35708,41154,2863],"orbits":[0,2],"x":-3556.93,"y":-337.58},{"nodes":[23364,33781,65493,43854,48614,9018,35918],"orbits":[0,3,7],"x":-3555.35,"y":-3914.61},{"nodes":[52038],"orbits":[0],"x":-3550.74,"y":-3918.97},{"nodes":[36822],"orbits":[0],"x":-2229.6330451617,"y":15370.790574792},{"nodes":[2511,19802,64399],"orbits":[1,2,3],"x":-3517.31,"y":5116.13},{"nodes":[2071,37543,38420,16647],"orbits":[0,2],"x":-3516.49,"y":-3235.91},{"nodes":[33397,51248,53294,38292,39594],"orbits":[0,2],"x":-3498.41,"y":321.55},{"nodes":[44733],"orbits":[2],"x":-3497.77,"y":-6221.4},{"nodes":[49363],"orbits":[0],"x":-3496.22,"y":-6579.23},{"nodes":[49550,61935,55746,4624],"orbits":[0,7],"x":-3484.73,"y":4125.9},{"nodes":[43842,5695,32309,59070,28092,17061,31773,55011],"orbits":[0,3,7],"x":-3480.21,"y":-9844.83},{"nodes":[26697],"orbits":[0],"x":-3462.24,"y":12165.79},{"nodes":[41511],"orbits":[0],"x":-3445.11,"y":-7610.06},{"nodes":[62661],"orbits":[0],"x":-3443.04,"y":-4769.59},{"nodes":[1433],"orbits":[6],"x":-3428.17,"y":-7186.71},{"nodes":[35284,3921,38398,31898,7473,2211,8154],"orbits":[0,7],"x":-3422.22,"y":11010.67},{"nodes":[12786],"orbits":[0],"x":-3421.76,"y":-1975.64},{"nodes":[15374,48035,54676,39759,11329],"orbits":[0,2],"x":-3410.15,"y":7031.06},{"nodes":[52746,9796,62310,54148,36325,56934],"orbits":[0,2,4,7],"x":-3408.23,"y":9916.18},{"nodes":[58591],"orbits":[0],"x":-2093.2330451617,"y":14861.740574792},{"nodes":[37612],"orbits":[0],"x":-3366.12,"y":7490.9},{"nodes":[8531,24483,32660,8631,59256,51534,46760],"orbits":[0,2,3],"x":-3360.01,"y":-4893.8},{"nodes":[37963,15855,59263,61441,54138],"orbits":[2,3,4,5,6],"x":-3314.67,"y":11934.56},{"nodes":[64223],"orbits":[0],"x":5660.4216959661,"y":-14377.641217109},{"nodes":[9762,10783,38564,20091],"orbits":[2,3,5,6],"x":-3296.49,"y":11927.97},{"nodes":[51299],"orbits":[2],"x":-3292.33,"y":5858.65},{"nodes":[46060,29788,44419,7251,29270,7488],"orbits":[0,7],"x":-3285.98,"y":4891.42},{"nodes":[17655,64299,50558,12462,18465,39540,36602,6744,49357,32194,58651,5777,44951,37629,55933],"orbits":[2,3,4,6],"x":-3281.46,"y":-1894.64},{"nodes":[25011,60404,20691,41739],"orbits":[0,2],"x":-3244.97,"y":8358.66},{"nodes":[60191,54985,14602,42737],"orbits":[7],"x":-3244.55,"y":7079.31},{"nodes":[47168],"orbits":[0],"x":-3225.69,"y":-10395.75},{"nodes":[38235,34671,61934,24477,17532,48418],"orbits":[0,2],"x":-3224.09,"y":7913.29},{"nodes":[57373],"orbits":[0],"x":-3215.37,"y":-6401.48},{"nodes":[25303],"orbits":[0],"x":-3196.2,"y":-8995.5},{"nodes":[39935],"orbits":[0],"x":-3184.23,"y":-9385.96},{"nodes":[38323],"orbits":[0],"x":-3154.84,"y":556.13},{"nodes":[48305],"orbits":[0],"x":-3144.84,"y":-551.55},{"nodes":[4956],"orbits":[0],"x":-3121.95,"y":-1268.74},{"nodes":[35560],"orbits":[0],"x":-3116.51,"y":-7680.34},{"nodes":[22045,63209,30704,13505],"orbits":[0,2],"x":-3115.35,"y":-1267.96},{"nodes":[30979],"orbits":[0],"x":-3109.62,"y":-5381.56},{"nodes":[30265],"orbits":[0],"x":5882.2416959661,"y":-15234.651217109},{"nodes":[4407],"orbits":[0],"x":-3069.12,"y":-8364.27},{"nodes":[64327,18629,39517,49391,36629,44659,62732,53373,64192,18742],"orbits":[0,3,4,5],"x":-3067.29,"y":2529.2},{"nodes":[43366],"orbits":[0],"x":-3061.21,"y":-8608.16},{"nodes":[15194],"orbits":[0],"x":-3049.19,"y":-8762.37},{"nodes":[34747,24753,56567,151,6274],"orbits":[0,7],"x":-3044.02,"y":6253.4},{"nodes":[33618,12610,4873,12683,61974,39990,20718,13294],"orbits":[1,2,7],"x":-2999.63,"y":-5834.98},{"nodes":[43895,13562],"orbits":[7],"x":-2998.56,"y":4483.94},{"nodes":[23650,56616,41415],"orbits":[0,2],"x":-2977.66,"y":4483.94},{"nodes":[30219,45177,39732],"orbits":[1,2],"x":-2974.98,"y":3611.49},{"nodes":[29148],"orbits":[0],"x":-2904.82,"y":-7995.13},{"nodes":[38300],"orbits":[0],"x":-2893.96,"y":-6643.12},{"nodes":[17517,13233,19873],"orbits":[0,7],"x":-2880.6,"y":-1668.56},{"nodes":[44344],"orbits":[0],"x":-2864.23,"y":-9385.96},{"nodes":[27726,32416,6529],"orbits":[2],"x":-2851.04,"y":1645.22},{"nodes":[8406,6015,35426],"orbits":[6,3],"x":-2849.6,"y":0.53},{"nodes":[2606,21606,20388],"orbits":[1,2,3],"x":-2824.48,"y":-8749.27},{"nodes":[64471],"orbits":[4],"x":-2808.97,"y":10498.42},{"nodes":[45824],"orbits":[0],"x":-2787.46,"y":11060.96},{"nodes":[6898],"orbits":[0],"x":-2774.37,"y":-1070.72},{"nodes":[3282,58817,53607,37302,52860,45494,40975,24368,40597],"orbits":[0,3,4,7],"x":-2756.41,"y":10024.89},{"nodes":[65016,21206,6752,7378,968,45899,54911,31326,39716,44092,11505],"orbits":[0,2,3],"x":-2750.44,"y":-7108.15},{"nodes":[14575],"orbits":[0],"x":-2730.42,"y":-9028.75},{"nodes":[41147,23797,31370,32448],"orbits":[2],"x":-2702.07,"y":8329.01},{"nodes":[56090,59136,17729,56466],"orbits":[0,2,3,7],"x":-2701.66,"y":-4273.5},{"nodes":[55412,22538,64659,25211,11330,22185,17796,12412,3355],"orbits":[1,2,3],"x":-2697.32,"y":-11149},{"nodes":[38105,49455,13537,44299,6006,23939,59425,2508,51797,22141,857,58789,46275,13307,26614,3894],"orbits":[0,4,7],"x":-2697.32,"y":-10245.46},{"nodes":[63469,57967,50216,30834],"orbits":[0,2],"x":-2656.19,"y":-2063.25},{"nodes":[56857,10561,43426,45602,23265,25653,36109,64591,25683,14131,46091,2810,20701,36891,32705,13289,34207,35880,9843,8305],"orbits":[2,3,4,5,6,7,9,8],"x":6319.3716959661,"y":-14679.541217109},{"nodes":[5101,64690,35558,46726],"orbits":[0,3,7],"x":-2648.97,"y":-4970.63},{"nodes":[3414],"orbits":[0],"x":-2625.49,"y":-8808.47},{"nodes":[23227,39564,3516],"orbits":[4,7],"x":-2620.07,"y":7375.23},{"nodes":[38663,49618,62039],"orbits":[0,7],"x":-2620.07,"y":7379.36},{"nodes":[55348],"orbits":[0],"x":-2620.07,"y":7389.42},{"nodes":[13279],"orbits":[0],"x":-2620.07,"y":7921.63},{"nodes":[47284],"orbits":[0],"x":-2588.8,"y":-8604.12},{"nodes":[1865,54934,15494,43584],"orbits":[0,2],"x":-2568.32,"y":3948.16},{"nodes":[8493],"orbits":[0],"x":-2554.96,"y":10828.42},{"nodes":[42177,5049,43183,11153,49231],"orbits":[0,7],"x":-2553.76,"y":5504.65},{"nodes":[41838,38103,25429,34084],"orbits":[1,2,7],"x":-2541.03,"y":-1462.22},{"nodes":[3332],"orbits":[0],"x":-2530.04,"y":-8376.52},{"nodes":[53396,64370,45923,52319],"orbits":[6],"x":-2522.24,"y":-1450.05},{"nodes":[51921],"orbits":[6],"x":-2502.19,"y":3479.47},{"nodes":[5920,52574,55478,48006,33604],"orbits":[0,2,7],"x":-2481,"y":3401.68},{"nodes":[32523],"orbits":[0],"x":-2460.75,"y":-3489.54},{"nodes":[58930,52429,6294,4847,14934,858,58387,52454,46604,2138,1546,38827,31890,25745,21081],"orbits":[2,3,4,5,7],"x":-2457.53,"y":-3479.87},{"nodes":[35745,12601,483,50908],"orbits":[0,2],"x":-2431.32,"y":-2692.66},{"nodes":[27992],"orbits":[0],"x":-2415.33,"y":11530.75},{"nodes":[23373,23428,47623,53895,17026,17303,38570],"orbits":[2,3,7],"x":-2399.07,"y":11558.76},{"nodes":[5710,14923,46325,33556,55473,43164,1207,13397,39581,6839],"orbits":[0,4,7],"x":-2393.09,"y":1033.71},{"nodes":[61042],"orbits":[0],"x":-2364.29,"y":-8977.68},{"nodes":[11679],"orbits":[0],"x":-2364.29,"y":-7995.11},{"nodes":[54453,19006,39461,229,46365],"orbits":[0,2],"x":-2362.28,"y":-9378.04},{"nodes":[38856],"orbits":[6],"x":-2351.05,"y":-3487.38},{"nodes":[28950],"orbits":[0],"x":-2308.21,"y":-1862.64},{"nodes":[46358,50423,59376],"orbits":[6],"x":-2291.85,"y":-4007.49},{"nodes":[39207,33518,37519,17045,32564,63579,55131],"orbits":[0,4,7],"x":-2289.79,"y":8432.25},{"nodes":[19240],"orbits":[0],"x":-2241.38,"y":-4242.75},{"nodes":[13241],"orbits":[6],"x":-2221.54,"y":3539.9},{"nodes":[56783],"orbits":[0],"x":6756.5616959661,"y":-15234.651217109},{"nodes":[53589],"orbits":[0],"x":-2199.44,"y":3805.96},{"nodes":[17584,28446,12430,61067,1143,58170],"orbits":[2],"x":-2188.85,"y":-968.66},{"nodes":[28718],"orbits":[0],"x":-2187.5,"y":-962.97},{"nodes":[54521],"orbits":[0],"x":-2171.82,"y":-10395.75},{"nodes":[48670],"orbits":[6],"x":-2134.26,"y":3688.8},{"nodes":[6714,5066,51788,42583,10499],"orbits":[2],"x":-2097.34,"y":4206.32},{"nodes":[1913,4665,61534,7721,64683,41031,23570,36709,63393],"orbits":[0,4,7],"x":-2092.78,"y":1554.69},{"nodes":[10772,21468,2119,39274,53505],"orbits":[0,2,3],"x":-2087.68,"y":7594.08},{"nodes":[38430],"orbits":[0],"x":-2087.37,"y":4208.07},{"nodes":[2864],"orbits":[0],"x":-2086.96,"y":8229.42},{"nodes":[48581,15969,41129,24338,15838,33242,13387],"orbits":[3,4,5,6],"x":-2076.24,"y":-4701.25},{"nodes":[1543,14096,44293],"orbits":[1,2],"x":-2074.7,"y":-4534.37},{"nodes":[54232],"orbits":[0],"x":-2059.23,"y":2453.77},{"nodes":[44372,25829,57791,52229],"orbits":[0,2],"x":-2012.26,"y":-7643.07},{"nodes":[41646],"orbits":[0],"x":-2012.03,"y":4519.75},{"nodes":[28860,56104,14091,23993,8115,36449,42981,52684],"orbits":[1,2,3,4,7],"x":-2012.03,"y":4750.59},{"nodes":[58674,17867,37092,55817],"orbits":[7],"x":-1966.11,"y":4165.53},{"nodes":[2397,54437,16111,5324,46268],"orbits":[0,7],"x":-1955.87,"y":11130.6},{"nodes":[43791,53320,16385,41651,5098],"orbits":[2,3],"x":-1945.48,"y":5858.53},{"nodes":[20119,18160,15809,26945,31175,22783,30720,54036,17501,18485],"orbits":[0,2,3,7],"x":-1940.55,"y":-8386.27},{"nodes":[50626,32597,12777,3918,54708,59695],"orbits":[2],"x":-1927.77,"y":-1422.19},{"nodes":[44948],"orbits":[0],"x":-1923.59,"y":-1417.27},{"nodes":[7424,27491,1823,36994,29432,4061,3471,34531,25363,44098],"orbits":[0,4,7],"x":-1909.32,"y":-6475.67},{"nodes":[3041,47555,53697,10156,59795],"orbits":[3,5,6],"x":-1892.34,"y":-3294.04},{"nodes":[13942,65023,18186,6626,32354,34433,24009,46475,16744,4716,24748],"orbits":[0,2,3,4],"x":-1863.48,"y":6665.33},{"nodes":[3685,55700,44983,32151],"orbits":[2,4,7],"x":-1788.73,"y":10569},{"nodes":[7628],"orbits":[6],"x":-1769.02,"y":3906.89},{"nodes":[33369],"orbits":[0],"x":-1760.47,"y":8417.92},{"nodes":[61170,25763,27186,62963],"orbits":[1,2,7],"x":-1731.48,"y":-9989.29},{"nodes":[43647,32727,53524,32507,12851,57555,52973,37608],"orbits":[0,2,4,7],"x":-1682.34,"y":-9147.25},{"nodes":[3999,9737,59480,36522,37665,4577,42410,24813,20397,35739,26356,15590,57863,8556],"orbits":[0,4,7],"x":-1653.23,"y":9760.91},{"nodes":[56388,21096,57616,63360,18801,62258,11752,62455],"orbits":[0,4,5,7],"x":-1626.68,"y":7851.58},{"nodes":[1220],"orbits":[0],"x":-1614.94,"y":-5019.94},{"nodes":[6655],"orbits":[2],"x":-1610.62,"y":8920.12},{"nodes":[35015],"orbits":[0],"x":-1587.62,"y":8880.27},{"nodes":[36286,14033,41130,34553,8397],"orbits":[1,2,7],"x":-1573.72,"y":-4956.19},{"nodes":[15885],"orbits":[0],"x":-1545.44,"y":-7995.13},{"nodes":[47796,62640,38501,27108,24880,17294,27501,19330,45916,34340,16168,45969,25374],"orbits":[2,4,5,6],"x":-1533.68,"y":2648.54},{"nodes":[50084],"orbits":[0],"x":-1527.89,"y":-734.8},{"nodes":[3936],"orbits":[0],"x":-1525.89,"y":733.41},{"nodes":[35720,7258,11861,3281],"orbits":[0,7],"x":-1513.28,"y":-2332.55},{"nodes":[58718],"orbits":[0],"x":-1482.46,"y":8698.1},{"nodes":[53853,36170,28693,49280,57320],"orbits":[0,2,7],"x":-1456.07,"y":3778.76},{"nodes":[45497],"orbits":[0],"x":-1446.33,"y":-10165.59},{"nodes":[17057,22784,17025,13515,14601],"orbits":[1,2,7],"x":-1446.33,"y":-9722.75},{"nodes":[34058],"orbits":[0],"x":-1432.94,"y":-4703.73},{"nodes":[40336],"orbits":[0],"x":-1410.85,"y":8880.27},{"nodes":[38646],"orbits":[0],"x":-1397.89,"y":957.2},{"nodes":[13855],"orbits":[0],"x":-1396.89,"y":-954.59},{"nodes":[42680],"orbits":[0],"x":-1385.44,"y":-8272.26},{"nodes":[54099],"orbits":[0],"x":-1367.15,"y":10828.42},{"nodes":[17150,23888,29399,7390,53647,51446,19750],"orbits":[0,3],"x":-1367.15,"y":11595},{"nodes":[44707,32885,54785,51735,6689,45599],"orbits":[0,2,4,7],"x":-1349.52,"y":4972.79},{"nodes":[36358,19112,12367,3492,60313,56956,54632,36507],"orbits":[0,2,3],"x":-1346.98,"y":-7376.61},{"nodes":[8349,56564,42077,31644,49235,14739,2102],"orbits":[0,2],"x":-1322.31,"y":-4290.85},{"nodes":[39886],"orbits":[0],"x":-1309.39,"y":-3298.79},{"nodes":[65322],"orbits":[0],"x":-1305.68,"y":8391.66},{"nodes":[47709],"orbits":[0],"x":-1305.68,"y":8698.1},{"nodes":[47175],"orbits":[0],"x":-1271.19,"y":733.1},{"nodes":[61525],"orbits":[0],"x":-1245.18,"y":-728.9},{"nodes":[23450,558,23091,63021,11366,39515,39228,62603,19715,46300,52774,57832,34290,5084,35324,34927],"orbits":[0,2,3,4,5],"x":-1221.99,"y":-11452.46},{"nodes":[63814],"orbits":[0],"x":-1200.68,"y":8879.97},{"nodes":[54818],"orbits":[0],"x":-1170.69,"y":8229.42},{"nodes":[47157,516,7201,61347,64488,48215],"orbits":[0,7],"x":-1169.57,"y":7550.25},{"nodes":[13333,1091,1700,48699],"orbits":[1,2,7],"x":-1161.05,"y":-9989.29},{"nodes":[13425],"orbits":[0],"x":-1137.16,"y":8698.1},{"nodes":[28492],"orbits":[0],"x":-1099.85,"y":11095.71},{"nodes":[45885],"orbits":[0],"x":-1051.9,"y":-10395.75},{"nodes":[40043,9857,55231,37361,54990],"orbits":[1,2,7],"x":-1048.42,"y":4248.9},{"nodes":[315],"orbits":[0],"x":-1032.12,"y":8879.97},{"nodes":[33216],"orbits":[2],"x":-1009.12,"y":8919.8},{"nodes":[18086,32427,62844,24655,42127,41573,4456,14363,61338,4776,7333],"orbits":[0,2,3,4],"x":-949.03,"y":-5546.35},{"nodes":[46343],"orbits":[0],"x":-767.04,"y":5189.25},{"nodes":[18407],"orbits":[0],"x":-752.96,"y":-2537.92},{"nodes":[10398,3472,56640,26682],"orbits":[7],"x":-691.9,"y":-7030.08},{"nodes":[13359,8382,61863,42045,50535,10612,31943],"orbits":[2,3],"x":-683.96,"y":-10841},{"nodes":[18158],"orbits":[0],"x":-9473.5114156951,"y":-13344.137033218},{"nodes":[58714,29514,21077,3109,36169,354,48429,52274,39431],"orbits":[0,3,4],"x":-617.1,"y":6556.71},{"nodes":[13882],"orbits":[0],"x":-616.96,"y":-7619.15},{"nodes":[49512],"orbits":[0],"x":-613.84,"y":-7995.13},{"nodes":[22439,44498,25101,52199,43139,65248,39752,56409,38068,5936],"orbits":[0,3,4],"x":-612.8,"y":-8637.76},{"nodes":[51194,24060,3091,18793,33639,24087,8782],"orbits":[7,2],"x":-611.91,"y":-7670.28},{"nodes":[15182],"orbits":[0],"x":-593.45,"y":8229.42},{"nodes":[52003],"orbits":[2],"x":-509.65,"y":-10901.37},{"nodes":[38270,23724,7275,29402,4046,8875,50687],"orbits":[1,2,3,4,7],"x":-484.77,"y":9710.46},{"nodes":[63484],"orbits":[0],"x":-9304.0614156951,"y":-13507.497033218},{"nodes":[22821,22314],"orbits":[0,7],"x":-478.3,"y":-3316.19},{"nodes":[51184],"orbits":[0],"x":-478.3,"y":-3030.38},{"nodes":[3823,60230,51968,51335,64046,45522,5726,58362,10192,55909],"orbits":[0,1,3,4,5,7],"x":-478.24,"y":-3752.19},{"nodes":[56935],"orbits":[0],"x":-478.02,"y":-4703.73},{"nodes":[22419],"orbits":[0],"x":-478.01,"y":-2158.22},{"nodes":[55066,19796,15899,18308,21721,21627,9290,19129,62194],"orbits":[2,3,4,7],"x":-477.54,"y":10441.93},{"nodes":[7049,25711,31566,24766,22556,11257,10271,58038,35028,51974],"orbits":[0,2,3],"x":-466.62,"y":8827.24},{"nodes":[50383],"orbits":[0],"x":-458.18,"y":-9486.35},{"nodes":[29391,50715,61354,29800],"orbits":[2,3,7],"x":-429.99,"y":-9489.3},{"nodes":[47363,13708,9164,25513,51825,47856,32561],"orbits":[2,3,4,5,6],"x":-420.12,"y":4842.33},{"nodes":[62588],"orbits":[0],"x":-405.01,"y":3700.21},{"nodes":[14997],"orbits":[0],"x":-376.02,"y":4798.23},{"nodes":[55807,6686,1922,41965,1755,18845],"orbits":[0,2,7],"x":-374.23,"y":-2574.13},{"nodes":[32976,34202,14428,49285,6287,38776,57816,364],"orbits":[1,2,3,4,7],"x":-344.33,"y":11065.56},{"nodes":[36564,17754,24039,46644,18348,25239,61267,13174,34419,19482,39470,770,46016,8854,7793,64379,63894,23880,24135,32699],"orbits":[6,5,9,8],"x":-9132.2814156951,"y":-12579.507033218},{"nodes":[53975,55104,33254,19125],"orbits":[1,2,7],"x":-296.21,"y":-5775.53},{"nodes":[28510,61438,42350],"orbits":[6],"x":-262.23,"y":3156.44},{"nodes":[5407],"orbits":[0],"x":-257.48,"y":2491.06},{"nodes":[934,9825,12526],"orbits":[4,3],"x":-248.37,"y":7972.75},{"nodes":[44605,2455,48588,13081],"orbits":[5],"x":-203.43,"y":2592.67},{"nodes":[57039,14572,11037],"orbits":[3],"x":-152.71,"y":3700.23},{"nodes":[29328,43201,43383,37450],"orbits":[4],"x":-150.31,"y":3572.61},{"nodes":[59779],"orbits":[0],"x":-133.15,"y":1690.41},null,{"nodes":[35492,30523,11376,50720,34199,43557],"orbits":[1,3,4,5,7],"x":-73.93,"y":-9897.76},{"nodes":[44871],"orbits":[3],"x":-30.93,"y":-1405.7},{"nodes":[46819],"orbits":[0],"x":-0.88,"y":-7031.82},{"nodes":[59362],"orbits":[0],"x":0,"y":-10395.75},{"nodes":[29009],"orbits":[0],"x":0,"y":-9772.2},{"nodes":[5314],"orbits":[4],"x":0,"y":-9671.2},{"nodes":[61419],"orbits":[0],"x":0,"y":-7995.13},{"nodes":[8616],"orbits":[0],"x":0,"y":-5955.17},{"nodes":[57710],"orbits":[6],"x":0,"y":-4700.35},{"nodes":[22290,5501,48821,15618,32404],"orbits":[0,2,3],"x":0,"y":-4439.9},{"nodes":[29502,47307,36302,3242,13769,59636,48007],"orbits":[0,2,7],"x":0,"y":-3031.45},{"nodes":[54447],"orbits":[0],"x":0,"y":-1490.58},{"nodes":[52125],"orbits":[0],"x":0.13,"y":10105.93},{"nodes":[2847],"orbits":[0],"x":0.13,"y":10828.42},{"nodes":[11337,29369,23427,47270,52799,60515,44455,19955,62914,41669,55250,56649,41972,17380],"orbits":[0,1,3,4],"x":0.44,"y":-11452.46},{"nodes":[54417,49657],"orbits":[6],"x":1.25,"y":3822.38},{"nodes":[10247,28370],"orbits":[6],"x":1.63,"y":3822.38},{"nodes":[50986],"orbits":[0],"x":1.95,"y":1469.82},{"nodes":[52442,14254,97],"orbits":[2],"x":1.95,"y":2418.36},{"nodes":[47150,38779,44836],"orbits":[2],"x":1.95,"y":2829.7},{"nodes":[48635],"orbits":[0],"x":1.95,"y":6250.78},{"nodes":[21755],"orbits":[0],"x":1.95,"y":7013.94},{"nodes":[57805,43444,7788],"orbits":[4,7],"x":3.72,"y":5712},{"nodes":[38003,28361,47782],"orbits":[4,7],"x":4.1,"y":5712},{"nodes":[40691,36746,25893,51169,43576,14324,1468,7971],"orbits":[2,3,4,7],"x":5.06,"y":-6484.35},{"nodes":[63526],"orbits":[0],"x":6.24,"y":5223.21},{"nodes":[44176,16618,10273,49696,42280,24511,45272,21205,57047,35688,38138,45278,4492],"orbits":[0,5,7],"x":7.01,"y":11943.01},{"nodes":[54127],"orbits":[0],"x":8.31,"y":8229.42},{"nodes":[54282],"orbits":[3],"x":8.31,"y":9742.42},{"nodes":[4739],"orbits":[3],"x":28.94,"y":-1404.7},{"nodes":[59915],"orbits":[0],"x":136.86,"y":1689.33},{"nodes":[41210,43578,59028,8092],"orbits":[4],"x":150.01,"y":3572.63},{"nodes":[50609,14926,11916],"orbits":[3],"x":151.5,"y":3700.21},{"nodes":[11311,38057,34061,56910],"orbits":[5],"x":225.42,"y":2596.07},{"nodes":[16538,9217,61281,47733,5108,44330],"orbits":[0,2,3],"x":260.71,"y":6565.73},{"nodes":[10694],"orbits":[0],"x":-8561.6214156951,"y":-13001.437033218},{"nodes":[7741,42500,59881],"orbits":[6],"x":262.02,"y":3155.84},{"nodes":[17340,40341,62051],"orbits":[4,3],"x":265.15,"y":7972.57},{"nodes":[2461],"orbits":[0],"x":273.71,"y":2491.06},{"nodes":[26648,22565,17994,24256,63541],"orbits":[2],"x":337.58,"y":10423.74},{"nodes":[30346,34006,15408,29695,43736,6338],"orbits":[0,2,7],"x":371.9,"y":-2574.13},{"nodes":[1477],"orbits":[0],"x":407.71,"y":3700.23},{"nodes":[4017,12918,26447,10079,49633],"orbits":[0,2],"x":415.74,"y":-9265.2},{"nodes":[517],"orbits":[0],"x":419.3,"y":-4284.19},{"nodes":[45570,43713,3051,35602,27009,30459],"orbits":[0,1,2,7],"x":452.02,"y":-9772.2},{"nodes":[56216],"orbits":[0],"x":472.38,"y":-2158.22},{"nodes":[39037],"orbits":[0],"x":486.61,"y":-4703.51},{"nodes":[14666,9642,17973,4748,61027],"orbits":[0,3,7],"x":486.99,"y":-3752.19},{"nodes":[2254],"orbits":[0],"x":486.99,"y":-3030.38},{"nodes":[4113,36782,55572,44179],"orbits":[0,7],"x":494.7,"y":-8434.59},{"nodes":[1151,4627,57626],"orbits":[7],"x":494.7,"y":-8404.42},{"nodes":[3025],"orbits":[0],"x":497.14,"y":-7995.13},{"nodes":[34030,42614,25594,13634,47441,61992],"orbits":[0,1,2,7],"x":497.14,"y":-7601.82},{"nodes":[44765,22533,11066,26663,32233],"orbits":[0,2,3,7],"x":502.65,"y":8723.77},{"nodes":[58090,13542,48774,34367,21540,27658,44850],"orbits":[0,7],"x":533.4,"y":-5930.42},{"nodes":[45576,51944,55060,43829,49406,47683,51728,33037,6505],"orbits":[0,2,3,4,5,7],"x":541.38,"y":9564.7},{"nodes":[13909,31037,34866,40985,62679],"orbits":[2],"x":545.48,"y":-7039.3},{"nodes":[22691],"orbits":[0],"x":552.41,"y":-4284.19},{"nodes":[56978],"orbits":[0],"x":610.22,"y":8229.3},{"nodes":[8872],"orbits":[0],"x":615.53,"y":5034.86},{"nodes":[63267,65424,4377,45488,50273,47893,57774,2394,3131],"orbits":[0,2,3],"x":615.53,"y":5034.86},{"nodes":[34813,7218,62505,32436,60203,472,3744,5332],"orbits":[1,2,3,4,7],"x":624.45,"y":11228.41},null,{"nodes":[15984],"orbits":[0],"x":712.02,"y":-10905.77},{"nodes":[50150,11873,37279,41159,27434,51234,15991],"orbits":[2,3],"x":722.97,"y":-10830.71},{"nodes":[19223,25213,37872,21871,51847,33974,31189,64665,26194,53166,28863],"orbits":[0,4,7],"x":729.71,"y":7013.94},{"nodes":[9485],"orbits":[0],"x":756.52,"y":-2537.92},{"nodes":[46124,63009,37593,63739],"orbits":[0,2,7],"x":784.17,"y":-5269.44},{"nodes":[15083],"orbits":[0],"x":905.73,"y":-11253.83},{"nodes":[25619,42354,57196,23702,43562,3660,63445,59501],"orbits":[0,2,3],"x":924.86,"y":10235.46},{"nodes":[35653],"orbits":[0],"x":940.85,"y":11379.02},{"nodes":[58109],"orbits":[0],"x":1010.78,"y":4639.54},{"nodes":[22271],"orbits":[0],"x":1029.73,"y":-11468.6},{"nodes":[40783],"orbits":[0],"x":1061.08,"y":-5546.35},{"nodes":[38732],"orbits":[0],"x":1063.41,"y":-7995.13},{"nodes":[17107],"orbits":[0],"x":1069.2,"y":-7546.83},{"nodes":[40345,42290,52254,37991],"orbits":[7],"x":1070.74,"y":-9412.83},{"nodes":[50540],"orbits":[0],"x":1073.28,"y":-9540.92},{"nodes":[17711],"orbits":[0],"x":1074.78,"y":-6113.73},{"nodes":[36639,32009,36814,16499],"orbits":[7],"x":1075.8,"y":-9669},{"nodes":[60685],"orbits":[0],"x":1089.99,"y":-3001.45},{"nodes":[18651],"orbits":[0],"x":1129.94,"y":-11238.26},{"nodes":[55554],"orbits":[0],"x":1139.73,"y":-11659.12},{"nodes":[27853,59289,3365,52576,64550,22532],"orbits":[2,7],"x":1152.97,"y":4158.69},{"nodes":[33180,11788,14355,60269,8483,46989,6588],"orbits":[0,7],"x":1162.02,"y":-6821.54},{"nodes":[55802],"orbits":[0],"x":1168.66,"y":10828.42},{"nodes":[3717],"orbits":[0],"x":1168.66,"y":11146.25},{"nodes":[60488],"orbits":[0],"x":1170.11,"y":4170.02},{"nodes":[21274],"orbits":[0],"x":1188.06,"y":8229.3},{"nodes":[57190,27859,38694,38763,22188],"orbits":[1,7],"x":1188.06,"y":8669.63},{"nodes":[62677],"orbits":[0],"x":1235.03,"y":-10395.55},{"nodes":[26905],"orbits":[3],"x":1247.13,"y":-11855.75},{"nodes":[11736,8821,28975],"orbits":[3,4,6],"x":1249.73,"y":-11514.66},{"nodes":[44683],"orbits":[0],"x":1270.43,"y":-728.84},{"nodes":[50459],"orbits":[0],"x":1274.68,"y":735.85},{"nodes":[1826],"orbits":[0],"x":1308.1,"y":-3294.7},{"nodes":[44566],"orbits":[0],"x":1353.57,"y":9646.22},{"nodes":[65468],"orbits":[0],"x":1366.53,"y":11380.85},{"nodes":[63863,27785],"orbits":[0,7],"x":1367.44,"y":-11645.12},{"nodes":[36293,55708],"orbits":[0,7],"x":1381.34,"y":-11239.64},{"nodes":[13828],"orbits":[0],"x":1402.97,"y":958.27},{"nodes":[48030,6715,62436,116,3215,41372,44359],"orbits":[0,7],"x":1423.72,"y":-4183.63},{"nodes":[47759],"orbits":[0],"x":1436.89,"y":-10147.25},{"nodes":[3995,12311,64119,18115,48856,17882,33596],"orbits":[0,7],"x":1450.76,"y":7777.63},{"nodes":[53996,17686,43575,41512],"orbits":[7],"x":1474.81,"y":3454.96},{"nodes":[42736],"orbits":[0],"x":1484.79,"y":-2826.54},{"nodes":[60741,49804,6950,24035,33922],"orbits":[2],"x":1505.67,"y":-5546.35},{"nodes":[10909,16489,28556],"orbits":[6,3],"x":1516.21,"y":2614.41},{"nodes":[56651],"orbits":[0],"x":1535.77,"y":727.98},{"nodes":[19998],"orbits":[0],"x":1559.69,"y":11253.56},{"nodes":[11672],"orbits":[0],"x":1563.03,"y":-4703.51},{"nodes":[2486,19341,56118,61487,36596,8440,63732,45013,58884],"orbits":[0,1,3,4,7],"x":1573.91,"y":5379.88},{"nodes":[48401,15507,1140],"orbits":[2,3,6],"x":1574.14,"y":1708.94},{"nodes":[39116,9941,38888],"orbits":[7,3],"x":1598.81,"y":3240.19},{"nodes":[42076,46972,17706],"orbits":[0,2,7],"x":1600.36,"y":-3445.28},{"nodes":[54783],"orbits":[1],"x":1609.6,"y":-3528.07},{"nodes":[58783,37190,35855,48583,26520,35859],"orbits":[0,2],"x":1632.43,"y":4050.7},{"nodes":[48846],"orbits":[0],"x":1657.19,"y":9770.52},{"nodes":[2978],"orbits":[0],"x":1663.34,"y":10309.59},{"nodes":[6266,60085,15839,11667,1915,48617],"orbits":[1,7],"x":1670.41,"y":10295.58},{"nodes":[30117],"orbits":[0],"x":-7077.2916959661,"y":-15153.531217109},{"nodes":[25807],"orbits":[0],"x":1694.19,"y":11468.66},{"nodes":[30555],"orbits":[0],"x":1695.71,"y":-2698.11},{"nodes":[27234],"orbits":[0],"x":1713.31,"y":-4986.63},{"nodes":[4203],"orbits":[0],"x":1714.69,"y":-2969.93},{"nodes":[14340],"orbits":[0],"x":1734.98,"y":4453},{"nodes":[58939,26319,30990,44608],"orbits":[0,2],"x":1737.77,"y":4778},{"nodes":[2732,65393,52241,58115,94,16790],"orbits":[1,2,7],"x":1746.18,"y":-5035.12},{"nodes":[49691,31409,50437,32274,61106,59653,35987],"orbits":[0,2,4,7],"x":1759.97,"y":1320.44},{"nodes":[48551],"orbits":[0],"x":-7001.4816959661,"y":-14067.501217109},{"nodes":[15876,7947,26061,4579],"orbits":[2],"x":1776.09,"y":-10680.12},{"nodes":[17672],"orbits":[0],"x":1797.54,"y":-7995.13},{"nodes":[11230],"orbits":[0],"x":1797.54,"y":-7675.13},{"nodes":[48290,49088,47155,55180,17394,45530,3443,63545],"orbits":[0,2,3,7],"x":1798.44,"y":-7166.71},{"nodes":[20140],"orbits":[0],"x":1800.67,"y":-8634.27},{"nodes":[20861,8522,26236,38069,45350,338,24491,3438,18856],"orbits":[1,2,3,4,7],"x":1802.15,"y":-8810.16},{"nodes":[7576,33866,10364,42857,20024,44223,55342,17248,10429,49220],"orbits":[0,1,2,4,5,7],"x":1821.35,"y":-1202.94},{"nodes":[39298],"orbits":[0],"x":1824.91,"y":8228.37},{"nodes":[10998,9736,61396,61318,2843,1019,45037,21438,62235],"orbits":[0,2,3,4,5,7],"x":1826.63,"y":8513.85},{"nodes":[7062,16680,48137,33887,43155,31763,33415,6178],"orbits":[4],"x":1857.66,"y":11423.83},{"nodes":[64726,19573,17553,46296,38479,19342,27493],"orbits":[1,2,3,4,7],"x":1899.93,"y":6744.84},{"nodes":[53683],"orbits":[0],"x":1904.34,"y":11524.96},{"nodes":[44430],"orbits":[0],"x":1949.13,"y":11357.83},{"nodes":[44343,55276,52980,17366,18970,29361,11938,39964,1215,48198],"orbits":[0,1,2,4,5,7],"x":1958.85,"y":-978.15},{"nodes":[33225],"orbits":[0],"x":1960.52,"y":-9606.62},{"nodes":[21779,9185,40760,60107,57204,47833],"orbits":[0,2],"x":1986.68,"y":-4242.81},{"nodes":[19779,63891,63074,42999,4925],"orbits":[1,2,3],"x":1999.54,"y":-11112.83},{"nodes":[35660,18548,62628,4313,35234,6789,28992],"orbits":[0,2,4,7],"x":2012.88,"y":865.02},{"nodes":[17726,11826],"orbits":[7],"x":2015.32,"y":2999.71},{"nodes":[11315],"orbits":[0],"x":2015.42,"y":9673.14},{"nodes":[64427,51892,44188,59387],"orbits":[0,2],"x":2081.9,"y":-8262.87},{"nodes":[23153,31112,56897,57785,63828,23996],"orbits":[0,7],"x":2082.55,"y":7631.77},{"nodes":[30082],"orbits":[0],"x":2092.43,"y":11575.37},{"nodes":[46554],"orbits":[0],"x":2107.3,"y":-10394.21},{"nodes":[41225,48611,4271,62887],"orbits":[0,2],"x":2107.3,"y":-9931.58},{"nodes":[47177],"orbits":[0],"x":2110.13,"y":-4703.51},{"nodes":[61768],"orbits":[0],"x":2157.18,"y":-9511.45},{"nodes":[61432],"orbits":[0],"x":2164.6,"y":11512.63},{"nodes":[56926,44255,14548,59541,10320,28573,15358,41905],"orbits":[0,2,3,7],"x":2165.23,"y":-6650.5},{"nodes":[2841,33059,39839,20205],"orbits":[0,2],"x":2192.99,"y":4717.44},{"nodes":[52703],"orbits":[0],"x":-6563.3716959661,"y":-13772.791217109},{"nodes":[48568],"orbits":[0],"x":2199.2,"y":3806.76},{"nodes":[49046],"orbits":[0],"x":2214.93,"y":-3836.38},{"nodes":[62159,59603,57110,46561],"orbits":[0,2,7],"x":2229.99,"y":-3149.3},{"nodes":[16460,43746,38143],"orbits":[2,3,6],"x":2235.52,"y":536.07},{"nodes":[57810],"orbits":[0],"x":2257.86,"y":-8717.37},{"nodes":[5961],"orbits":[0],"x":2260.4,"y":9939.27},{"nodes":[54675],"orbits":[0],"x":2281.59,"y":10332.05},{"nodes":[58329,31950,8569],"orbits":[6],"x":2292.18,"y":-3970.17},null,{"nodes":[39987,12419,18913,56063],"orbits":[0,2,3,7],"x":2317.51,"y":-5438.63},{"nodes":[40073],"orbits":[0],"x":2343.9,"y":-9085.31},{"nodes":[49993,40632,48889,28038,3893,64434,56488],"orbits":[0,2,7],"x":2372.91,"y":8504.31},{"nodes":[20744,33053,4844,50795,58013],"orbits":[1,7],"x":2377.83,"y":2986.75},{"nodes":[63926],"orbits":[0],"x":2393.91,"y":-9611.59},{"nodes":[26383,8415,26282,27667,23416,56162,65518,62388,30071,59342,47442,59822],"orbits":[6,5,9,8],"x":-6319.3716959661,"y":-14203.541217109},{"nodes":[53266],"orbits":[0],"x":2453.78,"y":-8312.45},{"nodes":[46224,24045,49799,45019],"orbits":[0,2],"x":2457.39,"y":3459.95},{"nodes":[26786,18882],"orbits":[0,5],"x":2459.2,"y":4266.46},{"nodes":[23764],"orbits":[0],"x":2459.21,"y":-3622.89},{"nodes":[5295],"orbits":[0],"x":2476.38,"y":9574.5},{"nodes":[50485,28229,8540,45230,22959],"orbits":[0,2],"x":2497.88,"y":-5053.36},{"nodes":[19288],"orbits":[0],"x":2503.68,"y":7415.67},{"nodes":[38814],"orbits":[0],"x":2503.68,"y":7792.67},{"nodes":[20387],"orbits":[0],"x":2504.3,"y":-8625.66},{"nodes":[63731],"orbits":[0],"x":2537.98,"y":11565.76},{"nodes":[58814],"orbits":[0],"x":2568.17,"y":10828.42},{"nodes":[29582,43923,19470,50328,10053,9458],"orbits":[0,2,3],"x":2573.06,"y":1485.46},{"nodes":[4850],"orbits":[0],"x":2577.55,"y":-4030.32},{"nodes":[11855,56999,44014,30829],"orbits":[0,2],"x":2590.36,"y":5169.65},{"nodes":[58002,55575,45086,34520,23738],"orbits":[0,2,3,7],"x":2590.88,"y":-7324.15},{"nodes":[17024],"orbits":[0],"x":2607.33,"y":-8878.62},{"nodes":[53196,12322,32135,35848,28625,46692,51509,9393],"orbits":[0,1,4,7],"x":2622.75,"y":6605.25},{"nodes":[35896],"orbits":[0],"x":2634.6,"y":-7995.13},{"nodes":[13738],"orbits":[0],"x":2641.65,"y":-9309.5},{"nodes":[52354],"orbits":[0],"x":2667.71,"y":11496.1},{"nodes":[31223],"orbits":[0],"x":-6075.3516959661,"y":-13772.791217109},{"nodes":[4157,55088,34168],"orbits":[7],"x":2694.54,"y":-2103.71},{"nodes":[53960],"orbits":[5],"x":2704.11,"y":-2329.78},{"nodes":[36479,36778,12925],"orbits":[4],"x":2724.74,"y":-2058.41},{"nodes":[61312,20831,29843,55397,44527,44875],"orbits":[0,2,4,7],"x":2727.45,"y":2024.66},{"nodes":[9020,244,41171,37767,6596,36341,35118],"orbits":[0,1,2,4,7],"x":2730.83,"y":11768.89},{"nodes":[35503],"orbits":[0],"x":2744.59,"y":-3760.9},{"nodes":[34233,14725,32545,16123],"orbits":[3,2],"x":2753.29,"y":-2001.95},{"nodes":[31745,3234,3624,10927,9272,18470,4447,12906],"orbits":[1,3,4,7],"x":2756.47,"y":5912.5},{"nodes":[19104],"orbits":[0],"x":2770.83,"y":1599.66},{"nodes":[53560],"orbits":[0],"x":2785.02,"y":-8428.64},{"nodes":[34984,12661,44917,18895,703,10552],"orbits":[0,1,7],"x":2787.39,"y":-5900.44},{"nodes":[12465,30040,56016,65149,35594,26830],"orbits":[1,2,5,7],"x":2795.71,"y":10440.37},{"nodes":[13576],"orbits":[0],"x":2802.27,"y":-8676.29},{"nodes":[64352],"orbits":[0],"x":2806.74,"y":4311.96},{"nodes":[37372],"orbits":[0],"x":2810.3,"y":-9096.02},{"nodes":[12337],"orbits":[0],"x":2880.86,"y":9533.6},{"nodes":[25281,10677,56638,53935],"orbits":[1,2],"x":2886.44,"y":-3430.12},{"nodes":[7405],"orbits":[0],"x":2886.7,"y":-4100.44},{"nodes":[48585],"orbits":[0],"x":2890.88,"y":2251.96},{"nodes":[31517,11722,62431],"orbits":[0,2],"x":2898.16,"y":-5489.12},{"nodes":[13341,56841,18451,63255],"orbits":[0,2],"x":2899.54,"y":2850.56},{"nodes":[62230,19355,37974],"orbits":[6],"x":2922.78,"y":-10114.18},{"nodes":[39567,50816,50755,10159,4828,25026,36379,31977,19044,3567,33345,10314,61923,16256,53188],"orbits":[0,1,2,3,4,5],"x":2922.78,"y":-9973.75},{"nodes":[21336,15975,62984,58182,7344,26931],"orbits":[3,2],"x":2935.56,"y":-1694.84},{"nodes":[8975],"orbits":[0],"x":2939.76,"y":-2768.08},{"nodes":[44487,45137,39884,40271],"orbits":[7],"x":2946.52,"y":4969.56},{"nodes":[44345],"orbits":[0],"x":2947.79,"y":4537.32},{"nodes":[20504,52836,56806,11980,62341],"orbits":[0,4,7],"x":2995.2,"y":8568.45},{"nodes":[46157],"orbits":[0],"x":3017.04,"y":-8315.27},{"nodes":[50516,41447,31626,59661,13610,2814,26952,12245,19749],"orbits":[1,3,7],"x":3038.31,"y":11084.54},{"nodes":[38614,25827,55241,44201,27662],"orbits":[1,2,3],"x":3049.32,"y":-6418.35},{"nodes":[37806],"orbits":[0],"x":3052.85,"y":-8723.72},{"nodes":[42250],"orbits":[0],"x":3086.31,"y":5345.94},{"nodes":[40630],"orbits":[0],"x":3105.36,"y":2128.06},{"nodes":[6772,30695,13783,56472,22795,42781],"orbits":[0,2,4,7],"x":3109.38,"y":1336.95},{"nodes":[17118],"orbits":[0],"x":3112.88,"y":7440.94},{"nodes":[20049,30252,32818,48135,12750],"orbits":[0,7],"x":3112.88,"y":7857},{"nodes":[50192],"orbits":[0],"x":-5648.4816959661,"y":-14067.501217109},{"nodes":[63064,65437,30634,54413],"orbits":[3,2],"x":3116.47,"y":-1389.24},{"nodes":[30047],"orbits":[0],"x":3144.14,"y":3080.1},{"nodes":[40068,53149,32683],"orbits":[4],"x":3145.56,"y":-1331.11},{"nodes":[56325],"orbits":[0],"x":3195.27,"y":2366.42},{"nodes":[3165],"orbits":[0],"x":-5560.9516959661,"y":-15153.501217109},{"nodes":[53965],"orbits":[0],"x":3203.89,"y":9325.66},{"nodes":[24825,34136,29479],"orbits":[5,3],"x":3203.92,"y":0.42},{"nodes":[48833],"orbits":[0],"x":3228.15,"y":4292.78},{"nodes":[57517],"orbits":[0],"x":3247.77,"y":3615.89},{"nodes":[4],"orbits":[0],"x":3249.41,"y":4552.82},{"nodes":[46034],"orbits":[0],"x":3255.08,"y":-5628.71},{"nodes":[55668],"orbits":[0],"x":3266.72,"y":-8000},{"nodes":[55420,30061,31908,5594,50107,50881],"orbits":[2],"x":3269.96,"y":-7564.13},{"nodes":[8785],"orbits":[0],"x":3272.71,"y":-7565.73},{"nodes":[29240],"orbits":[0],"x":3284.63,"y":-9003.35},{"nodes":[25170,19442,30820,8606],"orbits":[0,2,7],"x":3312.53,"y":4003.79},{"nodes":[13411],"orbits":[5],"x":3369.01,"y":-1178.15},{"nodes":[33946,34074,57227,23259,22864,57966],"orbits":[0,2,3,7],"x":3386.17,"y":9912.71},{"nodes":[16484],"orbits":[2],"x":3395.61,"y":6043.67},{"nodes":[32943,22368,47088,8789,16938,29930,63182,37266],"orbits":[0,2,4,7],"x":3395.61,"y":6863.03},{"nodes":[55429],"orbits":[0],"x":3398.9,"y":1369.34},{"nodes":[36630,60829,29941,28268],"orbits":[1,2,3],"x":3414.8,"y":3529.44},{"nodes":[19808],"orbits":[0],"x":3433.98,"y":1627.23},{"nodes":[57513],"orbits":[0],"x":3444.63,"y":-9280.49},{"nodes":[25557],"orbits":[6],"x":3446.89,"y":-7266.34},{"nodes":[21280],"orbits":[0],"x":3498.09,"y":2467.05},{"nodes":[41770,9441,5077,33080,43254,33400],"orbits":[0,2],"x":3507.9,"y":5460.57},{"nodes":[11578],"orbits":[0],"x":3512.67,"y":4752.05},{"nodes":[20837],"orbits":[0],"x":3537.82,"y":3734.46},{"nodes":[41029],"orbits":[0],"x":3541.56,"y":-6134.17},{"nodes":[28050],"orbits":[6],"x":3551.58,"y":2050.41},{"nodes":[31928,50574,19426,15443],"orbits":[0,2],"x":3553.55,"y":-5454.76},{"nodes":[5564],"orbits":[0],"x":3555.53,"y":4441.55},{"nodes":[24812,56360,64643,27176],"orbits":[0,2],"x":3563.72,"y":-3733.75},{"nodes":[36997],"orbits":[0],"x":3599.3,"y":2962.09},{"nodes":[53539,46705,45650,9572,12822],"orbits":[0,2,3],"x":3607.08,"y":2672.84},{"nodes":[17548,14958,630,13419,31039],"orbits":[0,1,7],"x":3632.11,"y":-2981.28},{"nodes":[10671,23419,55930,5740,40687],"orbits":[2],"x":3636.66,"y":10787.37},{"nodes":[22049],"orbits":[0],"x":3638.69,"y":1581.38},{"nodes":[24239,55846,40213,24481],"orbits":[0,1],"x":3641.03,"y":-482.86},{"nodes":[62510,3985,43423,8697,30905,64140,51336,56818,38895,48660],"orbits":[0,2,3,4],"x":3650.57,"y":8506.92},{"nodes":[49473],"orbits":[0],"x":3660.16,"y":3626.42},{"nodes":[47754,23455,49740,55847,27274],"orbits":[0,1,7],"x":3668.09,"y":-8216.37},{"nodes":[63861,55947,13823,46088,62153,32054],"orbits":[3,2],"x":3703.88,"y":-9989},{"nodes":[25100],"orbits":[0],"x":3733.3,"y":5789.19},{"nodes":[25620,26804,55405,59909,30539,9083],"orbits":[0,1,7],"x":3771.31,"y":-7094.88},{"nodes":[10131],"orbits":[0],"x":3772.63,"y":-10338.81},{"nodes":[51048],"orbits":[0],"x":3772.84,"y":10291.5},{"nodes":[27761,5826],"orbits":[0,2],"x":3776.11,"y":2965.63},{"nodes":[61104],"orbits":[0],"x":3779.38,"y":3832.89},{"nodes":[39280,55568,44669,32951,14127,44690,41522],"orbits":[0,2,3],"x":3782.58,"y":-10845.24},{"nodes":[11838,10881,33112,36450],"orbits":[0,3,7],"x":3832.63,"y":-9003.35},{"nodes":[5257,55507,22359,9141,13748,38338,35760,16367,60692,5703],"orbits":[0,3,4,7],"x":3842.13,"y":-4910.29},{"nodes":[5702],"orbits":[0],"x":3849.74,"y":-1186.7},{"nodes":[38676,27910,53938,64056,36931],"orbits":[1,2,7],"x":3855.19,"y":-2510.92},{"nodes":[56045],"orbits":[0],"x":3856.59,"y":-2226.59},{"nodes":[44563,59053,54805],"orbits":[0,3,5],"x":3857.5,"y":-5882.32},{"nodes":[13379],"orbits":[0],"x":3866.11,"y":2806.15},{"nodes":[60505],"orbits":[0],"x":3888.73,"y":1790.7},{"nodes":[63585],"orbits":[0],"x":3915.95,"y":4292.71},{"nodes":[44612,9112,41538,55598,15644],"orbits":[0,1,3],"x":3917.46,"y":3195.79},{"nodes":[31855,37408,60738,46761],"orbits":[0,2,7],"x":3918.15,"y":449.43},{"nodes":[23961,10041,32799,30910,17600,8791,18519,59647,32096],"orbits":[0,2,3,7],"x":3926.82,"y":9716.85},{"nodes":[38459,61373,63610,5988,38568],"orbits":[1,2,3],"x":3926.84,"y":959.23},{"nodes":[33751,8810,12451],"orbits":[1,3,7],"x":3941.17,"y":7406.81},{"nodes":[14343],"orbits":[0],"x":3946.1,"y":8993.8},{"nodes":[18923],"orbits":[6],"x":3992.99,"y":6086.8},{"nodes":[46146,15829,55227],"orbits":[0,7],"x":3994,"y":-485.92},{"nodes":[21080,1869,27095,48658,14890],"orbits":[0,2,7],"x":4022.98,"y":-4125.73},{"nodes":[32509,47614,3688,22219,52351,52260],"orbits":[0,2,7],"x":4031.85,"y":-6354.58},{"nodes":[13030],"orbits":[0],"x":4037.79,"y":5340.36},{"nodes":[43691,21746,65009,29517,32701],"orbits":[6],"x":4039.97,"y":0.42},{"nodes":[24647,61196],"orbits":[6],"x":4137.88,"y":-2406.01},{"nodes":[37220,50342,5227,17955,46402,51708],"orbits":[0,2,3,7],"x":4182.56,"y":6218.3},{"nodes":[59651,47821,41654,41033,55872],"orbits":[3,2],"x":4188.77,"y":-7809.17},{"nodes":[54746],"orbits":[0],"x":4195.04,"y":9238},{"nodes":[41062,47677,14045,33848,31991,65176,36070,9472],"orbits":[0,4,5,6,7],"x":4216.28,"y":4693.55},{"nodes":[55],"orbits":[0],"x":4219.73,"y":5087.65},{"nodes":[38703,63525,8249,16816,53094],"orbits":[0,7],"x":4278.42,"y":10564.54},{"nodes":[8510],"orbits":[0],"x":4283.46,"y":5565.69},{"nodes":[44239,60083,55270],"orbits":[0,7],"x":4332.46,"y":-271.82},{"nodes":[55938,41394,56844,40929,43633,40313,58363,10841],"orbits":[0,3,7],"x":4344.88,"y":-9579.04},{"nodes":[9085],"orbits":[0],"x":4347,"y":6925.8},{"nodes":[51463,4364,36114,23360,23736,53566,17077],"orbits":[0,4,7],"x":4350.71,"y":7926.5},{"nodes":[50469],"orbits":[0],"x":4375.94,"y":0.42},{"nodes":[49110],"orbits":[0],"x":4385.38,"y":9460.25},{"nodes":[64851,15030,49545,45693,39658,18831,21324],"orbits":[0,2,7],"x":4386.25,"y":1960.69},{"nodes":[60974,1506,60324,42339,18744],"orbits":[2],"x":4414.61,"y":-8287.6},{"nodes":[12761,19156,53941,17367,62841,12249,17283],"orbits":[0,2,3],"x":4435.38,"y":-1892.44},{"nodes":[45481,29408,52765,34300,31888,13862],"orbits":[0,2],"x":4438.01,"y":-3100.56},{"nodes":[24922],"orbits":[0],"x":4451.73,"y":7751.52},{"nodes":[40918],"orbits":[0],"x":4468.06,"y":5319.67},{"nodes":[26068,37389,28061,35878,50884,53696,37644,46874,7449],"orbits":[0,2,3,7],"x":4480.65,"y":3149.72},{"nodes":[1773],"orbits":[0],"x":4488.81,"y":5009.54},{"nodes":[30562,13711,3203,8908,11032],"orbits":[0,2,7],"x":4520.4,"y":-6892.55},{"nodes":[36298],"orbits":[0],"x":4526.88,"y":5794.6},{"nodes":[33823],"orbits":[0],"x":4536.81,"y":-4967.55},{"nodes":[4519],"orbits":[0],"x":4542.03,"y":-5257.07},{"nodes":[20236],"orbits":[0],"x":4542.03,"y":-4689.37},{"nodes":[58932],"orbits":[0],"x":-3941.5251094136,"y":-15586.089541646},{"nodes":[27262],"orbits":[0],"x":4562.63,"y":9687.25},{"nodes":[51213],"orbits":[0],"x":4563.3,"y":4714.06},{"nodes":[50912,49461,21314,18818],"orbits":[0,2,7],"x":4597.23,"y":322.95},{"nodes":[45193,4083,33815,35644,43677],"orbits":[0,2,3],"x":4605.3,"y":1275.23},{"nodes":[33979],"orbits":[0],"x":4648.31,"y":-8702.96},{"nodes":[11604],"orbits":[0],"x":4671.13,"y":-2696.8},{"nodes":[49661,49394,23786,33391,56330,39570],"orbits":[1,2,3,4,7],"x":4687.08,"y":7330.29},{"nodes":[3251],"orbits":[0],"x":4693.79,"y":-9892.16},{"nodes":[4059],"orbits":[0],"x":4703.02,"y":-8121.08},{"nodes":[4346],"orbits":[0],"x":4705.26,"y":-4974.35},{"nodes":[7782,48805,26563,4810,61905,8938,12778,33229,64996],"orbits":[1,3,4,7],"x":4748.75,"y":-10725.21},{"nodes":[6161],"orbits":[0],"x":4750.42,"y":-10827.13},{"nodes":[42460,11882,46182,33838,64747],"orbits":[0,4,7],"x":4766,"y":3895.65},{"nodes":[6912],"orbits":[0],"x":4782.59,"y":9204.08},{"nodes":[20467,23244,29899,58312,49497,21792,16786,19001],"orbits":[1,3,7],"x":4786.73,"y":9130.06},{"nodes":[17702],"orbits":[0],"x":4788.07,"y":9831.08},{"nodes":[64650,35058,30210,38966],"orbits":[2],"x":4789.34,"y":6875.05},{"nodes":[1995],"orbits":[0],"x":4791.75,"y":2293.82},{"nodes":[61976],"orbits":[0],"x":4795.75,"y":6464.55},{"nodes":[62797],"orbits":[0],"x":-3677.4251094136,"y":-16234.729541646},{"nodes":[9510,16695,61926,1603],"orbits":[2],"x":4821.1,"y":-7752.56},{"nodes":[32040],"orbits":[0],"x":4825,"y":-7747.13},{"nodes":[7054,47009,37250,21142,55829,1420],"orbits":[2,7],"x":4849.31,"y":-3488.45},{"nodes":[34201],"orbits":[0],"x":4859.19,"y":8419.96},{"nodes":[13724],"orbits":[4],"x":4872.03,"y":-4974.35},{"nodes":[23343,30392,13157,3775,28106,45244,58388,41016],"orbits":[0,2,3],"x":4874.52,"y":10455.42},{"nodes":[29763],"orbits":[0],"x":4889.32,"y":-7413.25},{"nodes":[39241],"orbits":[0],"x":-3593.3351094136,"y":-16051.419541646},{"nodes":[22152,15304,16466,40196],"orbits":[0,2],"x":4918.5,"y":-9036.21},{"nodes":[9586],"orbits":[4],"x":4931.31,"y":-4650.65},{"nodes":[13367,21713,50588,38969,6010],"orbits":[0,2],"x":4944.98,"y":-2386.46},{"nodes":[36623,3628,64474,31630,10729],"orbits":[0,2],"x":4945.01,"y":-9466.17},{"nodes":[61356,12498,30341],"orbits":[0,7],"x":4953.65,"y":2387.3},{"nodes":[63888],"orbits":[0],"x":4955.38,"y":2861.7},{"nodes":[37695],"orbits":[0],"x":4989.84,"y":542.4},{"nodes":[50879,14211,43238,22972,44540],"orbits":[1,7],"x":4990.13,"y":5788.96},{"nodes":[20820,44628,40166,48544],"orbits":[0,2],"x":4993.9,"y":-6490.84},{"nodes":[56729,26308,27017,21349],"orbits":[2],"x":5001.21,"y":7989.42},{"nodes":[10382],"orbits":[0],"x":5026.31,"y":-8702.96},{"nodes":[20677],"orbits":[0],"x":5061.13,"y":-4971.48},{"nodes":[43877,51522,47895,56493],"orbits":[1,2,3],"x":5074.31,"y":-208.98},{"nodes":[38044,11813],"orbits":[7],"x":5074.6,"y":585.09},{"nodes":[64345,49968,63679,20008],"orbits":[1,2,7],"x":5085.86,"y":7486.56},{"nodes":[61263,59446,22115,4544],"orbits":[1,2,7],"x":5095.01,"y":174.43},{"nodes":[37946],"orbits":[0],"x":5112.65,"y":2295.51},{"nodes":[46782,53698,20916,59355],"orbits":[0,7],"x":5188.48,"y":-751.6},{"nodes":[9782],"orbits":[0],"x":5193.02,"y":-5200.3},{"nodes":[535],"orbits":[0],"x":5193.02,"y":-4742.69},{"nodes":[2446,50268,22851,37164,419,63400],"orbits":[2,3],"x":5214.31,"y":-8121.08},{"nodes":[63668,9069,42245,16024,49150,18167,29288],"orbits":[1,2,3],"x":5250.46,"y":-5999.69},{"nodes":[17788,23352,26085,2877,33570,28431,59,8611,20772,51142,36696,33141,58751,23710],"orbits":[6,9,8],"x":-3230.2751094136,"y":-15207.249541646},{"nodes":[24210,26932,2200,35689,34543],"orbits":[0,2,7],"x":5279.5,"y":6677.73},{"nodes":[30456],"orbits":[0],"x":5286.04,"y":719.09},{"nodes":[39423,47635,53207,56914],"orbits":[1,2,3,7],"x":5288.98,"y":-7410.44},{"nodes":[17254,26596,14272],"orbits":[0,2,3],"x":5300.06,"y":-3797.31},{"nodes":[1953],"orbits":[0],"x":5316.81,"y":-1530.6},{"nodes":[9275,5704,62166,19337],"orbits":[0,2],"x":5320.34,"y":2650.99},{"nodes":[28021],"orbits":[0],"x":5324.92,"y":-5429.12},{"nodes":[34621],"orbits":[0],"x":5324.92,"y":-4513.87},{"nodes":[36759],"orbits":[0],"x":5333.76,"y":-6040.15},{"nodes":[40480],"orbits":[0],"x":5368.5,"y":-1842.95},{"nodes":[39569,9046,45609,56776,3458,7353,24129],"orbits":[0,1,2,3,7],"x":5399.15,"y":3723.01},{"nodes":[24165],"orbits":[0],"x":5409.48,"y":-6761.17},{"nodes":[21984],"orbits":[1],"x":5445.28,"y":-9562.99},{"nodes":[18121,45319,55041,26135,35564,2335,65310,51565,22682],"orbits":[0,3],"x":5452.61,"y":-10248.41},{"nodes":[44420],"orbits":[0],"x":5457.07,"y":-5200.42},{"nodes":[38541],"orbits":[0],"x":5457.07,"y":-4742.78},{"nodes":[41645,6490,43964,14082,8831],"orbits":[0,2,3,7],"x":5472.15,"y":-8445.56},{"nodes":[54176],"orbits":[0],"x":5478.57,"y":-1107.81},{"nodes":[7526],"orbits":[0],"x":5482.17,"y":6073.03},{"nodes":[36808,37244,34076,22057,33445,30143,37795],"orbits":[0,2,7],"x":5544.92,"y":8921.21},{"nodes":[46882],"orbits":[1],"x":5571.69,"y":9486.45},{"nodes":[61601],"orbits":[0],"x":5579.63,"y":-4981.71},{"nodes":[64213,32155,44204,33729,25700,61246,144,41096,45712,12611],"orbits":[0,4,5,7],"x":5581.73,"y":1347.41},{"nodes":[4238,60173,62986,17316,43263,46688,40244,64492],"orbits":[0,4,7],"x":5585.65,"y":8198.85},{"nodes":[11472,19880,59390,40270],"orbits":[0,2],"x":5646.25,"y":635.1},{"nodes":[26598],"orbits":[0],"x":5646.98,"y":0.51},{"nodes":[32813],"orbits":[2],"x":5658.94,"y":4004.28},{"nodes":[59600,12208,13619,35809],"orbits":[1,7],"x":5658.94,"y":4289.75},{"nodes":[49466,9411,30871],"orbits":[7],"x":5658.96,"y":4337.05},{"nodes":[23905],"orbits":[0],"x":5664.01,"y":-1616.29},{"nodes":[2995],"orbits":[0],"x":-2784.3151094136,"y":-16234.729541646},{"nodes":[4328],"orbits":[0],"x":5749.4,"y":-6287.76},{"nodes":[3463],"orbits":[0],"x":5749.4,"y":-5672.71},{"nodes":[42379],"orbits":[0],"x":5749.4,"y":-4981.71},{"nodes":[56860,29320,1680,17447,24843],"orbits":[0,2,7],"x":5833.86,"y":5463.88},{"nodes":[38111,10242,6079,32241],"orbits":[0,2],"x":5891.44,"y":-6838.35},{"nodes":[10944,33366,55193],"orbits":[1,2,7],"x":5924.32,"y":-625.86},{"nodes":[25971,50635,44423],"orbits":[0,2,3],"x":5933.04,"y":-2670.25},{"nodes":[11764,38878,54975,26772,45774,34898,24240],"orbits":[0,4,5,7],"x":5943.98,"y":7225.03},{"nodes":[23915,41529,21380,31284],"orbits":[0,1,2,7],"x":5948.13,"y":186.79},{"nodes":[60700,52501,44974],"orbits":[0,7],"x":5965.19,"y":-239.81},{"nodes":[25520],"orbits":[0],"x":5975.67,"y":-4755.44},{"nodes":[27875,55463,32123],"orbits":[0,3],"x":5979.38,"y":-1521.97},{"nodes":[50121],"orbits":[0],"x":5988.31,"y":-7475.15},{"nodes":[21572,39050,6660],"orbits":[2],"x":6015.15,"y":6443.42},{"nodes":[31345,30372,42065,55400,37532],"orbits":[0,2],"x":6036.73,"y":1763.34},{"nodes":[2516],"orbits":[0],"x":-2412.6351094136,"y":-15898.889541646},{"nodes":[21801,30748,44369,24150],"orbits":[1,2,7],"x":6098.71,"y":-8410.42},{"nodes":[43720,14383,18568,46601,46887],"orbits":[0,2,3],"x":6104.56,"y":8403.35},{"nodes":[45329],"orbits":[0],"x":6129.78,"y":9643.2},{"nodes":[4552,17215,17668,50817,61355,29306],"orbits":[1,2,7],"x":6139.19,"y":-5350.4},{"nodes":[42750,37691,9050,56453,60138,25851,52695,57230,24958,51741,16705,17088,61834,24062,54351,64927,52464,5766,51416,32016,49984],"orbits":[0,5,6,7],"x":6172.4,"y":-3563.57},{"nodes":[45100,56928,62350,7163,23013],"orbits":[2,3,4,5],"x":6220.23,"y":4601.9},{"nodes":[20641,14231,40399,51934,43281,25304,47359,40453,61056],"orbits":[0,1,5,7],"x":6324.58,"y":-9381.54},{"nodes":[38668,32664,27671,32681,5188],"orbits":[0,7],"x":6345.01,"y":-6118.94},{"nodes":[23608,40024,2091,61741,6951,63759,26565,24401],"orbits":[0,3,4,7],"x":6359.19,"y":2826.09},{"nodes":[35901,12890,63566,62464,55275,12120,65207,51606,17854],"orbits":[3,4,6],"x":6365.75,"y":3674.83},{"nodes":[43044],"orbits":[0],"x":6365.75,"y":5562.23},{"nodes":[34853,25458,37568,45370],"orbits":[7,2],"x":6365.75,"y":5989.65},{"nodes":[61403],"orbits":[0],"x":6372.73,"y":-8685.67},{"nodes":[56349],"orbits":[0],"x":6372.73,"y":-8307.67},{"nodes":[2128],"orbits":[0],"x":6402.75,"y":9681.5},{"nodes":[5009,36270,12169],"orbits":[0,2,3],"x":6411.76,"y":-4456.86},{"nodes":[28441,32721,24570,11836,47235,53471,10011,11871],"orbits":[2,3,7],"x":6431.15,"y":-2256.19},{"nodes":[11015],"orbits":[0],"x":6470.71,"y":9436.59},{"nodes":[54725,56336,21208,21748],"orbits":[7],"x":6488.25,"y":-6987.61},{"nodes":[52191],"orbits":[0],"x":6536.96,"y":-5291.42},{"nodes":[57088,9421,28086,54557,60170],"orbits":[0,2],"x":6551.51,"y":876.88},{"nodes":[45709,26363,52803],"orbits":[7],"x":6555.55,"y":-642.86},{"nodes":[7412,49291,57945,59356],"orbits":[0,7],"x":6555.55,"y":-627.07},{"nodes":[3128,22713,12166],"orbits":[7],"x":6564.29,"y":-7691.65},{"nodes":[33221],"orbits":[0],"x":6564.44,"y":-7691.65},{"nodes":[19722,4959,26331,19003],"orbits":[0,7],"x":6564.44,"y":-7691.65},{"nodes":[42658],"orbits":[0],"x":6564.69,"y":4176.51},{"nodes":[40626],"orbits":[0],"x":6576.82,"y":9549.91},{"nodes":[46431],"orbits":[0],"x":6576.88,"y":8924.35},{"nodes":[6570],"orbits":[0],"x":6612.09,"y":-6987.61},{"nodes":[65256],"orbits":[0],"x":6617.23,"y":9944.27},{"nodes":[34845],"orbits":[0],"x":6636.34,"y":9687.17},{"nodes":[38463],"orbits":[0],"x":6649.25,"y":8378.88},{"nodes":[22329,58526,331,32891,62427,42103,50673],"orbits":[2,3,7],"x":6654.65,"y":7621.83},{"nodes":[1631,14001,56893,29049],"orbits":[7,2],"x":6661.76,"y":246.47},{"nodes":[28199],"orbits":[0],"x":6670.73,"y":9432.42},{"nodes":[54678],"orbits":[0],"x":6720.04,"y":-1779.61},{"nodes":[60735],"orbits":[0],"x":6729.48,"y":3890.84},{"nodes":[57724,26885,34473,20782,42361],"orbits":[0,2,3,4,7],"x":6734.63,"y":-5492.35},{"nodes":[26268,22710,45111,59214],"orbits":[7],"x":6735.94,"y":-6987.61},{"nodes":[21111,43522,33099],"orbits":[4,7],"x":6771.38,"y":8501.01},{"nodes":[52060,17602,59799,7338,59798,5335],"orbits":[0,1,7],"x":6844.88,"y":-9157.81},{"nodes":[21495,42794,31433,5348],"orbits":[0,2,3],"x":6846.27,"y":4801},{"nodes":[54883],"orbits":[0],"x":6883.65,"y":-5638.13},{"nodes":[26432],"orbits":[0],"x":6900.54,"y":3596.76},{"nodes":[60273],"orbits":[0],"x":7001.73,"y":9638.79},{"nodes":[59775],"orbits":[0],"x":7020.48,"y":-5774.94},{"nodes":[6842,28329,18472,46533,3700,36723],"orbits":[2,3],"x":7031.53,"y":7197.76},{"nodes":[32438],"orbits":[0],"x":7037.31,"y":-8704.87},{"nodes":[28623,60464,12998,9968,30463,58971,38678],"orbits":[0,4,2],"x":7059,"y":5648.15},{"nodes":[51871,8045,3042],"orbits":[0,2,3],"x":7065.9,"y":-3324.15},{"nodes":[28823,11094,59303],"orbits":[4,7],"x":7074.07,"y":9630.67},{"nodes":[23547,45798,43944,30102,62578,46615,53177],"orbits":[0,2,3,7],"x":7077.07,"y":-4647.67},{"nodes":[14658],"orbits":[0],"x":7088.65,"y":0},{"nodes":[28903,42959,59644,32896,22517],"orbits":[0,7],"x":7088.65,"y":513.16},{"nodes":[55149],"orbits":[0],"x":7119.01,"y":-8248.39},{"nodes":[14446],"orbits":[0],"x":7123.27,"y":-7914.57},{"nodes":[11825],"orbits":[0],"x":7191.57,"y":4152.81},{"nodes":[62185],"orbits":[0],"x":7236.46,"y":5087.69},{"nodes":[48974,47418,63517,23839,53958,51006,10738],"orbits":[0,2,3],"x":7271.19,"y":-1655.98},{"nodes":[64601],"orbits":[0],"x":7273.71,"y":-2633.18},{"nodes":[41877],"orbits":[0],"x":7273.71,"y":-2313.18},{"nodes":[40333,43102,30197,52415,24178,42998,32655,33514],"orbits":[0,2,7],"x":7300.34,"y":2711.86},{"nodes":[63981,6516,8194],"orbits":[7],"x":7309.21,"y":3682.83},{"nodes":[29285,9745,11774,58513,16602,14418],"orbits":[0,3,7],"x":7334.57,"y":8277.54},{"nodes":[9199,60323,47560,6792,23221,4534,42302,33245,9151,45331,31918],"orbits":[1,2,3,4,5,6,7,8],"x":7345.82,"y":2075.69},{"nodes":[52971,21227,36290,23046,62936,51891,49976,25528],"orbits":[2,3,4,7],"x":7365.71,"y":-6708.34},{"nodes":[15424,35151,44453,58157,61149,42760],"orbits":[1,2,7],"x":7384.78,"y":-3775.87},{"nodes":[24120,52053,14048,34717,10495],"orbits":[0,3,4,7],"x":7386.63,"y":-380.49},{"nodes":[51040,23822,327,58779,9652],"orbits":[0,2],"x":7399.75,"y":-7157.75},{"nodes":[26762],"orbits":[0],"x":7420.17,"y":-8305.21},{"nodes":[30657],"orbits":[0],"x":7430.94,"y":7597.17},{"nodes":[22817,42714,22962,58848,55724,58644,10576,29065],"orbits":[0,1,3,4,5,7],"x":7459.44,"y":6789.98},{"nodes":[35380,10058],"orbits":[0,2],"x":7466.03,"y":-8440.87},{"nodes":[14724],"orbits":[0],"x":7487.17,"y":5195.85},{"nodes":[35671,11504,30839,31172],"orbits":[2,3,4,5],"x":7495.21,"y":1196.11},{"nodes":[44373],"orbits":[0],"x":7501.94,"y":-8629.84},{"nodes":[336,4806,49388,37304,64543,61921,38215],"orbits":[2,3,4,5],"x":7520.58,"y":-906.8},{"nodes":[6800],"orbits":[0],"x":7559.71,"y":-8913.34},{"nodes":[47374,18049,5802],"orbits":[0,4,7],"x":7559.9,"y":4790.76},{"nodes":[32301],"orbits":[0],"x":7573.53,"y":5472.94},{"nodes":[15301,10277,64064,4709,35477],"orbits":[0,2],"x":7632.55,"y":696.89},{"nodes":[31692,46197,61333,45702,39237],"orbits":[0,2],"x":7645.67,"y":-7774.6},{"nodes":[8456,10267,38329],"orbits":[0,7],"x":7655.94,"y":2478.52},{"nodes":[49130,58416,1020,54631,30132],"orbits":[0,2,7],"x":7664.38,"y":1483.08},{"nodes":[37813],"orbits":[0],"x":7678.02,"y":5026.98},{"nodes":[58022],"orbits":[0],"x":7691.01,"y":-8333.04},{"nodes":[12174,18864,49107,54562,49485,2745],"orbits":[1,2],"x":7726.42,"y":3243.25},{"nodes":[52445],"orbits":[0],"x":7747,"y":-5468.73},{"nodes":[34324,13457,3630,56838,26034,45631,62624,42805],"orbits":[3,4,7],"x":7749.73,"y":-5462.17},{"nodes":[57821],"orbits":[4],"x":7752.6,"y":-4481.19},{"nodes":[55377,26211,24883,44573],"orbits":[0,2],"x":7755.88,"y":-1645.82},{"nodes":[59503,22208,60034,6330,15207,4378],"orbits":[0,7],"x":7762.38,"y":6434.67},{"nodes":[5186],"orbits":[0],"x":7764.53,"y":-8668.33},{"nodes":[34497],"orbits":[0],"x":7768.26,"y":228.34},{"nodes":[56023],"orbits":[0],"x":7806.6,"y":-2934.34},{"nodes":[33404],"orbits":[0],"x":7810.1,"y":-4823.01},{"nodes":[50277],"orbits":[0],"x":7815.76,"y":5381.08},{"nodes":[44932],"orbits":[3],"x":7818.48,"y":5206.42},{"nodes":[52361,57462,53771,12078,33713,26107],"orbits":[0,2,3,5],"x":7868.42,"y":-3177.92},{"nodes":[50701],"orbits":[0],"x":7874.86,"y":5154.88},{"nodes":[47976],"orbits":[0],"x":7886.46,"y":-7151.38},{"nodes":[48462,38497,62803,25029],"orbits":[4,5,7],"x":7901.35,"y":8803.79},{"nodes":[33463],"orbits":[0],"x":7994.25,"y":-1873.69},{"nodes":[49996],"orbits":[0],"x":7994.25,"y":-996.85},{"nodes":[32183],"orbits":[0],"x":7994.25,"y":-571.97},{"nodes":[12253],"orbits":[0],"x":7994.25,"y":0},{"nodes":[35696],"orbits":[0],"x":7994.25,"y":1153.21},{"nodes":[2408],"orbits":[0],"x":7994.25,"y":2075.69},{"nodes":[42118],"orbits":[0],"x":7994.25,"y":2711.86},{"nodes":[10648,26400,8904],"orbits":[0,4,7],"x":8000.05,"y":4152.81},{"nodes":[63830,44841,45390,13624,59064,44756,28258,36927,36976,55235],"orbits":[0,1,2,3],"x":8014.32,"y":8180.55},{"nodes":[55664,16568,63246,34702,31826,33585,31129,24889],"orbits":[1,3,4,5,7],"x":8073.32,"y":5817.48},{"nodes":[43453],"orbits":[0],"x":8124.67,"y":632.41},{"nodes":[62542,45713,39607,2559,16329],"orbits":[0,2,3],"x":8175.23,"y":-4097.21},{"nodes":[24786],"orbits":[0],"x":8177.92,"y":6850.21},{"nodes":[17146,57518,31366,3843,65265],"orbits":[0,2,3],"x":8184.76,"y":3540.75},{"nodes":[44490],"orbits":[0],"x":8203.42,"y":-391.26},{"nodes":[12239],"orbits":[0],"x":8254.56,"y":-2462.39},{"nodes":[64050],"orbits":[0],"x":8280.06,"y":715.96},{"nodes":[54152],"orbits":[0],"x":8280.54,"y":369.3},{"nodes":[1599,35173,16013,41811,16140,31286],"orbits":[2,3,7],"x":8281.88,"y":-2509.71},{"nodes":[1416],"orbits":[0],"x":8284.38,"y":-6118.71},{"nodes":[5163,48103,26726,52875],"orbits":[0,2],"x":8294.62,"y":-1449.59},{"nodes":[16401],"orbits":[0],"x":8325.04,"y":-131.01},{"nodes":[39881],"orbits":[0],"x":8344.62,"y":-2618.36},{"nodes":[24070],"orbits":[0],"x":8357.14,"y":1153.21},{"nodes":[19461,38944,43338,5797,22063,64415,56767],"orbits":[2,3,7],"x":8357.5,"y":-6160.65},{"nodes":[51602,23305,21279,44280,35534],"orbits":[0,2],"x":8365.09,"y":1769.99},{"nodes":[3431,5305,43082],"orbits":[1,2],"x":8388.6,"y":6235.46},{"nodes":[30077],"orbits":[0],"x":8390.12,"y":-7635.29},{"nodes":[24656],"orbits":[0],"x":8400.25,"y":166.18},{"nodes":[7302,52615,33093,25729,37876],"orbits":[4,7],"x":8409.99,"y":-7674.9},{"nodes":[12800],"orbits":[0],"x":8433.06,"y":504.46},{"nodes":[3994,9089,37951,41020,34908],"orbits":[1,2,3],"x":8437.79,"y":2974.28},{"nodes":[61800,52630,28371,60560,29527],"orbits":[0,7],"x":8443.67,"y":-719.43},{"nodes":[1514],"orbits":[0],"x":8444.56,"y":-598.29},{"nodes":[7809],"orbits":[0],"x":8464.96,"y":-3633.16},{"nodes":[54984],"orbits":[0],"x":8470.97,"y":4890.73},{"nodes":[33348,11509,17664,7465,11463],"orbits":[0,2,3],"x":8489.3,"y":2450.54},{"nodes":[56988],"orbits":[0],"x":8506.18,"y":-3240.16},{"nodes":[47831,44522,63762,34541,52743,8734],"orbits":[1,2],"x":8512.95,"y":-1003.98},{"nodes":[43090],"orbits":[0],"x":8601.56,"y":-234.45},{"nodes":[32672,23362,4031,17871,13701,9928,50403],"orbits":[0,2,3,4],"x":8602.39,"y":-5782.69},{"nodes":[8896],"orbits":[0],"x":8629.29,"y":605.39},{"nodes":[15814],"orbits":[0],"x":8660.79,"y":276.65},{"nodes":[19074,8560,31273,35985,13987,48531,56761,7604,17372],"orbits":[1,2,3,6,7],"x":8668.76,"y":2075.69},{"nodes":[59538],"orbits":[0],"x":8684.39,"y":-6347.76},{"nodes":[58397,19338,31647],"orbits":[0,3],"x":8692.14,"y":1153.21},{"nodes":[45382,28859,53265],"orbits":[0,3,4],"x":8713.8,"y":-2248.79},{"nodes":[25055,13799,41580,36576,41298],"orbits":[0,2,7],"x":8732.17,"y":4438.38},{"nodes":[60483],"orbits":[0],"x":8733.08,"y":-3633.16},{"nodes":[36540],"orbits":[0],"x":8733.08,"y":-3371.16},{"nodes":[25070,11252,32903,39911,25361],"orbits":[2],"x":8744.6,"y":-4572.62},{"nodes":[36071,38369,35223,36677,13895,61112,18910,21225,10265,9240,19767,55680,9227],"orbits":[0,2,3,4,5,6],"x":8847.14,"y":7072.15},{"nodes":[18717],"orbits":[0],"x":8862.26,"y":-3861.86},{"nodes":[24287],"orbits":[0],"x":8886.25,"y":6141.88},{"nodes":[8273],"orbits":[0],"x":8922.01,"y":-4178.25},{"nodes":[60210,6078,64325,45304,61119,63431],"orbits":[1,2,3],"x":8940.31,"y":-1873.69},{"nodes":[15625,23253,65161,3170,22811],"orbits":[2],"x":8940.74,"y":5582.5},{"nodes":[1801,60,58426,34401],"orbits":[0,2,7],"x":8971.45,"y":474.23},{"nodes":[51241,50420,55118,31364],"orbits":[0,2],"x":8991.63,"y":4890.73},{"nodes":[15356],"orbits":[0],"x":8992.39,"y":-3633.64},{"nodes":[40990],"orbits":[0],"x":8993.62,"y":-3178.16},{"nodes":[2334],"orbits":[0],"x":9027.14,"y":1153.21},{"nodes":[14226],"orbits":[0],"x":9119.2,"y":6374.82},{"nodes":[17420],"orbits":[0],"x":9124.17,"y":-3861.86},{"nodes":[18815],"orbits":[0],"x":9125.5,"y":-3407.73},{"nodes":[25565],"orbits":[2],"x":9152.09,"y":-4119.84},{"nodes":[53150,17589,45012,8246,37742,64462,37548,15270,36085],"orbits":[0,2,3],"x":9207.96,"y":-758.58},{"nodes":[41017],"orbits":[0],"x":9212.92,"y":-2.43},{"nodes":[36364],"orbits":[0],"x":9287.06,"y":3103.82},{"nodes":[27422,2021,17687,10472,25857],"orbits":[0,3,4,7],"x":9315.43,"y":3714.68},{"nodes":[10162,3336,36231,30615,65204],"orbits":[0,2],"x":9329.96,"y":-5015.5},{"nodes":[22927,20582,29246],"orbits":[6],"x":9400.47,"y":5023.83},{"nodes":[37242,59368,61215,9532,16871,54031],"orbits":[0,7],"x":9411.81,"y":4567.88},{"nodes":[52257],"orbits":[0],"x":9455.83,"y":2570.72},{"nodes":[63600],"orbits":[0],"x":9507.95,"y":2888.65},{"nodes":[31765],"orbits":[0],"x":9512.58,"y":-5497.3},{"nodes":[37616,8644,33964,64295,27834,63659,37688,27417,62496,34912,4664,43938,34449],"orbits":[4,5,6],"x":9516.92,"y":-7180.28},{"nodes":[34015],"orbits":[0],"x":9527.62,"y":5500.5},{"nodes":[27513,65498,39307,7294,37026],"orbits":[1,2,7],"x":9588.39,"y":-215.51},{"nodes":[44891,55835,20909,52537,7023],"orbits":[0,2],"x":9590.33,"y":-3478.67},{"nodes":[59083,32364,1073,32858,1205,14882,5048,261],"orbits":[0,2,3,7],"x":9649.45,"y":5859.96},{"nodes":[57069],"orbits":[0],"x":9696.74,"y":2772.94},{"nodes":[65091,1841,38728,44776,3209,14539,9405,51707,59720,41163],"orbits":[0,5,7],"x":9720.67,"y":1153.21},{"nodes":[62998],"orbits":[0],"x":9731.16,"y":3030.3},{"nodes":[722],"orbits":[0],"x":9755.52,"y":-4566.29},{"nodes":[35095,19359,41886,9663,52245],"orbits":[0,2,3],"x":9759.71,"y":-5970.48},{"nodes":[20105],"orbits":[0],"x":9764.39,"y":6540.17},{"nodes":[65212,32543,34968,58539,60899,64637],"orbits":[0,7],"x":9805.18,"y":2135.11},{"nodes":[48116],"orbits":[0],"x":9826.06,"y":4319.11},{"nodes":[29990,47477,51774,36217,47021,34425],"orbits":[1,2,7],"x":9855.02,"y":-2946.78},{"nodes":[41861],"orbits":[0],"x":9855.92,"y":3274.55},{"nodes":[21156,19027,34623,40471,14769,7847],"orbits":[0,2,7],"x":9860.54,"y":353.55},{"nodes":[20649],"orbits":[0],"x":9947.79,"y":2860.79},{"nodes":[43867,10423,37905,57571,28101],"orbits":[1,2,3,7],"x":9960.59,"y":-2144.87},{"nodes":[65290],"orbits":[0],"x":10006.41,"y":2637.88},{"nodes":[16121,61421,56334,46171,41753],"orbits":[0,7],"x":10039.26,"y":-5356.19},{"nodes":[14262],"orbits":[0],"x":10048.64,"y":0},{"nodes":[12116,52410,20414,55329,42036,35043,50146],"orbits":[4,3],"x":10080.5,"y":5416.44},{"nodes":[18624,17523,42032,30408,39608,12329,1778,17906],"orbits":[0,3,7],"x":10082.79,"y":4865.9},{"nodes":[49320,30973],"orbits":[6],"x":10091.58,"y":-5603.69},{"nodes":[15775],"orbits":[0],"x":10091.7,"y":-3334.83},{"nodes":[3640,28963,7888,17724,17101,25362,37780],"orbits":[2,3],"x":10100.39,"y":-1227.6},{"nodes":[23105],"orbits":[0],"x":10112.62,"y":-1237.84},{"nodes":[2582],"orbits":[0],"x":10184.13,"y":3019.63},{"nodes":[60891,18897,64990,53185],"orbits":[1,2,3],"x":10203.08,"y":1730.1},{"nodes":[47514,38342,21945,61718,26572,54545,39128],"orbits":[0,2,7],"x":10290.88,"y":-481.6},{"nodes":[29959,60362,6891,56265,42802],"orbits":[0,2],"x":10299.85,"y":-3717.25},{"nodes":[17792,34892,12066,42226,48734],"orbits":[3,2],"x":10370.85,"y":533.97},{"nodes":[30808],"orbits":[0],"x":10379,"y":-2278.35},{"nodes":[27705],"orbits":[0],"x":10420.75,"y":2130.08},{"nodes":[28835,60480,56847,8157,178,28044,43088,6988],"orbits":[0,2,3,5,7],"x":10451.5,"y":3456.48},{"nodes":[326],"orbits":[0],"x":10503.99,"y":-3050.26},{"nodes":[59694],"orbits":[0],"x":10614.77,"y":-3021.26},{"nodes":[3543,31825,20787,5390,16142],"orbits":[3,7],"x":10650.08,"y":2504.32},{"nodes":[632],"orbits":[0],"x":10657.31,"y":-5268.96},{"nodes":[48773],"orbits":[0],"x":10682.01,"y":1152.07},{"nodes":[34612,25992,60764,11526,31055,44141,7651,21788,21112,8573,25586],"orbits":[2,3,4,5,6],"x":10682.25,"y":4548.52},{"nodes":[2361,37514,31449,9444,52399,2113,34316,61632,4536,11598,44516],"orbits":[0,2,3,5,6],"x":10687.96,"y":-3515.65},{"nodes":[14267],"orbits":[0],"x":10699.04,"y":-1058.34},{"nodes":[28638],"orbits":[0],"x":10703.99,"y":-3595.77},{"nodes":[64700],"orbits":[0],"x":10769.27,"y":-4040.33},{"nodes":[18969],"orbits":[0],"x":10793.45,"y":4578.32},{"nodes":[52215],"orbits":[0],"x":10794.6,"y":-5031.25},{"nodes":[3419,28797,20429],"orbits":[6],"x":10801.88,"y":-4373.44},{"nodes":[46152,40110,42347,8302,4467,42974],"orbits":[1,2,3,7],"x":10841.31,"y":-2278.35},{"nodes":[38993],"orbits":[0],"x":10852.75,"y":5275.51},{"nodes":[32442],"orbits":[0],"x":10878.54,"y":-4005.64},{"nodes":[53272,2560,20044,30736,52180],"orbits":[1,2,3],"x":10949.1,"y":3186.63},{"nodes":[32763],"orbits":[1],"x":10978.46,"y":-82.24},{"nodes":[41873,55995,57970,21537],"orbits":[2],"x":11005.79,"y":1424.1},{"nodes":[27048],"orbits":[0],"x":11023.99,"y":2449.53},{"nodes":[56366,54058,35755,4423,62001],"orbits":[0,2,3],"x":11047.97,"y":-5335.92},{"nodes":[39495],"orbits":[0],"x":11053.84,"y":2092.2},{"nodes":[38212,57683,1499,33830,35031],"orbits":[0,2],"x":11095.74,"y":-797.85},{"nodes":[328],"orbits":[0],"x":11202.42,"y":4037.83},{"nodes":[28976],"orbits":[0],"x":11230.95,"y":-1058.34},{"nodes":[47375],"orbits":[0],"x":11305.33,"y":2677.45},{"nodes":[39986],"orbits":[0],"x":11330.52,"y":1564.9},{"nodes":[6030,2500,15986,29458,2134,53595,9703,1723,38628],"orbits":[2,3,7],"x":11355.41,"y":-1515.36},{"nodes":[38493,38537,13407,39369,55621,2936,23040,54983,51583],"orbits":[0,2,4,7],"x":11355.97,"y":617.13},{"nodes":[46386],"orbits":[0],"x":11403.34,"y":1937.84},{"nodes":[23374],"orbits":[0],"x":11480.79,"y":-1058.34},{"nodes":[63618],"orbits":[0],"x":11588.89,"y":2604.19},{"nodes":[37971],"orbits":[0],"x":11726.63,"y":2342.66},{"nodes":[57933],"orbits":[0],"x":11768.79,"y":1960.45},null,{"nodes":[52800,57615,32319,48836,33542],"orbits":[0,4,6,7],"x":12068.18,"y":1163.81},{"nodes":[16150],"orbits":[0],"x":12070.35,"y":2129.97},{"nodes":[47443],"orbits":[0],"x":12118.08,"y":2530.75},{"nodes":[44699],"orbits":[0],"x":12345.66,"y":2292.24},{"nodes":[60992],"orbits":[0],"x":12484.46,"y":2765.08},{"nodes":[10315],"orbits":[0],"x":12637.88,"y":2423.74},null,null,null,{"nodes":[24226],"orbits":[0],"x":15117.158863669,"y":4222.9796220229},{"nodes":[12033,42416,46854,61461,3987,24295,49165,39723,46990],"orbits":[2,3,5,6,8,9],"x":15206.108863669,"y":3234.4396220229},{"nodes":[30],"orbits":[0],"x":15297.928863669,"y":3773.2996220229},{"nodes":[29871],"orbits":[0],"x":15400.178863669,"y":4147.1496220229},{"nodes":[8143,65173,7621,23587,64031,63713,52448,12876,63236,23415,13065,16100,17268,25434,55611,29133,57181,44357,27686,9994],"orbits":[3,4,5,6,8,9],"x":12605.015732927,"y":-9099.5692755704},{"nodes":[59542],"orbits":[0],"x":15664.448863669,"y":3601.9396220229},{"nodes":[59913],"orbits":[0],"x":15683.198863669,"y":4071.3096220229},{"nodes":[5817],"orbits":[0],"x":15717.168863669,"y":3046.0996220229},{"nodes":[41875],"orbits":[0],"x":15757.968863669,"y":3438.9396220229},null,{"nodes":[23508],"orbits":[0],"x":16109.948863669,"y":2556.2096220229},{"nodes":[35801],"orbits":[0],"x":16161.838863669,"y":2844.5696220229},{"nodes":[61991,24868,29074,14508,33736,9798,1583],"orbits":[9,8],"x":14202.55838509,"y":6323.5874913776},{"nodes":[37336],"orbits":[0],"x":16214.908863669,"y":3132.7296220229},{"nodes":[38004],"orbits":[0],"x":14706.26838509,"y":5869.0874913776},{"nodes":[9710],"orbits":[0],"x":14706.26838509,"y":5990.0874913776},{"nodes":[18940],"orbits":[0],"x":14811.06838509,"y":5808.5874913776},{"nodes":[57141],"orbits":[0],"x":14811.06838509,"y":5929.5874913776},{"nodes":[49503],"orbits":[0],"x":14811.06838509,"y":6429.2774913776},{"nodes":[56618],"orbits":[0],"x":14915.85838509,"y":5867.6874913776},{"nodes":[58379],"orbits":[0],"x":14915.85838509,"y":5990.0874913776},{"nodes":[16],"orbits":[0],"x":15092.69838509,"y":6429.2774913776},{"nodes":[41619],"orbits":[0],"x":15156.65838509,"y":6190.6174913776},{"nodes":[57253],"orbits":[0],"x":15268.72838509,"y":6319.0874913776},{"nodes":[16433],"orbits":[0],"x":15345.70838509,"y":6422.2774913776},{"nodes":[12183],"orbits":[0],"x":15345.70838509,"y":6704.5274913776},{"nodes":[46454],"orbits":[0],"x":15349.46838509,"y":5717.3874913776},{"nodes":[36676],"orbits":[0],"x":15349.46838509,"y":6049.5874913776},{"nodes":[12795],"orbits":[0],"x":15424.62838509,"y":6319.0674913776},{"nodes":[40],"orbits":[0],"x":15534.87838509,"y":6189.6174913776},{"nodes":[39292],"orbits":[0],"x":15599.42838509,"y":6429.2774913776},{"nodes":[35187],"orbits":[0],"x":11269.831182469,"y":9136.4978543927},{"nodes":[18826,3781,25781,59759,50098,52395,41076,31116,34817,17923,47344,36788,24475,1347,11771,25779,25885,32771,74],"orbits":[6,8,9,5],"x":14221.321245422,"y":-6282.2115396635},{"nodes":[41008],"orbits":[0],"x":11604.641182469,"y":9372.6478543927},{"nodes":[664],"orbits":[0],"x":14579.471245422,"y":-5756.2115396635},{"nodes":[42441],"orbits":[0],"x":11674.681182469,"y":9101.9278543927},{"nodes":[26283],"orbits":[0],"x":14685.891245422,"y":-5937.8815396635},{"nodes":[43095],"orbits":[0],"x":11836.831182469,"y":9288.4078543927},{"nodes":[56331],"orbits":[0],"x":14789.251245422,"y":-5754.8515396635},{"nodes":[528],"orbits":[0],"x":12071.261182469,"y":9573.8678543927},{"nodes":[19233],"orbits":[0],"x":12180.801182469,"y":9165.0778543927},null,{"nodes":[55796],"orbits":[0],"x":12403.821182469,"y":9440.3478543927},{"nodes":[9294],"orbits":[0],"x":12587.601182469,"y":9792.6278543927},{"nodes":[7979],"orbits":[0],"x":12738.491182469,"y":9226.7678543927},{"nodes":[46071],"orbits":[0],"x":12944.601182469,"y":9792.6278543927},{"nodes":[35033],"orbits":[0],"x":12970.871182469,"y":9592.2878543927},{"nodes":[60662],"orbits":[0],"x":13048.301182469,"y":9405.6278543927},{"nodes":[41736],"orbits":[6],"x":13125.341182469,"y":9199.3678543927},{"nodes":[2702],"orbits":[0],"x":13447.001182469,"y":9285.9178543927},{"nodes":[7068],"orbits":[0],"x":9147.5225669017,"y":11798.264105614},{"nodes":[3065],"orbits":[0],"x":13624.681182469,"y":8935.4478543927},{"nodes":[63254],"orbits":[0],"x":13718.601182469,"y":9285.9178543927},{"nodes":[6109],"orbits":[0],"x":13718.601182469,"y":9516.1478543927},{"nodes":[47312],"orbits":[0],"x":13812.481182469,"y":8935.5578543927},{"nodes":[3223],"orbits":[0],"x":9530.1025669017,"y":12133.294105614},{"nodes":[5563],"orbits":[0],"x":13980.281182469,"y":9285.9178543927},{"nodes":[34785],"orbits":[0],"x":10082.402566902,"y":12206.524105614},{"nodes":[18280],"orbits":[0],"x":10578.312566902,"y":11309.804105614},{"nodes":[62804],"orbits":[0],"x":10797.962566902,"y":11727.654105614},{"nodes":[17058],"orbits":[0],"x":10813.402566902,"y":11949.524105614},{"nodes":[42017],"orbits":[0],"x":10813.402566902,"y":12206.524105614},{"nodes":[58574],"orbits":[0],"x":10813.402566902,"y":12463.524105614},{"nodes":[37972],"orbits":[0],"x":10880.112566902,"y":11352.134105614},{"nodes":[36365],"orbits":[6],"x":10952.082566902,"y":11613.264105614},{"nodes":[4891],"orbits":[0],"x":11114.202566902,"y":11498.364105614},{"nodes":[58149],"orbits":[0],"x":11157.502566902,"y":11862.284105614},{"nodes":[37046],"orbits":[0],"x":11206.462566902,"y":10749.284105614},{"nodes":[60859],"orbits":[0],"x":11338.152566902,"y":11738.234105614},{"nodes":[30233],"orbits":[0],"x":11379.622566902,"y":11334.214105614},{"nodes":[22661],"orbits":[0],"x":11514.982566902,"y":11678.194105614},{"nodes":[11776],"orbits":[0],"x":11660.712566902,"y":11279.134105614}],"assets":{"AbyssLichAscendancyOrbit2Intermediate":["AbyssLichAscendancy_orbit_intermediate8.png"],"CharacterAscendancyOrbit4Normal":["CharacterAscendancy_orbit_normal5.png"],"AbyssLichAscendancyOrbit3Intermediate":["AbyssLichAscendancy_orbit_intermediate6.png"],"CharacterAscendancyOrbit5Normal":["CharacterAscendancy_orbit_normal4.png"],"AbyssLichAscendancyOrbit4Intermediate":["AbyssLichAscendancy_orbit_intermediate5.png"],"CharacterAscendancyOrbit6Normal":["CharacterAscendancy_orbit_normal3.png"],"AbyssLichAscendancyOrbit5Intermediate":["AbyssLichAscendancy_orbit_intermediate4.png"],"CharacterAscendancyOrbit7Normal":["CharacterAscendancy_orbit_normal7.png"],"AbyssLichAscendancyOrbit6Intermediate":["AbyssLichAscendancy_orbit_intermediate3.png"],"CharacterAscendancyOrbit8Normal":["CharacterAscendancy_orbit_normal2.png"],"AbyssLichAscendancyOrbit7Intermediate":["AbyssLichAscendancy_orbit_intermediate7.png"],"CharacterAscendancyOrbit9Normal":["CharacterAscendancy_orbit_normal1.png"],"AbyssLichAscendancyOrbit8Intermediate":["AbyssLichAscendancy_orbit_intermediate2.png"],"CharacterAscendancyLineConnectorIntermediate":["CharacterAscendancy_orbit_intermediate0.png"],"AbyssLichAscendancyOrbit9Intermediate":["AbyssLichAscendancy_orbit_intermediate1.png"],"CharacterAscendancyOrbit1Intermediate":["CharacterAscendancy_orbit_intermediate9.png"],"AbyssLichAscendancyLineConnectorActive":["AbyssLichAscendancy_orbit_intermediateactive0.png"],"CharacterAscendancyOrbit2Intermediate":["CharacterAscendancy_orbit_intermediate8.png"],"AbyssLichAscendancyOrbit1Active":["AbyssLichAscendancy_orbit_intermediateactive9.png"],"CharacterAscendancyOrbit3Intermediate":["CharacterAscendancy_orbit_intermediate6.png"],"AbyssLichAscendancyOrbit2Active":["AbyssLichAscendancy_orbit_intermediateactive8.png"],"CharacterPlannedOrbit7Normal":["CharacterPlanned_orbit_normal7.png"],"AbyssLichAscendancyOrbit3Active":["AbyssLichAscendancy_orbit_intermediateactive6.png"],"CharacterPlannedOrbit8Normal":["CharacterPlanned_orbit_normal2.png"],"AbyssLichAscendancyOrbit4Active":["AbyssLichAscendancy_orbit_intermediateactive5.png"],"CharacterPlannedOrbit9Normal":["CharacterPlanned_orbit_normal1.png"],"AbyssLichAscendancyOrbit5Active":["AbyssLichAscendancy_orbit_intermediateactive4.png"],"CharacterPlannedLineConnectorIntermediate":["CharacterPlanned_orbit_intermediate0.png"],"AbyssLichAscendancyOrbit6Active":["AbyssLichAscendancy_orbit_intermediateactive3.png"],"CharacterPlannedOrbit1Intermediate":["CharacterPlanned_orbit_intermediate9.png"],"AbyssLichAscendancyOrbit7Active":["AbyssLichAscendancy_orbit_intermediateactive7.png"],"CharacterPlannedOrbit2Intermediate":["CharacterPlanned_orbit_intermediate8.png"],"AbyssLichAscendancyOrbit8Active":["AbyssLichAscendancy_orbit_intermediateactive2.png"],"CharacterPlannedOrbit3Intermediate":["CharacterPlanned_orbit_intermediate6.png"],"AbyssLichAscendancyOrbit9Active":["AbyssLichAscendancy_orbit_intermediateactive1.png"],"CharacterPlannedOrbit4Intermediate":["CharacterPlanned_orbit_intermediate5.png"],"CharacterPlannedLineConnectorNormal":["CharacterPlanned_orbit_normal0.png"],"CharacterPlannedOrbit5Intermediate":["CharacterPlanned_orbit_intermediate4.png"],"CharacterPlannedOrbit1Normal":["CharacterPlanned_orbit_normal9.png"],"CharacterPlannedOrbit6Intermediate":["CharacterPlanned_orbit_intermediate3.png"],"CharacterPlannedOrbit2Normal":["CharacterPlanned_orbit_normal8.png"],"CharacterPlannedOrbit7Intermediate":["CharacterPlanned_orbit_intermediate7.png"],"CharacterPlannedOrbit8Intermediate":["CharacterPlanned_orbit_intermediate2.png"],"CharacterOrbit9Active":["Character_orbit_intermediateactive1.png"],"CharacterOrbit8Active":["Character_orbit_intermediateactive2.png"],"CharacterPlannedOrbit9Intermediate":["CharacterPlanned_orbit_intermediate1.png"],"CharacterOrbit7Active":["Character_orbit_intermediateactive7.png"],"CharacterPlannedLineConnectorActive":["CharacterPlanned_orbit_intermediateactive0.png"],"CharacterOrbit6Active":["Character_orbit_intermediateactive3.png"],"CharacterPlannedOrbit1Active":["CharacterPlanned_orbit_intermediateactive9.png"],"CharacterOrbit5Active":["Character_orbit_intermediateactive4.png"],"CharacterPlannedOrbit2Active":["CharacterPlanned_orbit_intermediateactive8.png"],"CharacterOrbit4Active":["Character_orbit_intermediateactive5.png"],"CharacterPlannedOrbit3Active":["CharacterPlanned_orbit_intermediateactive6.png"],"CharacterOrbit3Active":["Character_orbit_intermediateactive6.png"],"CharacterPlannedOrbit4Active":["CharacterPlanned_orbit_intermediateactive5.png"],"CharacterPlannedOrbit3Normal":["CharacterPlanned_orbit_normal6.png"],"CharacterPlannedOrbit5Active":["CharacterPlanned_orbit_intermediateactive4.png"],"CharacterPlannedOrbit4Normal":["CharacterPlanned_orbit_normal5.png"],"CharacterPlannedOrbit6Active":["CharacterPlanned_orbit_intermediateactive3.png"],"CharacterPlannedOrbit5Normal":["CharacterPlanned_orbit_normal4.png"],"CharacterPlannedOrbit7Active":["CharacterPlanned_orbit_intermediateactive7.png"],"CharacterPlannedOrbit6Normal":["CharacterPlanned_orbit_normal3.png"],"CharacterPlannedOrbit8Active":["CharacterPlanned_orbit_intermediateactive2.png"],"CharacterAscendancyOrbit4Intermediate":["CharacterAscendancy_orbit_intermediate5.png"],"CharacterPlannedOrbit9Active":["CharacterPlanned_orbit_intermediateactive1.png"],"CharacterAscendancyOrbit5Intermediate":["CharacterAscendancy_orbit_intermediate4.png"],"CharacterLineConnectorNormal":["Character_orbit_normal0.png"],"CharacterAscendancyOrbit6Intermediate":["CharacterAscendancy_orbit_intermediate3.png"],"CharacterOrbit1Normal":["Character_orbit_normal9.png"],"CharacterAscendancyOrbit7Intermediate":["CharacterAscendancy_orbit_intermediate7.png"],"CharacterOrbit2Normal":["Character_orbit_normal8.png"],"CharacterAscendancyOrbit8Intermediate":["CharacterAscendancy_orbit_intermediate2.png"],"CharacterOrbit3Normal":["Character_orbit_normal6.png"],"CharacterAscendancyOrbit9Intermediate":["CharacterAscendancy_orbit_intermediate1.png"],"CharacterOrbit4Normal":["Character_orbit_normal5.png"],"CharacterAscendancyLineConnectorActive":["CharacterAscendancy_orbit_intermediateactive0.png"],"CharacterOrbit5Normal":["Character_orbit_normal4.png"],"CharacterAscendancyOrbit1Active":["CharacterAscendancy_orbit_intermediateactive9.png"],"CharacterOrbit6Normal":["Character_orbit_normal3.png"],"CharacterAscendancyOrbit2Active":["CharacterAscendancy_orbit_intermediateactive8.png"],"CharacterOrbit7Normal":["Character_orbit_normal7.png"],"CharacterAscendancyOrbit3Active":["CharacterAscendancy_orbit_intermediateactive6.png"],"CharacterOrbit8Normal":["Character_orbit_normal2.png"],"CharacterAscendancyOrbit4Active":["CharacterAscendancy_orbit_intermediateactive5.png"],"CharacterOrbit9Normal":["Character_orbit_normal1.png"],"CharacterAscendancyOrbit5Active":["CharacterAscendancy_orbit_intermediateactive4.png"],"CharacterLineConnectorIntermediate":["Character_orbit_intermediate0.png"],"CharacterAscendancyOrbit6Active":["CharacterAscendancy_orbit_intermediateactive3.png"],"CharacterOrbit1Intermediate":["Character_orbit_intermediate9.png"],"CharacterAscendancyOrbit7Active":["CharacterAscendancy_orbit_intermediateactive7.png"],"CharacterOrbit2Intermediate":["Character_orbit_intermediate8.png"],"CharacterAscendancyOrbit8Active":["CharacterAscendancy_orbit_intermediateactive2.png"],"CharacterOrbit3Intermediate":["Character_orbit_intermediate6.png"],"CharacterAscendancyOrbit9Active":["CharacterAscendancy_orbit_intermediateactive1.png"],"CharacterOrbit4Intermediate":["Character_orbit_intermediate5.png"],"AbyssLichAscendancyLineConnectorNormal":["AbyssLichAscendancy_orbit_normal0.png"],"CharacterOrbit5Intermediate":["Character_orbit_intermediate4.png"],"AbyssLichAscendancyOrbit1Normal":["AbyssLichAscendancy_orbit_normal9.png"],"CharacterOrbit6Intermediate":["Character_orbit_intermediate3.png"],"AbyssLichAscendancyOrbit2Normal":["AbyssLichAscendancy_orbit_normal8.png"],"CharacterOrbit7Intermediate":["Character_orbit_intermediate7.png"],"AbyssLichAscendancyOrbit3Normal":["AbyssLichAscendancy_orbit_normal6.png"],"CharacterOrbit8Intermediate":["Character_orbit_intermediate2.png"],"AbyssLichAscendancyOrbit4Normal":["AbyssLichAscendancy_orbit_normal5.png"],"CharacterOrbit9Intermediate":["Character_orbit_intermediate1.png"],"AbyssLichAscendancyOrbit5Normal":["AbyssLichAscendancy_orbit_normal4.png"],"CharacterLineConnectorActive":["Character_orbit_intermediateactive0.png"],"AbyssLichAscendancyOrbit6Normal":["AbyssLichAscendancy_orbit_normal3.png"],"CharacterOrbit1Active":["Character_orbit_intermediateactive9.png"],"AbyssLichAscendancyOrbit7Normal":["AbyssLichAscendancy_orbit_normal7.png"],"CharacterOrbit2Active":["Character_orbit_intermediateactive8.png"],"AbyssLichAscendancyOrbit8Normal":["AbyssLichAscendancy_orbit_normal2.png"],"CharacterAscendancyLineConnectorNormal":["CharacterAscendancy_orbit_normal0.png"],"AbyssLichAscendancyOrbit9Normal":["AbyssLichAscendancy_orbit_normal1.png"],"CharacterAscendancyOrbit1Normal":["CharacterAscendancy_orbit_normal9.png"],"AbyssLichAscendancyLineConnectorIntermediate":["AbyssLichAscendancy_orbit_intermediate0.png"],"CharacterAscendancyOrbit2Normal":["CharacterAscendancy_orbit_normal8.png"],"AbyssLichAscendancyOrbit1Intermediate":["AbyssLichAscendancy_orbit_intermediate9.png"],"CharacterAscendancyOrbit3Normal":["CharacterAscendancy_orbit_normal6.png"]},"classes":[{"base_dex":15,"base_int":7,"ascendancies":[{"id":"Deadeye","internalId":"Ranger1","background":{"width":1500,"y":3229.498566027,"height":1500,"section":"AscendancyBackground","x":15197.414580302,"image":"ClassesDeadeye"},"name":"Deadeye"},{"id":"Pathfinder","internalId":"Ranger3","background":{"width":1500,"y":6318.6464353817,"height":1500,"section":"AscendancyBackground","x":14193.864101724,"image":"ClassesPathfinder"},"name":"Pathfinder"}],"background":{"height":1500,"width":1500,"image":"ClassesRanger","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":7,"name":"Ranger"},{"base_dex":15,"base_int":7,"ascendancies":[{"id":"Amazon","internalId":"Huntress1","background":{"width":1500,"y":9131.6391352807,"height":1500,"section":"AscendancyBackground","x":12569.973652183,"image":"ClassesAmazon"},"name":"Amazon"},{"id":"Ritualist","internalId":"Huntress3","background":{"width":1500,"y":11545.535386502,"height":1500,"section":"AscendancyBackground","x":10396.715036616,"image":"ClassesRitualist"},"name":"Ritualist"}],"background":{"height":1500,"width":1500,"image":"ClassesHuntress","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":7,"name":"Huntress"},{"base_dex":7,"base_int":7,"ascendancies":[{"id":"Titan","internalId":"Warrior1","background":{"width":1500,"y":10390.523449116,"height":1500,"section":"AscendancyBackground","x":-11551.107884827,"image":"ClassesTitan"},"name":"Titan"},{"id":"Warbringer","internalId":"Warrior2","background":{"width":1500,"y":7761.8552109686,"height":1500,"section":"AscendancyBackground","x":-13458.999762149,"image":"ClassesWarbringer"},"name":"Warbringer"},{"id":"Smith of Kitava","internalId":"Warrior3","background":{"width":1500,"y":4793.956654588,"height":1500,"section":"AscendancyBackground","x":-14778.668766418,"image":"ClassesSmith of Kitava"},"name":"Smith of Kitava"}],"background":{"height":1500,"width":1500,"image":"ClassesWarrior","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":15,"name":"Warrior"},{"base_dex":11,"base_int":7,"ascendancies":[{"id":"Tactician","internalId":"Mercenary1","background":{"width":1500,"y":15192.950587402,"height":1500,"section":"AscendancyBackground","x":3250.4343344123,"image":"ClassesTactician"},"name":"Tactician"},{"id":"Witchhunter","internalId":"Mercenary2","background":{"width":1500,"y":15536.751463494,"height":1500,"section":"AscendancyBackground","x":20.612500410808,"image":"ClassesWitchhunter"},"name":"Witchhunter"},{"id":"Gemling Legionnaire","internalId":"Mercenary3","background":{"width":1500,"y":15201.521747027,"height":1500,"section":"AscendancyBackground","x":-3210.1101987684,"image":"ClassesGemling Legionnaire"},"name":"Gemling Legionnaire"}],"background":{"height":1500,"width":1500,"image":"ClassesMercenary","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":11,"name":"Mercenary"},{"base_dex":7,"base_int":11,"ascendancies":[{"id":"Oracle","internalId":"Druid1","background":{"width":1500,"y":-6404.4085580119,"height":1500,"section":"AscendancyBackground","x":-14155.374312805,"image":"ClassesOracle"},"name":"Oracle"},{"id":"Shaman","internalId":"Druid2","background":{"width":1500,"y":-9207.524672672,"height":1500,"section":"AscendancyBackground","x":-12514.494009575,"image":"ClassesShaman"},"name":"Shaman"}],"background":{"height":1500,"width":1500,"image":"ClassesDruid","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":11,"name":"Druid"},{"base_dex":7,"base_int":15,"ascendancies":[{"id":"Infernalist","internalId":"Witch1","background":{"width":1500,"y":-12569.507033218,"height":1500,"section":"AscendancyBackground","x":-9132.2814156951,"image":"ClassesInfernalist"},"name":"Infernalist"},{"id":"Blood Mage","internalId":"Witch2","background":{"width":1500,"y":-14193.541217109,"height":1500,"section":"AscendancyBackground","x":-6319.3716959661,"image":"ClassesBlood Mage"},"name":"Blood Mage"},{"id":"Lich","internalId":"Witch3","replaceBy":"Abyssal Lich","background":{"width":1500,"y":-15197.249541646,"height":1500,"section":"AscendancyBackground","x":-3230.2751094136,"image":"ClassesLich"},"name":"Lich"},{"id":"Abyssal Lich","internalId":"Witch3b","replace":"Lich","background":{"width":1500,"y":-15197.249541646,"height":1500,"section":"AscendancyBackground","x":-3230.2751094136,"image":"ClassesAbyssal Lich"},"name":"Abyssal Lich"}],"background":{"height":1500,"width":1500,"image":"ClassesWitch","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":7,"name":"Witch"},{"base_dex":7,"base_int":15,"ascendancies":[{"id":"Stormweaver","internalId":"Sorceress1","background":{"width":1500,"y":-15536.765136719,"height":1500,"section":"AscendancyBackground","x":9.5135248468934e-13,"image":"ClassesStormweaver"},"name":"Stormweaver"},{"id":"Chronomancer","internalId":"Sorceress2","background":{"width":1500,"y":-15197.249541646,"height":1500,"section":"AscendancyBackground","x":3230.2751094136,"image":"ClassesChronomancer"},"name":"Chronomancer"},{"id":"Disciple of Varashta","internalId":"Sorceress3","background":{"width":1500,"y":-14193.541217109,"height":1500,"section":"AscendancyBackground","x":6319.3716959661,"image":"ClassesDisciple of Varashta"},"name":"Disciple of Varashta"}],"background":{"height":1500,"width":1500,"image":"ClassesSorceress","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":7,"name":"Sorceress"},{"base_dex":11,"base_int":11,"ascendancies":[{"id":"Invoker","internalId":"Monk2","background":{"width":1500,"y":-9097.7387255743,"height":1500,"section":"AscendancyBackground","x":12594.531392424,"image":"ClassesInvoker"},"name":"Invoker"},{"id":"Acolyte of Chayula","internalId":"Monk3","background":{"width":1500,"y":-6280.3809896674,"height":1500,"section":"AscendancyBackground","x":14210.836904918,"image":"ClassesAcolyte of Chayula"},"name":"Acolyte of Chayula"}],"background":{"height":1500,"width":1500,"image":"ClassesMonk","active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"section":"AscendancyBackground","x":0,"y":0},"base_str":7,"name":"Monk"}],"constants":{"characterAttributes":{"Intelligence":2,"Strength":0,"Dexterity":1},"PSSCentreInnerRadius":130,"skillsPerOrbit":[1,12,24,24,72,72,72,24,72,144],"orbitAnglesByOrbit":[[0,6.2831853071796],[0,0.5235987755983,1.0471975511966,1.5707963267949,2.0943951023932,2.6179938779915,3.1415926535898,3.6651914291881,4.1887902047864,4.7123889803847,5.235987755983,5.7595865315813,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.043633231299858,0.087266462599716,0.13089969389957,0.17453292519943,0.21816615649929,0.26179938779915,0.30543261909901,0.34906585039887,0.39269908169872,0.43633231299858,0.47996554429844,0.5235987755983,0.56723200689816,0.61086523819802,0.65449846949787,0.69813170079773,0.74176493209759,0.78539816339745,0.82903139469731,0.87266462599716,0.91629785729702,0.95993108859688,1.0035643198967,1.0471975511966,1.0908307824965,1.1344640137963,1.1780972450962,1.221730476396,1.2653637076959,1.3089969389957,1.3526301702956,1.3962634015955,1.4398966328953,1.4835298641952,1.527163095495,1.5707963267949,1.6144295580948,1.6580627893946,1.7016960206945,1.7453292519943,1.7889624832942,1.832595714594,1.8762289458939,1.9198621771938,1.9634954084936,2.0071286397935,2.0507618710933,2.0943951023932,2.1380283336931,2.1816615649929,2.2252947962928,2.2689280275926,2.3125612588925,2.3561944901923,2.3998277214922,2.4434609527921,2.4870941840919,2.5307274153918,2.5743606466916,2.6179938779915,2.6616271092914,2.7052603405912,2.7488935718911,2.7925268031909,2.8361600344908,2.8797932657906,2.9234264970905,2.9670597283904,3.0106929596902,3.0543261909901,3.0979594222899,3.1415926535898,3.1852258848897,3.2288591161895,3.2724923474894,3.3161255787892,3.3597588100891,3.4033920413889,3.4470252726888,3.4906585039887,3.5342917352885,3.5779249665884,3.6215581978882,3.6651914291881,3.708824660488,3.7524578917878,3.7960911230877,3.8397243543875,3.8833575856874,3.9269908169872,3.9706240482871,4.014257279587,4.0578905108868,4.1015237421867,4.1451569734865,4.1887902047864,4.2324234360862,4.2760566673861,4.319689898686,4.3633231299858,4.4069563612857,4.4505895925855,4.4942228238854,4.5378560551853,4.5814892864851,4.625122517785,4.6687557490848,4.7123889803847,4.7560222116845,4.7996554429844,4.8432886742843,4.8869219055841,4.930555136884,4.9741883681838,5.0178215994837,5.0614548307836,5.1050880620834,5.1487212933833,5.1923545246831,5.235987755983,5.2796209872828,5.3232542185827,5.3668874498826,5.4105206811824,5.4541539124823,5.4977871437821,5.541420375082,5.5850536063819,5.6286868376817,5.6723200689816,5.7159533002814,5.7595865315813,5.8032197628811,5.846852994181,5.8904862254809,5.9341194567807,5.9777526880806,6.0213859193804,6.0650191506803,6.1086523819802,6.15228561328,6.1959188445799,6.2395520758797,6.2831853071796]],"orbitRadii":[0,82,162,335,493,662,846,251,1080,1322],"classes":{"StrDexIntClass":0,"StrClass":1,"DexClass":2,"IntClass":3,"StrDexClass":4,"StrIntClass":5,"DexIntClass":6}},"nodeOverlay":{"Keystone":{"path":"KeystoneFrameCanAllocate","alloc":"KeystoneFrameAllocated","unalloc":"KeystoneFrameUnallocated"},"Notable":{"path":"NotableFrameCanAllocate","alloc":"NotableFrameAllocated","unalloc":"NotableFrameUnallocated"},"Normal":{"path":"PSSkillFrameHighlighted","alloc":"PSSkillFrameActive","unalloc":"PSSkillFrame"},"Socket":{"path":"JewelFrameCanAllocate","alloc":"JewelFrameAllocated","unalloc":"JewelFrameUnallocated"}},"connectionArt":{"default":"Character","ascendancy":"CharacterAscendancy"},"jewelSlots":[26725,36634,33989,41263,60735,61834,31683,28475,6230,48768,34483,7960,46882,55190,61419,2491,54127,32763,26196,33631,21984,59740,63132,36044,17788],"ddsCoords":{"group-background_104_104_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds":1,"PSSkillFrame":4,"PSSkillFrameHighlighted":6,"PSSkillFrameActive":5,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds":2},"group-background_160_164_BC7.dds.zst":{"Abyssal LichFrameSmallCanAllocate":6,"Gemling LegionnaireFrameSmallCanAllocate":3,"Gemling LegionnaireFrameSmallNormal":2,"Gemling LegionnaireFrameSmallAllocated":1,"Disciple of VarashtaFrameSmallCanAllocate":3,"Disciple of VarashtaFrameSmallNormal":2,"Disciple of VarashtaFrameSmallAllocated":1,"WarbringerFrameSmallAllocated":1,"Abyssal LichFrameSmallNormal":5,"DeadeyeFrameSmallCanAllocate":3,"DeadeyeFrameSmallNormal":2,"DeadeyeFrameSmallAllocated":1,"Abyssal LichFrameSmallAllocated":4,"InfernalistFrameSmallNormal":2,"Smith of KitavaFrameSmallCanAllocate":3,"Smith of KitavaFrameSmallNormal":2,"StormweaverFrameSmallAllocated":1,"InfernalistFrameSmallCanAllocate":3,"ChronomancerFrameSmallCanAllocate":3,"StormweaverFrameSmallCanAllocate":3,"PathfinderFrameSmallCanAllocate":3,"OracleFrameSmallNormal":2,"OracleFrameSmallAllocated":1,"RitualistFrameSmallAllocated":1,"WarbringerFrameSmallNormal":2,"InvokerFrameSmallCanAllocate":3,"InvokerFrameSmallNormal":2,"InvokerFrameSmallAllocated":1,"OracleFrameSmallCanAllocate":3,"ShamanFrameSmallCanAllocate":3,"ShamanFrameSmallNormal":2,"ShamanFrameSmallAllocated":1,"AmazonFrameSmallAllocated":1,"ChronomancerFrameSmallAllocated":1,"Acolyte of ChayulaFrameSmallCanAllocate":3,"Acolyte of ChayulaFrameSmallNormal":2,"Acolyte of ChayulaFrameSmallAllocated":1,"WarbringerFrameSmallCanAllocate":3,"TitanFrameSmallCanAllocate":3,"ChronomancerFrameSmallNormal":2,"AmazonFrameSmallCanAllocate":3,"RitualistFrameSmallCanAllocate":3,"RitualistFrameSmallNormal":2,"InfernalistFrameSmallAllocated":1,"StormweaverFrameSmallNormal":2,"AmazonFrameSmallNormal":2,"LichFrameSmallAllocated":1,"TacticianFrameSmallCanAllocate":3,"TacticianFrameSmallNormal":2,"TacticianFrameSmallAllocated":1,"Blood MageFrameSmallCanAllocate":3,"Blood MageFrameSmallNormal":2,"Blood MageFrameSmallAllocated":1,"PathfinderFrameSmallNormal":2,"PathfinderFrameSmallAllocated":1,"Smith of KitavaFrameSmallAllocated":1,"WitchhunterFrameSmallCanAllocate":3,"WitchhunterFrameSmallNormal":2,"WitchhunterFrameSmallAllocated":1,"LichFrameSmallCanAllocate":3,"LichFrameSmallNormal":2,"TitanFrameSmallNormal":2,"TitanFrameSmallAllocated":1},"group-background_528_528_BC7.dds.zst":{"PSStartNodeBackgroundInactive":1},"background_1024_1024_BC7.dds.zst":{"Background2":1},"group-background_152_156_BC7.dds.zst":{"JewelFrameCanAllocate":15,"JewelFrameAllocated":2,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds":7,"NotableFrameAllocated":3,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds":12,"NotableFrameCanAllocate":1,"JewelFrameUnallocated":14,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds":4,"NotableFrameUnallocated":11,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds":6,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds":13},"group-background_468_468_BC7.dds.zst":{"PSGroupBackground2":1,"PSGroupBackgroundMediumBlank":1},"monster-categories_36_36_BC7.dds.zst":{"Eldritch":1,"Undead":3,"Humanoid":5,"Demon":4,"Construct":6,"Beast":2},"group-background_208_208_BC7.dds.zst":{"TitanFrameLargeNormal":1,"TitanFrameLargeCanAllocate":2,"TitanFrameLargeAllocated":4,"Abyssal LichFrameLargeAllocated":6,"Gemling LegionnaireFrameLargeNormal":1,"Gemling LegionnaireFrameLargeCanAllocate":2,"Gemling LegionnaireFrameLargeAllocated":4,"Disciple of VarashtaFrameLargeNormal":1,"WarbringerFrameLargeNormal":1,"WarbringerFrameLargeCanAllocate":2,"WarbringerFrameLargeAllocated":4,"Abyssal LichFrameLargeNormal":5,"DeadeyeFrameLargeNormal":1,"DeadeyeFrameLargeCanAllocate":2,"DeadeyeFrameLargeAllocated":4,"LichFrameLargeNormal":1,"ShamanFrameLargeAllocated":4,"StormweaverFrameLargeNormal":1,"StormweaverFrameLargeCanAllocate":2,"StormweaverFrameLargeAllocated":4,"Disciple of VarashtaFrameLargeAllocated":4,"ChronomancerFrameLargeAllocated":4,"LichFrameLargeAllocated":4,"PathfinderFrameLargeNormal":1,"OracleFrameLargeCanAllocate":2,"PathfinderFrameLargeAllocated":4,"ShamanFrameLargeCanAllocate":2,"InfernalistFrameLargeAllocated":4,"InvokerFrameLargeNormal":1,"InvokerFrameLargeCanAllocate":2,"InvokerFrameLargeAllocated":4,"OracleFrameLargeAllocated":4,"ShamanFrameLargeNormal":1,"AmazonFrameLargeNormal":1,"AmazonFrameLargeCanAllocate":2,"AmazonFrameLargeAllocated":4,"Smith of KitavaFrameLargeCanAllocate":2,"Acolyte of ChayulaFrameLargeNormal":1,"Acolyte of ChayulaFrameLargeCanAllocate":2,"Acolyte of ChayulaFrameLargeAllocated":4,"Smith of KitavaFrameLargeAllocated":4,"ChronomancerFrameLargeCanAllocate":2,"Abyssal LichFrameLargeCanAllocate":3,"Disciple of VarashtaFrameLargeCanAllocate":2,"InfernalistFrameLargeNormal":1,"RitualistFrameLargeCanAllocate":2,"RitualistFrameLargeAllocated":4,"LichFrameLargeCanAllocate":2,"OracleFrameLargeNormal":1,"InfernalistFrameLargeCanAllocate":2,"TacticianFrameLargeNormal":1,"TacticianFrameLargeCanAllocate":2,"TacticianFrameLargeAllocated":4,"Blood MageFrameLargeNormal":1,"Blood MageFrameLargeCanAllocate":2,"Blood MageFrameLargeAllocated":4,"RitualistFrameLargeNormal":1,"Smith of KitavaFrameLargeNormal":1,"PathfinderFrameLargeCanAllocate":2,"WitchhunterFrameLargeNormal":1,"WitchhunterFrameLargeCanAllocate":2,"WitchhunterFrameLargeAllocated":4,"ChronomancerFrameLargeNormal":1},"skills_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":1,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":2,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":3,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":4,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":5,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":6,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":329,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":116,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":7,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":8,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":9,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":10,"Art/2DArt/SkillIcons/passives/lifeleech.dds":11,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":12,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":115,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":13,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":149,"Art/2DArt/SkillIcons/passives/steelspan.dds":14,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":15,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":16,"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds":135,"Art/2DArt/SkillIcons/passives/eagleeye.dds":211,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":17,"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds":210,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":19,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":113,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":285,"Art/2DArt/SkillIcons/passives/bodysoul.dds":20,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":21,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":22,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":248,"Art/2DArt/SkillIcons/passives/Annihilation.dds":23,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":112,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":25,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":26,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":27,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":32,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":33,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":34,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":252,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":38,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":39,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":208,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":42,"Art/2DArt/SkillIcons/passives/legstrength.dds":44,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":46,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":110,"Art/2DArt/SkillIcons/passives/Meleerange.dds":50,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":51,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":109,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":52,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":53,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":54,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":55,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":56,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":58,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":107,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":62,"Art/2DArt/SkillIcons/passives/finesse.dds":48,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":66,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":279,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":101,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":69,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":70,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":71,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":74,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":118,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":76,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":79,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":80,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":81,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":172,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":323,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":85,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":86,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":87,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":272,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":88,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":89,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":103,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":77,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":93,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":94,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":63,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":97,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":282,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":102,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":179,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":105,"Art/2DArt/SkillIcons/passives/totemmax.dds":106,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":108,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":100,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":237,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":117,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":119,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":121,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":123,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":124,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":98,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":126,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds":127,"Art/2DArt/SkillIcons/passives/BowDamage.dds":128,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds":129,"Art/2DArt/SkillIcons/passives/Warrior.dds":130,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":73,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":133,"Art/2DArt/SkillIcons/passives/executioner.dds":225,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":136,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":137,"Art/2DArt/SkillIcons/passives/Harrier.dds":239,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":139,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":140,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":96,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":43,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":145,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":92,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":146,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":147,"Art/2DArt/SkillIcons/passives/Hunter.dds":150,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":152,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":153,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":154,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":157,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":160,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":161,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":162,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":163,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":164,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":165,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":166,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":168,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":169,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":170,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":171,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":256,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":174,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":175,"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds":176,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":177,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":178,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":180,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":181,"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds":78,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":186,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":188,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":189,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":246,"Art/2DArt/SkillIcons/passives/stormborn.dds":191,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":194,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":195,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":196,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":197,"Art/2DArt/SkillIcons/passives/AuraNotable.dds":199,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":200,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":202,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":158,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":205,"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds":206,"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds":207,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":209,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":212,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":213,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds":215,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":216,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":217,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":167,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":219,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":220,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":221,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":222,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":223,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":201,"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds":57,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":226,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":227,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":120,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":232,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":233,"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds":234,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":236,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":328,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":275,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds":238,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":224,"Art/2DArt/SkillIcons/passives/Trap.dds":193,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":240,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":241,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":242,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":65,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds":243,"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds":45,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":244,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":322,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":245,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":321,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":247,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":187,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":249,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":182,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":250,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":318,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":317,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":316,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":253,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":254,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":143,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":314,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":134,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":82,"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds":144,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":251,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":255,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds":49,"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds":257,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":122,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":67,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":308,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":261,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":262,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":156,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":306,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":305,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":264,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":185,"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds":304,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":131,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":302,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":90,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":268,"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds":269,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":300,"Art/2DArt/SkillIcons/passives/RageNotable.dds":299,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":229,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":270,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":271,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds":75,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":184,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":297,"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds":273,"Art/2DArt/SkillIcons/passives/Poison.dds":296,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":295,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":132,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":41,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":259,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":263,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":291,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":235,"Art/2DArt/SkillIcons/passives/vaalpact.dds":267,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":111,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":288,"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds":40,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":277,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":159,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":286,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":281,"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds":284,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":283,"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds":37,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":31,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":280,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":278,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":287,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":276,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":274,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":290,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":266,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":265,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":292,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":260,"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds":293,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":258,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":231,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":83,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":198,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":18,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":298,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":104,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":289,"Art/2DArt/SkillIcons/passives/Hearty.dds":24,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":301,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":230,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":99,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":84,"Art/2DArt/SkillIcons/passives/Blood2.dds":303,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":114,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":72,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds":68,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":35,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":61,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":307,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":214,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":309,"Art/2DArt/SkillIcons/passives/flameborn.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":36,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":311,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":312,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":313,"Art/2DArt/SkillIcons/passives/frostborn.dds":138,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":294,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":315,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":60,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":29,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":30,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":151,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":148,"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds":125,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":95,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds":228,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":173,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":183,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":319,"Art/2DArt/SkillIcons/passives/strongarm.dds":320,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":190,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":203,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":324,"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds":47,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":218,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds":325,"Art/2DArt/SkillIcons/passives/BattleRouse.dds":326,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":327,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":155,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":59,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":192,"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds":141,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":28,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":64},"group-background_360_360_BC7.dds.zst":{"PSGroupBackground1":1,"PSGroupBackgroundSmallBlank":1},"skills_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"group-background_220_224_BC7.dds.zst":{"KeystoneFrameAllocated":3,"KeystoneFrameUnallocated":1,"KeystoneFrameCanAllocate":2},"skills_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"jewel-sockets_152_156_BC7.dds.zst":{"Time-Lost Emerald":12,"Undying Hate":9,"Time-Lost Sapphire":15,"Heart of the Well":3,"Diamond":14,"Flesh Crucible":1,"Time-Lost Diamond":14,"Megalomaniac":16,"Heroic Tragedy":6,"Timeless Jewel":14,"From Nothing":10,"Ruby":2,"Controlled Metamorphosis":5,"Emerald":11,"Prism of Belief":13,"Sapphire":8,"Against the Darkness":14,"Time-Lost Ruby":7,"The Adorned":4},"legion_564_564_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle1.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle2.dds":4,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle2.dds":11,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle2.dds":12,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle1.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle2.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle1.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle2.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle2.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle1.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle1.dds":7,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle1.dds":6},"legion_1024_1024_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysspassiveskillscreenjewelcircle1.dds":1},"legion_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AbyssJewelNode.dds":4,"Art/2DArt/SkillIcons/passives/DevotionNode.dds":5,"Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds":1,"Art/2DArt/SkillIcons/passives/VaalOffensive.dds":2,"Art/2DArt/SkillIcons/passives/VaalDefensive.dds":3},"skills_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds":81,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":1,"Art/2DArt/SkillIcons/passives/plusstrength.dds":2,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":82,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":3,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":4,"Art/2DArt/SkillIcons/passives/lightningint.dds":85,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":119,"Art/2DArt/SkillIcons/passives/firedamageint.dds":5,"Art/2DArt/SkillIcons/passives/damage.dds":6,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":86,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":77,"Art/2DArt/SkillIcons/passives/Remnant.dds":87,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":7,"Art/2DArt/SkillIcons/passives/tempint.dds":8,"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds":9,"Art/2DArt/SkillIcons/passives/blankDex.dds":32,"Art/2DArt/SkillIcons/passives/plusattribute.dds":11,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":12,"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds":90,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":13,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":14,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":92,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":15,"Art/2DArt/SkillIcons/passives/minionlife.dds":16,"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds":17,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":97,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":116,"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds":84,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":19,"Art/2DArt/SkillIcons/passives/ChaosDamage.dds":134,"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds":20,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":117,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":21,"Art/2DArt/SkillIcons/passives/stun2h.dds":22,"Art/2DArt/SkillIcons/passives/accuracydex.dds":158,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":23,"Art/2DArt/SkillIcons/icongroundslam.dds":24,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":25,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":27,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":102,"Art/2DArt/SkillIcons/passives/life1.dds":29,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":106,"Art/2DArt/SkillIcons/passives/stunstr.dds":30,"Art/2DArt/SkillIcons/passives/blankStr.dds":126,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":125,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":110,"Art/2DArt/SkillIcons/passives/blankInt.dds":34,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds":111,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":112,"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds":113,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":53,"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds":114,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":149,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":103,"Art/2DArt/SkillIcons/passives/attackspeed.dds":38,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":39,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":148,"Art/2DArt/SkillIcons/passives/lightningstr.dds":41,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":42,"Art/2DArt/SkillIcons/passives/MarkNode.dds":80,"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds":121,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":43,"Art/2DArt/SkillIcons/passives/damage_blue.dds":122,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":123,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":124,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":44,"Art/2DArt/SkillIcons/passives/fireresist.dds":45,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":46,"Art/2DArt/SkillIcons/passives/Rage.dds":61,"Art/2DArt/SkillIcons/passives/damagespells.dds":47,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":99,"Art/2DArt/SkillIcons/passives/evade.dds":127,"Art/2DArt/SkillIcons/passives/mana.dds":48,"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds":128,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":96,"Art/2DArt/SkillIcons/passives/damagesword.dds":131,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":49,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":132,"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds":133,"Art/2DArt/SkillIcons/passives/minionstr.dds":51,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":138,"Art/2DArt/SkillIcons/passives/accuracystr.dds":135,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":136,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":137,"Art/2DArt/SkillIcons/passives/manastr.dds":52,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":115,"Art/2DArt/SkillIcons/passives/castspeed.dds":54,"Art/2DArt/SkillIcons/passives/chargedex.dds":140,"Art/2DArt/SkillIcons/passives/shieldblock.dds":18,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":141,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":109,"Art/2DArt/SkillIcons/passives/trapsmax.dds":55,"Art/2DArt/SkillIcons/passives/macedmg.dds":162,"Art/2DArt/SkillIcons/passives/knockback.dds":142,"Art/2DArt/SkillIcons/passives/trapdamage.dds":75,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":56,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":98,"Art/2DArt/SkillIcons/passives/blockstr.dds":160,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":33,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":58,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":74,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":156,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":94,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":155,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":154,"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds":144,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":153,"Art/2DArt/SkillIcons/passives/spellcritical.dds":79,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":72,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":37,"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":78,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":63,"Art/2DArt/SkillIcons/passives/coldresist.dds":143,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":146,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":64,"Art/2DArt/SkillIcons/passives/flaskint.dds":145,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":59,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":147,"Art/2DArt/SkillIcons/passives/auraeffect.dds":104,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":130,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":66,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":129,"Art/2DArt/SkillIcons/passives/damagestaff.dds":60,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":150,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":71,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":67,"Art/2DArt/SkillIcons/passives/firedamage.dds":68,"Art/2DArt/SkillIcons/passives/chargestr.dds":69,"Art/2DArt/SkillIcons/passives/flaskstr.dds":36,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":10,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":151,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":93,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":70,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":26,"Art/2DArt/SkillIcons/passives/colddamage.dds":152,"Art/2DArt/SkillIcons/passives/energyshield.dds":40,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":57,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":118,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":105,"Art/2DArt/SkillIcons/passives/chargeint.dds":83,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds":157,"Art/2DArt/SkillIcons/passives/damageaxe.dds":76,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":88,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":35,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":159,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":89,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":120,"Art/2DArt/SkillIcons/passives/flaskdex.dds":107,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":91,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":31,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds":65,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":95,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":28,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":161,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":100,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":101,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":139,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds":62,"Art/2DArt/SkillIcons/passives/BucklerNode1.dds":108,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":163,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":164,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":50,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":165},"legion_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/SupremeProdigy.dds":1,"Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds":2,"Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds":3,"Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds":4,"Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds":5,"Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds":6,"Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds":7,"Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds":8,"Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds":9,"Art/2DArt/SkillIcons/passives/AmanamusDefiance.dds":10,"Art/2DArt/SkillIcons/passives/DivineFlesh.dds":11,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":12,"Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds":13,"Art/2DArt/SkillIcons/passives/CorruptedDefences.dds":14,"Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds":15,"Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds":16,"Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds":17,"Art/2DArt/SkillIcons/passives/TemperedByWar.dds":18,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":19,"Art/2DArt/SkillIcons/passives/FocusedRage.dds":20,"Art/2DArt/SkillIcons/passives/WindDancer.dds":21,"Art/2DArt/SkillIcons/passives/OasisKeystone.dds":22,"Art/2DArt/SkillIcons/passives/SharpandBrittle.dds":23,"Art/2DArt/SkillIcons/passives/TheBlindMonk.dds":24,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":25,"Art/2DArt/SkillIcons/passives/KulemaksSovereignty.dds":26,"Art/2DArt/SkillIcons/passives/KurgasAmbition.dds":27,"Art/2DArt/SkillIcons/passives/TecrodsBrutality.dds":28,"Art/2DArt/SkillIcons/passives/UlamansVision.dds":29,"Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds":30,"Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds":31,"Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds":32,"Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds":33,"Art/2DArt/SkillIcons/passives/InnerConviction.dds":34,"Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds":35,"Art/2DArt/SkillIcons/passives/DevotionNotable.dds":36,"Art/2DArt/SkillIcons/passives/SupremeDecadence.dds":37,"Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds":38,"Art/2DArt/SkillIcons/passives/SupremeEgo.dds":39},"oils_108_108_RGBA.dds.zst":{"Guilt":2,"Suffering":8,"Paranoia":6,"Fear":5,"Despair":4,"Greed":7,"Isolation":9,"Disgust":3,"Envy":10,"Ire":1},"ascendancy-background_4000_4000_BC7.dds.zst":{"BGTreeActive":2,"BGTree":1},"skills-disabled_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":1,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":2,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":3,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":4,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":5,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":6,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":7,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":117,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":8,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":9,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":10,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":11,"Art/2DArt/SkillIcons/passives/lifeleech.dds":12,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":13,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":116,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":14,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":152,"Art/2DArt/SkillIcons/passives/steelspan.dds":15,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":16,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":17,"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds":137,"Art/2DArt/SkillIcons/passives/eagleeye.dds":215,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":18,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":19,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":20,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":114,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":194,"Art/2DArt/SkillIcons/passives/bodysoul.dds":21,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":22,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":23,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":253,"Art/2DArt/SkillIcons/passives/Annihilation.dds":24,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":113,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":26,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":27,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":28,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":33,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":34,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":35,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":112,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":39,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":40,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":125,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":43,"Art/2DArt/SkillIcons/passives/legstrength.dds":45,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":47,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":111,"Art/2DArt/SkillIcons/passives/Meleerange.dds":51,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":52,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":110,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":53,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":54,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":55,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":56,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":57,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":59,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":108,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":302,"Art/2DArt/SkillIcons/passives/finesse.dds":49,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":65,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":328,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":102,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":68,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":69,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":70,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":74,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":75,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":77,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":80,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":81,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":82,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":174,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":324,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":86,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":87,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":88,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":72,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":89,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":90,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":92,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":321,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":94,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":95,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":62,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":98,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":282,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":103,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":201,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":106,"Art/2DArt/SkillIcons/passives/totemmax.dds":107,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":109,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":101,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":241,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":255,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":120,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":122,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":124,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":126,"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds":127,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":128,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds":129,"Art/2DArt/SkillIcons/passives/BowDamage.dds":130,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds":131,"Art/2DArt/SkillIcons/passives/Warrior.dds":132,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":73,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":135,"Art/2DArt/SkillIcons/passives/executioner.dds":229,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":138,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":139,"Art/2DArt/SkillIcons/passives/Harrier.dds":244,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":141,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":143,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":97,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":145,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":44,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":148,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":93,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":149,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":150,"Art/2DArt/SkillIcons/passives/Hunter.dds":153,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":155,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":156,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":157,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":160,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":163,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":164,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":165,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":166,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":167,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":168,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":170,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":171,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":172,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":173,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":262,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":176,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":177,"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds":178,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":179,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":180,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":182,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":183,"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds":79,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":188,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":190,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":191,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":251,"Art/2DArt/SkillIcons/passives/stormborn.dds":193,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":197,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":198,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":199,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":200,"Art/2DArt/SkillIcons/passives/AuraNotable.dds":202,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":203,"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds":144,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":189,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":207,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":208,"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds":209,"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds":210,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":213,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":216,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":217,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds":219,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":220,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":221,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":222,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":223,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":224,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":225,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":226,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":227,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":204,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":228,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":230,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":231,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":121,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":236,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":237,"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds":238,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":240,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":329,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":242,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds":243,"Art/2DArt/SkillIcons/passives/Trap.dds":196,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":142,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":245,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":246,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":247,"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds":48,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds":248,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":206,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":249,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":322,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":250,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":320,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":252,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":185,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":254,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":175,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":256,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":317,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":146,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":315,"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds":46,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":260,"Art/2DArt/SkillIcons/passives/frostborn.dds":140,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":136,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":66,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":32,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":154,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":257,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":261,"Art/2DArt/SkillIcons/passives/Hearty.dds":25,"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds":263,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":123,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":308,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":64,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":267,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":268,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":306,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":305,"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds":304,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":270,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":187,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":104,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":301,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":83,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":299,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":273,"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds":274,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":105,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":297,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":78,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":275,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":276,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":296,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":186,"Art/2DArt/SkillIcons/passives/Poison.dds":295,"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds":277,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":294,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":258,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":264,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":42,"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds":147,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":290,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":266,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":239,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":288,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds":76,"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds":286,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":192,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":285,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":161,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":284,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":283,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":281,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":158,"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds":38,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":119,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":279,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":278,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":287,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":271,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":269,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":289,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":212,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":265,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":292,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":259,"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds":293,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":29,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":235,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":84,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":272,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":115,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":298,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":99,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":233,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":91,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":300,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":234,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":181,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":133,"Art/2DArt/SkillIcons/passives/Blood2.dds":303,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds":67,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds":50,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":71,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":36,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":159,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":307,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":218,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":309,"Art/2DArt/SkillIcons/passives/flameborn.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":311,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":312,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":313,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":314,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":134,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":37,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":316,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":291,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":100,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":31,"Art/2DArt/SkillIcons/passives/vaalpact.dds":195,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":61,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":85,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":96,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds":232,"Art/2DArt/SkillIcons/passives/RageNotable.dds":118,"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds":41,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":318,"Art/2DArt/SkillIcons/passives/strongarm.dds":319,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":184,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":151,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":205,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":323,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":211,"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds":214,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds":325,"Art/2DArt/SkillIcons/passives/BattleRouse.dds":326,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":327,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":30,"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds":58,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":280,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":169,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":60,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":63},"ascendancy-background_1500_1500_BC7.dds.zst":{"ClassesDisciple of Varashta":8,"ClassesWarbringer":33,"ClassesRanger":27,"ClassesDeadeye":31,"ClassesTemplar":16,"ClassesShadow":13,"ClassesStormweaver":28,"ClassesDruid":20,"ClassesPathfinder":6,"ClassesMonk":25,"ClassesChronomancer":3,"ClassesInvoker":21,"ClassesHuntress":11,"ClassesAmazon":12,"ClassesAcolyte of Chayula":23,"ClassesDuelist":19,"ClassesWitch":7,"ClassesInfernalist":9,"ClassesMercenary":30,"ClassesTactician":32,"ClassesMarauder":29,"ClassesSmith of Kitava":15,"ClassesShaman":1,"ClassesWitchhunter":5,"ClassesWarrior":2,"ClassesRitualist":17,"ClassesLich":14,"ClassesTitan":4,"ClassesOracle":22,"ClassesBlood Mage":26,"ClassesAbyssal Lich":18,"ClassesSorceress":24,"ClassesGemling Legionnaire":10},"skills-disabled_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"mastery-active-effect_776_768_BC7.dds.zst":{"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern":4,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern":5,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern":6,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern":7,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern":8,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern":9,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern":10,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern":11,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern":45,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern":12,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern":13,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern":14,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern":15,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern":16,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern":17,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern":18,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern":19,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern":20,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern":21,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern":2,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern":24,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern":25,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern":26,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern":27,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern":28,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern":29,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern":37,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern":31,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern":32,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern":33,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern":34,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern":38,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern":36,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern":35,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern":23,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern":39,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern":57,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern":41,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern":30,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern":43,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern":44,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern":42,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern":46,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern":47,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern":48,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern":49,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern":55,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern":51,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern":40,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern":53,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern":54,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern":52,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern":56,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern":50,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern":58,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern":59,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern":60,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern":1,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern":22,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern":3},"group-background_92_92_BC7.dds.zst":{"AscendancyMiddle":1},"group-background_740_376_BC7.dds.zst":{"PSGroupBackground3":1,"PSGroupBackgroundLargeBlank":1},"skills-disabled_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds":78,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":127,"Art/2DArt/SkillIcons/passives/plusstrength.dds":2,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":80,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":119,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":3,"Art/2DArt/SkillIcons/passives/lightningint.dds":83,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":125,"Art/2DArt/SkillIcons/passives/firedamageint.dds":4,"Art/2DArt/SkillIcons/passives/damage.dds":5,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":84,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":113,"Art/2DArt/SkillIcons/passives/Remnant.dds":85,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":6,"Art/2DArt/SkillIcons/passives/tempint.dds":7,"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds":8,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":9,"Art/2DArt/SkillIcons/passives/plusattribute.dds":10,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":11,"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds":88,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":12,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":13,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":91,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":14,"Art/2DArt/SkillIcons/passives/minionlife.dds":15,"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds":16,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":94,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":111,"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds":82,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":18,"Art/2DArt/SkillIcons/passives/ChaosDamage.dds":131,"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds":19,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":112,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":20,"Art/2DArt/SkillIcons/passives/stun2h.dds":21,"Art/2DArt/SkillIcons/passives/accuracydex.dds":141,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":22,"Art/2DArt/SkillIcons/icongroundslam.dds":23,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":24,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":26,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":99,"Art/2DArt/SkillIcons/passives/life1.dds":28,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":102,"Art/2DArt/SkillIcons/passives/stunstr.dds":29,"Art/2DArt/SkillIcons/passives/blankStr.dds":121,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":120,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":106,"Art/2DArt/SkillIcons/passives/blankInt.dds":33,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds":107,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":108,"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds":162,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":52,"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds":109,"Art/2DArt/SkillIcons/passives/macedmg.dds":37,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":100,"Art/2DArt/SkillIcons/passives/flaskint.dds":105,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":40,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":149,"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":75,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":41,"Art/2DArt/SkillIcons/passives/MarkNode.dds":77,"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds":115,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":42,"Art/2DArt/SkillIcons/passives/damage_blue.dds":116,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":117,"Art/2DArt/SkillIcons/passives/damagestaff.dds":59,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":43,"Art/2DArt/SkillIcons/passives/fireresist.dds":44,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":45,"Art/2DArt/SkillIcons/passives/Rage.dds":147,"Art/2DArt/SkillIcons/passives/damagespells.dds":46,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":96,"Art/2DArt/SkillIcons/passives/evade.dds":122,"Art/2DArt/SkillIcons/passives/mana.dds":47,"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds":123,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":124,"Art/2DArt/SkillIcons/passives/damagesword.dds":126,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":48,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":128,"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds":129,"Art/2DArt/SkillIcons/passives/minionstr.dds":50,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":158,"Art/2DArt/SkillIcons/passives/accuracystr.dds":132,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":133,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":135,"Art/2DArt/SkillIcons/passives/manastr.dds":51,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":1,"Art/2DArt/SkillIcons/passives/castspeed.dds":53,"Art/2DArt/SkillIcons/passives/chargedex.dds":138,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":110,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":139,"Art/2DArt/SkillIcons/passives/shieldblock.dds":17,"Art/2DArt/SkillIcons/passives/trapsmax.dds":54,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":95,"Art/2DArt/SkillIcons/passives/knockback.dds":140,"Art/2DArt/SkillIcons/passives/trapdamage.dds":72,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":55,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":160,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":89,"Art/2DArt/SkillIcons/passives/blockstr.dds":157,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":57,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":86,"Art/2DArt/SkillIcons/passives/auraeffect.dds":155,"Art/2DArt/SkillIcons/passives/coldresist.dds":79,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":154,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":153,"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds":144,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":152,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":27,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":69,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":25,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":142,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":61,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":36,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":30,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":62,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":143,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":58,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":148,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":101,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":136,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":64,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":134,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":130,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":150,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":118,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":65,"Art/2DArt/SkillIcons/passives/firedamage.dds":66,"Art/2DArt/SkillIcons/passives/chargestr.dds":67,"Art/2DArt/SkillIcons/passives/blankDex.dds":31,"Art/2DArt/SkillIcons/passives/attackspeed.dds":39,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":146,"Art/2DArt/SkillIcons/passives/flaskstr.dds":35,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":68,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":38,"Art/2DArt/SkillIcons/passives/colddamage.dds":151,"Art/2DArt/SkillIcons/passives/energyshield.dds":145,"Art/2DArt/SkillIcons/passives/spellcritical.dds":76,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":56,"Art/2DArt/SkillIcons/passives/BucklerNode1.dds":104,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":71,"Art/2DArt/SkillIcons/passives/chargeint.dds":81,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds":156,"Art/2DArt/SkillIcons/passives/damageaxe.dds":73,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":87,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":70,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":159,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":34,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":114,"Art/2DArt/SkillIcons/passives/flaskdex.dds":103,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":32,"Art/2DArt/SkillIcons/passives/lightningstr.dds":90,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds":63,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":92,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":93,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":161,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":97,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":98,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":137,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds":60,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":74,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":163,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":164,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":49,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":165},"skills-disabled_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1}},"nodes":{"51534":{"orbit":3,"orbitIndex":14,"stats":["16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"connections":[{"orbit":0,"id":24483}],"group":545,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":51534},"58397":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Guilt","Paranoia"],"connections":[{"orbit":0,"id":19338},{"orbit":0,"id":31647},{"orbit":0,"id":2334}],"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Proficiency","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":1316,"isNotable":true,"stats":["+25 to Dexterity"],"skill":58397},"64352":{"orbit":0,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":44345}],"group":945,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":64352},"10508":{"orbit":7,"orbitIndex":15,"stats":["3% increased Attack Speed while holding a Shield"],"connections":[{"orbit":5,"id":21684}],"group":174,"name":"Shield Attack Speed","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":10508},"21080":{"orbit":7,"orbitIndex":19,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":-4,"id":1869}],"group":1038,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":21080},"12324":{"orbit":1,"orbitIndex":7,"stats":["5% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"connections":[{"orbit":0,"id":24764}],"group":427,"name":"Infusion Chance","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":12324},"46384":{"orbit":4,"orbitIndex":24,"recipe":["Envy","Isolation","Isolation"],"connections":[{"orbit":-5,"id":18746},{"orbit":0,"id":58138}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Wide Barrier","group":117,"isNotable":true,"stats":["30% increased Block chance","25% reduced Defences"],"skill":46384},"42275":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":5,"id":38014}],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds","name":"Earthbreaker","ascendancyName":"Titan","group":76,"isNotable":true,"stats":["25% chance for Slam Skills you use yourself to cause an additional Aftershock"],"skill":42275},"21468":{"orbit":3,"orbitIndex":12,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":6,"id":39274}],"group":632,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":21468},"47177":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":890,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":47177},"61312":{"orbit":4,"orbitIndex":42,"connections":[{"orbit":0,"id":56841}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":935,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":61312},"54036":{"orbit":3,"orbitIndex":2,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":30720},{"orbit":-7,"id":15809},{"orbit":-7,"id":17501},{"orbit":0,"id":18485}],"group":644,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":54036},"6274":{"orbit":7,"orbitIndex":17,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":56567}],"group":570,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":6274},"13379":{"orbit":0,"orbitIndex":0,"stats":["20% increased Stun Threshold while Parrying"],"connections":[{"orbit":0,"id":27761}],"group":1027,"name":"Stun Threshold during Parry","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":13379},"23062":{"orbit":2,"orbitIndex":0,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"connections":[{"orbit":0,"id":19122}],"group":425,"name":"Armour if Consumed Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":23062},"27082":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3446},{"orbit":0,"id":24646}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":187,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":27082},"32903":{"orbit":2,"orbitIndex":15,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":25361}],"group":1321,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":32903},"7777":{"orbit":4,"orbitIndex":18,"recipe":["Fear","Paranoia","Fear"],"connections":[{"orbit":7,"id":26739},{"orbit":0,"id":42205}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Breaking Point","group":343,"isNotable":true,"stats":["10% increased Duration of Elemental Ailments on Enemies","30% increased Magnitude of Non-Damaging Ailments you inflict"],"skill":7777},"23450":{"orbit":3,"orbitIndex":6,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":558}],"group":685,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":23450},"62757":{"orbit":2,"orbitIndex":4,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":46741}],"group":233,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":62757},"18831":{"orbit":2,"orbitIndex":19,"stats":["5% increased Block chance"],"connections":[{"orbit":7,"id":49545}],"group":1056,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":18831},"31517":{"orbit":2,"orbitIndex":4,"stats":["Skills Supported by Unleash have 10% increased Seal gain frequency"],"connections":[{"orbit":0,"id":11722},{"orbit":0,"id":46034}],"group":951,"name":"Seal Generation Frequency","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":31517},"10772":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Fear"],"connections":[{"orbit":0,"id":2119}],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Bloodthirsty","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","group":632,"isNotable":true,"stats":["20% increased amount of Life Leeched","Leech Life 25% faster"],"skill":10772},"35417":{"orbit":3,"orbitIndex":13,"recipe":["Guilt","Disgust","Paranoia"],"connections":[{"orbit":3,"id":28770},{"orbit":0,"id":23879}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Wyvern's Breath","group":344,"isNotable":true,"stats":["40% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently"],"skill":35417},"51535":{"orbit":2,"orbitIndex":13,"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"connections":[{"orbit":0,"id":8852}],"group":137,"name":"Life Leech and Slower Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":51535},"63021":{"orbit":3,"orbitIndex":14,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":23091}],"group":685,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":63021},"6010":{"orbit":2,"orbitIndex":8,"stats":["12% increased Accuracy Rating"],"connections":[{"orbit":0,"id":13367},{"orbit":0,"id":38969}],"group":1100,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":6010},"55491":{"orbit":1,"orbitIndex":7,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryAuras.dds","name":"Reservation Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":431,"connections":[],"stats":[],"skill":55491},"41886":{"orbit":2,"orbitIndex":14,"stats":["5% increased Chaos Damage","+3% to Chaos Resistance"],"connections":[{"orbit":7,"id":9663}],"group":1356,"name":"Chaos Damage and Resistance","icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","skill":41886},"50469":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32701}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1054,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":50469},"12751":{"orbit":2,"orbitIndex":15,"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"connections":[],"group":483,"name":"One Handed Critical Chance","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":12751},"9050":{"orbit":6,"orbitIndex":36,"stats":["3% increased Attack Speed"],"connections":[{"orbit":-4,"id":24958},{"orbit":-6,"id":37691}],"group":1172,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":9050},"25438":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds","name":"Heatproofing","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":48,"isNotable":true,"stats":["Body Armour grants Unaffected by Damaging Ailments"],"skill":25438},"440":{"orbit":0,"orbitIndex":0,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":-5,"id":6133}],"group":105,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":440},"3866":{"orbit":7,"orbitIndex":5,"stats":["Minions have 12% increased maximum Life"],"connections":[{"orbit":0,"id":32258},{"orbit":0,"id":14505}],"group":460,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":3866},"15427":{"orbit":3,"orbitIndex":6,"stats":["12% increased Melee Damage"],"connections":[{"orbit":0,"id":57379}],"group":134,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":15427},"48761":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","name":"Thorns Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":464,"connectionArt":"CharacterPlanned","stats":[],"skill":48761},"42802":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1377,"connections":[],"stats":[],"skill":42802},"36333":{"orbit":3,"orbitIndex":22,"recipe":["Paranoia","Suffering","Despair"],"connections":[{"orbit":0,"id":62360},{"orbit":0,"id":49259}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Explosive Empowerment","group":222,"isNotable":true,"stats":["Empowered Attacks deal 20% increased Damage","Enemies you kill with Empowered Attacks have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"],"skill":36333},"50609":{"orbit":3,"orbitIndex":18,"connections":[{"orbit":0,"id":11916}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds","name":"Hard to Kill","group":767,"isNotable":true,"stats":["40% increased Flask Life Recovery rate","Regenerate 0.75% of maximum Life per second"],"skill":50609},"49550":{"orbit":7,"orbitIndex":12,"recipe":["Ire","Greed","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Prolonged Fury","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","group":533,"isNotable":true,"stats":["Inherent loss of Rage is 25% slower"],"skill":49550},"49938":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":26196},{"orbit":0,"id":28002},{"orbit":0,"id":51795},{"orbit":0,"id":18822},{"orbit":0,"id":15580}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":338,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":49938},"51788":{"orbit":2,"orbitIndex":4,"stats":["10% reduced effect of Curses on you"],"connections":[{"orbit":-2,"id":5066}],"group":630,"name":"Curse Effect on you","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":51788},"64474":{"orbit":2,"orbitIndex":15,"stats":["15% faster start of Energy Shield Recharge"],"connections":[],"group":1101,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":64474},"22927":{"orbit":6,"orbitIndex":24,"stats":["6% increased Parried Debuff Magnitude","8% increased Parried Debuff Duration"],"connections":[{"orbit":0,"id":20582}],"group":1342,"name":"Parried Debuff Magnitude and Duration","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":22927},"15590":{"orbit":7,"orbitIndex":17,"stats":["Detonator skills have 8% increased Area of Effect"],"connections":[{"orbit":0,"id":26356}],"group":655,"name":"Detonator Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":15590},"29270":{"orbit":7,"orbitIndex":20,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-2,"id":7251}],"group":550,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":29270},"56547":{"orbit":5,"orbitIndex":21,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":4,"id":12189}],"group":449,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":56547},"11230":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":17672}],"icon":"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds","name":"Ritual Cadence","group":867,"isKeystone":true,"stats":["Invocation Skills instead Trigger Spells every 2 seconds","Invocation Skills cannot gain Energy while Triggering Spells","Invoked Spells consume 50% less Energy"],"skill":11230},"61170":{"orbit":1,"orbitIndex":3,"stats":["10% increased Fire Damage"],"connections":[{"orbit":7,"id":27186}],"group":653,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","skill":61170},"19359":{"orbit":3,"orbitIndex":2,"stats":["5% increased Chaos Damage","+3% to Chaos Resistance"],"connections":[{"orbit":4,"id":35095},{"orbit":0,"id":52245}],"group":1356,"name":"Chaos Damage and Resistance","icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","skill":19359},"45193":{"orbit":2,"orbitIndex":17,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":0,"id":4083}],"group":1073,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":45193},"32309":{"orbit":3,"orbitIndex":16,"stats":["15% increased Archon Buff duration"],"connections":[{"orbit":2,"id":59070}],"group":534,"name":"Archon Duration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":32309},"4544":{"orbit":7,"orbitIndex":8,"recipe":["Greed","Guilt","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds","name":"The Ancient Serpent","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":1113,"isNotable":true,"stats":["40% reduced Poison Duration on you","Life Flasks gain 0.1 charges per Second","+10 to Intelligence"],"skill":4544},"1801":{"orbit":7,"orbitIndex":5,"stats":["5% chance to Blind Enemies on Hit"],"connections":[{"orbit":3,"id":60}],"group":1328,"name":"Blind Chance","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":1801},"63813":{"orbit":7,"orbitIndex":20,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":0,"id":1169}],"group":292,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":63813},"7847":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds","name":"The Fabled Stag","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":1362,"isNotable":true,"stats":["40% increased Endurance, Frenzy and Power Charge Duration","+10 to Dexterity","Skills have 10% chance to not remove Charges but still count as consuming them"],"skill":7847},"38707":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":49734},{"orbit":0,"id":28564},{"orbit":0,"id":11464},{"orbit":0,"id":3723}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":207,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38707},"34487":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":511,"connections":[],"stats":[],"skill":34487},"6505":{"orbit":3,"orbitIndex":4,"stats":["15% chance to Pierce an Enemy"],"connections":[{"orbit":0,"id":55060}],"group":790,"name":"Pierce Chance","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":6505},"35015":{"orbit":0,"orbitIndex":0,"stats":["10% increased Magnitude of Bleeding you inflict"],"connections":[{"orbit":0,"id":6655}],"group":659,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":35015},"36737":{"orbit":2,"orbitIndex":0,"stats":["10% increased Area Damage"],"connections":[{"orbit":-2,"id":7542}],"group":239,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":36737},"36070":{"orbit":4,"orbitIndex":45,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":14045}],"group":1046,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":36070},"15885":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":3,"id":12367},{"orbit":0,"id":22783},{"orbit":0,"id":11679},{"orbit":0,"id":42680}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":661,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":15885},"53910":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":9212},{"orbit":7,"id":58368}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","name":"Forbidden Path","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":291,"connectionArt":"CharacterPlanned","stats":["5% reduced maximum Life","-10% to all Elemental Resistances","Minions Recoup 30% of Damage taken as Life","Minions Gain 20% of Elemental Damage as Extra Chaos Damage"],"skill":53910},"18568":{"orbit":2,"orbitIndex":1,"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"connections":[{"orbit":-5,"id":46887}],"group":1169,"name":"Mana Leech and Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":18568},"32763":{"orbit":1,"orbitIndex":6,"connections":[],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":1399,"stats":[],"skill":32763},"41096":{"orbit":5,"orbitIndex":36,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":35901},{"orbit":5,"id":31345}],"group":1143,"name":"Elemental Damage and Shock Chance","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":41096},"6988":{"orbit":2,"orbitIndex":10,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","name":"Herald Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1381,"connections":[],"stats":[],"skill":6988},"16784":{"orbit":5,"orbitIndex":68,"stats":["16% increased Totem Life"],"connections":[{"orbit":0,"id":31650}],"group":314,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":16784},"54562":{"orbit":2,"orbitIndex":10,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":2745}],"group":1255,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","skill":54562},"47831":{"orbit":2,"orbitIndex":18,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":8734},{"orbit":0,"id":49996}],"group":1309,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":47831},"25363":{"orbit":7,"orbitIndex":20,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":44098},{"orbit":0,"id":1823},{"orbit":0,"id":34531}],"group":647,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":25363},"42805":{"orbit":7,"orbitIndex":6,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-5,"id":26034}],"group":1257,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":42805},"60913":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds","name":"Kitavan Engraving","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":52,"isNotable":true,"stats":["Body Armour grants 15% increased maximum Life"],"skill":60913},"44527":{"orbit":2,"orbitIndex":2,"connections":[{"orbit":0,"id":44875}],"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds","name":"Cautious Concoctions","isSwitchable":true,"options":{"Huntress":{"stats":["25% increased Elemental Ailment Threshold","25% increased Stun Threshold while on Full Life"],"id":55535,"icon":"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds","name":"Attuned with Nature"}},"group":935,"isNotable":true,"stats":["15% increased Flask Effect Duration","15% increased Flask Charges gained"],"skill":44527},"53108":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":36822}],"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds","name":"Adaptive Capability","ascendancyName":"Gemling Legionnaire","group":517,"isNotable":true,"stats":["Attribute Requirements of Gems can be satisified by your highest Attribute"],"skill":53108},"23455":{"orbit":0,"orbitIndex":0,"stats":["10% increased Cold Damage"],"connections":[{"orbit":0,"id":49740},{"orbit":0,"id":55847}],"group":1012,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":23455},"30252":{"orbit":7,"orbitIndex":18,"stats":["Charms applied to you have 10% increased Effect"],"connections":[{"orbit":4,"id":20049},{"orbit":-4,"id":48135}],"group":968,"name":"Charm Effect","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":30252},"25239":{"orbit":8,"orbitIndex":66,"connections":[{"orbit":-3,"id":63894}],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds","name":"Demonic Possession","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["Grants Skill: Demon Form"],"skill":25239},"21935":{"orbit":3,"orbitIndex":23,"recipe":["Suffering","Isolation","Despair"],"connections":[{"orbit":0,"id":18240}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Calibration","group":350,"isNotable":true,"stats":["30% increased maximum Energy Shield","4% increased maximum Mana"],"skill":21935},"13279":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":2864}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":599,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":13279},"55621":{"orbit":7,"orbitIndex":16,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":-3,"id":38537}],"group":1410,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":55621},"30979":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":46358},{"orbit":0,"id":44733},{"orbit":0,"id":12610}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":564,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":30979},"8554":{"orbit":4,"orbitIndex":54,"recipe":["Greed","Isolation","Greed"],"connections":[{"orbit":0,"id":47191}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Burning Nature","group":260,"isNotable":true,"stats":["25% increased Fire Damage","15% increased Ignite Duration on Enemies"],"skill":8554},"38320":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":90,"connections":[],"stats":[],"skill":38320},"37389":{"orbit":2,"orbitIndex":4,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":37644},{"orbit":0,"id":28061}],"group":1062,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":37389},"34612":{"orbit":5,"orbitIndex":16,"stats":["12% increased Damage with Bows"],"connections":[{"orbit":0,"id":60764}],"group":1387,"name":"Bow Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":34612},"7979":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":19233}],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds","name":"Elemental Surge","ascendancyName":"Amazon","group":1470,"isNotable":true,"stats":["When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges","Grants Skill: Elemental Surge"],"skill":7979},"65009":{"orbit":6,"orbitIndex":30,"connections":[{"orbit":0,"id":29517},{"orbit":7,"id":31855},{"orbit":0,"id":61373}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1041,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":65009},"1995":{"orbit":0,"orbitIndex":0,"stats":["20% increased chance to inflict Ailments with Projectiles"],"connections":[],"group":1087,"name":"Projectile Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":1995},"36071":{"orbit":5,"orbitIndex":12,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds","name":"Spear Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern","group":1322,"connections":[],"stats":[],"skill":36071},"25503":{"orbit":7,"orbitIndex":16,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":27068},{"orbit":0,"id":45632}],"group":280,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":25503},"57204":{"orbit":2,"orbitIndex":13,"recipe":["Envy","Paranoia","Ire"],"connections":[{"orbit":0,"id":47833}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Exploit","group":880,"isNotable":true,"stats":["25% increased Critical Hit Chance"],"skill":57204},"35404":{"orbit":7,"orbitIndex":2,"stats":["+5% to Cold Resistance"],"connections":[{"orbit":2,"id":43250}],"group":144,"name":"Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","skill":35404},"49804":{"orbit":2,"orbitIndex":22,"stats":["10% increased Exposure Effect"],"connections":[{"orbit":0,"id":24035}],"group":841,"name":"Exposure Effect","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":49804},"51522":{"orbit":2,"orbitIndex":22,"stats":["3% increased Attack Speed"],"connections":[{"orbit":-7,"id":56493}],"group":1110,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":51522},"11525":{"orbit":2,"orbitIndex":8,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":64724}],"group":175,"name":"Flammability and Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":11525},"22133":{"orbit":7,"orbitIndex":4,"connections":[{"orbit":0,"id":39857}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":376,"connectionArt":"CharacterPlanned","stats":["Minions have 25% increased Cooldown Recovery Rate for Command Skills"],"skill":22133},"7120":{"orbit":9,"orbitIndex":72,"connections":[{"orbit":-8,"id":43131},{"orbit":0,"id":20830},{"orbit":8,"id":61897},{"orbit":0,"id":51737},{"orbit":0,"id":25172}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Witchhunter","ascendancyName":"Witchhunter","isAscendancyStart":true,"group":271,"stats":[],"skill":7120},"13341":{"orbit":2,"orbitIndex":4,"stats":["20% increased Frenzy Charge Duration"],"connections":[{"orbit":0,"id":63255},{"orbit":0,"id":56841},{"orbit":0,"id":18451}],"group":952,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":13341},"14272":{"orbit":2,"orbitIndex":7,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","name":"Spell Suppression Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","group":1124,"connections":[],"stats":[],"skill":14272},"10602":{"orbit":4,"orbitIndex":9,"recipe":["Despair","Ire","Envy"],"connections":[{"orbit":0,"id":8629}],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"Reaving","group":386,"isNotable":true,"stats":["8% increased Attack Speed with One Handed Weapons","+15 to Dexterity"],"skill":10602},"5188":{"orbit":7,"orbitIndex":19,"stats":["8% increased Energy Shield Recharge Rate","8% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":27671},{"orbit":0,"id":38668}],"group":1175,"name":"Energy Shield Recharge and Delay","icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","skill":5188},"12418":{"orbit":2,"orbitIndex":21,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":0,"id":51832},{"orbit":0,"id":3988}],"group":184,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":12418},"37250":{"orbit":2,"orbitIndex":16,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":0,"id":1420}],"group":1092,"name":"Attack Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":37250},"42680":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds","name":"Blackflame Covenant","group":674,"isKeystone":true,"stats":["Fire Spells Convert 100% of Fire Damage to Chaos Damage","Chaos Damage from Fire Spells Contributes to Flammability and Ignite Magnitudes","Ignite inflicted with Fire Spells deals Chaos Damage instead of Fire Damage"],"skill":42680},"10571":{"orbit":3,"orbitIndex":17,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":0,"id":48240}],"group":448,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":10571},"36723":{"orbit":2,"orbitIndex":0,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":3700}],"group":1215,"name":"Stun and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","skill":36723},"22928":{"orbit":5,"orbitIndex":69,"connections":[{"orbit":0,"id":27373}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":512,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":22928},"38972":{"orbit":3,"orbitIndex":8,"recipe":["Despair","Fear","Disgust"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":8357}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Restless Dead","group":461,"isNotable":true,"stats":["Minions Revive 25% faster"],"skill":38972},"38057":{"orbit":5,"orbitIndex":58,"stats":["12% increased Armour and Evasion Rating"],"connections":[],"group":768,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":38057},"15358":{"orbit":3,"orbitIndex":15,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":7,"id":10320},{"orbit":-7,"id":44255}],"group":893,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":15358},"45319":{"orbit":3,"orbitIndex":16,"stats":["8% increased Spell Damage"],"connections":[{"orbit":0,"id":55041},{"orbit":0,"id":26135},{"orbit":0,"id":3251}],"group":1134,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":45319},"32564":{"orbit":0,"orbitIndex":0,"stats":["1% increased Movement Speed","4% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":37519},{"orbit":0,"id":39207}],"group":621,"name":"Movement Speed and Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":32564},"32891":{"orbit":7,"orbitIndex":7,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 3% of Evasion Rating"],"connections":[{"orbit":-2,"id":331},{"orbit":-7,"id":22329}],"group":1201,"name":"Deflection and Evasion","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":32891},"47429":{"orbit":6,"orbitIndex":6,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[],"group":383,"name":"Warcry Cooldown","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":47429},"37778":{"orbit":3,"orbitIndex":20,"connections":[{"orbit":0,"id":24929},{"orbit":0,"id":13108}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Self Sacrificing","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":188,"connectionArt":"CharacterPlanned","stats":["20% reduced Spirit Reservation Efficiency of Skills","40% increased Reservation Efficiency of Minion Skills"],"skill":37778},"49153":{"orbit":4,"orbitIndex":66,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Comradery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":354,"connectionArt":"CharacterPlanned","stats":["30% increased Damage","Minions deal 30% increased Damage"],"skill":49153},"57608":{"orbit":2,"orbitIndex":15,"stats":["12% increased Physical Damage while Shapeshifted"],"connections":[{"orbit":0,"id":61703}],"group":325,"name":"Shapeshifted Physical Damage","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":57608},"13411":{"orbit":5,"orbitIndex":42,"connections":[{"orbit":7,"id":34136}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":986,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":13411},"59053":{"orbit":3,"orbitIndex":8,"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"connections":[{"orbit":-7,"id":54805}],"group":1026,"name":"Slow Effect and Hinder Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":59053},"52454":{"orbit":3,"orbitIndex":21,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":3,"id":46604}],"group":610,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":52454},"12488":{"orbit":9,"orbitIndex":8,"connections":[{"orbit":0,"id":49189}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Remnant Range","ascendancyName":"Stormweaver","group":502,"stats":["Remnants can be collected from 25% further away"],"skill":12488},"23192":{"orbit":4,"orbitIndex":42,"stats":["5% increased Block chance"],"connections":[],"group":174,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":23192},"53373":{"orbit":4,"orbitIndex":45,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":3,"id":39517},{"orbit":0,"id":36629}],"group":567,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":53373},"47833":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":880,"connections":[],"stats":[],"skill":47833},"17045":{"orbit":4,"orbitIndex":42,"stats":["2% increased Movement Speed"],"connections":[{"orbit":6,"id":55131}],"group":621,"name":"Movement Speed ","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":17045},"10835":{"orbit":3,"orbitIndex":16,"stats":["Banner Skills have 20% increased Duration"],"connections":[{"orbit":0,"id":48026},{"orbit":2147483647,"id":53367}],"group":491,"name":"Banner Duration","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":10835},"49150":{"orbit":3,"orbitIndex":7,"recipe":["Envy","Ire","Isolation"],"connections":[{"orbit":0,"id":36759}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Precise Invocations","group":1119,"isNotable":true,"stats":["Invocated Spells have 30% increased Critical Hit Chance"],"skill":49150},"18895":{"orbit":1,"orbitIndex":6,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"connections":[{"orbit":3,"id":12661}],"group":942,"name":"Stun Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":18895},"5101":{"orbit":0,"orbitIndex":0,"stats":["8% increased Energy Shield Recharge Rate","Minions Revive 3% faster"],"connections":[{"orbit":-5,"id":35558},{"orbit":0,"id":46358}],"group":594,"name":"Minion Revive Speed and Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":5101},"38570":{"orbit":7,"orbitIndex":10,"recipe":["Ire","Suffering","Envy"],"connections":[{"orbit":2,"id":53895},{"orbit":0,"id":27992}],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Demolitionist","group":613,"isNotable":true,"stats":["Gain 4% of Damage as Extra Fire Damage for","every different Grenade fired in the past 8 seconds"],"skill":38570},"44917":{"orbit":7,"orbitIndex":0,"recipe":["Ire","Envy","Envy"],"connections":[{"orbit":0,"id":34984}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Self Mortification","group":942,"isNotable":true,"stats":["Gain additional Stun Threshold equal to 20% of maximum Energy Shield","20% increased Stun Threshold while on Full Life"],"skill":44917},"30061":{"orbit":2,"orbitIndex":4,"stats":["6% increased Curse Magnitudes"],"connections":[{"orbit":0,"id":31908}],"group":982,"name":"Curse Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":30061},"40292":{"orbit":1,"orbitIndex":2,"recipe":["Greed","Despair","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Nimble Strength","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":295,"isNotable":true,"stats":["10% increased Attack Damage","Gain Accuracy Rating equal to your Strength"],"skill":40292},"22851":{"orbit":2,"orbitIndex":0,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"connections":[{"orbit":2147483647,"id":50268}],"group":1118,"name":"Cold and Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","skill":22851},"10998":{"orbit":4,"orbitIndex":30,"recipe":["Paranoia","Ire","Guilt"],"connections":[{"orbit":0,"id":21438},{"orbit":0,"id":62235}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Strong Chin","group":873,"isNotable":true,"stats":["Gain Stun Threshold equal to the lowest of Evasion and Armour on your Helmet"],"skill":10998},"25304":{"orbit":7,"orbitIndex":5,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":-2,"id":61056}],"group":1174,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":25304},"6839":{"orbit":7,"orbitIndex":14,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":39581}],"group":614,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":6839},"53901":{"orbit":3,"orbitIndex":12,"stats":["5% increased Block chance"],"connections":[{"orbit":7,"id":34375}],"group":446,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":53901},"39237":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1250,"connections":[],"stats":[],"skill":39237},"35809":{"orbit":1,"orbitIndex":6,"recipe":["Disgust","Envy","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Reinvigoration","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":1148,"isNotable":true,"stats":["Regenerate 1% of maximum Life per Second if you've used a Life Flask in the past 10 seconds"],"skill":35809},"25890":{"orbit":2,"orbitIndex":5,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"connections":[{"orbit":0,"id":54378}],"group":339,"name":"Recover Mana on consuming Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":25890},"32233":{"orbit":2,"orbitIndex":21,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","name":"Duration Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","group":788,"connections":[],"stats":[],"skill":32233},"27674":{"orbit":2,"orbitIndex":10,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":44082}],"group":472,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":27674},"22661":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":8,"id":30233}],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Movement Speed","ascendancyName":"Ritualist","group":1496,"stats":["3% increased Movement Speed"],"skill":22661},"32768":{"orbit":2,"orbitIndex":17,"connections":[{"orbit":0,"id":8107}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":276,"connectionArt":"CharacterPlanned","stats":["20% increased Glory generation"],"skill":32768},"36197":{"orbit":3,"orbitIndex":19,"connections":[{"orbit":2147483647,"id":27096}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["30% increased Totem Placement speed"],"skill":36197},"33823":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1066,"connections":[],"stats":[],"skill":33823},"57202":{"orbit":2,"orbitIndex":12,"connections":[{"orbit":2147483647,"id":1628}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["17% increased Stun Threshold"],"skill":57202},"6872":{"orbit":4,"orbitIndex":4,"stats":["+15% of Armour also applies to Cold Damage"],"connections":[{"orbit":0,"id":33939}],"group":143,"name":"Armour Applies to Cold Damage Hits","icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","skill":6872},"41225":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","name":"Minion Defence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","group":889,"connections":[],"stats":[],"skill":41225},"62496":{"orbit":6,"orbitIndex":48,"stats":["10% increased Trap Damage"],"connections":[{"orbit":0,"id":34912}],"group":1347,"name":"Trap Damage","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":62496},"48889":{"orbit":7,"orbitIndex":8,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":28038},{"orbit":0,"id":56488}],"group":907,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":48889},"14761":{"orbit":2,"orbitIndex":6,"recipe":["Fear","Fear","Paranoia"],"connections":[{"orbit":0,"id":45215},{"orbit":0,"id":57775}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Warlord Leader","group":413,"isNotable":true,"stats":["Allies in your Presence deal 40% increased Damage","40% increased Presence Area of Effect"],"skill":14761},"20350":{"orbit":3,"orbitIndex":10,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"connections":[{"orbit":0,"id":4948},{"orbit":0,"id":47006},{"orbit":0,"id":28304}],"group":370,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":20350},"29458":{"orbit":7,"orbitIndex":14,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[],"group":1409,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":29458},"3203":{"orbit":7,"orbitIndex":14,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-4,"id":30562}],"group":1064,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":3203},"20416":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Grit","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":425,"isNotable":true,"stats":["10% chance when you gain an Endurance Charge to gain an additional Endurance Charge","+1 to Maximum Endurance Charges"],"skill":20416},"4527":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54701}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":231,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":4527},"41877":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":53958},{"orbit":0,"id":64601}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1229,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":41877},"29788":{"orbit":7,"orbitIndex":4,"stats":["12% increased amount of Life Leeched"],"connections":[{"orbit":-2,"id":46060}],"group":550,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":29788},"61703":{"orbit":3,"orbitIndex":20,"recipe":["Ire","Greed","Greed"],"connections":[{"orbit":0,"id":41180},{"orbit":0,"id":9037}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Sharpened Claw","group":325,"isNotable":true,"stats":["30% increased Physical Damage while Shapeshifted"],"skill":61703},"41753":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Envy","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds","name":"Evocational Practitioner","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1366,"isNotable":true,"stats":["25% increased Critical Hit Chance if you've Triggered a Skill Recently","Meta Skills gain 25% increased Energy if you've dealt a Critical Hit Recently"],"skill":41753},"14001":{"orbit":2,"orbitIndex":22,"stats":["6% reduced Charm Charges used"],"connections":[{"orbit":-3,"id":56893}],"group":1202,"name":"Charm Charges Used","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":14001},"45709":{"orbit":7,"orbitIndex":21,"stats":["15% increased Life Flask Charges gained"],"connections":[{"orbit":0,"id":52803}],"group":1189,"name":"Life Flask Charges","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":45709},"47555":{"orbit":6,"orbitIndex":22,"connections":[{"orbit":0,"id":51184},{"orbit":0,"id":18407},{"orbit":0,"id":39886}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":648,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":47555},"7066":{"orbit":4,"orbitIndex":6,"connections":[{"orbit":0,"id":23932}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["5% increased Attack Speed with Bows"],"skill":7066},"42017":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Spirit","ascendancyName":"Ritualist","group":1487,"stats":["25% reduced Spirit"],"skill":42017},"8260":{"orbit":7,"orbitIndex":0,"stats":["20% increased Armour Break Duration"],"connections":[{"orbit":0,"id":21453}],"group":205,"name":"Armour Break Duration","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":8260},"61438":{"orbit":6,"orbitIndex":62,"connections":[{"orbit":0,"id":28510}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":727,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":61438},"13241":{"orbit":6,"orbitIndex":48,"connections":[{"orbit":0,"id":51921},{"orbit":0,"id":55746},{"orbit":0,"id":39732}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":623,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":13241},"37780":{"orbit":3,"orbitIndex":1,"stats":["10% Chance to build an additional Combo on Hit"],"connections":[{"orbit":0,"id":7888}],"group":1372,"name":"Combo Gain","icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","skill":37780},"24570":{"orbit":2,"orbitIndex":19,"stats":["Enemies Blinded by you have 15% reduced Critical Hit Chance"],"connections":[{"orbit":0,"id":28441}],"group":1184,"name":"Blinded Enemies Critical","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":24570},"33824":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":42253}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Defences","ascendancyName":"Shaman","group":63,"stats":["10% increased Defences"],"skill":33824},"28268":{"orbit":1,"orbitIndex":6,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"connections":[{"orbit":0,"id":36630},{"orbit":0,"id":20837}],"group":991,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":28268},"55888":{"orbit":0,"orbitIndex":0,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":18746},{"orbit":0,"id":49256},{"orbit":0,"id":440}],"group":116,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":55888},"38044":{"orbit":7,"orbitIndex":4,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":-4,"id":37695}],"group":1111,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":38044},"32637":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds","name":"Stay Light, Use Cover","ascendancyName":"Tactician","group":365,"isNotable":true,"stats":["Defend with 200% of Armour","Enemies have an Accuracy Penalty against you based on Distance","Maximum Chance to Evade is 50%","Maximum Physical Damage Reduction is 50%"],"skill":32637},"12255":{"orbit":2,"orbitIndex":0,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":989},{"orbit":0,"id":27740}],"group":279,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":12255},"18167":{"orbit":2,"orbitIndex":10,"stats":["Invocated Spells have 12% increased Critical Hit Chance"],"connections":[{"orbit":-2,"id":49150}],"group":1119,"name":"Invocation Critical Hits","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":18167},"59720":{"orbit":5,"orbitIndex":42,"recipe":["Greed","Disgust","Envy"],"connections":[{"orbit":0,"id":41163}],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Beastial Skin","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1353,"isNotable":true,"stats":["100% increased Evasion Rating from Equipped Body Armour"],"skill":59720},"8423":{"orbit":4,"orbitIndex":60,"connections":[{"orbit":0,"id":60708}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["5% increased Attack Speed with Bows"],"skill":8423},"2113":{"orbit":3,"orbitIndex":13,"recipe":["Isolation","Ire","Fear"],"connections":[{"orbit":0,"id":326},{"orbit":0,"id":59694}],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Martial Artistry","group":1388,"isNotable":true,"stats":["25% increased Accuracy Rating with Quarterstaves","25% increased Critical Damage Bonus with Quarterstaves","+25 to Dexterity"],"skill":2113},"6686":{"orbit":2,"orbitIndex":1,"connections":[{"orbit":-4,"id":51184}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"id":29472,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life"}},"group":723,"isSwitchable":true,"stats":["10% increased Mana Regeneration Rate"],"skill":6686},"64345":{"orbit":2,"orbitIndex":16,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":49968},{"orbit":0,"id":63679}],"group":1112,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":64345},"15855":{"orbit":5,"orbitIndex":41,"stats":["10% increased Damage with Swords"],"connections":[{"orbit":0,"id":37963}],"group":546,"name":"Sword Damage","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":15855},"35671":{"orbit":4,"orbitIndex":57,"stats":["2% increased Attack Speed","+5 to Dexterity"],"connections":[{"orbit":3,"id":31172}],"group":1243,"name":"Attack Speed and Dexterity","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":35671},"22057":{"orbit":7,"orbitIndex":21,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":2,"id":30143},{"orbit":4,"id":36808}],"group":1140,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":22057},"17112":{"orbit":2,"orbitIndex":19,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"connections":[{"orbit":-7,"id":64900},{"orbit":2,"id":4331}],"group":122,"name":"Ancestral Boosted Attack Damage and Stun","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":17112},"48611":{"orbit":2,"orbitIndex":0,"stats":["Minions have +8% to all Elemental Resistances"],"connections":[{"orbit":0,"id":4271},{"orbit":0,"id":46554}],"group":889,"name":"Minion Resistances","icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","skill":48611},"61429":{"orbit":7,"orbitIndex":20,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"connections":[{"orbit":3,"id":44902}],"group":189,"name":"Attack and Spell Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":61429},"25303":{"orbit":0,"orbitIndex":0,"stats":["Minions have +3% to Maximum Fire Resistances","Minions have +20% to Fire Resistance"],"connections":[],"group":557,"name":"Minion Fire Resistance","icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","skill":25303},"917":{"orbit":3,"orbitIndex":10,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":0,"id":65160}],"group":150,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":917},"28408":{"orbit":3,"orbitIndex":22,"recipe":["Envy","Disgust","Despair"],"connections":[{"orbit":0,"id":65042}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Invigorating Hate","group":176,"isNotable":true,"stats":["Consume all Rage when Shapeshifting to Human form to recover 1% of maximum life per Rage Consumed"],"skill":28408},"49280":{"orbit":7,"orbitIndex":7,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":3,"id":36170}],"group":667,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":49280},"52445":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Evasion and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","group":1256,"connections":[],"stats":[],"skill":52445},"19482":{"orbit":9,"orbitIndex":109,"connections":[{"orbit":0,"id":36564}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","ascendancyName":"Infernalist","group":725,"stats":["3% increased maximum Life"],"skill":19482},"16150":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Despair"],"connections":[{"orbit":0,"id":37971}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Inspiring Ally","group":1418,"isNotable":true,"stats":["Increases and Reductions to Companion Damage also apply to you"],"skill":16150},"62230":{"orbit":6,"orbitIndex":0,"recipe":["Suffering","Isolation","Fear"],"connections":[{"orbit":0,"id":19355}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Patient Barrier","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":953,"isNotable":true,"stats":["60% increased maximum Energy Shield","20% slower start of Energy Shield Recharge"],"skill":62230},"32364":{"orbit":2,"orbitIndex":7,"stats":["10% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":32858}],"group":1351,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":32364},"41739":{"orbit":2,"orbitIndex":4,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":13279}],"group":552,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":41739},"58926":{"orbit":7,"orbitIndex":16,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":64572}],"group":322,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":58926},"30390":{"orbit":3,"orbitIndex":18,"stats":["5% increased Block chance"],"connections":[{"orbit":3,"id":33978}],"group":442,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":30390},"58125":{"orbit":4,"orbitIndex":60,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":5,"id":10681}],"group":117,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":58125},"35408":{"orbit":2,"orbitIndex":12,"stats":["40% increased Energy Shield from Equipped Focus"],"connections":[{"orbit":4,"id":36474}],"group":406,"name":"Focus Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":35408},"16705":{"orbit":6,"orbitIndex":66,"connections":[{"orbit":4,"id":25851},{"orbit":0,"id":34621},{"orbit":0,"id":61834}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1172,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":16705},"43461":{"orbit":5,"orbitIndex":24,"stats":["8% increased Fire Damage","8% increased Attack Damage"],"connections":[{"orbit":0,"id":51299}],"group":487,"name":"Fire Damage and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":43461},"41615":{"orbit":7,"orbitIndex":10,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":4,"id":10534},{"orbit":0,"id":22616}],"group":363,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":41615},"52973":{"orbit":2,"orbitIndex":11,"stats":["15% chance to Impale on Spell Hit"],"connections":[{"orbit":0,"id":12851},{"orbit":0,"id":57555}],"group":654,"name":"Impale Chance","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":52973},"30456":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Greed"],"connections":[{"orbit":-5,"id":38044}],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"High Alert","group":1122,"isNotable":true,"stats":["50% increased Evasion Rating when on Full Life","25% increased Stun Threshold while on Full Life"],"skill":30456},"4985":{"orbit":7,"orbitIndex":8,"recipe":["Ire","Disgust","Ire"],"connections":[{"orbit":0,"id":58855}],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Flip the Script","group":236,"isNotable":true,"stats":["Recover 50% of maximum Life when you Heavy Stun a Rare or Unique Enemy"],"skill":4985},"60107":{"orbit":2,"orbitIndex":9,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":57204}],"group":880,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":60107},"29399":{"orbit":3,"orbitIndex":20,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":7,"id":23888},{"orbit":-7,"id":51446}],"group":676,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":29399},"64996":{"orbit":7,"orbitIndex":20,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":-4,"id":7782},{"orbit":7,"id":4810}],"group":1080,"name":"Bleed Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":64996},"55746":{"orbit":7,"orbitIndex":4,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":-2,"id":61935}],"group":533,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":55746},"19424":{"orbit":6,"orbitIndex":48,"connections":[{"orbit":0,"id":60634}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Strength","ascendancyName":"Titan","group":77,"stats":["4% increased Strength"],"skill":19424},"21208":{"orbit":7,"orbitIndex":14,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"connections":[],"group":1186,"name":"Curse Activation Speed and Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":21208},"11464":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":0,"id":27405}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Movement Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":294,"connectionArt":"CharacterPlanned","stats":["3% increased Movement Speed"],"skill":11464},"32438":{"orbit":0,"orbitIndex":0,"stats":["11% increased Chaos Damage"],"connections":[{"orbit":4,"id":55149}],"group":1216,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":32438},"8881":{"orbit":4,"orbitIndex":6,"recipe":["Isolation","Greed","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Unforgiving","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","group":286,"isNotable":true,"stats":["+4 to Maximum Rage","Inherent loss of Rage is 20% slower"],"skill":8881},"25162":{"orbit":2,"orbitIndex":10,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":59785}],"group":100,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":25162},"29985":{"orbit":7,"orbitIndex":14,"connections":[{"orbit":0,"id":61113}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":291,"connectionArt":"CharacterPlanned","stats":["Minions deal 15% increased Damage"],"skill":29985},"9843":{"orbit":4,"orbitIndex":66,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameSmallCanAllocate","alloc":"Disciple of VarashtaFrameSmallAllocated","unalloc":"Disciple of VarashtaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Mana","ascendancyName":"Disciple of Varashta","group":593,"stats":["3% increased maximum Mana"],"skill":9843},"34074":{"orbit":2,"orbitIndex":13,"stats":["10% increased Critical Hit Chance for Attacks"],"connections":[{"orbit":4,"id":23259}],"group":987,"name":"Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":34074},"28201":{"orbit":4,"orbitIndex":21,"connections":[{"orbit":0,"id":56174},{"orbit":0,"id":10636}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Block Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["5% increased Block chance","15% increased Armour while stationary"],"skill":28201},"506":{"orbit":2,"orbitIndex":14,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":6416}],"group":268,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":506},"28267":{"orbit":3,"orbitIndex":4,"recipe":["Envy","Suffering","Greed"],"connections":[{"orbit":0,"id":2672},{"orbit":0,"id":35085}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Desensitisation","group":214,"isNotable":true,"stats":["25% increased Critical Damage Bonus","Hits against you have 25% reduced Critical Damage Bonus"],"skill":28267},"29663":{"orbit":2,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Movement Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":294,"connectionArt":"CharacterPlanned","stats":[],"skill":29663},"4956":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Recovery Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","group":561,"connections":[],"stats":[],"skill":4956},"21670":{"orbit":1,"orbitIndex":7,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":29358}],"group":150,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":21670},"5398":{"orbit":4,"orbitIndex":34,"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"connections":[{"orbit":-6,"id":51820}],"group":287,"name":"Totem Cast Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":5398},"43460":{"orbit":0,"orbitIndex":0,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"connections":[{"orbit":4,"id":63678},{"orbit":-5,"id":63085}],"group":162,"name":"Shapeshifted Armour","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":43460},"58388":{"orbit":3,"orbitIndex":23,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":13157},{"orbit":0,"id":17702}],"group":1095,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":58388},"45570":{"orbit":7,"orbitIndex":18,"stats":["Offering Skills have 20% increased Area of Effect"],"connections":[{"orbit":0,"id":43713},{"orbit":0,"id":29009}],"group":779,"name":"Offering Area","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":45570},"12683":{"orbit":7,"orbitIndex":4,"connections":[{"orbit":0,"id":33618},{"orbit":0,"id":61974}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Power of the Storm","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":571,"connectionArt":"CharacterPlanned","stats":["50% increased Damage if you've Triggered a Skill Recently"],"skill":12683},"8982":{"orbit":3,"orbitIndex":12,"stats":["10% increased Freeze Buildup","6% increased Skill Effect Duration"],"connections":[{"orbit":0,"id":14952},{"orbit":0,"id":58926}],"group":322,"name":"Freeze Buildup and Skill Effect Duration","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":8982},"61039":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds","name":"Tantalum Alloy","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":55,"isNotable":true,"stats":["Body Armour grants +75% to Fire Resistance"],"skill":61039},"30720":{"orbit":2,"orbitIndex":2,"recipe":["Suffering","Suffering","Envy"],"connections":[{"orbit":0,"id":20119}],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Entropic Incarnation","group":644,"isNotable":true,"stats":["Minions have +13% to Chaos Resistance","Minions gain 10% of Physical Damage as Chaos Damage"],"skill":30720},"33423":{"orbit":7,"orbitIndex":13,"connections":[{"orbit":2147483647,"id":65192}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"skill":33423},"64995":{"orbit":3,"orbitIndex":0,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[{"orbit":0,"id":17924}],"group":374,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":64995},"6950":{"orbit":2,"orbitIndex":2,"stats":["10% increased Exposure Effect"],"connections":[{"orbit":0,"id":49804}],"group":841,"name":"Exposure Effect","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":6950},"47168":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-4,"id":6006},{"orbit":0,"id":54521},{"orbit":-4,"id":55412},{"orbit":0,"id":25570}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":554,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":47168},"11030":{"orbit":3,"orbitIndex":10,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":59596}],"group":268,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":11030},"36728":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds","name":"Thaumaturgical Infusion","ascendancyName":"Gemling Legionnaire","group":519,"isNotable":true,"stats":["+1% to Maximum Cold Resistance per 3 Blue Support Gems Socketed","+1% to Maximum Fire Resistance per 3 Red Support Gems Socketed","+1% to Maximum Lightning Resistance per 3 Green Support Gems Socketed"],"skill":36728},"18959":{"orbit":2,"orbitIndex":14,"recipe":["Paranoia","Isolation","Fear"],"connections":[{"orbit":0,"id":55843}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Ruinic Helm","group":420,"isNotable":true,"stats":["+1 to Maximum Energy Shield per 8 Item Armour on Equipped Helmet"],"skill":18959},"58528":{"orbit":3,"orbitIndex":2,"stats":["10% increased Melee Damage"],"connections":[{"orbit":6,"id":5710}],"group":512,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":58528},"13769":{"orbit":2,"orbitIndex":8,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":-4,"id":2254}],"group":745,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":13769},"60634":{"orbit":5,"orbitIndex":48,"connections":[{"orbit":0,"id":27418}],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds","name":"Colossal Capacity","ascendancyName":"Titan","group":77,"isNotable":true,"stats":["Carry a Chest which adds 20 Inventory Slots"],"skill":60634},"57471":{"orbit":3,"orbitIndex":8,"recipe":["Despair","Despair","Paranoia"],"connections":[{"orbit":-4,"id":42578}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Hunker Down","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","group":174,"isNotable":true,"stats":["Recover 20 Life when you Block","+2% to maximum Block chance","80% less Knockback Distance for Blocked Hits"],"skill":57471},"37519":{"orbit":7,"orbitIndex":14,"stats":["2% increased Movement Speed"],"connections":[{"orbit":0,"id":17045}],"group":621,"name":"Movement Speed ","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":37519},"13738":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Fear","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Quick","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":929,"isNotable":true,"stats":["14% increased Lightning Damage","8% increased Attack and Cast Speed with Lightning Skills"],"skill":13738},"110":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds","name":"Internal Layer","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":20,"isNotable":true,"stats":["Body Armour grants Hits against you have 100% reduced Critical Damage Bonus"],"skill":110},"27540":{"orbit":3,"orbitIndex":23,"stats":["10% increased total Power counted by Warcries"],"connections":[{"orbit":0,"id":62973}],"group":333,"name":"Warcry Power Counted","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":27540},"52319":{"orbit":6,"orbitIndex":36,"connections":[{"orbit":-6,"id":48305}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":606,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":52319},"15522":{"orbit":3,"orbitIndex":21,"stats":["12% increased Ignite Magnitude"],"connections":[{"orbit":6,"id":17348},{"orbit":-6,"id":24630}],"group":104,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":15522},"32896":{"orbit":7,"orbitIndex":9,"stats":["8% chance to Poison on Hit"],"connections":[],"group":1222,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":32896},"42794":{"orbit":3,"orbitIndex":2,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":-5,"id":31433}],"group":1210,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":42794},"36325":{"orbit":4,"orbitIndex":71,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":-5,"id":54148}],"group":542,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":36325},"62748":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":323,"connections":[],"stats":[],"skill":62748},"54557":{"orbit":2,"orbitIndex":2,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":-6,"id":9421}],"group":1188,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":54557},"62360":{"orbit":3,"orbitIndex":2,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":0,"id":25014}],"group":222,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":62360},"12054":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":37523}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Totem Damage","ascendancyName":"Tactician","group":393,"stats":["20% increased Totem Damage"],"skill":12054},"62624":{"orbit":7,"orbitIndex":22,"stats":["+30 to Evasion Rating","+15 to maximum Energy Shield"],"connections":[],"group":1257,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":62624},"63541":{"orbit":2,"orbitIndex":9,"recipe":["Ire","Suffering","Ire"],"connections":[{"orbit":0,"id":17994}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Brush Off","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":774,"isNotable":true,"stats":["Prevent +15% of Damage from Deflected Critical Hits"],"skill":63541},"55348":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":598,"connections":[{"orbit":0,"id":23227}],"stats":[],"skill":55348},"47155":{"orbit":3,"orbitIndex":3,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":35896},{"orbit":2,"id":63545},{"orbit":-2,"id":17394}],"group":868,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":47155},"32239":{"orbit":3,"orbitIndex":1,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":-3,"id":9009}],"group":307,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":32239},"52971":{"orbit":4,"orbitIndex":45,"recipe":["Envy","Disgust","Fear"],"connections":[{"orbit":-2,"id":21227},{"orbit":0,"id":25528}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Quick Response","group":1234,"isNotable":true,"stats":["20% faster start of Energy Shield Recharge","30% faster start of Energy Shield Recharge when not on Full Life"],"skill":52971},"10208":{"orbit":3,"orbitIndex":11,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":22909},{"orbit":0,"id":60013}],"group":350,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":10208},"13839":{"orbit":5,"orbitIndex":6,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":65287}],"group":147,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":13839},"28002":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32194},{"orbit":0,"id":20499},{"orbit":0,"id":42452},{"orbit":0,"id":2955},{"orbit":0,"id":2653},{"orbit":0,"id":49547},{"orbit":0,"id":18441}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":403,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28002},"53762":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":36728}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","ascendancyName":"Gemling Legionnaire","group":506,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"skill":53762},"29398":{"orbit":6,"orbitIndex":2,"connections":[{"orbit":0,"id":18849}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Chill Duration","ascendancyName":"Stormweaver","group":502,"stats":["25% increased Chill Duration on Enemies"],"skill":29398},"58651":{"orbit":4,"orbitIndex":71,"connections":[{"orbit":0,"id":49357},{"orbit":0,"id":50558}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","options":{"Druid":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"id":63913,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield"}},"group":551,"isSwitchable":true,"stats":["Minions deal 10% increased Damage"],"skill":58651},"21205":{"orbit":5,"orbitIndex":60,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":44176}],"group":761,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":21205},"7049":{"orbit":3,"orbitIndex":19,"stats":["30% increased Armour while Surrounded"],"connections":[{"orbit":0,"id":22556}],"group":717,"name":"Armour while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":7049},"39102":{"orbit":2,"orbitIndex":3,"connections":[{"orbit":2147483647,"id":13228}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":226,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"skill":39102},"14033":{"orbit":2,"orbitIndex":16,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":34553}],"group":660,"name":"Spell and Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":14033},"64870":{"orbit":0,"orbitIndex":0,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"connections":[{"orbit":0,"id":27439}],"group":356,"name":"Armour and Applies to Fire Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":64870},"47683":{"orbit":2,"orbitIndex":23,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"connections":[],"group":790,"name":"Chaining Projectiles","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":47683},"33812":{"orbit":6,"orbitIndex":48,"connections":[{"orbit":0,"id":38769},{"orbit":5,"id":18585},{"orbit":5,"id":25935},{"orbit":4,"id":1994},{"orbit":3,"id":39365}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Brute","ascendancyName":"Warbringer","isAscendancyStart":true,"group":51,"stats":[],"skill":33812},"37644":{"orbit":7,"orbitIndex":0,"stats":["12% increased Attack Physical Damage"],"connections":[{"orbit":0,"id":46874}],"group":1062,"name":"Physical Attack Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":37644},"19751":{"orbit":2,"orbitIndex":19,"stats":["15% increased Freeze Threshold"],"connections":[{"orbit":0,"id":35618}],"group":93,"name":"Freeze Threshold","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":19751},"45713":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Savouring","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":1282,"isNotable":true,"stats":["20% increased Flask Effect Duration","20% chance for Flasks you use to not consume Charges"],"skill":45713},"94":{"orbit":7,"orbitIndex":4,"recipe":["Envy","Guilt","Paranoia"],"connections":[{"orbit":0,"id":27234}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Efficient Killing","group":862,"isNotable":true,"stats":["15% increased Mana Regeneration Rate","Recover 2% of maximum Mana on Kill"],"skill":94},"34076":{"orbit":7,"orbitIndex":12,"stats":["25% increased Block Recovery"],"connections":[{"orbit":3,"id":37244}],"group":1140,"name":"Block Recovery","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":34076},"52448":{"orbit":9,"orbitIndex":53,"connections":[],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds","name":"...and Scatter Them to the Winds","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Trigger Elemental Expression on Melee Critical Hit","Grants Skill: Elemental Expression"],"skill":52448},"50986":{"orbit":0,"orbitIndex":0,"classesStart":["Duelist","Mercenary"],"connections":[{"orbit":0,"id":39383},{"orbit":0,"id":10889},{"orbit":0,"id":62386},{"orbit":0,"id":36252},{"orbit":0,"id":7120},{"orbit":0,"id":55536},{"orbit":0,"id":59915}],"icon":"Art/2DArt/SkillIcons/passives/damagedualwield.dds","name":"DUELIST","group":752,"stats":[],"skill":50986},"23253":{"orbit":2,"orbitIndex":4,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":15625},{"orbit":0,"id":65161},{"orbit":0,"id":34015}],"group":1327,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","skill":23253},"52836":{"orbit":4,"orbitIndex":66,"stats":["5% increased Block chance"],"connections":[{"orbit":7,"id":11980},{"orbit":0,"id":56806}],"group":959,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":52836},"6079":{"orbit":2,"orbitIndex":16,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":10242}],"group":1156,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":6079},"14832":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","name":"Mace Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","group":126,"connections":[],"stats":[],"skill":14832},"49543":{"orbit":2,"orbitIndex":23,"connections":[{"orbit":0,"id":13108}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/minionattackspeed.dds","name":"Ally Attack and Cast Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":188,"connectionArt":"CharacterPlanned","stats":["3% reduced Skill Speed","Allies in your Presence have 6% increased Attack Speed","Allies in your Presence have 6% increased Cast Speed"],"skill":49543},"56016":{"orbit":2,"orbitIndex":2,"recipe":["Greed","Guilt","Isolation"],"connections":[{"orbit":-8,"id":65149},{"orbit":2147483647,"id":35594}],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Passthrough Rounds","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":943,"isNotable":true,"stats":["Projectiles Pierce enemies with Fully Broken Armour"],"skill":56016},"38172":{"orbit":7,"orbitIndex":5,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":-6,"id":60568}],"group":511,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":38172},"46365":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Gigantic Following","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":617,"isNotable":true,"stats":["25% reduced Reservation Efficiency of Minion Skills","Your Minions are Gigantic"],"skill":46365},"35535":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":8,"id":1855},{"orbit":9,"id":33824},{"orbit":9,"id":61722},{"orbit":9,"id":54512},{"orbit":9,"id":28022}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Shaman","ascendancyName":"Shaman","isAscendancyStart":true,"group":50,"stats":[],"skill":35535},"32701":{"orbit":6,"orbitIndex":18,"connections":[{"orbit":0,"id":21746},{"orbit":0,"id":26598},{"orbit":0,"id":22115},{"orbit":0,"id":43877}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1041,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":32701},"23905":{"orbit":0,"orbitIndex":0,"stats":["15% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":27875}],"group":1150,"name":"Shock Effect","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":23905},"6570":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","name":"Curse Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","group":1197,"connections":[],"stats":[],"skill":6570},"54818":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":18801}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":687,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54818},"62887":{"orbit":2,"orbitIndex":16,"recipe":["Greed","Suffering","Disgust"],"connections":[{"orbit":0,"id":41225}],"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Living Death","group":889,"isNotable":true,"stats":["Minions have +22% to all Elemental Resistances","Minions have +3% to all Maximum Elemental Resistances"],"skill":62887},"9510":{"orbit":2,"orbitIndex":0,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"connections":[{"orbit":0,"id":16695}],"group":1090,"name":"Energy Shield Recoup","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":9510},"20015":{"orbit":3,"orbitIndex":1,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":383,"connections":[],"stats":[],"skill":20015},"44783":{"orbit":2,"orbitIndex":20,"stats":["10% increased Spell Area Damage"],"connections":[{"orbit":0,"id":22949}],"group":380,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":44783},"47418":{"orbit":2,"orbitIndex":9,"recipe":["Greed","Envy","Paranoia"],"connections":[{"orbit":0,"id":23839},{"orbit":0,"id":10738}],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Warding Potions","group":1227,"isNotable":true,"stats":["10% reduced Flask Charges used from Mana Flasks","Remove a Curse when you use a Mana Flask"],"skill":47418},"20744":{"orbit":1,"orbitIndex":3,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":908,"connections":[],"stats":[],"skill":20744},"10371":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds","name":"Whoever Pays Best","ascendancyName":"Tactician","group":298,"isNotable":true,"stats":["Banners gain 5 Glory per second","There is no Limit on the number of Banners you can place"],"skill":10371},"50459":{"orbit":0,"orbitIndex":0,"classesStart":["Ranger","Huntress"],"connections":[{"orbit":0,"id":46990},{"orbit":0,"id":1583},{"orbit":0,"id":24665},{"orbit":0,"id":41736},{"orbit":0,"id":63493},{"orbit":0,"id":36365},{"orbit":0,"id":13828},{"orbit":0,"id":56651}],"icon":"Art/2DArt/SkillIcons/passives/blankDex.dds","name":"RANGER","group":829,"stats":[],"skill":50459},"58526":{"orbit":2,"orbitIndex":15,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[],"group":1201,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":58526},"29323":{"orbit":6,"orbitIndex":53,"connections":[{"orbit":4,"id":24807}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Armour","ascendancyName":"Titan","group":77,"stats":["20% increased Armour"],"skill":29323},"32040":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":1091,"connections":[],"stats":[],"skill":32040},"45712":{"orbit":5,"orbitIndex":60,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":65009}],"group":1143,"name":"Elemental Damage and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":45712},"24764":{"orbit":7,"orbitIndex":17,"recipe":["Fear","Paranoia","Suffering"],"connections":[{"orbit":0,"id":65226}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Infusing Power","group":427,"isNotable":true,"stats":["10% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"skill":24764},"9642":{"orbit":7,"orbitIndex":21,"connections":[{"orbit":6,"id":517},{"orbit":-4,"id":14666}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Dampening Shield","group":782,"isNotable":true,"stats":["28% increased maximum Energy Shield","Gain additional Ailment Threshold equal to 12% of maximum Energy Shield","Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"skill":9642},"57196":{"orbit":3,"orbitIndex":14,"stats":["3% increased Attack Speed"],"connections":[],"group":804,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":57196},"22063":{"orbit":2,"orbitIndex":22,"stats":["8% increased Cold Damage","8% increased Freeze Buildup"],"connections":[{"orbit":0,"id":5797}],"group":1295,"name":"Freeze Buildup and Cold Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":22063},"10534":{"orbit":2,"orbitIndex":2,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"connections":[{"orbit":-7,"id":46205}],"group":363,"name":"Totem Cast and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":10534},"25565":{"orbit":2,"orbitIndex":2,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":722}],"group":1336,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":25565},"19546":{"orbit":2,"orbitIndex":4,"recipe":["Despair","Greed","Disgust"],"connections":[{"orbit":0,"id":5681}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Favourable Odds","group":439,"isNotable":true,"stats":["30% increased Block chance while Surrounded","10% increased Deflection Rating while Surrounded","40% increased Ailment and Stun Threshold while Surrounded"],"skill":19546},"8556":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":655,"connections":[],"stats":[],"skill":8556},"17762":{"orbit":2,"orbitIndex":23,"recipe":["Guilt","Fear","Envy"],"connections":[{"orbit":-7,"id":2964},{"orbit":0,"id":28476}],"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","name":"Vengeance","group":478,"isNotable":true,"stats":["10% of Thorns Damage Leeched as Life"],"skill":17762},"25829":{"orbit":2,"orbitIndex":7,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"connections":[{"orbit":0,"id":57791}],"group":638,"name":"Spell Damage and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","skill":25829},"35660":{"orbit":2,"orbitIndex":13,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":18548}],"group":882,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":35660},"43201":{"orbit":4,"orbitIndex":56,"stats":["10% increased chance to inflict Ailments"],"connections":[{"orbit":0,"id":43383}],"group":732,"name":"Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":43201},"37242":{"orbit":7,"orbitIndex":14,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":2,"id":16871},{"orbit":0,"id":54031}],"group":1343,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","skill":37242},"47157":{"orbit":7,"orbitIndex":12,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"connections":[{"orbit":4,"id":61347},{"orbit":0,"id":54818}],"group":688,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":47157},"59":{"orbit":8,"orbitIndex":50,"connections":[],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds","name":"Incessant Cacophony","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"ascendancyName":"Abyssal Lich"}},"group":1120,"isNotable":true,"stats":["Curses you inflict have infinite Duration","You can apply an additional Curse"],"skill":59},"46628":{"orbit":4,"orbitIndex":67,"connections":[{"orbit":0,"id":40894},{"orbit":0,"id":60013},{"orbit":0,"id":44872},{"orbit":0,"id":50184},{"orbit":0,"id":25337},{"orbit":-8,"id":20848}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":416,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":46628},"10635":{"orbit":2,"orbitIndex":6,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":31724}],"group":405,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":10635},"4328":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":21208},{"orbit":0,"id":5188}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1152,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":4328},"63679":{"orbit":1,"orbitIndex":11,"stats":["18% increased Projectile Stun Buildup"],"connections":[{"orbit":0,"id":20008}],"group":1112,"name":"Projectile Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":63679},"39228":{"orbit":3,"orbitIndex":18,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":0,"id":62603},{"orbit":0,"id":63021}],"group":685,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":39228},"38313":{"orbit":2,"orbitIndex":16,"stats":["10% increased Projectile Speed"],"connections":[],"group":404,"name":"Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","skill":38313},"12451":{"orbit":3,"orbitIndex":12,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":-9,"id":24922}],"group":1034,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":12451},"21206":{"orbit":3,"orbitIndex":8,"recipe":["Greed","Disgust","Fear"],"connections":[{"orbit":0,"id":45899},{"orbit":0,"id":11505}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Explosive Impact","group":586,"isNotable":true,"stats":["15% increased Area of Effect","Burning Enemies you kill have a 5% chance to Explode, dealing a","tenth of their maximum Life as Fire Damage"],"skill":21206},"26283":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds","name":"Choice of Mana","ascendancyName":"Acolyte of Chayula","group":1462,"isMultipleChoiceOption":true,"stats":["Remnants have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Blue"],"skill":26283},"57724":{"orbit":7,"orbitIndex":20,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":-7,"id":54883}],"group":1206,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":57724},"56933":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35920}],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds","name":"Druidic Champion","ascendancyName":"Shaman","group":68,"isNotable":true,"stats":["Every 2 Rage also grants 1% more Spell damage"],"skill":56933},"28860":{"orbit":7,"orbitIndex":18,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":56104}],"group":640,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":28860},"61432":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","name":"Crossbow Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":892,"connections":[{"orbit":0,"id":6178}],"stats":[],"skill":61432},"14429":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds","name":"Advanced Thaumaturgy","ascendancyName":"Gemling Legionnaire","group":381,"isNotable":true,"stats":["Grants Thaumaturgical Dynamism"],"skill":14429},"13537":{"orbit":4,"orbitIndex":10,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":49455}],"group":591,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":13537},"2955":{"orbit":2,"orbitIndex":0,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":28800}],"group":404,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","skill":2955},"6772":{"orbit":4,"orbitIndex":6,"connections":[{"orbit":0,"id":60505}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":966,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":6772},"34202":{"orbit":3,"orbitIndex":18,"stats":["+8 to Strength"],"connections":[{"orbit":0,"id":49285}],"group":724,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":34202},"40687":{"orbit":2,"orbitIndex":12,"recipe":["Disgust","Envy","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Lead by Example","group":1007,"isNotable":true,"stats":["30% increased Presence Area of Effect","Allies in your Presence have 30% increased Glory generation"],"skill":40687},"30115":{"orbit":7,"orbitIndex":16,"connections":[],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds","name":"Hulking Form","ascendancyName":"Titan","group":77,"isNotable":true,"stats":["50% increased effect of Small Passive Skills"],"skill":30115},"43324":{"orbit":3,"orbitIndex":4,"connections":[{"orbit":0,"id":57596}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":["8% of Skill Mana Costs Converted to Life Costs"],"skill":43324},"8143":{"orbit":9,"orbitIndex":5,"connections":[{"orbit":4,"id":16100}],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds","name":"Lead me through Grace...","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["+1 to Spirit for every 8 Item Energy Shield on Equipped Body Armour","+1 to Spirit for every 20 Evasion Rating on Equipped Body Armour","Cannot gain Spirit from Equipment"],"skill":8143},"26952":{"orbit":7,"orbitIndex":20,"stats":["20% increased Flammability Magnitude"],"connections":[{"orbit":0,"id":59661},{"orbit":0,"id":31626}],"group":961,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":26952},"61027":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Blessing","group":782,"isNotable":true,"stats":["+20 to maximum Mana","20% increased Mana Regeneration Rate"],"skill":61027},"23708":{"orbit":7,"orbitIndex":12,"connections":[{"orbit":2147483647,"id":3896}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":399,"connectionArt":"CharacterPlanned","stats":["30% increased Armour while Bleeding"],"skill":23708},"43588":{"orbit":2,"orbitIndex":2,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"connections":[{"orbit":-2,"id":61835},{"orbit":3,"id":39131}],"group":165,"name":"Attack and Spell Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":43588},"4621":{"orbit":4,"orbitIndex":30,"connections":[{"orbit":0,"id":57202}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun and Elemental Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["11% increased Stun Threshold","11% increased Elemental Ailment Threshold"],"skill":4621},"64471":{"orbit":4,"orbitIndex":54,"connections":[{"orbit":0,"id":43843}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":582,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":64471},"55611":{"orbit":4,"orbitIndex":15,"connections":[{"orbit":-2,"id":64031}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Elemental Damage","ascendancyName":"Invoker","group":1430,"stats":["12% increased Elemental Damage"],"skill":55611},"3921":{"orbit":7,"orbitIndex":10,"recipe":["Fear","Despair","Greed"],"connections":[{"orbit":0,"id":38398}],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Fate Finding","group":539,"isNotable":true,"stats":["20% increased Reservation Efficiency of Herald Skills"],"skill":3921},"63678":{"orbit":0,"orbitIndex":0,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"connections":[],"group":161,"name":"Shapeshifted Armour","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":63678},"47420":{"orbit":1,"orbitIndex":9,"recipe":["Ire","Greed","Isolation"],"connections":[{"orbit":0,"id":11048},{"orbit":7,"id":52676}],"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Expendable Army","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":267,"isNotable":true,"stats":["20% increased Minion Duration","Temporary Minion Skills have +2 to Limit of Minions summoned"],"skill":47420},"8983":{"orbit":3,"orbitIndex":12,"stats":["Minions deal 12% increased Damage"],"connections":[],"group":460,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":8983},"13576":{"orbit":0,"orbitIndex":0,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"connections":[{"orbit":0,"id":17024}],"group":944,"name":"Lightning Skill Speed","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":13576},"56806":{"orbit":7,"orbitIndex":22,"recipe":["Ire","Fear","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Swift Blocking","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","group":959,"isNotable":true,"stats":["12% increased Block chance","1% increased Movement Speed for each time you've Blocked in the past 10 seconds"],"skill":56806},"27216":{"orbit":7,"orbitIndex":4,"stats":["15% faster start of Energy Shield Recharge while Shapeshifted"],"connections":[{"orbit":-7,"id":30546}],"group":201,"name":"Shapeshifted Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":27216},"45962":{"orbit":3,"orbitIndex":23,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":-6,"id":7183},{"orbit":0,"id":15617}],"group":507,"name":"Life Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":45962},"14693":{"orbit":4,"orbitIndex":27,"stats":["14% increased Damage with Maces"],"connections":[{"orbit":0,"id":13937}],"group":126,"name":"Mace Damage","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":14693},"33939":{"orbit":3,"orbitIndex":2,"stats":["+15% of Armour also applies to Cold Damage"],"connections":[{"orbit":0,"id":62034}],"group":143,"name":"Armour Applies to Cold Damage Hits","icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","skill":33939},"55088":{"orbit":7,"orbitIndex":2,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":5,"id":61196}],"group":932,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","skill":55088},"16506":{"orbit":7,"orbitIndex":10,"stats":["20% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently"],"connections":[{"orbit":-2,"id":35417}],"group":344,"name":"Shapeshifting Elemental Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":16506},"42658":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1194,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":42658},"31172":{"orbit":5,"orbitIndex":51,"recipe":["Suffering","Suffering","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Falcon Technique","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1243,"isNotable":true,"stats":["1% increased Attack Speed per 25 Dexterity"],"skill":31172},"55":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Greed","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Fast Acting Toxins","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","group":1047,"isNotable":true,"stats":["Damaging Ailments deal damage 12% faster"],"skill":55},"47560":{"orbit":8,"orbitIndex":54,"recipe":["Ire","Isolation","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Multi Shot","group":1233,"isNotable":true,"stats":["+24% Surpassing chance to fire an additional Projectile"],"skill":47560},"39369":{"orbit":4,"orbitIndex":9,"recipe":["Isolation","Despair","Greed"],"connections":[{"orbit":3,"id":2936},{"orbit":0,"id":51583}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Struck Through","group":1410,"isNotable":true,"stats":["Attacks have +1% to Critical Hit Chance"],"skill":39369},"54297":{"orbit":4,"orbitIndex":24,"connections":[{"orbit":0,"id":25678}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"skill":54297},"17825":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Disgust","Despair"],"connections":[{"orbit":-7,"id":45585},{"orbit":-7,"id":46931},{"orbit":0,"id":5681}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Tactical Retreat","group":439,"isNotable":true,"stats":["+0.5 metres to Dodge Roll distance while Surrounded","10% increased Movement Speed while Surrounded"],"skill":17825},"61026":{"orbit":3,"orbitIndex":0,"recipe":["Despair","Paranoia","Suffering"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":17378}],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Crystalline Flesh","group":461,"isNotable":true,"stats":["Minions have +20% to all Elemental Resistances","Minions have +5% to all Maximum Elemental Resistances"],"skill":61026},"32427":{"orbit":2,"orbitIndex":18,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":0,"id":4456}],"group":696,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":32427},"57863":{"orbit":7,"orbitIndex":5,"stats":["Detonator skills have 8% increased Area of Effect"],"connections":[{"orbit":0,"id":26356}],"group":655,"name":"Detonator Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":57863},"632":{"orbit":0,"orbitIndex":0,"stats":["3% increased Attack Speed with Daggers"],"connections":[{"orbit":0,"id":56366}],"group":1385,"name":"Dagger Speed","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":632},"13708":{"orbit":4,"orbitIndex":40,"recipe":["Greed","Fear","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Curved Weapon","group":720,"isNotable":true,"stats":["15% increased Accuracy Rating","+10 to Dexterity"],"skill":13708},"7251":{"orbit":7,"orbitIndex":16,"stats":["10% increased Attack Damage"],"connections":[],"group":550,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":7251},"31370":{"orbit":2,"orbitIndex":8,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"connections":[{"orbit":2147483647,"id":32448}],"group":588,"name":"Armour and Applies to Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":31370},"37244":{"orbit":2,"orbitIndex":8,"recipe":["Disgust","Greed","Fear"],"connections":[{"orbit":3,"id":33445},{"orbit":0,"id":37795}],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shield Expertise","group":1140,"isNotable":true,"stats":["12% increased Block chance","40% increased Block Recovery"],"skill":37244},"63545":{"orbit":7,"orbitIndex":6,"stats":["Minions deal 10% increased Damage"],"connections":[],"group":868,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":63545},"19873":{"orbit":7,"orbitIndex":4,"stats":["5% increased Area of Effect"],"connections":[{"orbit":4,"id":13233},{"orbit":-9,"id":17655}],"group":577,"name":"Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":19873},"38966":{"orbit":2,"orbitIndex":0,"stats":["8% increased Evasion Rating","12% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[{"orbit":0,"id":30210},{"orbit":0,"id":35058},{"orbit":0,"id":61976}],"group":1086,"name":"Stun Threshold and Evasion Rating","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":38966},"857":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":591,"connections":[],"stats":[],"skill":857},"34871":{"orbit":7,"orbitIndex":22,"stats":["Gain 2 Rage when Hit by an Enemy"],"connections":[{"orbit":2,"id":52764}],"group":182,"name":"Rage when Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":34871},"3188":{"orbit":3,"orbitIndex":18,"recipe":["Ire","Disgust","Isolation"],"connections":[{"orbit":0,"id":38670},{"orbit":0,"id":46051}],"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","name":"Revenge","group":94,"isNotable":true,"stats":["Gain Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour"],"skill":3188},"12249":{"orbit":2,"orbitIndex":20,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-3,"id":12761}],"group":1058,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":12249},"58779":{"orbit":2,"orbitIndex":6,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":51040},{"orbit":0,"id":327},{"orbit":0,"id":23822},{"orbit":0,"id":47976}],"group":1237,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":58779},"38827":{"orbit":7,"orbitIndex":1,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":7,"id":1546}],"group":610,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":38827},"26282":{"orbit":5,"orbitIndex":66,"connections":[],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds","name":"Blood Barbs","ascendancyName":"Blood Mage","group":910,"isNotable":true,"stats":["Bleeding you inflict on Cursed targets is Aggravated","Elemental Damage also Contributes to Bleeding Magnitude"],"skill":26282},"1140":{"orbit":2,"orbitIndex":22,"connections":[{"orbit":0,"id":15507}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":847,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":1140},"18496":{"orbit":7,"orbitIndex":12,"recipe":["Suffering","Paranoia","Envy"],"connections":[{"orbit":0,"id":50616}],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Lasting Trauma","group":249,"isNotable":true,"stats":["5% reduced Attack Speed","30% increased Magnitude of Ailments you inflict","20% increased Duration of Damaging Ailments on Enemies"],"skill":18496},"19749":{"orbit":1,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":961,"connections":[],"stats":[],"skill":19749},"18818":{"orbit":0,"orbitIndex":0,"stats":["2% increased Attack Speed","5% increased Attack Damage"],"connections":[{"orbit":0,"id":29517},{"orbit":2,"id":49461},{"orbit":-2,"id":21314}],"group":1072,"name":"Attack Damage and Speed","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":18818},"38703":{"orbit":7,"orbitIndex":14,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"connections":[{"orbit":0,"id":8249}],"group":1048,"name":"Accuracy and Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":38703},"60505":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":28050},{"orbit":0,"id":65009},{"orbit":0,"id":19808},{"orbit":0,"id":18831}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1028,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":60505},"9441":{"orbit":2,"orbitIndex":8,"stats":["15% increased Parry Hit Area of Effect"],"connections":[{"orbit":0,"id":5077}],"group":996,"name":"Parry Area","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":9441},"31898":{"orbit":7,"orbitIndex":7,"stats":["6% increased Reservation Efficiency of Herald Skills"],"connections":[{"orbit":0,"id":3921}],"group":539,"name":"Herald Reservation","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":31898},"26885":{"orbit":4,"orbitIndex":60,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":-4,"id":59775}],"group":1206,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":26885},"18353":{"orbit":6,"orbitIndex":20,"connections":[{"orbit":0,"id":20496},{"orbit":0,"id":3544}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Physical and Lightning Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["12% increased Lightning Damage","12% increased Physical Damage"],"skill":18353},"25101":{"orbit":3,"orbitIndex":4,"stats":["10% increased Exposure Effect"],"connections":[{"orbit":5,"id":22439},{"orbit":0,"id":52199},{"orbit":-5,"id":44498}],"group":705,"name":"Exposure Effect","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":25101},"52576":{"orbit":2,"orbitIndex":9,"stats":["20% increased Damage against Immobilised Enemies"],"connections":[{"orbit":0,"id":64550}],"group":818,"name":"Damage vs Immobilised","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":52576},"18419":{"orbit":7,"orbitIndex":18,"recipe":["Envy","Fear","Paranoia"],"connections":[{"orbit":0,"id":11014},{"orbit":0,"id":16784},{"orbit":0,"id":23667}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Ancestral Mending","group":314,"isNotable":true,"stats":["Regenerate 1% of maximum Life per second while you have a Totem","Totems Regenerate 3% of maximum Life per second"],"skill":18419},"38300":{"orbit":0,"orbitIndex":0,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":-7,"id":39716},{"orbit":-7,"id":57373}],"group":576,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":38300},"35787":{"orbit":1,"orbitIndex":0,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":7,"id":42813}],"group":431,"name":"Increased Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":35787},"2575":{"orbit":2,"orbitIndex":14,"recipe":["Suffering","Paranoia","Guilt"],"connections":[{"orbit":0,"id":65154}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Ancestral Alacrity","group":168,"isNotable":true,"stats":["30% increased Totem Placement speed","8% increased Attack and Cast Speed if you've summoned a Totem Recently"],"skill":2575},"29990":{"orbit":7,"orbitIndex":2,"stats":["5% chance to gain Volatility on Kill"],"connections":[{"orbit":0,"id":36217},{"orbit":-9,"id":47477},{"orbit":0,"id":15775}],"group":1360,"name":"Volatility on Kill","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":29990},"64601":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds","name":"Hollow Palm Technique","group":1228,"isKeystone":true,"stats":["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"],"skill":64601},"48215":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Ire","Suffering"],"connections":[{"orbit":0,"id":516},{"orbit":0,"id":7201},{"orbit":0,"id":64488},{"orbit":0,"id":61347}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Headshot","group":688,"isNotable":true,"stats":["Projectiles have 30% increased Critical Damage Bonus against Enemies further than 6m","Projectiles have 20% increased Critical Hit Chance against Enemies further than 6m","25% chance to inflict Daze with Hits against Enemies further than 6m"],"skill":48215},"5777":{"orbit":4,"orbitIndex":4,"connections":[{"orbit":0,"id":58651}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Deadly Swarm","isSwitchable":true,"options":{"Druid":{"stats":["16% increased Armour","16% increased maximum Energy Shield","20% increased Elemental Ailment Threshold"],"id":54594,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Natural Essence"}},"group":551,"isNotable":true,"stats":["Minions deal 15% increased Damage","Minions have 20% increased Critical Hit Chance"],"skill":5777},"38564":{"orbit":3,"orbitIndex":15,"stats":["10% increased Damage with Swords"],"connections":[{"orbit":0,"id":20091}],"group":548,"name":"Sword Damage","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":38564},"25753":{"orbit":7,"orbitIndex":6,"recipe":["Suffering","Envy","Despair"],"connections":[{"orbit":0,"id":63268},{"orbit":0,"id":25990}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Blazing Arms","group":487,"isNotable":true,"stats":["16% increased Fire Damage","30% increased Flammability Magnitude","16% increased Attack Damage"],"skill":25753},"8456":{"orbit":7,"orbitIndex":20,"stats":["8% increased Freeze Buildup","8% increased Attack Cold Damage"],"connections":[{"orbit":2147483647,"id":38329}],"group":1251,"name":"Attack Cold Damage and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":8456},"3700":{"orbit":2,"orbitIndex":6,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"connections":[{"orbit":3,"id":6842}],"group":1215,"name":"Stun and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","skill":3700},"14996":{"orbit":7,"orbitIndex":2,"stats":["20% increased Stun buildup if you have Shapeshifted to an Animal form Recently"],"connections":[{"orbit":-7,"id":41620}],"group":344,"name":"Shapeshifting Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":14996},"37509":{"orbit":7,"orbitIndex":18,"stats":["15% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently"],"connections":[{"orbit":-2,"id":57921}],"group":344,"name":"Shapeshifting Critical Hit Chance","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":37509},"20467":{"orbit":3,"orbitIndex":12,"stats":["5% increased Culling Strike Threshold"],"connections":[{"orbit":0,"id":58312}],"group":1084,"name":"Culling Strike Threshold","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":20467},"55617":{"orbit":3,"orbitIndex":3,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"connections":[{"orbit":0,"id":29914},{"orbit":2,"id":19546}],"group":439,"name":"Armour and Evasion while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":55617},"47021":{"orbit":2,"orbitIndex":18,"stats":["15% increased Volatility Explosion delay"],"connections":[{"orbit":1,"id":36217}],"group":1360,"name":"Volatility Detonation Time","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":47021},"40550":{"orbit":4,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":363,"connections":[],"stats":[],"skill":40550},"10372":{"orbit":1,"orbitIndex":1,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":-3,"id":36191},{"orbit":0,"id":55933}],"group":448,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":10372},"14267":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32763},{"orbit":0,"id":28976},{"orbit":0,"id":38212},{"orbit":0,"id":1499}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1389,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":14267},"36191":{"orbit":2,"orbitIndex":21,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":0,"id":40325}],"group":448,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":36191},"16051":{"orbit":5,"orbitIndex":4,"stats":["Attacks used by Totems have 4% increased Attack Speed"],"connections":[],"group":314,"name":"Totem Attack Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":16051},"42660":{"orbit":2,"orbitIndex":10,"recipe":["Disgust","Guilt","Suffering"],"connections":[{"orbit":0,"id":54849}],"icon":"Art/2DArt/SkillIcons/passives/RageNotable.dds","name":"Commanding Rage","group":221,"isNotable":true,"stats":["Every Rage also grants you 1% increased Minion Attack Speed","Every Rage also grants you 1% increased Minion Damage"],"skill":42660},"29197":{"orbit":7,"orbitIndex":15,"connections":[{"orbit":-7,"id":11428}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":243,"connectionArt":"CharacterPlanned","stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"skill":29197},"58117":{"orbit":5,"orbitIndex":3,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":41186},{"orbit":0,"id":13839},{"orbit":0,"id":56996},{"orbit":0,"id":53719}],"group":147,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":58117},"12382":{"orbit":1,"orbitIndex":11,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":242,"connections":[{"orbit":0,"id":35849}],"stats":[],"skill":12382},"64724":{"orbit":2,"orbitIndex":14,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"connections":[],"group":175,"name":"Flammability and Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":64724},"25893":{"orbit":2,"orbitIndex":18,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":-2,"id":51169}],"group":759,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":25893},"39759":{"orbit":2,"orbitIndex":10,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":48035}],"group":541,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":39759},"315":{"orbit":0,"orbitIndex":0,"stats":["10% increased Bleeding Duration"],"connections":[{"orbit":0,"id":33216}],"group":694,"name":"Bleeding Duration","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":315},"25026":{"orbit":3,"orbitIndex":20,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":6,"id":3567}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":25026},"19288":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/GlancingBlows.dds","name":"Glancing Blows","group":917,"isKeystone":true,"stats":["Chance to Evade is Unlucky","Chance to Deflect is Lucky"],"skill":19288},"10729":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":1101,"connections":[],"stats":[],"skill":10729},"56409":{"orbit":4,"orbitIndex":12,"stats":["24% increased Flammability Magnitude","12% increased Freeze Buildup","12% increased chance to Shock"],"connections":[{"orbit":0,"id":25101},{"orbit":0,"id":43139},{"orbit":0,"id":65248}],"group":705,"name":"Elemental Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":56409},"53632":{"orbit":2,"orbitIndex":8,"stats":["12% increased Fire Damage"],"connections":[{"orbit":3,"id":28482}],"group":346,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":53632},"17702":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":46882},{"orbit":-3,"id":27262},{"orbit":2147483647,"id":20467}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1085,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":17702},"8782":{"orbit":7,"orbitIndex":14,"recipe":["Suffering","Envy","Guilt"],"connections":[{"orbit":0,"id":13882}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Empowering Infusions","group":706,"isNotable":true,"stats":["30% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"skill":8782},"25092":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":34313}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Critical Damage Bonus on You","ascendancyName":"Oracle","group":2,"stats":["Hits against you have 12% reduced Critical Damage Bonus"],"skill":25092},"23244":{"orbit":7,"orbitIndex":3,"recipe":["Despair","Suffering","Guilt"],"connections":[{"orbit":2,"id":21792},{"orbit":0,"id":6912}],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Bounty Hunter","group":1084,"isNotable":true,"stats":["Recover 1% of maximum Life on Kill","Recover 1% of maximum Mana on Kill","25% increased Culling Strike Threshold"],"skill":23244},"6623":{"orbit":1,"orbitIndex":10,"stats":["Banner Skills have 12% increased Aura Magnitudes"],"connections":[{"orbit":0,"id":12821}],"group":491,"name":"Banner Aura Effect","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":6623},"63402":{"orbit":2,"orbitIndex":4,"stats":["15% increased effect of Arcane Surge on you"],"connections":[{"orbit":2,"id":29881}],"group":390,"name":"Arcane Surge Effect","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":63402},"10636":{"orbit":3,"orbitIndex":9,"connections":[{"orbit":0,"id":38697}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Block Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["8% increased Block chance"],"skill":10636},"46091":{"orbit":5,"orbitIndex":56,"connections":[{"orbit":-9,"id":30265},{"orbit":6,"id":64223}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds","name":"The Fourth Teaching","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["-1 second to base Energy Shield Recharge delay","40% more Energy Shield Recharge Rate while on Low Energy Shield"],"skill":46091},"29527":{"orbit":7,"orbitIndex":8,"recipe":["Paranoia","Ire","Fear"],"connections":[{"orbit":0,"id":61800}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"First Approach","group":1303,"isNotable":true,"stats":["40% increased Critical Hit Chance against Enemies that are on Full Life","Cannot be Blinded while on Full Life","80% increased Damage with Hits against Enemies that are on Full Life"],"skill":29527},"21336":{"orbit":2,"orbitIndex":19,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":62984}],"group":955,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":21336},"19750":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Armour and Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","group":676,"connections":[],"stats":[],"skill":19750},"10830":{"orbit":7,"orbitIndex":2,"stats":["18% increased Armour"],"connections":[{"orbit":0,"id":59589}],"group":160,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":10830},"60891":{"orbit":1,"orbitIndex":9,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":53185}],"group":1375,"name":"Accuracy Rating","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","skill":60891},"49130":{"orbit":2,"orbitIndex":19,"stats":["6% reduced Projectile Speed"],"connections":[],"group":1252,"name":"Reduced Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":49130},"49661":{"orbit":1,"orbitIndex":2,"recipe":["Fear","Paranoia","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Perfectly Placed Knife","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":1076,"isNotable":true,"stats":["25% increased Critical Hit Chance against Bleeding Enemies","20% chance to Aggravate Bleeding on targets you Critically Hit with Attacks"],"skill":49661},"11722":{"orbit":2,"orbitIndex":16,"stats":["Skills Supported by Unleash have 10% increased Seal gain frequency"],"connections":[{"orbit":2,"id":62431}],"group":951,"name":"Seal Generation Frequency","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":11722},"23508":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds","name":"Thrilling Chase","ascendancyName":"Deadeye","group":1436,"isNotable":true,"stats":["Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled"],"skill":23508},"28329":{"orbit":3,"orbitIndex":21,"recipe":["Guilt","Despair","Ire"],"connections":[{"orbit":3,"id":36723}],"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds","name":"Pressure Points","group":1215,"isNotable":true,"stats":["35% increased Stun Buildup","35% increased Freeze Buildup"],"skill":28329},"52574":{"orbit":7,"orbitIndex":21,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"connections":[{"orbit":-7,"id":55478}],"group":608,"name":"Attack Area Damage and Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":52574},"59710":{"orbit":7,"orbitIndex":21,"stats":["12% increased Spell Damage if you have Shapeshifted to Human form Recently"],"connections":[{"orbit":5,"id":52618}],"group":313,"name":"Shapeshifting Spell Damage","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":59710},"6338":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":775,"connections":[{"orbit":0,"id":2254}],"stats":[],"skill":6338},"31773":{"orbit":7,"orbitIndex":1,"recipe":["Envy","Isolation","Disgust"],"connections":[{"orbit":0,"id":55011}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Resurging Archon","group":534,"isNotable":true,"stats":["Archon recovery period expires 25% faster"],"skill":31773},"8852":{"orbit":2,"orbitIndex":17,"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"connections":[],"group":137,"name":"Life Leech and Slower Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":8852},"22713":{"orbit":7,"orbitIndex":6,"stats":["10% increased Cold Damage"],"connections":[{"orbit":0,"id":19722},{"orbit":0,"id":4959},{"orbit":0,"id":19003}],"group":1191,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":22713},"47284":{"orbit":0,"orbitIndex":0,"stats":["Minions have +20% to Cold Resistance"],"connections":[{"orbit":0,"id":3332}],"group":600,"name":"Minion Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","skill":47284},"58644":{"orbit":7,"orbitIndex":21,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"connections":[{"orbit":0,"id":42714}],"group":1240,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":58644},"5335":{"orbit":7,"orbitIndex":7,"recipe":["Envy","Despair","Fear"],"connections":[{"orbit":0,"id":52060}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Shimmering Mirage","group":1209,"isNotable":true,"stats":["Gain additional Ailment Threshold equal to 30% of maximum Energy Shield","10% reduced Duration of Ailments on You"],"skill":5335},"40024":{"orbit":7,"orbitIndex":4,"stats":["8% chance to Poison on Hit"],"connections":[{"orbit":-2,"id":2091}],"group":1176,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":40024},"61419":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3025},{"orbit":0,"id":5314},{"orbit":0,"id":46819}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":741,"stats":[],"skill":61419},"2486":{"orbit":7,"orbitIndex":22,"recipe":["Suffering","Envy","Isolation"],"connections":[{"orbit":3,"id":63732},{"orbit":7,"id":19341},{"orbit":0,"id":58884}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Stars Aligned","group":846,"isNotable":true,"stats":["Damage with Hits is Lucky against Enemies that are on Low Life"],"skill":2486},"45037":{"orbit":7,"orbitIndex":17,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":0,"id":9736}],"group":873,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":45037},"60362":{"orbit":2,"orbitIndex":6,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":56265}],"group":1377,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":60362},"49394":{"orbit":7,"orbitIndex":19,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"connections":[{"orbit":0,"id":23786}],"group":1076,"name":"Critical Bleeding Effect","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":49394},"38969":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Disgust"],"connections":[{"orbit":0,"id":50588}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Finesse","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":1100,"isNotable":true,"stats":["10% increased Accuracy Rating","Gain Accuracy Rating equal to your Intelligence"],"skill":38969},"9046":{"orbit":3,"orbitIndex":8,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":5,"id":56776}],"group":1131,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":9046},"45702":{"orbit":2,"orbitIndex":19,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":-3,"id":61333},{"orbit":3,"id":31692}],"group":1250,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":45702},"42522":{"orbit":9,"orbitIndex":127,"connections":[],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds","name":"Refracted Infusion","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["When collecting an Elemental Infusion, gain another different Elemental Infusion"],"skill":42522},"17303":{"orbit":7,"orbitIndex":6,"recipe":["Disgust","Despair","Envy"],"connections":[{"orbit":0,"id":17026},{"orbit":0,"id":27992}],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Utility Ordnance","group":613,"isNotable":true,"stats":["40% increased Cooldown Recovery Rate for Grenade Skills","80% reduced Grenade Damage"],"skill":17303},"11094":{"orbit":7,"orbitIndex":3,"stats":["Charms applied to you have 10% increased Effect"],"connections":[{"orbit":-6,"id":59303}],"group":1219,"name":"Charm Effect","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":11094},"15617":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Envy","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Heavy Drinker","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":507,"isNotable":true,"stats":["20% increased Life Recovery from Flasks","Life Flasks applied to you grant Guard for 4 seconds equal to 8% of the Life Recovery per Second they apply"],"skill":15617},"17501":{"orbit":2,"orbitIndex":7,"stats":["Minions deal 10% increased Damage"],"connections":[],"group":644,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":17501},"48745":{"orbit":0,"orbitIndex":0,"stats":["5% increased Block chance"],"connections":[{"orbit":0,"id":22558},{"orbit":-2,"id":7878}],"group":446,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":48745},"14725":{"orbit":2,"orbitIndex":18,"stats":["3% increased Skill Speed"],"connections":[{"orbit":-5,"id":49220},{"orbit":0,"id":34233}],"group":938,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":14725},"39621":{"orbit":0,"orbitIndex":0,"stats":["Inherent Rage loss starts 1 second later"],"connections":[{"orbit":0,"id":14176},{"orbit":0,"id":26725}],"group":286,"name":"Later Rage Loss Start","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":39621},"11032":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Evasion and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","group":1064,"connections":[],"stats":[],"skill":11032},"43579":{"orbit":1,"orbitIndex":9,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":237,"connections":[{"orbit":0,"id":35369}],"stats":[],"skill":43579},"11257":{"orbit":3,"orbitIndex":11,"stats":["30% increased Evasion Rating while Surrounded"],"connections":[{"orbit":0,"id":10271},{"orbit":4,"id":54282}],"group":717,"name":"Evasion while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":11257},"45301":{"orbit":2,"orbitIndex":18,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":31724}],"group":405,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":45301},"31112":{"orbit":7,"orbitIndex":2,"stats":["10% increased Ballista Critical Hit Chance"],"connections":[],"group":886,"name":"Ballista Critical Strike","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":31112},"34207":{"orbit":8,"orbitIndex":57,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds","name":"Barya of Ruzhan","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Ruzhan, the Blazing Sword"],"skill":34207},"41609":{"orbit":5,"orbitIndex":20,"stats":["15% increased Energy Shield Recharge Rate while Shapeshifted"],"connections":[],"group":201,"name":"Shapeshifted Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":41609},"43843":{"orbit":5,"orbitIndex":12,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"connections":[{"orbit":0,"id":17417}],"group":468,"name":"Projectile Speed and Physical Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":43843},"32301":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Disgust","Paranoia"],"connections":[{"orbit":0,"id":50277}],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Frazzled","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1248,"isNotable":true,"stats":["15% increased Mana Regeneration Rate","30% increased Magnitude of Shock you inflict"],"skill":32301},"2071":{"orbit":2,"orbitIndex":0,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":38420}],"group":529,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":2071},"37372":{"orbit":0,"orbitIndex":0,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"connections":[{"orbit":0,"id":13738}],"group":946,"name":"Lightning Skill Speed","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":37372},"50062":{"orbit":2,"orbitIndex":2,"recipe":["Despair","Greed","Envy"],"connections":[{"orbit":0,"id":37641}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Reinforced Barrier","group":268,"isNotable":true,"stats":["20% increased maximum Energy Shield","Defend with 120% of Armour while not on Low Energy Shield"],"skill":50062},"46882":{"orbit":1,"orbitIndex":8,"connections":[],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":1141,"stats":[],"skill":46882},"18684":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds","name":"Avatar of Fire","group":127,"isKeystone":true,"stats":["75% of Damage Converted to Fire Damage","Deal no Non-Fire Damage"],"skill":18684},"29914":{"orbit":3,"orbitIndex":7,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"connections":[{"orbit":0,"id":46931}],"group":439,"name":"Armour and Evasion while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":29914},"63268":{"orbit":7,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":487,"connections":[],"stats":[],"skill":63268},"57462":{"orbit":3,"orbitIndex":17,"stats":["8% increased Projectile Speed"],"connections":[{"orbit":-6,"id":12078}],"group":1267,"name":"Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":57462},"54282":{"orbit":3,"orbitIndex":0,"connections":[{"orbit":0,"id":52125},{"orbit":2147483647,"id":11066}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":763,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54282},"44371":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":30151}],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds","name":"Polish That Gear","ascendancyName":"Tactician","group":367,"isNotable":true,"stats":["Gain Deflection Rating equal to 20% of Armour","Gain 100% of Evasion Rating as extra Ailment Threshold"],"skill":44371},"1144":{"orbit":2,"orbitIndex":7,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":42070}],"group":303,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":1144},"58783":{"orbit":2,"orbitIndex":19,"stats":["8% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"connections":[{"orbit":0,"id":26520}],"group":851,"name":"Life Leech. Armour and Evasion while Leeching","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":58783},"13174":{"orbit":6,"orbitIndex":3,"connections":[{"orbit":0,"id":770}],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds","name":"Pyromantic Pact","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["Maximum Mana is replaced by twice as much Maximum Infernal Flame","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"],"skill":13174},"14958":{"orbit":1,"orbitIndex":10,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":17548}],"group":1006,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":14958},"52440":{"orbit":2,"orbitIndex":18,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":0,"id":53893}],"group":198,"name":"Damage and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":52440},"51509":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Disgust"],"connections":[{"orbit":7,"id":35848},{"orbit":0,"id":9393}],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Waters of Life","group":927,"isNotable":true,"stats":["Recover 2% of maximum Life when you use a Mana Flask","Mana Flasks gain 0.1 charges per Second"],"skill":51509},"3995":{"orbit":7,"orbitIndex":13,"stats":["15% increased Crossbow Reload Speed"],"connections":[{"orbit":0,"id":12311}],"group":838,"name":"Crossbow Reload Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":3995},"21985":{"orbit":7,"orbitIndex":4,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":0,"id":48925}],"group":322,"name":"Skill Effect Duration","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":21985},"45969":{"orbit":6,"orbitIndex":36,"connections":[{"orbit":-7,"id":28693},{"orbit":0,"id":24880}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":662,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":45969},"43578":{"orbit":4,"orbitIndex":26,"stats":["10% increased Projectile Damage"],"connections":[],"group":766,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":43578},"9442":{"orbit":2,"orbitIndex":18,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":0,"id":37260}],"group":263,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":9442},"25619":{"orbit":2,"orbitIndex":12,"recipe":["Despair","Despair","Despair"],"connections":[{"orbit":3,"id":43562}],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Sand in the Eyes","group":804,"isNotable":true,"stats":["10% increased Attack Speed","15% chance to Blind Enemies on Hit with Attacks"],"skill":25619},"39886":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":56935}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":680,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":39886},"49799":{"orbit":2,"orbitIndex":20,"stats":["10% increased Mana Recovery from Flasks"],"connections":[{"orbit":0,"id":46224}],"group":912,"name":"Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":49799},"48079":{"orbit":2,"orbitIndex":10,"connections":[{"orbit":-7,"id":60014}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":515,"connectionArt":"CharacterPlanned","stats":["10% increased Bleeding Duration","20% chance for Attack Hits to apply Incision"],"skill":48079},"30905":{"orbit":4,"orbitIndex":21,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":5,"id":8697},{"orbit":6,"id":34201}],"group":1010,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":30905},"9411":{"orbit":7,"orbitIndex":15,"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"connections":[{"orbit":0,"id":49466}],"group":1149,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":9411},"21861":{"orbit":2,"orbitIndex":18,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":65243}],"group":304,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":21861},"43842":{"orbit":0,"orbitIndex":0,"stats":["10% increased effect of Archon Buffs on you"],"connections":[{"orbit":2,"id":5695},{"orbit":2,"id":28092}],"group":534,"name":"Archon Effect","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":43842},"30781":{"orbit":3,"orbitIndex":18,"connections":[{"orbit":2147483647,"id":63772}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Movement Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":294,"connectionArt":"CharacterPlanned","stats":["3% increased Movement Speed"],"skill":30781},"63267":{"orbit":2,"orbitIndex":3,"stats":["12% increased Attack Damage while Dual Wielding"],"connections":[{"orbit":0,"id":65424}],"group":795,"name":"Dual Wielding Damage","icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":63267},"25429":{"orbit":2,"orbitIndex":8,"connections":[{"orbit":-8,"id":38103},{"orbit":0,"id":34084}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Grounded in the Earth","group":604,"isNotable":true,"stats":["16% increased Skill Effect Duration","16% increased Stun Threshold"],"skill":25429},"46761":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":1031,"connections":[],"stats":[],"skill":46761},"38568":{"orbit":1,"orbitIndex":2,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Blind Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","group":1033,"connections":[],"stats":[],"skill":38568},"50715":{"orbit":7,"orbitIndex":21,"recipe":["Greed","Envy","Fear"],"connections":[{"orbit":0,"id":50383}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Frozen Limit","group":719,"isNotable":true,"stats":["+1 to maximum Cold Infusions"],"skill":50715},"54283":{"orbit":3,"orbitIndex":21,"stats":["15% increased Armour"],"connections":[{"orbit":0,"id":26324}],"group":452,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":54283},"53895":{"orbit":3,"orbitIndex":8,"stats":["15% reduced Grenade Detonation Time"],"connections":[{"orbit":2,"id":17303}],"group":613,"name":"Grenade Fuse Duration","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":53895},"4061":{"orbit":4,"orbitIndex":36,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":27491}],"group":647,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":4061},"16114":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","name":"Aura Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":430,"connections":[],"stats":[],"skill":16114},"64324":{"orbit":3,"orbitIndex":17,"stats":["4% increased Block chance","5% increased Stun Threshold"],"connections":[{"orbit":9,"id":41442}],"group":245,"name":"Block and Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":64324},"62350":{"orbit":2,"orbitIndex":12,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"connections":[],"group":1173,"name":"Attack Speed and Flask Duration","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":62350},"52829":{"orbit":4,"orbitIndex":63,"stats":["12% increased Stun Buildup","10% increased Damage with Maces"],"connections":[{"orbit":0,"id":375}],"group":126,"name":"Mace Damage and Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":52829},"6222":{"orbit":7,"orbitIndex":11,"stats":["10% increased Damage while Shapeshifted"],"connections":[{"orbit":0,"id":57608},{"orbit":0,"id":65189}],"group":325,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":6222},"19674":{"orbit":3,"orbitIndex":2,"stats":["8% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":41493}],"group":317,"name":"Attack Area Damage and Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":19674},"5314":{"orbit":4,"orbitIndex":36,"connections":[{"orbit":0,"id":29009}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":740,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":5314},"63002":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":58747}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Buff Expiry Rate","ascendancyName":"Chronomancer","group":309,"stats":["Buffs on you expire 10% slower"],"skill":63002},"21070":{"orbit":7,"orbitIndex":20,"stats":["10% increased Critical Hit Chance for Attacks"],"connections":[{"orbit":0,"id":57388}],"group":223,"name":"Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":21070},"54811":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":13474}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":387,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54811},"31433":{"orbit":2,"orbitIndex":8,"recipe":["Isolation","Isolation","Paranoia"],"connections":[{"orbit":-4,"id":21495},{"orbit":0,"id":5348}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Catalysis","group":1210,"isNotable":true,"stats":["20% increased Elemental Damage with Attacks","5% of Physical Damage from Hits taken as Damage of a Random Element"],"skill":31433},"50192":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-9,"id":31223}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life","ascendancyName":"Blood Mage","group":969,"stats":["3% increased maximum Life"],"skill":50192},"55478":{"orbit":2,"orbitIndex":2,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"connections":[{"orbit":4,"id":48006},{"orbit":-3,"id":16168}],"group":608,"name":"Attack Area Damage and Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":55478},"1433":{"orbit":6,"orbitIndex":56,"connections":[{"orbit":0,"id":31238},{"orbit":0,"id":48530},{"orbit":0,"id":95}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":538,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":1433},"35792":{"orbit":2,"orbitIndex":12,"recipe":["Isolation","Despair","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Blood of Rage","group":279,"isNotable":true,"stats":["Gain 8 Rage when you use a Life Flask"],"skill":35792},"43721":{"orbit":4,"orbitIndex":0,"connections":[{"orbit":8,"id":24993}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"skill":43721},"31763":{"orbit":4,"orbitIndex":27,"stats":["10% increased Critical Hit Chance with Crossbows"],"connections":[{"orbit":0,"id":43155}],"group":874,"name":"Crossbow Critical Chance","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":31763},"34473":{"orbit":2,"orbitIndex":8,"recipe":["Isolation","Despair","Fear"],"connections":[{"orbit":0,"id":42361}],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Spaghettification","group":1206,"isNotable":true,"stats":["3% increased Movement Speed","29% increased Chaos Damage","+13 to all Attributes","-7% to Chaos Resistance","23% reduced Light Radius"],"skill":34473},"54148":{"orbit":2,"orbitIndex":6,"recipe":["Isolation","Envy","Fear"],"connections":[{"orbit":0,"id":52746},{"orbit":0,"id":56934}],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Smoke Inhalation","group":542,"isNotable":true,"stats":["Damage Penetrates 15% Fire Resistance","15% increased Duration of Damaging Ailments on Enemies"],"skill":54148},"62341":{"orbit":4,"orbitIndex":61,"stats":["5% increased Block chance"],"connections":[{"orbit":7,"id":52836}],"group":959,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":62341},"40803":{"orbit":4,"orbitIndex":21,"recipe":["Suffering","Disgust","Guilt"],"connections":[{"orbit":0,"id":3218},{"orbit":0,"id":44298}],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Sigil of Ice","group":244,"isNotable":true,"stats":["30% increased Damage with Hits against Chilled Enemies"],"skill":40803},"44373":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Wither Away","group":1244,"isNotable":true,"stats":["Unwithered enemies are Withered for 8 seconds when they enter your Presence","20% increased Withered Magnitude"],"skill":44373},"50720":{"orbit":3,"orbitIndex":23,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":43557},{"orbit":-3,"id":11376},{"orbit":3,"id":34199},{"orbit":3,"id":30523}],"group":735,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":50720},"45162":{"orbit":7,"orbitIndex":18,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":7,"id":24801},{"orbit":-2,"id":63031}],"group":211,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":45162},"65256":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Disgust","Despair"],"connections":[{"orbit":0,"id":34845},{"orbit":0,"id":40626}],"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Widespread Coverage","group":1198,"isNotable":true,"stats":["50% increased Hazard Area of Effect","20% reduced Hazard Damage"],"skill":65256},"31697":{"orbit":2,"orbitIndex":4,"stats":["10% increased Elemental Infusion duration"],"connections":[{"orbit":0,"id":51303}],"group":427,"name":"Infusion Duration","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":31697},"16347":{"orbit":2,"orbitIndex":2,"stats":["+2 to Maximum Rage"],"connections":[{"orbit":0,"id":52373}],"group":364,"name":"Maximum Rage","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":16347},"19880":{"orbit":2,"orbitIndex":0,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"connections":[{"orbit":0,"id":59390}],"group":1145,"name":"Evasion if Consumed Frenzy Charge","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":19880},"54676":{"orbit":2,"orbitIndex":15,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":39759},{"orbit":0,"id":37612}],"group":541,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":54676},"5066":{"orbit":2,"orbitIndex":8,"stats":["10% reduced effect of Curses on you"],"connections":[{"orbit":0,"id":6714}],"group":630,"name":"Curse Effect on you","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":5066},"19011":{"orbit":3,"orbitIndex":20,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":45363}],"group":512,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":19011},"7246":{"orbit":8,"orbitIndex":54,"connections":[{"orbit":0,"id":39204}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Mana Regeneration","ascendancyName":"Stormweaver","group":502,"stats":["12% increased Mana Regeneration Rate"],"skill":7246},"35653":{"orbit":0,"orbitIndex":0,"stats":["12% increased Grenade Damage"],"connections":[{"orbit":0,"id":35653},{"orbit":0,"id":65468}],"group":805,"name":"Grenade Damage","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":35653},"9908":{"orbit":2,"orbitIndex":8,"recipe":["Envy","Fear","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Price of Freedom","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":368,"isNotable":true,"stats":["15% increased Cost Efficiency of Attacks","18% of Skill Mana Costs Converted to Life Costs"],"skill":9908},"23382":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":59093},{"orbit":0,"id":7960},{"orbit":0,"id":9065},{"orbit":0,"id":54297},{"orbit":0,"id":26863},{"orbit":0,"id":8982}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":316,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":23382},"64851":{"orbit":7,"orbitIndex":9,"recipe":["Greed","Guilt","Greed"],"connections":[{"orbit":0,"id":21324}],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Flashy Parrying","group":1056,"isNotable":true,"stats":["12% increased Block chance","20% increased Parried Debuff Duration"],"skill":64851},"49929":{"orbit":5,"orbitIndex":0,"connections":[{"orbit":0,"id":31757}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Everlasting Bloom","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":136,"connectionArt":"CharacterPlanned","stats":["30% increased Skill Effect Duration"],"skill":49929},"1020":{"orbit":7,"orbitIndex":3,"stats":["6% increased bonuses gained from Equipped Quiver"],"connections":[{"orbit":0,"id":54631}],"group":1252,"name":"Quiver Effect","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":1020},"40276":{"orbit":0,"orbitIndex":0,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":32745},{"orbit":0,"id":60241}],"group":475,"name":"Bleed Chance","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":40276},"38430":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":633,"connections":[{"orbit":0,"id":10499}],"stats":[],"skill":38430},"31903":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":37612},{"orbit":0,"id":56605},{"orbit":0,"id":38010}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":484,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":31903},"63009":{"orbit":2,"orbitIndex":3,"stats":["Remnants can be collected from 20% further away"],"connections":[{"orbit":0,"id":37593}],"group":802,"name":"Remnant Pickup Range","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":63009},"11886":{"orbit":7,"orbitIndex":23,"recipe":["Paranoia","Guilt","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Mauling Stuns","group":410,"isNotable":true,"stats":["40% increased Stun Buildup against enemies within 2 metres","20% increased Melee Damage against Heavy Stunned enemies"],"skill":11886},"43720":{"orbit":2,"orbitIndex":11,"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"connections":[],"group":1169,"name":"Mana Leech and Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":43720},"38694":{"orbit":7,"orbitIndex":8,"stats":["Herald Skills deal 20% increased Damage"],"connections":[{"orbit":-4,"id":22188}],"group":824,"name":"Herald Damage","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":38694},"11855":{"orbit":2,"orbitIndex":16,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":30829}],"group":924,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":11855},"46887":{"orbit":3,"orbitIndex":6,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":-6,"id":43720},{"orbit":0,"id":38463}],"group":1169,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":46887},"17367":{"orbit":3,"orbitIndex":4,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-6,"id":53941},{"orbit":0,"id":12761}],"group":1058,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":17367},"51248":{"orbit":2,"orbitIndex":9,"stats":["10% increased Fire Damage"],"connections":[{"orbit":0,"id":38292},{"orbit":4,"id":6015}],"group":530,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":51248},"44372":{"orbit":2,"orbitIndex":22,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"connections":[{"orbit":0,"id":11679},{"orbit":0,"id":25829}],"group":638,"name":"Spell Damage and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","skill":44372},"2335":{"orbit":3,"orbitIndex":8,"recipe":["Despair","Fear","Guilt"],"connections":[{"orbit":0,"id":18121}],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Turn the Clock Forward","group":1134,"isNotable":true,"stats":["20% increased Spell Damage","15% increased Projectile Speed for Spell Skills"],"skill":2335},"24825":{"orbit":3,"orbitIndex":10,"connections":[{"orbit":-3,"id":16460},{"orbit":-3,"id":29479},{"orbit":-3,"id":60738}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":976,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":24825},"15424":{"orbit":2,"orbitIndex":20,"stats":["15% increased Stun Threshold"],"connections":[{"orbit":0,"id":58157},{"orbit":0,"id":35151}],"group":1235,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","skill":15424},"43443":{"orbit":0,"orbitIndex":0,"stats":["15% increased Critical Hit Chance with Flails"],"connections":[{"orbit":0,"id":32148},{"orbit":0,"id":49370},{"orbit":0,"id":8535}],"group":169,"name":"Flail Critical Chance","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":43443},"54289":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gift of the Plains","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":226,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges","+1 to Maximum Power Charges"],"skill":54289},"42914":{"orbit":4,"orbitIndex":15,"connections":[{"orbit":0,"id":33393},{"orbit":0,"id":50847}],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Ball and Chain","group":141,"isNotable":true,"stats":["15% increased Damage with Flails","6% increased Attack Speed with Flails"],"skill":42914},"15618":{"orbit":3,"orbitIndex":0,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":0,"id":57710}],"group":744,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","skill":15618},"33404":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57821}],"icon":"Art/2DArt/SkillIcons/passives/EternalYouth.dds","name":"Eternal Youth","group":1264,"isKeystone":true,"stats":["Life Recharges instead of Energy Shield","50% less Life Recovery from Flasks"],"skill":33404},"61811":{"orbit":5,"orbitIndex":42,"connections":[{"orbit":-8,"id":44452}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":177,"connectionArt":"CharacterPlanned","stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"skill":61811},"46358":{"orbit":6,"orbitIndex":66,"connections":[{"orbit":0,"id":50423},{"orbit":0,"id":59376}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":620,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":46358},"3681":{"orbit":4,"orbitIndex":54,"connections":[{"orbit":-8,"id":57386}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Elemental Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["17% increased Elemental Ailment Threshold"],"skill":3681},"24767":{"orbit":4,"orbitIndex":34,"stats":["40% increased Energy Shield from Equipped Focus"],"connections":[{"orbit":4,"id":35408}],"group":406,"name":"Focus Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":24767},"1499":{"orbit":2,"orbitIndex":0,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":-2,"id":33830}],"group":1404,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","skill":1499},"64462":{"orbit":2,"orbitIndex":17,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":0,"id":53150}],"group":1337,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":64462},"7378":{"orbit":3,"orbitIndex":20,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":65016}],"group":586,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":7378},"64726":{"orbit":2,"orbitIndex":8,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":875,"connections":[{"orbit":0,"id":46296},{"orbit":0,"id":38479}],"stats":[],"skill":64726},"13772":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds","name":"Flowing Metal","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":39,"isNotable":true,"stats":["Body Armour grants +50% of Armour also applies to Elemental Damage"],"skill":13772},"23305":{"orbit":2,"orbitIndex":3,"stats":["Mark Skills have 10% increased Use Speed"],"connections":[{"orbit":-3,"id":21279},{"orbit":0,"id":51602}],"group":1296,"name":"Mark Use Speed","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":23305},"49259":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":222,"connections":[],"stats":[],"skill":49259},"45693":{"orbit":0,"orbitIndex":0,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":0,"id":64851}],"group":1056,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":45693},"35918":{"orbit":7,"orbitIndex":19,"recipe":["Disgust","Paranoia","Suffering"],"connections":[{"orbit":0,"id":52038}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"One For All","group":525,"isNotable":true,"stats":["40% increased Presence Area of Effect","8% reduced Area of Effect"],"skill":35918},"45569":{"orbit":2,"orbitIndex":22,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":0,"id":55596}],"group":214,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":45569},"64990":{"orbit":2,"orbitIndex":10,"stats":["+8 to Intelligence"],"connections":[{"orbit":0,"id":60891},{"orbit":0,"id":18897},{"orbit":0,"id":27705}],"group":1375,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","skill":64990},"5710":{"orbit":4,"orbitIndex":51,"connections":[{"orbit":-3,"id":6839},{"orbit":0,"id":38323},{"orbit":0,"id":14923},{"orbit":-4,"id":6529}],"icon":"Art/2DArt/SkillIcons/passives/strongarm.dds","name":"Brutal","group":614,"isNotable":true,"stats":["10% increased Stun Buildup","16% increased Melee Damage","+10 to Strength"],"skill":5710},"10265":{"orbit":6,"orbitIndex":48,"recipe":["Greed","Despair","Disgust"],"connections":[{"orbit":0,"id":36071}],"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","name":"Javelin","group":1322,"isNotable":true,"stats":["40% increased Critical Damage Bonus with Spears"],"skill":10265},"25031":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":292,"connections":[],"stats":[],"skill":25031},"24240":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Despair","Envy"],"connections":[{"orbit":-7,"id":11764}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Time Manipulation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","group":1159,"isNotable":true,"stats":["Debuffs you inflict have 10% increased Slow Magnitude","Debuffs on you expire 20% faster"],"skill":24240},"62603":{"orbit":3,"orbitIndex":20,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":3,"id":19715}],"group":685,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":62603},"15913":{"orbit":2,"orbitIndex":16,"stats":["4% increased Area of Effect","5% increased Area Damage"],"connections":[{"orbit":2,"id":32599},{"orbit":-2,"id":61362},{"orbit":0,"id":49734}],"group":239,"name":"Area of Effect and Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":15913},"18624":{"orbit":3,"orbitIndex":22,"stats":["16% increased Hazard Damage"],"connections":[{"orbit":-2,"id":39608},{"orbit":2,"id":12329}],"group":1369,"name":"Hazard Damage","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":18624},"33141":{"orbit":9,"orbitIndex":9,"connections":[{"orbit":4,"id":33570}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Life","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":30732,"stats":["3% increased maximum Life"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Life"}},"group":1120,"isSwitchable":true,"stats":["3% increased maximum Life"],"skill":33141},"2847":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":45272}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":748,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":2847},"24438":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Greed","Despair"],"connections":[{"orbit":0,"id":46748},{"orbit":0,"id":17745}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Hardened Wood","group":474,"isNotable":true,"stats":["Totems gain +20% to all Elemental Resistances","Totems have 20% additional Physical Damage Reduction"],"skill":24438},"28797":{"orbit":6,"orbitIndex":65,"stats":["3% increased Attack Speed with Daggers"],"connections":[{"orbit":0,"id":632}],"group":1394,"name":"Dagger Speed","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":28797},"38292":{"orbit":2,"orbitIndex":15,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":0,"id":33397}],"group":530,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":38292},"18822":{"orbit":1,"orbitIndex":7,"stats":["10% increased Damage"],"connections":[{"orbit":-3,"id":21567},{"orbit":3,"id":47790}],"group":313,"name":"Damage","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":18822},"61149":{"orbit":2,"orbitIndex":13,"stats":["20% increased Stun Recovery"],"connections":[{"orbit":0,"id":42760}],"group":1235,"name":"Stun Recovery","icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","skill":61149},"65518":{"orbit":5,"orbitIndex":6,"connections":[],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds","name":"Sanguine Tides","ascendancyName":"Blood Mage","group":910,"isNotable":true,"stats":["50% less Life Recovery from Flasks","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"],"skill":65518},"49136":{"orbit":4,"orbitIndex":70,"stats":["12% increased amount of Life Leeched"],"connections":[{"orbit":4,"id":9604},{"orbit":-3,"id":59466}],"group":383,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":49136},"25683":{"orbit":6,"orbitIndex":53,"connections":[{"orbit":-8,"id":34207}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds","name":"Ruzhan's Reckoning","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":25683},"39083":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Blood Rush","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":441,"isNotable":true,"stats":["6% increased Skill Speed","6% of Skill Mana Costs Converted to Life Costs"],"skill":39083},"22049":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":60505}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","options":{"Huntress":{"stats":["10% increased Melee Damage","10% increased Projectile Damage"],"id":28255,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Melee and Projectile Damage"}},"group":1008,"isSwitchable":true,"stats":["10% increased Projectile Damage"],"skill":22049},"6127":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds","name":"Jade Heritage","ascendancyName":"Warbringer","group":33,"isNotable":true,"stats":["Gain a stack of Jade every second","Grants Skill: Encase in Jade"],"skill":6127},"41736":{"orbit":6,"orbitIndex":27,"connections":[{"orbit":0,"id":46071},{"orbit":0,"id":35033},{"orbit":4,"id":5563},{"orbit":0,"id":60662},{"orbit":-4,"id":2702},{"orbit":0,"id":6109}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Amazon","ascendancyName":"Amazon","isAscendancyStart":true,"group":1474,"stats":[],"skill":41736},"47150":{"orbit":2,"orbitIndex":16,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":-5,"id":56910}],"group":754,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":47150},"28458":{"orbit":3,"orbitIndex":10,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":38972}],"group":461,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":28458},"45304":{"orbit":3,"orbitIndex":18,"stats":["10% increased Poison Duration"],"connections":[{"orbit":-4,"id":6078}],"group":1326,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":45304},"22115":{"orbit":1,"orbitIndex":10,"stats":["+8 to Intelligence"],"connections":[{"orbit":0,"id":61263},{"orbit":0,"id":59446}],"group":1113,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","skill":22115},"13307":{"orbit":4,"orbitIndex":25,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[],"group":591,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":13307},"39347":{"orbit":3,"orbitIndex":21,"recipe":["Disgust","Disgust","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Breaking Blows","group":208,"isNotable":true,"stats":["30% increased Stun Buildup","12% increased Area of Effect if you have Stunned an Enemy Recently"],"skill":39347},"49388":{"orbit":2,"orbitIndex":19,"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":37304},{"orbit":-7,"id":38215},{"orbit":7,"id":4806}],"group":1245,"name":"Elemental","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":49388},"7068":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameLargeCanAllocate","alloc":"RitualistFrameLargeAllocated","unalloc":"RitualistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds","name":"Mystic Attunement","ascendancyName":"Ritualist","group":1476,"isNotable":true,"stats":["25% increased bonuses gained from Equipped Rings and Amulets"],"skill":7068},"60620":{"orbit":7,"orbitIndex":4,"stats":["+8 to Strength"],"connections":[{"orbit":0,"id":45992}],"group":373,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":60620},"58646":{"orbit":6,"orbitIndex":26,"connections":[{"orbit":2147483647,"id":46654}],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds","name":"Reactive Growth","ascendancyName":"Shaman","group":65,"isNotable":true,"stats":["10% less Elemental Damage taken","Adapt to the highest Elemental Damage Type of each Hit you take","Each Adaptation grants 10% less Damage taken of that Adaptation's type"],"skill":58646},"989":{"orbit":2,"orbitIndex":20,"stats":["15% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":26416}],"group":279,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":989},"52429":{"orbit":3,"orbitIndex":13,"stats":["3% increased Cast Speed"],"connections":[{"orbit":7,"id":58930}],"group":610,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":52429},"1631":{"orbit":2,"orbitIndex":4,"stats":["10% increased Charm Effect Duration"],"connections":[{"orbit":3,"id":29049},{"orbit":-3,"id":14001}],"group":1202,"name":"Charm Duration","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":1631},"44498":{"orbit":3,"orbitIndex":20,"stats":["10% increased Exposure Effect"],"connections":[{"orbit":-5,"id":22439},{"orbit":0,"id":38068}],"group":705,"name":"Exposure Effect","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":44498},"64064":{"orbit":0,"orbitIndex":0,"stats":["8% increased Accuracy Rating"],"connections":[],"group":1249,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":64064},"37641":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","name":"Armour and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","group":268,"connections":[],"stats":[],"skill":37641},"2560":{"orbit":2,"orbitIndex":1,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":20044}],"group":1398,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":2560},"24039":{"orbit":5,"orbitIndex":51,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds","name":"Beidat's Hand","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["Reserves 25% of Life","+1 to Maximum Energy Shield per 8 Maximum Life"],"skill":24039},"54675":{"orbit":0,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":58814}],"group":902,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":54675},"8154":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","name":"Herald Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":539,"connections":[{"orbit":0,"id":3921},{"orbit":0,"id":38398}],"stats":[],"skill":8154},"58109":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":14340}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":806,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":58109},"42916":{"orbit":3,"orbitIndex":4,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":11030}],"group":268,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":42916},"37905":{"orbit":3,"orbitIndex":2,"stats":["30% increased Flammability Magnitude"],"connections":[],"group":1364,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","skill":37905},"63659":{"orbit":4,"orbitIndex":45,"connections":[{"orbit":0,"id":33964},{"orbit":0,"id":37616}],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Clever Construction","group":1347,"isNotable":true,"stats":["25% increased Critical Hit Chance with Traps"],"skill":63659},"21324":{"orbit":2,"orbitIndex":7,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","name":"Buckler Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","group":1056,"connections":[],"stats":[],"skill":21324},"24766":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Suffering"],"connections":[{"orbit":-3,"id":11257},{"orbit":-7,"id":31566},{"orbit":0,"id":51974}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Paranoia","group":717,"isNotable":true,"stats":["50% increased Surrounded Area of Effect"],"skill":24766},"51774":{"orbit":2,"orbitIndex":10,"stats":["15% reduced Volatility Explosion delay"],"connections":[{"orbit":2,"id":34425}],"group":1360,"name":"Volatility Detonation Time","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":51774},"31175":{"orbit":2,"orbitIndex":22,"recipe":["Isolation","Despair","Ire"],"connections":[{"orbit":0,"id":20119}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Grip of Evil","group":644,"isNotable":true,"stats":["Minions have 40% increased Critical Damage Bonus"],"skill":31175},"2211":{"orbit":7,"orbitIndex":19,"stats":["Herald Skills deal 20% increased Damage"],"connections":[{"orbit":7,"id":7473}],"group":539,"name":"Herald Damage","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":2211},"55342":{"orbit":5,"orbitIndex":60,"connections":[{"orbit":-5,"id":17248}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":871,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":55342},"29391":{"orbit":2,"orbitIndex":6,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"connections":[{"orbit":-3,"id":29009},{"orbit":3,"id":5314},{"orbit":3,"id":50715},{"orbit":0,"id":61354},{"orbit":-3,"id":29800}],"group":719,"name":"Infused Spell Damage","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":29391},"46748":{"orbit":0,"orbitIndex":0,"stats":["16% increased Totem Life"],"connections":[{"orbit":5,"id":51206},{"orbit":-5,"id":60568}],"group":489,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":46748},"3336":{"orbit":2,"orbitIndex":19,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"connections":[{"orbit":0,"id":30615}],"group":1341,"name":"Critical Damage when consuming a Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":3336},"26211":{"orbit":2,"orbitIndex":18,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"connections":[{"orbit":0,"id":24883}],"group":1259,"name":"Attack Area and Combo","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":26211},"8092":{"orbit":4,"orbitIndex":11,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":6,"id":44605},{"orbit":0,"id":59028}],"group":766,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":8092},"58513":{"orbit":3,"orbitIndex":9,"stats":["1% increased Movement Speed","8% increased Evasion Rating"],"connections":[{"orbit":2147483647,"id":14418},{"orbit":0,"id":11774}],"group":1232,"name":"Evasion and Movement Speed","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","skill":58513},"52038":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","name":"Aura Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":526,"connections":[],"stats":[],"skill":52038},"38433":{"orbit":2,"orbitIndex":17,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":55375}],"group":323,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":38433},"60619":{"orbit":4,"orbitIndex":15,"recipe":["Fear","Fear","Suffering"],"connections":[{"orbit":-5,"id":541},{"orbit":-5,"id":41609},{"orbit":0,"id":31010},{"orbit":0,"id":27216},{"orbit":0,"id":12005}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","name":"Scales of the Wyvern","group":201,"isNotable":true,"stats":["20% faster start of Energy Shield Recharge while Shapeshifted","20% increased Energy Shield Recharge Rate while Shapeshifted","+1% to Maximum Lightning Resistance while Shapeshifted"],"skill":60619},"35920":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":35762}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Maximum Rage","ascendancyName":"Shaman","group":67,"stats":["+3 to Maximum Rage"],"skill":35920},"1214":{"orbit":7,"orbitIndex":21,"stats":["4% increased Block chance","15% increased Defences from Equipped Shield"],"connections":[{"orbit":-4,"id":53823}],"group":174,"name":"Block and Shield Defences","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":1214},"34058":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":59376},{"orbit":0,"id":4456}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":670,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":34058},"23570":{"orbit":4,"orbitIndex":18,"connections":[{"orbit":0,"id":41031}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":631,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":23570},"38697":{"orbit":3,"orbitIndex":12,"connections":[{"orbit":0,"id":20391}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["8% increased Block chance"],"skill":38697},"6655":{"orbit":2,"orbitIndex":14,"recipe":["Despair","Suffering","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Aggravation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":658,"isNotable":true,"stats":["10% chance to Aggravate Bleeding on targets you Hit with Attacks"],"skill":6655},"1887":{"orbit":3,"orbitIndex":2,"connections":[{"orbit":0,"id":10713}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["30% increased Armour while stationary"],"skill":1887},"5049":{"orbit":7,"orbitIndex":18,"stats":["2% increased Attack Speed","+5 to Dexterity"],"connections":[{"orbit":0,"id":49231},{"orbit":3,"id":42177}],"group":603,"name":"Attack Speed and Dexterity","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":5049},"54152":{"orbit":0,"orbitIndex":0,"stats":["3% increased Movement Speed while Sprinting"],"connections":[{"orbit":0,"id":43453}],"group":1288,"name":"Sprint Movement Speed","icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","skill":54152},"62609":{"orbit":7,"orbitIndex":6,"recipe":["Suffering","Fear","Envy"],"connections":[{"orbit":0,"id":11014},{"orbit":0,"id":16051}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Ancestral Unity","group":314,"isNotable":true,"stats":["Attacks used by Totems have 4% increased Attack Speed per Summoned Totem"],"skill":62609},"54416":{"orbit":7,"orbitIndex":6,"stats":["20% increased Armour if you have been Hit Recently"],"connections":[{"orbit":4,"id":60274}],"group":152,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":54416},"11786":{"orbit":2,"orbitIndex":5,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"connections":[{"orbit":2147483647,"id":7716}],"group":320,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":11786},"35393":{"orbit":2,"orbitIndex":2,"connections":[{"orbit":0,"id":23708}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":399,"connectionArt":"CharacterPlanned","stats":["30% increased Armour while Bleeding"],"skill":35393},"18160":{"orbit":7,"orbitIndex":14,"stats":["Minions have 20% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":26945}],"group":644,"name":"Minion Critical Chance","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":18160},"28862":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","name":"Leech Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","group":422,"connections":[],"stats":[],"skill":28862},"64327":{"orbit":3,"orbitIndex":21,"connections":[{"orbit":0,"id":39517},{"orbit":0,"id":49391}],"icon":"Art/2DArt/SkillIcons/passives/steelspan.dds","name":"Defender's Resolve","group":567,"isNotable":true,"stats":["12% increased Block chance","Your Heavy Stun buildup empties 50% faster"],"skill":64327},"17101":{"orbit":3,"orbitIndex":17,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-2,"id":25362}],"group":1372,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","skill":17101},"64591":{"orbit":9,"orbitIndex":106,"connections":[{"orbit":-8,"id":34207}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds","name":"Ruzhan's Trap","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":64591},"42250":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":26786},{"orbit":0,"id":16484},{"orbit":0,"id":44014},{"orbit":0,"id":45137}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":964,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":42250},"43584":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Flare","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":601,"isNotable":true,"stats":["Gain 2% of Damage as Extra Fire Damage per Endurance Charge consumed Recently"],"skill":43584},"53094":{"orbit":7,"orbitIndex":20,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":38703},{"orbit":0,"id":51048}],"group":1048,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":53094},"34990":{"orbit":2,"orbitIndex":20,"connections":[{"orbit":0,"id":6088}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":421,"connectionArt":"CharacterPlanned","stats":["10% chance to Poison on Hit"],"skill":34990},"8916":{"orbit":1,"orbitIndex":8,"recipe":["Despair","Paranoia","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","name":"Bashing Beast","group":410,"isNotable":true,"stats":["Enemies you Heavy Stun while Shapeshifted are Intimidated for 6 seconds"],"skill":8916},"23710":{"orbit":9,"orbitIndex":0,"connections":[{"orbit":0,"id":58751},{"orbit":5,"id":2995},{"orbit":-4,"id":51142},{"orbit":-6,"id":39241},{"orbit":5,"id":33141},{"orbit":-4,"id":62797}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Necromancer","ascendancyName":"Lich","isAscendancyStart":true,"options":{"Abyssal Lich":{"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"ascendancyName":"Abyssal Lich"}},"group":1120,"isSwitchable":true,"stats":[],"skill":23710},"60230":{"orbit":5,"orbitIndex":0,"connections":[{"orbit":0,"id":56935},{"orbit":0,"id":58362},{"orbit":0,"id":10192},{"orbit":0,"id":55909}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"id":19602,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage"}},"group":713,"isSwitchable":true,"stats":["8% increased Elemental Damage"],"skill":60230},"541":{"orbit":6,"orbitIndex":17,"stats":["15% increased Energy Shield Recharge Rate while Shapeshifted"],"connections":[],"group":201,"name":"Shapeshifted Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":541},"65243":{"orbit":2,"orbitIndex":22,"recipe":["Fear","Greed","Fear"],"connections":[{"orbit":0,"id":46421}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Enveloping Presence","group":304,"isNotable":true,"stats":["30% increased Presence Area of Effect","Aura Skills have 6% increased Magnitudes"],"skill":65243},"35921":{"orbit":2,"orbitIndex":12,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":5642}],"group":234,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":35921},"30910":{"orbit":2,"orbitIndex":13,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":-7,"id":59647}],"group":1032,"name":"Damage and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":30910},"10072":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-7,"id":52068}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Block Chance","ascendancyName":"Warbringer","group":59,"stats":["6% increased Block chance"],"skill":10072},"29126":{"orbit":7,"orbitIndex":14,"connections":[{"orbit":-7,"id":32353}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":326,"connectionArt":"CharacterPlanned","stats":["12% increased Elemental Damage while Shapeshifted"],"skill":29126},"42390":{"orbit":4,"orbitIndex":4,"recipe":["Disgust","Suffering","Guilt"],"connections":[{"orbit":3,"id":11433},{"orbit":0,"id":63608}],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Overheating Blow","group":104,"isNotable":true,"stats":["Gain 25% of Physical Damage as Extra Fire Damage against Heavy Stunned Enemies"],"skill":42390},"8249":{"orbit":7,"orbitIndex":8,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"connections":[{"orbit":0,"id":63525},{"orbit":0,"id":16816}],"group":1048,"name":"Accuracy and Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":8249},"55995":{"orbit":2,"orbitIndex":4,"stats":["20% increased Frenzy Charge Duration"],"connections":[{"orbit":0,"id":41873}],"group":1400,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":55995},"63401":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":48537}],"nodeOverlay":{"path":"Smith of KitavaFrameSmallCanAllocate","alloc":"Smith of KitavaFrameSmallAllocated","unalloc":"Smith of KitavaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Resistance","ascendancyName":"Smith of Kitava","group":26,"stats":["+8% to Fire Resistance"],"skill":63401},"37767":{"orbit":7,"orbitIndex":16,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"connections":[{"orbit":0,"id":9020},{"orbit":0,"id":6596},{"orbit":0,"id":63731}],"group":936,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":37767},"62732":{"orbit":3,"orbitIndex":9,"connections":[{"orbit":0,"id":64192},{"orbit":0,"id":49391}],"icon":"Art/2DArt/SkillIcons/passives/Hearty.dds","name":"Titan's Determination","group":567,"isNotable":true,"stats":["25% increased Stun Threshold","20% increased Life Regeneration Rate while moving"],"skill":62732},"43183":{"orbit":7,"orbitIndex":6,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":11153}],"group":603,"name":"Attack Speed and Accuracy","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":43183},"57190":{"orbit":1,"orbitIndex":6,"recipe":["Paranoia","Guilt","Disgust"],"connections":[{"orbit":0,"id":27859}],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Doomsayer","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":824,"isNotable":true,"stats":["Herald Skills have 25% increased Area of Effect","Herald Skills deal 30% increased Damage"],"skill":57190},"63525":{"orbit":7,"orbitIndex":2,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"connections":[{"orbit":0,"id":53094}],"group":1048,"name":"Accuracy and Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":63525},"54417":{"orbit":6,"orbitIndex":21,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":750,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54417},"23105":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1373,"connections":[],"stats":[],"skill":23105},"21387":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":53719},{"orbit":0,"id":3988}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":178,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":21387},"29514":{"orbit":3,"orbitIndex":3,"recipe":["Suffering","Isolation","Disgust"],"connections":[{"orbit":0,"id":39431}],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Cluster Bombs","group":702,"isNotable":true,"stats":["50% increased Grenade Detonation Time","Grenade Skills Fire an additional Projectile"],"skill":29514},"34199":{"orbit":4,"orbitIndex":55,"stats":["Minions have 15% increased Critical Damage Bonus"],"connections":[],"group":735,"name":"Minion Critical Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":34199},"18548":{"orbit":7,"orbitIndex":8,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":28992}],"group":882,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":18548},"31364":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Greed","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","name":"Primal Protection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","group":1329,"isNotable":true,"stats":["40% increased Charm Effect Duration","40% increased Charm Charges gained"],"skill":31364},"36449":{"orbit":7,"orbitIndex":6,"stats":["15% increased Pin Buildup"],"connections":[{"orbit":0,"id":8115}],"group":640,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":36449},"54805":{"orbit":5,"orbitIndex":27,"recipe":["Suffering","Greed","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Hindered Capabilities","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","group":1026,"isNotable":true,"stats":["30% increased Damage with Hits against Hindered Enemies","Debuffs you inflict have 10% increased Slow Magnitude"],"skill":54805},"33408":{"orbit":0,"orbitIndex":0,"stats":["10% increased amount of Life Leeched while Shapeshifted"],"connections":[],"group":119,"name":"Shapeshifted Life Leech","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":33408},"46874":{"orbit":7,"orbitIndex":21,"stats":["12% increased Attack Physical Damage"],"connections":[{"orbit":0,"id":7449},{"orbit":0,"id":53696}],"group":1062,"name":"Physical Attack Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":46874},"43711":{"orbit":2,"orbitIndex":18,"recipe":["Ire","Greed","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","name":"Thornhide","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","group":305,"isNotable":true,"stats":["+6% to Thorns Critical Hit Chance"],"skill":43711},"6952":{"orbit":2,"orbitIndex":18,"stats":["6% increased Area of Effect for Attacks"],"connections":[],"group":100,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":6952},"6502":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds","name":"Flail Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","group":170,"connections":[],"stats":[],"skill":6502},"42253":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds","name":"Wisdom of the Maji","ascendancyName":"Shaman","group":62,"isNotable":true,"stats":["Gain the benefits of Bonded modifiers on Runes and Idols"],"skill":42253},"36170":{"orbit":2,"orbitIndex":13,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":-3,"id":53853},{"orbit":-4,"id":7628}],"group":667,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":36170},"18746":{"orbit":0,"orbitIndex":0,"stats":["5% increased Block chance"],"connections":[],"group":128,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":18746},"14890":{"orbit":2,"orbitIndex":13,"stats":["10% increased Chill Duration on Enemies","10% increased Magnitude of Chill you inflict"],"connections":[{"orbit":-4,"id":21080}],"group":1038,"name":"Chill Magnitude and Duration","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":14890},"13075":{"orbit":0,"orbitIndex":0,"stats":["+12 to Strength"],"connections":[{"orbit":0,"id":50392}],"group":218,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":13075},"5594":{"orbit":2,"orbitIndex":12,"recipe":["Isolation","Envy","Despair"],"connections":[{"orbit":0,"id":50107},{"orbit":0,"id":8785}],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Decrepifying Curse","group":982,"isNotable":true,"stats":["20% increased duration of Ailments you inflict against Cursed Enemies"],"skill":5594},"15782":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":1433},{"orbit":0,"id":46628},{"orbit":0,"id":53675}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":429,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":15782},"1953":{"orbit":0,"orbitIndex":0,"stats":["15% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":23905}],"group":1125,"name":"Shock Effect","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":1953},"5726":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":713,"connections":[],"stats":[],"skill":5726},"52556":{"orbit":2,"orbitIndex":8,"stats":["+2 to Maximum Rage"],"connections":[{"orbit":-7,"id":16347},{"orbit":0,"id":28304}],"group":364,"name":"Maximum Rage","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":52556},"12120":{"orbit":3,"orbitIndex":18,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":-7,"id":51606}],"group":1177,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":12120},"47931":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":33722},{"orbit":0,"id":39131},{"orbit":0,"id":9324},{"orbit":0,"id":53329},{"orbit":0,"id":63170}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":155,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":47931},"63400":{"orbit":2,"orbitIndex":6,"recipe":["Greed","Suffering","Greed"],"connections":[{"orbit":-7,"id":22851}],"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Chakra of Elements","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1118,"isNotable":true,"stats":["Gain 8% of Physical Damage as Extra Cold Damage against Shocked Enemies","Gain 8% of Physical Damage as Extra Lightning Damage against Chilled Enemies"],"skill":63400},"44239":{"orbit":7,"orbitIndex":16,"stats":["15% increased Pin Buildup"],"connections":[{"orbit":0,"id":29479}],"group":1050,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":44239},"4128":{"orbit":2,"orbitIndex":18,"stats":["15% increased Armour"],"connections":[{"orbit":3,"id":54283},{"orbit":0,"id":54811}],"group":452,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":4128},"56388":{"orbit":5,"orbitIndex":0,"recipe":["Ire","Envy","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","name":"Reinforced Rallying","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","group":656,"isNotable":true,"stats":["+1 to maximum number of placed Banners"],"skill":56388},"18157":{"orbit":2,"orbitIndex":17,"recipe":["Fear","Guilt","Envy"],"connections":[{"orbit":-8,"id":29447}],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Tempered Defences","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":320,"isNotable":true,"stats":["25% increased Armour","+15% of Armour also applies to Elemental Damage"],"skill":18157},"59039":{"orbit":5,"orbitIndex":38,"connections":[{"orbit":4,"id":28223}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":164,"connectionArt":"CharacterPlanned","stats":["20% increased Critical Damage Bonus"],"skill":59039},"34324":{"orbit":4,"orbitIndex":0,"recipe":["Envy","Fear","Suffering"],"connections":[{"orbit":-5,"id":56838},{"orbit":0,"id":52445}],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Spectral Ward","group":1257,"isNotable":true,"stats":["+1 to Maximum Energy Shield per 12 Item Evasion Rating on Equipped Body Armour"],"skill":34324},"44891":{"orbit":2,"orbitIndex":7,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":2147483647,"id":52537},{"orbit":0,"id":15775}],"group":1350,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":44891},"54678":{"orbit":0,"orbitIndex":0,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":41877}],"group":1204,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":54678},"38420":{"orbit":2,"orbitIndex":20,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":37543}],"group":529,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":38420},"95":{"orbit":0,"orbitIndex":0,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":8737}],"group":480,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":95},"14960":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57959}],"nodeOverlay":{"path":"Smith of KitavaFrameSmallCanAllocate","alloc":"Smith of KitavaFrameSmallAllocated","unalloc":"Smith of KitavaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Resistance","ascendancyName":"Smith of Kitava","group":10,"stats":["+8% to Fire Resistance"],"skill":14960},"59303":{"orbit":4,"orbitIndex":3,"recipe":["Isolation","Disgust","Ire"],"connections":[{"orbit":0,"id":25029}],"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","name":"Lucky Rabbit Foot","group":1219,"isNotable":true,"stats":["30% increased Damage while you have an active Charm","6% increased Movement Speed while you have an active Charm"],"skill":59303},"10398":{"orbit":7,"orbitIndex":18,"recipe":["Disgust","Paranoia","Fear"],"connections":[{"orbit":-3,"id":3472}],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Sudden Escalation","group":699,"isNotable":true,"stats":["16% increased Critical Hit Chance for Spells","8% increased Cast Speed if you've dealt a Critical Hit Recently"],"skill":10398},"55066":{"orbit":2,"orbitIndex":21,"stats":["16% increased Attack Damage against Bleeding Enemies"],"connections":[{"orbit":0,"id":19796}],"group":716,"name":"Attack Damage vs Bleeding Enemies","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":55066},"44098":{"orbit":7,"orbitIndex":12,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":4061},{"orbit":0,"id":34531}],"group":647,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":44098},"55473":{"orbit":7,"orbitIndex":23,"stats":["8% increased Melee Damage"],"connections":[{"orbit":0,"id":43164}],"group":614,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":55473},"14262":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32763},{"orbit":0,"id":21945}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1367,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":14262},"7526":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":9411},{"orbit":0,"id":17447},{"orbit":0,"id":22972},{"orbit":0,"id":43044},{"orbit":0,"id":24210}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1139,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":7526},"51234":{"orbit":2,"orbitIndex":6,"stats":["15% increased effect of Archon Buffs on you"],"connections":[{"orbit":-2,"id":15991},{"orbit":7,"id":27434}],"group":799,"name":"Archon Effect","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":51234},"23839":{"orbit":2,"orbitIndex":2,"stats":["4% reduced Flask Charges used from Mana Flasks"],"connections":[{"orbit":-2,"id":51006}],"group":1227,"name":"Mana Flask Charges Used","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":23839},"22908":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds","name":"Tribute to Utula","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":24,"isNotable":true,"stats":["Body Armour grants 30% increased Spirit"],"skill":22908},"20205":{"orbit":2,"orbitIndex":4,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[{"orbit":0,"id":33059}],"group":894,"name":"Stun Threshold if no recent Stun","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":20205},"14231":{"orbit":7,"orbitIndex":13,"stats":["Triggered Spells deal 14% increased Spell Damage"],"connections":[{"orbit":-7,"id":40453}],"group":1174,"name":"Triggered Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":14231},"71":{"orbit":7,"orbitIndex":17,"stats":["4% reduced Skill Effect Duration","8% increased Physical Damage"],"connections":[{"orbit":0,"id":62376}],"group":449,"name":"Physical Damage and Reduced Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":71},"9638":{"orbit":0,"orbitIndex":0,"stats":["3% increased Skill Speed"],"connections":[{"orbit":-7,"id":39083}],"group":451,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":9638},"35380":{"orbit":2,"orbitIndex":20,"stats":["10% increased Withered Magnitude"],"connections":[{"orbit":-2,"id":44373}],"group":1241,"name":"Withered Effect","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":35380},"15984":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","name":"Lightning Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":798,"connections":[],"stats":[],"skill":15984},"25557":{"orbit":6,"orbitIndex":16,"connections":[{"orbit":0,"id":29763},{"orbit":0,"id":4059},{"orbit":0,"id":26804}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":994,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":25557},"17366":{"orbit":7,"orbitIndex":10,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":29361}],"group":878,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":17366},"34061":{"orbit":5,"orbitIndex":55,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":5,"id":52442},{"orbit":0,"id":38057}],"group":768,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":34061},"10499":{"orbit":2,"orbitIndex":0,"recipe":["Guilt","Envy","Fear"],"connections":[{"orbit":2147483647,"id":42583},{"orbit":8,"id":51788}],"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Necromantic Ward","group":630,"isNotable":true,"stats":["20% increased Life Regeneration rate","30% reduced effect of Curses on you","30% increased damage against Undead Enemies"],"skill":10499},"64192":{"orbit":3,"orbitIndex":12,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":3,"id":53373}],"group":567,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":64192},"50847":{"orbit":7,"orbitIndex":5,"stats":["10% increased Damage with Flails"],"connections":[{"orbit":0,"id":1130}],"group":141,"name":"Flail Damage","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":50847},"35644":{"orbit":3,"orbitIndex":23,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":6,"id":45193},{"orbit":0,"id":65009}],"group":1073,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":35644},"27671":{"orbit":7,"orbitIndex":15,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":2147483647,"id":32681}],"group":1175,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","skill":27671},"57320":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Armour and Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","group":667,"connections":[],"stats":[],"skill":57320},"26804":{"orbit":7,"orbitIndex":2,"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"connections":[{"orbit":0,"id":55405},{"orbit":0,"id":59909}],"group":1015,"name":"Corpses","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":26804},"34853":{"orbit":2,"orbitIndex":0,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"connections":[{"orbit":-2,"id":25458},{"orbit":0,"id":43044}],"group":1179,"name":"Strength and Critical Damage Bonus on You","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","skill":34853},"56265":{"orbit":2,"orbitIndex":2,"recipe":["Greed","Envy","Isolation"],"connections":[{"orbit":0,"id":42802}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Throatseeker","group":1377,"isNotable":true,"stats":["60% increased Critical Damage Bonus","20% reduced Critical Hit Chance"],"skill":56265},"34201":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":24922},{"orbit":0,"id":46882},{"orbit":0,"id":17316}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1093,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":34201},"19802":{"orbit":2,"orbitIndex":8,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"connections":[{"orbit":2,"id":64399}],"group":528,"name":"Attack Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":19802},"50184":{"orbit":7,"orbitIndex":1,"connections":[{"orbit":0,"id":46069}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":421,"connectionArt":"CharacterPlanned","stats":["12% increased Magnitude of Poison you inflict"],"skill":50184},"41991":{"orbit":3,"orbitIndex":2,"stats":["Minions have 3% increased Attack and Cast Speed"],"connections":[{"orbit":0,"id":61026}],"group":461,"name":"Minion Attack and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":41991},"60483":{"orbit":0,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":7809},{"orbit":0,"id":36540}],"group":1319,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":60483},"26085":{"orbit":9,"orbitIndex":124,"connections":[{"orbit":-4,"id":20772}],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds","name":"Necromantic Conduit","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":41162,"stats":["Skeletal Minions you would create instead grant you Umbral Souls for each Minion you would have created"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds","name":"Umbral Well"}},"group":1120,"isNotable":true,"stats":["While you are not on Low Mana, you and Allies in your Presence have Unholy Might","Lose 5% of maximum Mana per Second"],"skill":26085},"42379":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":16705},{"orbit":0,"id":25520},{"orbit":0,"id":3463},{"orbit":0,"id":4552}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1154,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":42379},"1218":{"orbit":3,"orbitIndex":18,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":14945}],"group":461,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":1218},"43713":{"orbit":0,"orbitIndex":0,"stats":["Offering Skills have 20% increased Area of Effect"],"connections":[{"orbit":0,"id":3051},{"orbit":0,"id":27009},{"orbit":0,"id":35602}],"group":779,"name":"Offering Area","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":43713},"4046":{"orbit":2,"orbitIndex":8,"stats":["15% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":8875}],"group":709,"name":"Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":4046},"22517":{"orbit":7,"orbitIndex":0,"stats":["8% chance to Poison on Hit"],"connections":[{"orbit":4,"id":59644},{"orbit":-4,"id":32896}],"group":1222,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":22517},"43044":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":63566},{"orbit":0,"id":38678},{"orbit":-6,"id":21495}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1178,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":43044},"27068":{"orbit":7,"orbitIndex":14,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":35831}],"group":280,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":27068},"15356":{"orbit":0,"orbitIndex":0,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":18815}],"group":1330,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":15356},"17894":{"orbit":4,"orbitIndex":42,"connections":[{"orbit":0,"id":58058}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Her Final Bite","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["20% increased Physical Damage with Bows","Bow Attacks have Culling Strike"],"skill":17894},"12610":{"orbit":7,"orbitIndex":20,"connections":[{"orbit":0,"id":4873}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":571,"connectionArt":"CharacterPlanned","stats":["Meta Skills gain 20% increased Energy"],"skill":12610},"57181":{"orbit":8,"orbitIndex":24,"connections":[{"orbit":-7,"id":52448}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Critical Chance","ascendancyName":"Invoker","group":1430,"stats":["12% increased Critical Hit Chance"],"skill":57181},"23436":{"orbit":4,"orbitIndex":39,"connections":[{"orbit":-3,"id":29197}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":243,"connectionArt":"CharacterPlanned","stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"skill":23436},"65248":{"orbit":4,"orbitIndex":24,"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"connections":[],"group":705,"name":"Elemental Ailment Duration","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":65248},"6898":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-8,"id":17584},{"orbit":8,"id":61067},{"orbit":0,"id":48305},{"orbit":0,"id":30704},{"orbit":-8,"id":17517},{"orbit":0,"id":28718}],"icon":"Art/2DArt/SkillIcons/passives/PressurePoints.dds","name":"Relentless Vindicator","isSwitchable":true,"options":{"Druid":{"stats":["10% increased Damage","Gain 5% of Damage as Extra Damage of a random Element","+5 to Strength and Intelligence"],"id":7197,"icon":"Art/2DArt/SkillIcons/passives/stormborn.dds","name":"Guardian of the Wilds"}},"group":584,"isNotable":true,"stats":["10% increased Damage","10% increased Critical Hit Chance","+5 to Strength and Intelligence"],"skill":6898},"5284":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Greed"],"connections":[{"orbit":0,"id":32278}],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Shredding Force","group":497,"isNotable":true,"stats":["15% increased Critical Hit Chance for Spells","15% increased Critical Spell Damage Bonus","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"skill":5284},"14363":{"orbit":3,"orbitIndex":2,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":61338}],"group":696,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":14363},"30834":{"orbit":2,"orbitIndex":2,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":50216},{"orbit":0,"id":57967}],"group":592,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":30834},"18348":{"orbit":8,"orbitIndex":60,"connections":[{"orbit":5,"id":19482},{"orbit":0,"id":8854},{"orbit":8,"id":46016}],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds","name":"Altered Flesh","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["20% of Cold Damage taken as Fire Damage","20% of Lightning Damage taken as Fire Damage","20% of Physical Damage taken as Chaos Damage"],"skill":18348},"46475":{"orbit":4,"orbitIndex":63,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":5,"id":18186},{"orbit":0,"id":51299},{"orbit":0,"id":16385}],"group":649,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":46475},"19942":{"orbit":2,"orbitIndex":1,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":0,"id":1144}],"group":303,"name":"Attack Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":19942},"18158":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds","name":"Bringer of Flame","ascendancyName":"Infernalist","group":701,"isNotable":true,"stats":["All Damage from you and Allies in your Presence","contributes to Flammability and Ignite Magnitudes"],"skill":18158},"35645":{"orbit":0,"orbitIndex":0,"stats":["Minions have 20% increased Cooldown Recovery Rate for Command Skills"],"connections":[],"group":495,"name":"Command Skill Cooldown","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":35645},"25482":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Disgust","Fear"],"connections":[{"orbit":0,"id":61472},{"orbit":0,"id":51702},{"orbit":0,"id":60620}],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Beef","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":373,"isNotable":true,"stats":["+25 to Strength"],"skill":25482},"21792":{"orbit":1,"orbitIndex":0,"stats":["Recover 1% of maximum Life on Kill","Recover 1% of maximum Mana on Kill"],"connections":[{"orbit":2,"id":29899}],"group":1084,"name":"Life and Mana on Kill","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":21792},"13634":{"orbit":2,"orbitIndex":18,"stats":["Offering Skills have 30% increased Duration"],"connections":[],"group":787,"name":"Offering Duration","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":13634},"28199":{"orbit":0,"orbitIndex":0,"stats":["20% increased Hazard Immobilisation buildup"],"connections":[{"orbit":0,"id":46431}],"group":1203,"name":"Hazard Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":28199},"36576":{"orbit":7,"orbitIndex":14,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-3,"id":25055},{"orbit":0,"id":54984}],"group":1318,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":36576},"46615":{"orbit":7,"orbitIndex":10,"stats":["50% chance to gain Volatility when you are Stunned"],"connections":[{"orbit":7,"id":53177}],"group":1220,"name":"Volatility when Stunned","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":46615},"17553":{"orbit":7,"orbitIndex":5,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"connections":[],"group":875,"name":"Projectile Pierce","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":17553},"20008":{"orbit":7,"orbitIndex":4,"recipe":["Disgust","Guilt","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Unleash Fire","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1112,"isNotable":true,"stats":["30% increased Stun Buildup with Melee Damage","Projectiles deal 75% increased Damage against Heavy Stunned Enemies"],"skill":20008},"32155":{"orbit":7,"orbitIndex":16,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"connections":[{"orbit":4,"id":25700}],"group":1143,"name":"Elemental Damage and Shock Chance","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":32155},"30371":{"orbit":3,"orbitIndex":1,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"connections":[{"orbit":-4,"id":27687}],"group":174,"name":"Shield Damage","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":30371},"511":{"orbit":7,"orbitIndex":8,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"connections":[{"orbit":0,"id":49734}],"group":189,"name":"Attack and Spell Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":511},"28992":{"orbit":4,"orbitIndex":21,"connections":[{"orbit":0,"id":62628},{"orbit":0,"id":43923}],"icon":"Art/2DArt/SkillIcons/passives/Hunter.dds","name":"Honed Instincts","isSwitchable":true,"options":{"Huntress":{"stats":["8% increased Attack Speed","6% increased Area of Effect","+10 to Dexterity"],"id":32062,"icon":"Art/2DArt/SkillIcons/passives/LethalAssault.dds","name":"Primal Instinct"}},"group":882,"isNotable":true,"stats":["8% increased Projectile Speed","8% increased Attack Speed","+10 to Dexterity"],"skill":28992},"56914":{"orbit":7,"orbitIndex":5,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":50121}],"group":1123,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":56914},"7183":{"orbit":2,"orbitIndex":5,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":-6,"id":48589}],"group":507,"name":"Life Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":7183},"35118":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","name":"Two Hand Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","group":936,"connections":[],"stats":[],"skill":35118},"19337":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Envy","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Precision Salvo","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":1126,"isNotable":true,"stats":["8% increased Projectile Speed","6% increased Attack Speed","12% increased Accuracy Rating"],"skill":19337},"63926":{"orbit":0,"orbitIndex":0,"stats":["Minions have +20% to Lightning Resistance","Minions have +3% to Maximum Lightning Resistances"],"connections":[],"group":909,"name":"Minion Lightning Resistance","icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","skill":63926},"14658":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":12253},{"orbit":0,"id":22517},{"orbit":0,"id":52053},{"orbit":0,"id":1631},{"orbit":0,"id":57945}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1221,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":14658},"57178":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance for Spells","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"connections":[{"orbit":0,"id":21245},{"orbit":0,"id":5284}],"group":504,"name":"Spell Critical Chance and Critical Ailment Effect","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":57178},"59433":{"orbit":2,"orbitIndex":20,"recipe":["Despair","Envy","Ire"],"connections":[{"orbit":0,"id":60916}],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Thirst for Endurance","group":219,"isNotable":true,"stats":["25% chance when you gain an Endurance Charge to gain an additional Endurance Charge"],"skill":59433},"59028":{"orbit":4,"orbitIndex":16,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":41210}],"group":766,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":59028},"32353":{"orbit":3,"orbitIndex":23,"recipe":["Suffering","Fear","Despair"],"connections":[{"orbit":0,"id":41180}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Swift Claw","group":325,"isNotable":true,"stats":["10% increased Skill Speed while Shapeshifted"],"skill":32353},"34187":{"orbit":4,"orbitIndex":60,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":-5,"id":7128}],"group":307,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":34187},"7922":{"orbit":2,"orbitIndex":17,"stats":["10% increased Flask Effect Duration"],"connections":[{"orbit":-6,"id":45962}],"group":507,"name":"Flask Duration","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":7922},"44628":{"orbit":2,"orbitIndex":4,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":20820}],"group":1106,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":44628},"60886":{"orbit":1,"orbitIndex":5,"stats":["20% increased Stun Recovery"],"connections":[{"orbit":3,"id":59213}],"group":448,"name":"Stun Recovery","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":60886},"51892":{"orbit":2,"orbitIndex":23,"stats":["6% increased Power Charge Duration","6% increased Elemental Infusion duration"],"connections":[{"orbit":0,"id":59387},{"orbit":0,"id":64427},{"orbit":0,"id":44188}],"group":885,"name":"Infusion and Power Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":51892},"54545":{"orbit":2,"orbitIndex":0,"stats":["15% increased Magnitude of Daze"],"connections":[{"orbit":0,"id":38342}],"group":1376,"name":"Daze Magnitude","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":54545},"52695":{"orbit":7,"orbitIndex":1,"stats":["10% increased Physical Damage"],"connections":[{"orbit":-6,"id":57230}],"group":1172,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":52695},"56651":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38143}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","options":{"Huntress":{"stats":["10% increased Attack Damage"],"id":39263,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Attack Damage"}},"group":843,"isSwitchable":true,"stats":["10% increased Projectile Damage"],"skill":56651},"60085":{"orbit":7,"orbitIndex":15,"stats":["10% increased Damage"],"connections":[{"orbit":0,"id":55802}],"group":854,"name":"Damage","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":60085},"43575":{"orbit":7,"orbitIndex":16,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":41512}],"group":839,"name":"Melee Damage ","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":43575},"18081":{"orbit":3,"orbitIndex":7,"connections":[{"orbit":0,"id":52993},{"orbit":0,"id":14980}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Call Upon the Deep","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":276,"connectionArt":"CharacterPlanned","stats":["Damage Penetrates 20% Elemental Resistances for each time you've used a Skill that Requires Glory in the past 6 seconds"],"skill":18081},"6935":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds","name":"Ceremonial Ablution","ascendancyName":"Witchhunter","group":297,"isNotable":true,"stats":["Sorcery Ward's Barrier can also take Physical and Chaos Damage from Hits"],"skill":6935},"55724":{"orbit":4,"orbitIndex":58,"stats":["20% chance for Attack Hits to apply Incision"],"connections":[{"orbit":0,"id":42714}],"group":1240,"name":"Incision Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":55724},"31238":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":48552},{"orbit":0,"id":45918},{"orbit":0,"id":10452}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":432,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":31238},"21327":{"orbit":2,"orbitIndex":14,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"connections":[{"orbit":0,"id":56876}],"group":312,"name":"Energy Shield if Consumed Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":21327},"32683":{"orbit":4,"orbitIndex":30,"connections":[{"orbit":0,"id":53149},{"orbit":0,"id":54413}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Essence of the Mountain","group":972,"isNotable":true,"stats":["Gain 5% of Damage as Extra Cold Damage","20% increased Freeze Buildup"],"skill":32683},"8382":{"orbit":3,"orbitIndex":9,"stats":["8% increased Energy Shield Recharge Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":61863}],"group":700,"name":"Cold Damage and Energy Shield Recharge Rate","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":8382},"17026":{"orbit":2,"orbitIndex":2,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"connections":[{"orbit":0,"id":23373}],"group":613,"name":"Grenade Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":17026},"36298":{"orbit":0,"orbitIndex":0,"stats":["10% increased Magnitude of Ailments you inflict"],"connections":[{"orbit":3,"id":8510},{"orbit":6,"id":40918}],"group":1065,"name":"Ailment Effect","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":36298},"12183":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":16433}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Passive Points","ascendancyName":"Pathfinder","group":1451,"stats":["Grants 1 Passive Skill Point"],"skill":12183},"17092":{"orbit":2,"orbitIndex":18,"stats":["+2 to Maximum Rage"],"connections":[{"orbit":0,"id":10484}],"group":221,"name":"Maximum Rage","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":17092},"3251":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":21984}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1077,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":3251},"49391":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","name":"Block Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","group":567,"connections":[],"stats":[],"skill":49391},"32559":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":46535}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","ascendancyName":"Witchhunter","group":274,"stats":["6% increased Cooldown Recovery Rate"],"skill":32559},"24368":{"orbit":7,"orbitIndex":0,"stats":["15% increased Ballista damage"],"connections":[{"orbit":0,"id":37302},{"orbit":0,"id":40597}],"group":585,"name":"Ballista Damage","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":24368},"52684":{"orbit":4,"orbitIndex":32,"recipe":["Guilt","Fear","Guilt"],"connections":[{"orbit":0,"id":8115}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Eroding Chains","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":640,"isNotable":true,"stats":["Break 50% of Armour on Pinning an Enemy"],"skill":52684},"31692":{"orbit":2,"orbitIndex":3,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":46197}],"group":1250,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":31692},"57846":{"orbit":6,"orbitIndex":12,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":63451},{"orbit":6,"id":38876}],"group":395,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":57846},"4850":{"orbit":0,"orbitIndex":0,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":35503}],"group":923,"name":"Shock Effect and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":4850},"2863":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Perpetual Freeze","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":524,"isNotable":true,"stats":["20% increased Freeze Buildup","15% increased Chill and Freeze Duration on Enemies","15% increased Magnitude of Chill you inflict"],"skill":2863},"29049":{"orbit":2,"orbitIndex":10,"stats":["10% increased Charm Effect Duration"],"connections":[{"orbit":3,"id":56893}],"group":1202,"name":"Charm Duration","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":29049},"10267":{"orbit":7,"orbitIndex":2,"stats":["8% increased Freeze Buildup","8% increased Attack Cold Damage"],"connections":[{"orbit":2147483647,"id":8456}],"group":1251,"name":"Attack Cold Damage and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":10267},"14131":{"orbit":8,"orbitIndex":53,"connections":[{"orbit":0,"id":34207}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds","name":"Ruzhan's Fury","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":14131},"40006":{"orbit":2,"orbitIndex":7,"stats":["5% increased Life Regeneration rate","10% increased Presence Area of Effect"],"connections":[{"orbit":-7,"id":9896}],"group":440,"name":"Life Regeneration Rate and Presence","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":40006},"45019":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":912,"connections":[],"stats":[],"skill":45019},"46741":{"orbit":2,"orbitIndex":22,"stats":["15% increased Stun Buildup"],"connections":[],"group":233,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":46741},"23961":{"orbit":7,"orbitIndex":4,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"connections":[{"orbit":-2,"id":8791}],"group":1032,"name":"Ailment Threshold and Companion Resistance","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":23961},"25745":{"orbit":4,"orbitIndex":30,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":4,"id":31890}],"group":610,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":25745},"40270":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenetic","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":1145,"isNotable":true,"stats":["10% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge","+1 to Maximum Frenzy Charges"],"skill":40270},"61281":{"orbit":2,"orbitIndex":14,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":0,"id":9217}],"group":769,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":61281},"14294":{"orbit":2,"orbitIndex":14,"recipe":["Envy","Greed","Suffering"],"connections":[{"orbit":0,"id":43818}],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Sacrificial Blood","group":458,"isNotable":true,"stats":["15% increased Life Cost of Skills","40% increased Spell Damage with Spells that cost Life"],"skill":14294},"7542":{"orbit":2,"orbitIndex":4,"recipe":["Fear","Disgust","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Encompassing Domain","group":239,"isNotable":true,"stats":["10% increased Area Damage","12% increased Area of Effect if you have Stunned an Enemy Recently"],"skill":7542},"60488":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":822,"connections":[],"stats":[],"skill":60488},"32096":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Companion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","group":1032,"connections":[],"stats":[],"skill":32096},"22972":{"orbit":7,"orbitIndex":8,"stats":["16% increased Hazard Damage"],"connections":[{"orbit":0,"id":43238},{"orbit":0,"id":50879}],"group":1105,"name":"Hazard Damage","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":22972},"30973":{"orbit":6,"orbitIndex":34,"stats":["10% increased Critical Hit Chance with Daggers"],"connections":[{"orbit":0,"id":49320}],"group":1370,"name":"Dagger Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":30973},"3988":{"orbit":2,"orbitIndex":13,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":0,"id":51832}],"group":184,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":3988},"64056":{"orbit":2,"orbitIndex":6,"stats":["5% chance to Daze on Hit"],"connections":[{"orbit":0,"id":36931}],"group":1024,"name":"Daze Chance","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":64056},"27859":{"orbit":7,"orbitIndex":12,"stats":["Herald Skills deal 20% increased Damage"],"connections":[{"orbit":0,"id":38694}],"group":824,"name":"Herald Damage","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":27859},"24630":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Suffering","Greed"],"connections":[{"orbit":0,"id":63608}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fulmination","group":97,"isNotable":true,"stats":["80% increased Flammability Magnitude","40% increased Damage with Hits against Ignited Enemies"],"skill":24630},"31039":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1006,"connections":[],"stats":[],"skill":31039},"59695":{"orbit":2,"orbitIndex":19,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":8,"id":28950}],"group":645,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":59695},"46088":{"orbit":3,"orbitIndex":9,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[{"orbit":0,"id":13823}],"group":1013,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":46088},"27405":{"orbit":5,"orbitIndex":58,"connections":[{"orbit":0,"id":30781}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Cooldown Recovery Rate","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":294,"connectionArt":"CharacterPlanned","stats":["6% increased Cooldown Recovery Rate"],"skill":27405},"25885":{"orbit":8,"orbitIndex":18,"connections":[{"orbit":0,"id":31116}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Damage as Chaos","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["Gain 4% of Damage as Extra Chaos Damage"],"skill":25885},"24696":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4086}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Totem Damage","ascendancyName":"Tactician","group":426,"stats":["20% increased Totem Damage"],"skill":24696},"10500":{"orbit":4,"orbitIndex":12,"recipe":["Paranoia","Paranoia","Despair"],"connections":[{"orbit":-6,"id":6900},{"orbit":0,"id":9040}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Dazing Blocks","group":245,"isNotable":true,"stats":["100% chance to Daze Enemies whose Hits you Block with a raised Shield"],"skill":10500},"11392":{"orbit":5,"orbitIndex":8,"recipe":["Guilt","Isolation","Disgust"],"connections":[{"orbit":0,"id":38320}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Molten Being","group":92,"isNotable":true,"stats":["Gain 5% of Damage as Extra Fire Damage","5% of Physical Damage taken as Fire Damage"],"skill":11392},"60083":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Despair","Disgust"],"connections":[{"orbit":0,"id":44239}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin and Run","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1050,"isNotable":true,"stats":["30% increased Pin Buildup","5% increased Movement Speed if you've Pinned an Enemy Recently"],"skill":60083},"10694":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds","name":"Seething Body","ascendancyName":"Infernalist","group":770,"isNotable":true,"stats":["Gain Elemental Archon when you cast a Spell while on High Infernal Flame","Elemental Archon does not expire while on High Infernal Flame","Lose Elemental Archon on reaching maximum Infernal Flame"],"skill":10694},"6588":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":819,"connections":[],"stats":[],"skill":6588},"61404":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Despair"],"connections":[{"orbit":1,"id":51210},{"orbit":0,"id":61429}],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Equilibrium","group":189,"isNotable":true,"stats":["30% increased Attack Damage if you've Cast a Spell Recently","10% increased Cast Speed if you've Attacked Recently"],"skill":61404},"62998":{"orbit":0,"orbitIndex":0,"stats":["15% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":63600}],"group":1354,"name":"Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":62998},"18485":{"orbit":3,"orbitIndex":0,"recipe":["Envy","Guilt","Despair"],"connections":[{"orbit":0,"id":20119}],"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","name":"Unstable Bond","group":644,"isNotable":true,"stats":["Gain 3 Volatility when an Allied Persistent Reviving Minion is Killed"],"skill":18485},"41186":{"orbit":5,"orbitIndex":0,"stats":["20% increased Totem Placement speed"],"connections":[],"group":147,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":41186},"55598":{"orbit":3,"orbitIndex":2,"stats":["15% increased Elemental Ailment Threshold"],"connections":[{"orbit":4,"id":15644},{"orbit":-3,"id":9112},{"orbit":0,"id":28050}],"group":1030,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":55598},"23046":{"orbit":4,"orbitIndex":27,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":5,"id":47976}],"group":1234,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":23046},"34717":{"orbit":3,"orbitIndex":20,"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"connections":[{"orbit":4,"id":24120}],"group":1236,"name":"Mana Regeneration while not on Low Mana","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":34717},"41062":{"orbit":4,"orbitIndex":48,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1046,"connections":[],"stats":[],"skill":41062},"26339":{"orbit":1,"orbitIndex":0,"recipe":["Suffering","Suffering","Suffering"],"connections":[{"orbit":0,"id":64405},{"orbit":0,"id":11014}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Ancestral Artifice","group":314,"isNotable":true,"stats":["Melee Attack Skills have +1 to maximum number of Summoned Totems","20% increased Totem Placement range"],"skill":26339},"16311":{"orbit":2,"orbitIndex":20,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":32600},{"orbit":0,"id":14654}],"group":369,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":16311},"27999":{"orbit":1,"orbitIndex":2,"stats":["8% increased chance to inflict Ailments","8% increased Physical Damage"],"connections":[{"orbit":0,"id":45777}],"group":468,"name":"Physical Damage and Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":27999},"19808":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","name":"Ailment Chance","options":{"Huntress":{"stats":["8% increased Accuracy Rating"],"id":28615,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy"}},"group":992,"isSwitchable":true,"stats":["10% increased chance to inflict Ailments"],"skill":19808},"64443":{"orbit":3,"orbitIndex":8,"recipe":["Fear","Ire","Fear"],"connections":[{"orbit":0,"id":41126},{"orbit":0,"id":62023}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Impact Force","group":285,"isNotable":true,"stats":["20% increased Stun Buildup","25% increased Attack Area Damage"],"skill":64443},"18815":{"orbit":0,"orbitIndex":0,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":40990}],"group":1335,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":18815},"12611":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Isolation"],"connections":[{"orbit":3,"id":32155},{"orbit":3,"id":44204}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Harness the Elements","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1143,"isNotable":true,"stats":["20% increased Damage for each type of Elemental Ailment on Enemy"],"skill":12611},"44369":{"orbit":7,"orbitIndex":16,"stats":["3% chance to gain Volatility on Kill"],"connections":[{"orbit":0,"id":30748}],"group":1168,"name":"Volatility on Kill","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":44369},"31765":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":59538},{"orbit":0,"id":722},{"orbit":0,"id":41886},{"orbit":0,"id":61421}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1346,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":31765},"11656":{"orbit":7,"orbitIndex":8,"stats":["Gain 2 Rage when Hit by an Enemy"],"connections":[{"orbit":0,"id":53822},{"orbit":-3,"id":9106}],"group":132,"name":"Rage when Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":11656},"23764":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Alternating Current","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":914,"isNotable":true,"stats":["25% increased Mana Regeneration Rate if you have Shocked an Enemy Recently","20% increased Magnitude of Shock you inflict"],"skill":23764},"51891":{"orbit":7,"orbitIndex":17,"recipe":["Envy","Disgust","Suffering"],"connections":[{"orbit":0,"id":25528}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Lucidity","group":1234,"isNotable":true,"stats":["8% of Damage is taken from Mana before Life","+15 to Intelligence"],"skill":51891},"63526":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":28370},{"orbit":4,"id":7788}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":760,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":63526},"30047":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":21280},{"orbit":0,"id":18451},{"orbit":0,"id":45650}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":971,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":30047},"26479":{"orbit":4,"orbitIndex":60,"recipe":["Guilt","Isolation","Paranoia"],"connections":[{"orbit":4,"id":64324},{"orbit":0,"id":9040}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Steadfast Resolve","group":245,"isNotable":true,"stats":["You cannot be Light Stunned if you've been Stunned Recently"],"skill":26479},"61403":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":56349},{"orbit":3,"id":14231},{"orbit":0,"id":24150},{"orbit":0,"id":17602}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1180,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":61403},"43576":{"orbit":3,"orbitIndex":8,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":3,"id":7971}],"group":759,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":43576},"2995":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":4,"id":2516}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Energy Shield if Consumed Power Charge","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":12474,"stats":["30% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Energy Shield if Consumed Power Charge"}},"group":1151,"isSwitchable":true,"stats":["30% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"skill":2995},"19203":{"orbit":2,"orbitIndex":21,"stats":["Channelling Skills deal 12% increased Damage"],"connections":[{"orbit":0,"id":10260}],"group":433,"name":"Channelling Damage","icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","skill":19203},"17229":{"orbit":3,"orbitIndex":9,"recipe":["Fear","Greed","Disgust"],"connections":[{"orbit":0,"id":34493},{"orbit":0,"id":47242},{"orbit":0,"id":29985}],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Silent Guardian","group":257,"isNotable":true,"stats":["Minions have +20% to all Elemental Resistances","20% increased Elemental Ailment Threshold"],"skill":17229},"50437":{"orbit":7,"orbitIndex":8,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":35987}],"group":863,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":50437},"48589":{"orbit":2,"orbitIndex":11,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":-6,"id":7922}],"group":507,"name":"Life Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":48589},"43964":{"orbit":2,"orbitIndex":4,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":41645}],"group":1137,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":43964},"42118":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":2408},{"orbit":0,"id":57518},{"orbit":0,"id":7465},{"orbit":0,"id":43102},{"orbit":0,"id":3994},{"orbit":0,"id":10267}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1277,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":42118},"63790":{"orbit":5,"orbitIndex":54,"stats":["20% increased Melee Damage against Immobilised Enemies"],"connections":[{"orbit":0,"id":48014}],"group":208,"name":"Melee Damage against Immobilised","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":63790},"50701":{"orbit":0,"orbitIndex":0,"stats":["15% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":44932}],"group":1268,"name":"Shock Effect","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":50701},"24753":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Greed","Envy"],"connections":[{"orbit":0,"id":34747},{"orbit":0,"id":56567},{"orbit":0,"id":151}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Determined Precision","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":570,"isNotable":true,"stats":["30% increased Accuracy Rating at Close Range","+10 to Dexterity"],"skill":24753},"47796":{"orbit":2,"orbitIndex":12,"stats":["3% increased Attack Speed"],"connections":[{"orbit":-4,"id":62640}],"group":662,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":47796},"49642":{"orbit":7,"orbitIndex":1,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":4882}],"group":511,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":49642},"1928":{"orbit":0,"orbitIndex":0,"stats":["Minions have 5% increased Attack and Cast Speed"],"connections":[],"group":496,"name":"Minion Attack and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":1928},"63393":{"orbit":7,"orbitIndex":12,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":3,"id":7721},{"orbit":0,"id":36709}],"group":631,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":63393},"2964":{"orbit":2,"orbitIndex":15,"stats":["8% increased amount of Life Leeched","12% increased Thorns damage"],"connections":[{"orbit":-7,"id":18374}],"group":478,"name":"Thorns and Leech","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":2964},"63517":{"orbit":2,"orbitIndex":22,"stats":["10% increased Mana Recovery from Flasks"],"connections":[{"orbit":0,"id":48974},{"orbit":2,"id":53958}],"group":1227,"name":"Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":63517},"19277":{"orbit":2,"orbitIndex":12,"stats":["10% increased Spell Area Damage"],"connections":[{"orbit":0,"id":44783}],"group":380,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":19277},"37092":{"orbit":7,"orbitIndex":6,"stats":["Debuffs you inflict have 7% increased Slow Magnitude","7% increased Exposure Effect"],"connections":[{"orbit":0,"id":55817}],"group":641,"name":"Exposure Effect and Slow Effect","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":37092},"64318":{"orbit":3,"orbitIndex":2,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"connections":[{"orbit":0,"id":61063},{"orbit":0,"id":7960}],"group":343,"name":"Elemental Penetration","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":64318},"29320":{"orbit":7,"orbitIndex":8,"stats":["20% increased Stun Threshold while Parrying"],"connections":[{"orbit":7,"id":1680},{"orbit":0,"id":56860}],"group":1155,"name":"Stun Threshold during Parry","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":29320},"44756":{"orbit":3,"orbitIndex":15,"recipe":["Despair","Disgust","Suffering"],"connections":[{"orbit":5,"id":44841}],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Marked Agility","group":1279,"isNotable":true,"stats":["60% increased Mana Cost Efficiency of Marks","4% increased Movement Speed if you've used a Mark Recently"],"skill":44756},"21127":{"orbit":4,"orbitIndex":30,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":287,"connections":[],"stats":[],"skill":21127},"58363":{"orbit":7,"orbitIndex":6,"stats":["10% increased effect of Archon Buffs on you"],"connections":[{"orbit":2,"id":55938}],"group":1051,"name":"Archon Effect","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":58363},"51105":{"orbit":1,"orbitIndex":5,"recipe":["Greed","Ire","Fear"],"connections":[{"orbit":0,"id":48979},{"orbit":0,"id":21127}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Spirit Bond","group":287,"isNotable":true,"stats":["30% increased Totem Life","30% increased Totem Duration"],"skill":51105},"9112":{"orbit":1,"orbitIndex":11,"stats":["25% increased Elemental Ailment Threshold"],"connections":[{"orbit":0,"id":44612}],"group":1030,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":9112},"11160":{"orbit":6,"orbitIndex":70,"connections":[{"orbit":5,"id":43721},{"orbit":0,"id":21374}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Relinquish Your Life","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["53% increased Life Cost of Skills","Gain 21% of Damage as Extra Chaos Damage"],"skill":11160},"6951":{"orbit":4,"orbitIndex":54,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":-2,"id":23608}],"group":1176,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":6951},"21713":{"orbit":2,"orbitIndex":20,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":11604},{"orbit":0,"id":50588}],"group":1100,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":21713},"42245":{"orbit":1,"orbitIndex":8,"recipe":["Paranoia","Isolation","Greed"],"connections":[{"orbit":2,"id":16024},{"orbit":-2,"id":18167}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Efficient Inscriptions","group":1119,"isNotable":true,"stats":["Meta Skills have 20% increased Reservation Efficiency"],"skill":42245},"21779":{"orbit":2,"orbitIndex":19,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":57204}],"group":880,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":21779},"32681":{"orbit":7,"orbitIndex":7,"stats":["8% increased Energy Shield Recharge Rate","8% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":32664},{"orbit":2147483647,"id":38668}],"group":1175,"name":"Energy Shield Recharge and Delay","icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","skill":32681},"54937":{"orbit":1,"orbitIndex":9,"recipe":["Suffering","Ire","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Vengeful Fury","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","group":132,"isNotable":true,"stats":["Gain 5 Rage when Hit by an Enemy","Every Rage also grants 1% increased Armour"],"skill":54937},"60741":{"orbit":2,"orbitIndex":12,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":33922}],"group":841,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":60741},"47006":{"orbit":3,"orbitIndex":14,"stats":["10% increased effect of Fully Broken Armour"],"connections":[{"orbit":7,"id":43174}],"group":370,"name":"Armour Break Effect","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":47006},"9275":{"orbit":2,"orbitIndex":16,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":5704},{"orbit":0,"id":63888}],"group":1126,"name":"Accuracy and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":9275},"50574":{"orbit":2,"orbitIndex":20,"stats":["3% of Physical Damage taken Recouped as Life","5% increased Physical Damage"],"connections":[{"orbit":0,"id":19426},{"orbit":0,"id":46034}],"group":1001,"name":"Physical Damage and Life Recoup","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":50574},"18940":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57141}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds","name":"Shattering Concoction","ascendancyName":"Pathfinder","group":1442,"isMultipleChoiceOption":true,"stats":["Grants Skill: Shattering Concoction"],"skill":18940},"14923":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":614,"connections":[],"stats":[],"skill":14923},"36302":{"orbit":7,"orbitIndex":0,"connections":[{"orbit":6,"id":47307}],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Practiced Signs","group":745,"isNotable":true,"stats":["6% increased Cast Speed"],"skill":36302},"43174":{"orbit":7,"orbitIndex":18,"stats":["10% increased effect of Fully Broken Armour"],"connections":[{"orbit":-7,"id":28542}],"group":370,"name":"Armour Break Effect","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":43174},"13108":{"orbit":5,"orbitIndex":67,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/minionattackspeed.dds","name":"Ally Attack and Cast Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":188,"connectionArt":"CharacterPlanned","stats":["3% reduced Skill Speed","Allies in your Presence have 6% increased Attack Speed","Allies in your Presence have 6% increased Cast Speed"],"skill":13108},"51369":{"orbit":2,"orbitIndex":6,"stats":["14% increased Damage with Hits against Burning Enemies"],"connections":[{"orbit":0,"id":56061},{"orbit":0,"id":45503}],"group":409,"name":"Damage against Burning Enemies","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":51369},"23373":{"orbit":3,"orbitIndex":22,"stats":["12% increased Grenade Damage"],"connections":[{"orbit":0,"id":23428},{"orbit":0,"id":8493}],"group":613,"name":"Grenade Damage","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":23373},"33137":{"orbit":2,"orbitIndex":17,"stats":["10% increased Magnitude of Bleeding you inflict"],"connections":[{"orbit":0,"id":36894},{"orbit":0,"id":17330}],"group":283,"name":"Bleed Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":33137},"31566":{"orbit":3,"orbitIndex":23,"stats":["30% increased Armour while Surrounded"],"connections":[{"orbit":0,"id":7049},{"orbit":9,"id":54818}],"group":717,"name":"Armour while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":31566},"17420":{"orbit":0,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":18717},{"orbit":0,"id":25565},{"orbit":0,"id":15356}],"group":1334,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":17420},"58362":{"orbit":4,"orbitIndex":69,"connections":[{"orbit":0,"id":51335}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Elemental Ailment Chance","options":{"Witch":{"stats":["10% increased Physical Damage"],"id":15545,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage"}},"group":713,"isSwitchable":true,"stats":["20% increased Flammability Magnitude","10% increased Freeze Buildup","10% increased chance to Shock"],"skill":58362},"5663":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":277,"isNotable":true,"stats":["+2 to Maximum Endurance Charges"],"skill":5663},"32858":{"orbit":3,"orbitIndex":9,"recipe":["Suffering","Greed","Guilt"],"connections":[{"orbit":0,"id":1073},{"orbit":0,"id":1205}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Dread Engineer's Concoction","group":1351,"isNotable":true,"stats":["35% increased Magnitude of Ignite against Poisoned enemies"],"skill":32858},"55058":{"orbit":5,"orbitIndex":48,"stats":["20% increased Melee Damage against Immobilised Enemies"],"connections":[{"orbit":0,"id":63790}],"group":208,"name":"Melee Damage against Immobilised","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":55058},"5564":{"orbit":0,"orbitIndex":0,"stats":["15% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":48833},{"orbit":0,"id":63585}],"group":1002,"name":"Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":5564},"38676":{"orbit":1,"orbitIndex":6,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-8,"id":27910},{"orbit":0,"id":56045}],"group":1024,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":38676},"30839":{"orbit":3,"orbitIndex":17,"stats":["2% increased Attack Speed","+5 to Dexterity"],"connections":[{"orbit":-3,"id":35671}],"group":1243,"name":"Attack Speed and Dexterity","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":30839},"36163":{"orbit":2,"orbitIndex":9,"stats":["5% increased Block chance"],"connections":[{"orbit":-4,"id":30390}],"group":442,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":36163},"34984":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":942,"connections":[],"stats":[],"skill":34984},"2394":{"orbit":3,"orbitIndex":9,"recipe":["Envy","Envy","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Blade Flurry","group":795,"isNotable":true,"stats":["6% increased Attack Speed while Dual Wielding","15% increased Attack Critical Hit Chance while Dual Wielding"],"skill":2394},"48979":{"orbit":3,"orbitIndex":10,"stats":["16% increased Totem Life"],"connections":[{"orbit":0,"id":51820}],"group":287,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":48979},"47009":{"orbit":7,"orbitIndex":11,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":-7,"id":37250}],"group":1092,"name":"Attack Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":47009},"11292":{"orbit":2,"orbitIndex":0,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":7,"id":2575},{"orbit":-7,"id":56757}],"group":168,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":11292},"23036":{"orbit":3,"orbitIndex":15,"stats":["25% increased Attack Damage while Surrounded"],"connections":[{"orbit":0,"id":3339},{"orbit":2,"id":59208}],"group":439,"name":"Attack Damage while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":23036},"64572":{"orbit":7,"orbitIndex":20,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":48925}],"group":322,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":64572},"39607":{"orbit":2,"orbitIndex":12,"stats":["10% increased Flask Charges gained"],"connections":[{"orbit":-2,"id":2559},{"orbit":0,"id":45713}],"group":1282,"name":"Flask Charges Gained","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":39607},"13333":{"orbit":1,"orbitIndex":9,"stats":["10% increased Cold Damage"],"connections":[{"orbit":7,"id":1700}],"group":689,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":13333},"31037":{"orbit":2,"orbitIndex":22,"stats":["Remnants have 10% increased effect"],"connections":[{"orbit":0,"id":34866}],"group":791,"name":"Remnant Effect","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":31037},"16691":{"orbit":7,"orbitIndex":6,"stats":["Leech Life 15% faster"],"connections":[{"orbit":-5,"id":21716}],"group":422,"name":"Life Leech Speed","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":16691},"8616":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57710},{"orbit":-4,"id":43576},{"orbit":4,"id":36746}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":742,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":8616},"62986":{"orbit":7,"orbitIndex":18,"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"connections":[{"orbit":4,"id":60173}],"group":1144,"name":"One Handed Accuracy","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":62986},"46604":{"orbit":7,"orbitIndex":17,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":7,"id":2138}],"group":610,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":46604},"34845":{"orbit":0,"orbitIndex":0,"stats":["10% increased Hazard Area of Effect"],"connections":[{"orbit":0,"id":60273}],"group":1199,"name":"Hazard Area","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":34845},"17882":{"orbit":7,"orbitIndex":0,"recipe":["Paranoia","Ire","Despair"],"connections":[{"orbit":0,"id":33596}],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Volatile Grenades","group":838,"isNotable":true,"stats":["25% reduced Grenade Detonation Time"],"skill":17882},"43829":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Greed"],"connections":[{"orbit":0,"id":51944},{"orbit":0,"id":45576}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Advanced Munitions","group":790,"isNotable":true,"stats":["25% increased chance to inflict Ailments with Projectiles"],"skill":43829},"24165":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":8908},{"orbit":0,"id":25557},{"orbit":0,"id":44628},{"orbit":-6,"id":4328},{"orbit":0,"id":6079}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1132,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":24165},"48714":{"orbit":2,"orbitIndex":10,"stats":["3% increased Attack Speed"],"connections":[],"group":444,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","skill":48714},"39204":{"orbit":8,"orbitIndex":48,"connections":[],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds","name":"Force of Will","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["20% of Damage is taken from Mana before Life","20% increased Effect of Arcane Surge on you per ten percent missing Mana"],"skill":39204},"32859":{"orbit":3,"orbitIndex":9,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":-4,"id":15114}],"group":449,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":32859},"2491":{"orbit":1,"orbitIndex":10,"connections":[{"orbit":0,"id":28175}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":377,"stats":[],"skill":2491},"26932":{"orbit":2,"orbitIndex":6,"stats":["20% increased Frenzy Charge Duration"],"connections":[{"orbit":-2,"id":34543}],"group":1121,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","skill":26932},"24958":{"orbit":6,"orbitIndex":30,"connections":[{"orbit":-4,"id":52464},{"orbit":6,"id":41877}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1172,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":24958},"33914":{"orbit":3,"orbitIndex":2,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":21935}],"group":350,"name":"Energy Shield and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":33914},"37746":{"orbit":7,"orbitIndex":19,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":-2,"id":6544}],"group":409,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":37746},"18146":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":57819}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","ascendancyName":"Gemling Legionnaire","group":470,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"skill":18146},"40399":{"orbit":5,"orbitIndex":6,"recipe":["Isolation","Guilt","Paranoia"],"connections":[{"orbit":0,"id":20641}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energise","group":1174,"isNotable":true,"stats":["25% chance for Trigger skills to refund half of Energy Spent"],"skill":40399},"29517":{"orbit":6,"orbitIndex":24,"connections":[{"orbit":0,"id":32701},{"orbit":0,"id":37695}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1041,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":29517},"43036":{"orbit":7,"orbitIndex":18,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":4,"id":2244}],"group":419,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":43036},"9997":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds","name":"Molten Symbol","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":32,"isNotable":true,"stats":["Body Armour grants 25% of Physical Damage from Hits taken as Fire Damage"],"skill":9997},"42635":{"orbit":2,"orbitIndex":6,"stats":["Channelling Skills deal 12% increased Damage"],"connections":[{"orbit":0,"id":1502}],"group":265,"name":"Channelling Damage","icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","skill":42635},"38010":{"orbit":7,"orbitIndex":23,"stats":["5% increased Attack Damage","8% increased Glory generation"],"connections":[],"group":493,"name":"Glory Generation and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":38010},"44357":{"orbit":9,"orbitIndex":34,"connections":[{"orbit":-9,"id":63713}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Critical Chance","ascendancyName":"Invoker","group":1430,"stats":["12% increased Critical Hit Chance"],"skill":44357},"39732":{"orbit":2,"orbitIndex":10,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":-2,"id":30219}],"group":574,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":39732},"17029":{"orbit":2,"orbitIndex":12,"recipe":["Fear","Envy","Guilt"],"connections":[{"orbit":0,"id":45992}],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Blade Catcher","group":453,"isNotable":true,"stats":["Defend with 200% of Armour against Critical Hits","+15 to Strength"],"skill":17029},"19003":{"orbit":0,"orbitIndex":0,"stats":["10% increased Cold Damage"],"connections":[{"orbit":0,"id":12166},{"orbit":0,"id":3128}],"group":1193,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":19003},"17417":{"orbit":3,"orbitIndex":4,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"connections":[{"orbit":3,"id":3652},{"orbit":0,"id":27999}],"group":468,"name":"Projectile Speed and Physical Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":17417},"59822":{"orbit":9,"orbitIndex":0,"connections":[{"orbit":0,"id":8415}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Blood Mage","ascendancyName":"Blood Mage","isAscendancyStart":true,"group":910,"stats":[],"skill":59822},"23374":{"orbit":0,"orbitIndex":0,"stats":["8% chance to Poison on Hit"],"connections":[{"orbit":0,"id":2500}],"group":1412,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":23374},"46343":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","name":"Two Hand Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","group":697,"connections":[{"orbit":0,"id":13708},{"orbit":0,"id":25513},{"orbit":0,"id":47363}],"stats":[],"skill":46343},"61267":{"orbit":6,"orbitIndex":60,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds","name":"Mastered Darkness","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["Demonflame has no maximum"],"skill":61267},"60210":{"orbit":1,"orbitIndex":9,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","name":"Poison Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1326,"connections":[{"orbit":0,"id":63431}],"stats":[],"skill":60210},"58368":{"orbit":7,"orbitIndex":0,"connections":[{"orbit":0,"id":40511}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":291,"connectionArt":"CharacterPlanned","stats":["Minions have 12% increased maximum Life"],"skill":58368},"35901":{"orbit":6,"orbitIndex":60,"connections":[{"orbit":-6,"id":12120},{"orbit":6,"id":62464},{"orbit":0,"id":60735},{"orbit":0,"id":6951}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1177,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":35901},"11882":{"orbit":4,"orbitIndex":3,"stats":["10% increased chance to inflict Ailments"],"connections":[{"orbit":-5,"id":63888}],"group":1082,"name":"Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":11882},"55463":{"orbit":3,"orbitIndex":14,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":27875}],"group":1163,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":55463},"7628":{"orbit":6,"orbitIndex":30,"connections":[{"orbit":0,"id":41646},{"orbit":0,"id":55231}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":651,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":7628},"48717":{"orbit":7,"orbitIndex":16,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","name":"Armour Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":195,"connections":[],"stats":[],"skill":48717},"38678":{"orbit":2,"orbitIndex":19,"stats":["15% increased Elemental Ailment Threshold"],"connections":[{"orbit":-7,"id":30463},{"orbit":-6,"id":60464}],"group":1217,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":38678},"64042":{"orbit":7,"orbitIndex":18,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","name":"Physical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":407,"connections":[],"stats":[],"skill":64042},"60738":{"orbit":2,"orbitIndex":19,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":37408}],"group":1031,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":60738},"30904":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds","name":"Harmony Within","ascendancyName":"Oracle","group":22,"isNotable":true,"stats":["Hit damage is taken from Mana before Life if your current Mana is higher than your current Life","15% less maximum Life","15% less maximum Mana"],"skill":30904},"62588":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":721,"connections":[{"orbit":0,"id":50609}],"stats":[],"skill":62588},"62200":{"orbit":2,"orbitIndex":20,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[{"orbit":-3,"id":8460},{"orbit":-4,"id":29762}],"group":190,"name":"Warcry Cooldown Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":62200},"24883":{"orbit":2,"orbitIndex":10,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"connections":[{"orbit":1,"id":44573}],"group":1259,"name":"Attack Area and Combo","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":24883},"16626":{"orbit":2,"orbitIndex":20,"recipe":["Paranoia","Envy","Disgust"],"connections":[{"orbit":0,"id":53089},{"orbit":0,"id":62023}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Impact Area","group":285,"isNotable":true,"stats":["12% increased Area of Effect if you have Stunned an Enemy Recently","12% increased Area of Effect for Attacks"],"skill":16626},"31292":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","name":"Mace Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","group":512,"connections":[],"stats":[],"skill":31292},"35762":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds","name":"Furious Wellspring","ascendancyName":"Shaman","group":66,"isNotable":true,"stats":["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","Skills have +5 to Rage cost","+7 to Maximum Rage"],"skill":35762},"3170":{"orbit":2,"orbitIndex":20,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":22811}],"group":1327,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","skill":3170},"43691":{"orbit":6,"orbitIndex":6,"connections":[{"orbit":0,"id":21746},{"orbit":0,"id":55270}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1041,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":43691},"19341":{"orbit":3,"orbitIndex":16,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[],"group":846,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":19341},"22975":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":27439},{"orbit":0,"id":26725},{"orbit":0,"id":51702}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":301,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":22975},"34443":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Companion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","group":198,"connections":[],"stats":[],"skill":34443},"12876":{"orbit":6,"orbitIndex":7,"connections":[],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds","name":"Faith is a Choice","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Grants Skill: Meditate"],"skill":12876},"37220":{"orbit":2,"orbitIndex":9,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":17955}],"group":1043,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":37220},"16568":{"orbit":3,"orbitIndex":2,"stats":["Minions Revive 15% faster if all your Minions are Companions"],"connections":[{"orbit":-2,"id":31129}],"group":1280,"name":"Companion Revive Speed","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":16568},"61142":{"orbit":2,"orbitIndex":14,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"connections":[{"orbit":0,"id":38365}],"group":204,"name":"Recover Life on consuming Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":61142},"37484":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds","name":"Primal Hunger","group":133,"isKeystone":true,"stats":["100% more Maximum Rage","Regenerate 1 Rage per second per 4 Rage spent Recently","No Rage effect"],"skill":37484},"7062":{"orbit":4,"orbitIndex":19,"recipe":["Paranoia","Isolation","Despair"],"connections":[{"orbit":0,"id":16680},{"orbit":0,"id":61432}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Reusable Ammunition","group":874,"isNotable":true,"stats":["Bolts fired by Crossbow Attacks have 30% chance to not","expend Ammunition if you've Reloaded Recently"],"skill":7062},"26931":{"orbit":3,"orbitIndex":10,"stats":["Gain 3 Life per enemy killed"],"connections":[{"orbit":5,"id":48198}],"group":955,"name":"Life on Kill","icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":26931},"50562":{"orbit":7,"orbitIndex":8,"recipe":["Guilt","Despair","Envy"],"connections":[{"orbit":0,"id":43142}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Barbaric Strength","group":327,"isNotable":true,"stats":["45% increased Critical Damage Bonus","10% increased Mana Cost of Skills","+10 to Strength"],"skill":50562},"4238":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Isolation","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"Versatile Arms","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1144,"isNotable":true,"stats":["6% increased Attack Speed with One Handed Melee Weapons","15% increased Accuracy Rating with One Handed Melee Weapons","+10 to Strength and Dexterity"],"skill":4238},"39594":{"orbit":2,"orbitIndex":3,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":0,"id":51248},{"orbit":0,"id":53294}],"group":530,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":39594},"36290":{"orbit":4,"orbitIndex":33,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":-2,"id":23046}],"group":1234,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":36290},"32745":{"orbit":0,"orbitIndex":0,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":50104},{"orbit":0,"id":61179}],"group":473,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":32745},"31366":{"orbit":3,"orbitIndex":17,"stats":["Parry has 20% increased Stun Buildup"],"connections":[{"orbit":4,"id":3843}],"group":1284,"name":"Parry Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":31366},"29582":{"orbit":2,"orbitIndex":14,"connections":[{"orbit":0,"id":35987}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","options":{"Huntress":{"stats":["20% increased Stun Threshold while Parrying"],"id":5083,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry"}},"group":922,"isSwitchable":true,"stats":["8% increased Accuracy Rating"],"skill":29582},"39470":{"orbit":8,"orbitIndex":3,"connections":[{"orbit":-6,"id":17754}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Minion Life","ascendancyName":"Infernalist","group":725,"stats":["Minions have 12% increased maximum Life"],"skill":39470},"2336":{"orbit":2,"orbitIndex":9,"stats":["15% increased effect of Arcane Surge on you"],"connections":[{"orbit":2,"id":63402}],"group":390,"name":"Arcane Surge Effect","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":2336},"52676":{"orbit":7,"orbitIndex":3,"stats":["16% increased Minion Duration"],"connections":[],"group":267,"name":"Minion Duration","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":52676},"46205":{"orbit":3,"orbitIndex":0,"stats":["15% increased Totem Damage"],"connections":[{"orbit":7,"id":2174},{"orbit":-7,"id":33209},{"orbit":-7,"id":51683}],"group":363,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":46205},"869":{"orbit":7,"orbitIndex":9,"stats":["12% increased Armour","12% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":18959}],"group":420,"name":"Armour and Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":869},"43426":{"orbit":2,"orbitIndex":12,"connections":[{"orbit":0,"id":32705}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds","name":"Navira's Well","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":43426},"44359":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":836,"connections":[],"stats":[],"skill":44359},"57047":{"orbit":5,"orbitIndex":48,"recipe":["Isolation","Suffering","Paranoia"],"connections":[{"orbit":0,"id":45278},{"orbit":0,"id":4492}],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Polymathy","group":761,"isNotable":true,"stats":["7% increased Attributes"],"skill":57047},"24430":{"orbit":4,"orbitIndex":66,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":3601},{"orbit":0,"id":38707}],"group":260,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":24430},"13171":{"orbit":0,"orbitIndex":0,"stats":["Totems have 12% additional Physical Damage Reduction"],"connections":[{"orbit":5,"id":24438}],"group":450,"name":"Totem Physical Damage Reduction","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":13171},"8415":{"orbit":6,"orbitIndex":0,"connections":[{"orbit":0,"id":62388},{"orbit":-5,"id":3165},{"orbit":0,"id":30071},{"orbit":0,"id":59342},{"orbit":0,"id":47442}],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds","name":"Sanguimancy","ascendancyName":"Blood Mage","isFreeAllocate":true,"group":910,"isNotable":true,"stats":["Skills gain a Base Life Cost equal to Base Mana Cost","Grants Skill: Life Remnants"],"skill":8415},"37888":{"orbit":3,"orbitIndex":6,"connections":[{"orbit":0,"id":29663}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Limitless Pursuit","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":294,"connectionArt":"CharacterPlanned","stats":["4% increased Movement Speed","14% increased Cooldown Recovery Rate"],"skill":37888},"23825":{"orbit":7,"orbitIndex":15,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":7,"id":24325},{"orbit":0,"id":11572}],"group":440,"name":"Life Regeneration Rate","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":23825},"3492":{"orbit":3,"orbitIndex":12,"recipe":["Isolation","Ire","Disgust"],"connections":[{"orbit":0,"id":60313},{"orbit":0,"id":19112}],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Void","group":678,"isNotable":true,"stats":["29% increased Chaos Damage","Enemies you Curse have -3% to Chaos Resistance"],"skill":3492},"40929":{"orbit":3,"orbitIndex":21,"stats":["15% increased Archon Buff duration"],"connections":[{"orbit":-7,"id":43633}],"group":1051,"name":"Archon Duration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":40929},"10362":{"orbit":0,"orbitIndex":0,"stats":["15% increased Armour"],"connections":[{"orbit":0,"id":10830},{"orbit":0,"id":9163}],"group":160,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":10362},"31630":{"orbit":2,"orbitIndex":7,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":64474}],"group":1101,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":31630},"55329":{"orbit":4,"orbitIndex":12,"stats":["15% increased Parried Debuff Duration"],"connections":[{"orbit":0,"id":42036}],"group":1368,"name":"Parried Duration","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":55329},"30300":{"orbit":2,"orbitIndex":2,"stats":["16% increased Thorns damage"],"connections":[{"orbit":0,"id":12565},{"orbit":0,"id":1200}],"group":94,"name":"Thorns","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":30300},"14226":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds","name":"Dance with Death","group":1333,"isKeystone":true,"stats":["25% more Skill Speed while Off Hand is empty and you have","a One-Handed Martial Weapon equipped in your Main Hand"],"skill":14226},"36027":{"orbit":7,"orbitIndex":22,"stats":["12% increased Attack Damage"],"connections":[{"orbit":2,"id":18073}],"group":249,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":36027},"28516":{"orbit":2,"orbitIndex":8,"stats":["6% increased Area of Effect"],"connections":[{"orbit":2,"id":7542}],"group":239,"name":"Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":28516},"4882":{"orbit":2,"orbitIndex":3,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":38172},{"orbit":0,"id":51921}],"group":511,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":4882},"61934":{"orbit":2,"orbitIndex":2,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":0,"id":48418}],"group":555,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":61934},"5580":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Suffering","Suffering"],"connections":[{"orbit":0,"id":42710}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Watchtowers","group":147,"isNotable":true,"stats":["Recoup 5% of damage taken by your Totems as Life","Each Totem applies 2% increased Damage taken to Enemies in their Presence"],"skill":5580},"39207":{"orbit":7,"orbitIndex":10,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":33518}],"group":621,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":39207},"37361":{"orbit":1,"orbitIndex":6,"stats":["10% increased Magnitude of Bleeding you inflict"],"connections":[{"orbit":2147483647,"id":40043}],"group":693,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":37361},"60480":{"orbit":2,"orbitIndex":4,"stats":["8% increased Reservation Efficiency of Herald Skills"],"connections":[],"group":1381,"name":"Herald Reservation","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":60480},"63255":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Fear","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Savagery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":952,"isNotable":true,"stats":["50% increased Evasion Rating if you've consumed a Frenzy Charge Recently","+1 to Maximum Frenzy Charges"],"skill":63255},"16142":{"orbit":3,"orbitIndex":10,"recipe":["Disgust","Isolation","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Deep Freeze","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1384,"isNotable":true,"stats":["20% increased Freeze Buildup","Enemies Frozen by you have -8% to Cold Resistance"],"skill":16142},"49107":{"orbit":2,"orbitIndex":14,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":54562}],"group":1255,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","skill":49107},"516":{"orbit":7,"orbitIndex":16,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"connections":[{"orbit":4,"id":47157}],"group":688,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":516},"49512":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":61419},{"orbit":0,"id":15885},{"orbit":0,"id":5936}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":704,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":49512},"65493":{"orbit":3,"orbitIndex":10,"stats":["15% reduced Presence Area of Effect","6% increased Area of Effect"],"connections":[{"orbit":2,"id":43854}],"group":525,"name":"Area and Presence","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":65493},"51618":{"orbit":7,"orbitIndex":10,"connections":[{"orbit":0,"id":11580},{"orbit":0,"id":43324}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs and Regeneration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":["15% increased Life Regeneration rate","6% of Skill Mana Costs Converted to Life Costs"],"skill":51618},"34181":{"orbit":7,"orbitIndex":6,"connections":[{"orbit":0,"id":45422}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":408,"connectionArt":"CharacterPlanned","stats":["+3 to Maximum Rage"],"skill":34181},"44746":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4245}],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds","name":"Suppressing Fire","ascendancyName":"Tactician","group":331,"isNotable":true,"stats":["40% more Immobilisation buildup"],"skill":44746},"48314":{"orbit":0,"orbitIndex":0,"stats":["3% increased Skill Speed while Shapeshifted"],"connections":[{"orbit":5,"id":61896},{"orbit":-7,"id":3348},{"orbit":-3,"id":55897}],"group":102,"name":"Shapeshifted Skill Speed","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":48314},"33514":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Companion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","group":1230,"connections":[],"stats":[],"skill":33514},"16111":{"orbit":7,"orbitIndex":4,"stats":["20% increased Attack Damage while Surrounded"],"connections":[{"orbit":9,"id":46268},{"orbit":0,"id":2397},{"orbit":0,"id":54099}],"group":642,"name":"Attack Damage while Surrounded","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":16111},"55450":{"orbit":7,"orbitIndex":7,"recipe":["Greed","Isolation","Fear"],"connections":[{"orbit":0,"id":57089},{"orbit":0,"id":34443}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Rallying Form","group":198,"isNotable":true,"stats":["Companions in your Presence have Onslaught while you are Shapeshifted"],"skill":55450},"9703":{"orbit":3,"orbitIndex":2,"stats":["10% increased Poison Duration"],"connections":[{"orbit":0,"id":6030}],"group":1409,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":9703},"19342":{"orbit":3,"orbitIndex":8,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":-3,"id":17553},{"orbit":0,"id":46296},{"orbit":0,"id":27493}],"group":875,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":19342},"19796":{"orbit":7,"orbitIndex":16,"stats":["16% increased Attack Damage against Bleeding Enemies"],"connections":[{"orbit":0,"id":18308}],"group":716,"name":"Attack Damage vs Bleeding Enemies","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":19796},"61396":{"orbit":3,"orbitIndex":11,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":0,"id":10998}],"group":873,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":61396},"18737":{"orbit":7,"orbitIndex":6,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":17725}],"group":263,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":18737},"38541":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":61601}],"group":1136,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":38541},"6269":{"orbit":2,"orbitIndex":1,"stats":["3% increased Attack Speed with Axes"],"connections":[{"orbit":0,"id":45990}],"group":172,"name":"Axe Attack Speed","icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":6269},"38944":{"orbit":2,"orbitIndex":6,"stats":["8% increased Lightning Damage","8% increased chance to Shock"],"connections":[{"orbit":0,"id":43338},{"orbit":0,"id":59538}],"group":1295,"name":"Shock Chance and Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":38944},"56649":{"orbit":3,"orbitIndex":8,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":0,"id":44455}],"group":749,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":56649},"42111":{"orbit":3,"orbitIndex":19,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":21387},{"orbit":0,"id":26437}],"group":195,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":42111},"53996":{"orbit":7,"orbitIndex":22,"stats":["8% increased Melee Damage"],"connections":[{"orbit":7,"id":9941},{"orbit":3,"id":28556}],"group":839,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":53996},"52410":{"orbit":4,"orbitIndex":26,"stats":["20% increased Stun Threshold while Parrying"],"connections":[],"group":1368,"name":"Stun Threshold during Parry","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":52410},"23364":{"orbit":0,"orbitIndex":0,"stats":["9% increased Presence Area of Effect","3% increased Area of Effect"],"connections":[{"orbit":2,"id":33781},{"orbit":2,"id":48614}],"group":525,"name":"Area and Presence","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":23364},"24295":{"orbit":8,"orbitIndex":20,"connections":[{"orbit":2147483647,"id":37336}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Frenzy Charge Duration","ascendancyName":"Deadeye","group":1427,"stats":["25% increased Frenzy Charge Duration"],"skill":24295},"30704":{"orbit":2,"orbitIndex":6,"stats":["5% increased Damage","Regenerate 0.1% of maximum Life per second"],"connections":[{"orbit":0,"id":22045}],"group":563,"name":"Life Regeneration and Damage","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":30704},"144":{"orbit":5,"orbitIndex":12,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":26598}],"group":1143,"name":"Elemental Damage and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":144},"41442":{"orbit":3,"orbitIndex":14,"stats":["4% increased Block chance","5% increased Stun Threshold"],"connections":[{"orbit":5,"id":58088}],"group":245,"name":"Block and Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":41442},"55063":{"orbit":2,"orbitIndex":5,"stats":["15% increased amount of Life Leeched","Leech Life 5% slower"],"connections":[{"orbit":4,"id":51535}],"group":137,"name":"Life Leech and Slower Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":55063},"21390":{"orbit":2,"orbitIndex":12,"stats":["20% increased Endurance Charge Duration"],"connections":[{"orbit":0,"id":7972}],"group":277,"name":"Endurance Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":21390},"43164":{"orbit":7,"orbitIndex":20,"stats":["8% increased Melee Damage"],"connections":[{"orbit":0,"id":5710}],"group":614,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":43164},"38138":{"orbit":5,"orbitIndex":36,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"connections":[{"orbit":0,"id":35688}],"group":761,"name":"Reduced Attribute Requirements","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":38138},"11813":{"orbit":7,"orbitIndex":12,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":-4,"id":30456}],"group":1111,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":11813},"44485":{"orbit":5,"orbitIndex":41,"connections":[{"orbit":-3,"id":7553}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Companion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Companions deal 15% increased Damage"],"skill":44485},"38014":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":5,"id":3762}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Slam Area of Effect","ascendancyName":"Titan","group":75,"stats":["Slam Skills have 8% increased Area of Effect"],"skill":38014},"36556":{"orbit":2,"orbitIndex":12,"stats":["8% increased Global Defences while Channelling"],"connections":[{"orbit":0,"id":1502}],"group":265,"name":"Channelling Defences","icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","skill":36556},"17283":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Evasion and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","group":1058,"connections":[],"stats":[],"skill":17283},"19001":{"orbit":7,"orbitIndex":18,"stats":["15% increased Immobilisation buildup"],"connections":[{"orbit":0,"id":16786}],"group":1084,"name":"Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":19001},"1680":{"orbit":2,"orbitIndex":2,"stats":["20% increased Parry Range"],"connections":[],"group":1155,"name":"Projectile Parry Range","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":1680},"30233":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameLargeCanAllocate","alloc":"RitualistFrameLargeAllocated","unalloc":"RitualistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds","name":"As the Whispers Demand","ascendancyName":"Ritualist","group":1495,"isNotable":true,"stats":["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"],"skill":30233},"33391":{"orbit":3,"orbitIndex":5,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"connections":[{"orbit":0,"id":56330},{"orbit":0,"id":49661}],"group":1076,"name":"Critical Bleeding Effect","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":33391},"59289":{"orbit":2,"orbitIndex":21,"stats":["15% increased Immobilisation buildup"],"connections":[{"orbit":0,"id":22532}],"group":818,"name":"Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":59289},"14459":{"orbit":2,"orbitIndex":2,"stats":["30% increased Thorns Critical Damage Bonus"],"connections":[{"orbit":3,"id":5544}],"group":305,"name":"Thorn Critical Damage","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":14459},"4407":{"orbit":0,"orbitIndex":0,"stats":["Minions have 12% additional Physical Damage Reduction","Minions have 25% increased Evasion Rating"],"connections":[],"group":566,"name":"Minion Physical Damage Reduction","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":4407},"61800":{"orbit":7,"orbitIndex":11,"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"connections":[],"group":1303,"name":"Critical Damage vs Full Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":61800},"45013":{"orbit":7,"orbitIndex":10,"recipe":["Despair","Guilt","Ire"],"connections":[{"orbit":0,"id":58884}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Finishing Blows","group":846,"isNotable":true,"stats":["60% increased Damage with Hits against Enemies that are on Low Life","30% increased Stun Buildup against Enemies that are on Low Life"],"skill":45013},"14428":{"orbit":3,"orbitIndex":14,"stats":["+8 to Intelligence"],"connections":[{"orbit":0,"id":6287}],"group":724,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":14428},"36696":{"orbit":9,"orbitIndex":30,"connections":[{"orbit":4,"id":28431}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Life","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":31398,"stats":["3% increased maximum Life"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Life"}},"group":1120,"isSwitchable":true,"stats":["3% increased maximum Life"],"skill":36696},"48581":{"orbit":6,"orbitIndex":0,"recipe":["Greed","Fear","Isolation"],"connections":[{"orbit":0,"id":33242},{"orbit":0,"id":13387}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Exploit the Elements","group":635,"isNotable":true,"stats":["24% increased Damage with Hits against Enemies affected by Elemental Ailments","30% increased chance to inflict Ailments against Rare or Unique Enemies"],"skill":48581},"58496":{"orbit":0,"orbitIndex":0,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"connections":[{"orbit":-4,"id":9328},{"orbit":5,"id":37187}],"group":139,"name":"Shapeshifted Damage against Immobilised","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":58496},"23702":{"orbit":3,"orbitIndex":10,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":55802},{"orbit":0,"id":57196},{"orbit":0,"id":63445}],"group":804,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":23702},"21984":{"orbit":1,"orbitIndex":4,"connections":[{"orbit":0,"id":61403}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":1133,"stats":[],"skill":21984},"58884":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","name":"Two Hand Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","group":846,"connections":[],"stats":[],"skill":58884},"56910":{"orbit":5,"orbitIndex":51,"connections":[{"orbit":6,"id":28510},{"orbit":0,"id":34061},{"orbit":6,"id":29328}],"icon":"Art/2DArt/SkillIcons/passives/Meleerange.dds","name":"Battle-hardened","group":768,"isNotable":true,"stats":["Hits against you have 20% reduced Critical Damage Bonus","20% increased Armour and Evasion Rating","+5 to Strength and Dexterity"],"skill":56910},"42762":{"orbit":4,"orbitIndex":61,"connections":[{"orbit":0,"id":58197}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["15% increased Physical Damage"],"skill":42762},"9106":{"orbit":7,"orbitIndex":2,"stats":["Gain 2 Rage when Hit by an Enemy"],"connections":[{"orbit":7,"id":54937}],"group":132,"name":"Rage when Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":9106},"17745":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":463,"connections":[],"stats":[],"skill":17745},"64046":{"orbit":7,"orbitIndex":3,"connections":[{"orbit":6,"id":45522},{"orbit":0,"id":5726}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Principal Infusion","isSwitchable":true,"options":{"Witch":{"stats":["20% increased Chaos Damage","18% increased Skill Effect Duration"],"id":10941,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Entropy"}},"group":713,"isNotable":true,"stats":["20% increased Elemental Infusion duration","Remnants can be collected from 30% further away"],"skill":64046},"13893":{"orbit":7,"orbitIndex":5,"stats":["10% increased Stun Buildup","Damage Penetrates 5% Fire Resistance"],"connections":[{"orbit":-5,"id":42390}],"group":104,"name":"Fire Penetration and Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":13893},"36169":{"orbit":3,"orbitIndex":23,"stats":["10% increased Grenade Area of Effect"],"connections":[{"orbit":0,"id":29514}],"group":702,"name":"Grenade Area","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":36169},"64434":{"orbit":7,"orbitIndex":20,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":2,"id":3893},{"orbit":0,"id":39298}],"group":907,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":64434},"13862":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":1059,"connections":[],"stats":[],"skill":13862},"28589":{"orbit":3,"orbitIndex":23,"stats":["20% increased Armour if you have been Hit Recently"],"connections":[{"orbit":0,"id":30300}],"group":94,"name":"Armour if Hit","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":28589},"5084":{"orbit":2,"orbitIndex":22,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":2,"id":35324}],"group":685,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":5084},"57967":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Sturdy Mind","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":592,"isNotable":true,"stats":["+30 to maximum Mana","14% increased Mana Regeneration Rate"],"skill":57967},"3209":{"orbit":7,"orbitIndex":16,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":-6,"id":59720},{"orbit":4,"id":65091}],"group":1353,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":3209},"17687":{"orbit":4,"orbitIndex":40,"stats":["15% increased Mana Flask Charges gained"],"connections":[{"orbit":-3,"id":27422}],"group":1340,"name":"Mana Flask Charges","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":17687},"61923":{"orbit":3,"orbitIndex":4,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":-6,"id":16256}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":61923},"32545":{"orbit":2,"orbitIndex":2,"stats":["3% increased Skill Speed"],"connections":[{"orbit":4,"id":61196}],"group":938,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":32545},"64962":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds","name":"Dedication to Kitava","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":19,"isNotable":true,"stats":["Body Armour grants +100% of Armour also applies to Chaos Damage"],"skill":64962},"45012":{"orbit":3,"orbitIndex":12,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":8246},{"orbit":0,"id":64462},{"orbit":0,"id":41017}],"group":1337,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":45012},"47263":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38707},{"orbit":0,"id":18448},{"orbit":0,"id":58295},{"orbit":0,"id":60068}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":191,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":47263},"24420":{"orbit":7,"orbitIndex":22,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":33829},{"orbit":-2,"id":9442}],"group":263,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":24420},"3624":{"orbit":3,"orbitIndex":5,"stats":["15% increased Pin Buildup"],"connections":[{"orbit":0,"id":18470},{"orbit":0,"id":10927},{"orbit":0,"id":16484}],"group":939,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":3624},"50302":{"orbit":3,"orbitIndex":11,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"connections":[{"orbit":0,"id":63470}],"group":396,"name":"Life Costs","icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":50302},"26268":{"orbit":7,"orbitIndex":12,"stats":["20% increased Curse Duration"],"connections":[{"orbit":0,"id":22710}],"group":1207,"name":"Curse Duration","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":26268},"37612":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":13279},{"orbit":0,"id":17532},{"orbit":0,"id":60191}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":544,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":37612},"15809":{"orbit":3,"orbitIndex":22,"stats":["Minions have 20% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":31175},{"orbit":7,"id":26945},{"orbit":0,"id":18485}],"group":644,"name":"Minion Critical Chance","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":15809},"31554":{"orbit":5,"orbitIndex":6,"connections":[{"orbit":0,"id":49929}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":136,"connectionArt":"CharacterPlanned","stats":["15% increased Skill Effect Duration"],"skill":31554},"41180":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","name":"Shapeshifting Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":325,"connections":[],"stats":[],"skill":41180},"17885":{"orbit":3,"orbitIndex":2,"stats":["15% reduced Magnitude of Ignite on you"],"connections":[{"orbit":-7,"id":11392}],"group":92,"name":"Ignite Magnitude on You","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":17885},"23427":{"orbit":4,"orbitIndex":54,"recipe":["Suffering","Despair","Despair"],"connections":[{"orbit":5,"id":62914}],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chilled to the Bone","group":749,"isNotable":true,"stats":["20% increased Chill Duration on Enemies","30% increased Magnitude of Chill you inflict"],"skill":23427},"25211":{"orbit":3,"orbitIndex":3,"recipe":["Greed","Suffering","Fear"],"connections":[{"orbit":0,"id":11330}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Waning Hindrances","group":590,"isNotable":true,"stats":["Debuffs on you expire 25% faster"],"skill":25211},"12116":{"orbit":4,"orbitIndex":22,"stats":["20% increased Parry Hit Area of Effect"],"connections":[{"orbit":0,"id":42036},{"orbit":0,"id":52410}],"group":1368,"name":"Parry Area","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":12116},"21453":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Envy","Greed"],"connections":[{"orbit":0,"id":10286}],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","name":"Breakage","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":216,"isNotable":true,"stats":["Break 60% increased Armour","10% chance to Defend with 200% of Armour"],"skill":21453},"46069":{"orbit":2,"orbitIndex":0,"connections":[{"orbit":0,"id":6088}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":421,"connectionArt":"CharacterPlanned","stats":["12% increased Magnitude of Poison you inflict"],"skill":46069},"44223":{"orbit":7,"orbitIndex":1,"stats":["15% increased Critical Damage Bonus"],"connections":[],"group":871,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":44223},"51485":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","name":"Shapeshifting Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":500,"connections":[],"stats":[],"skill":51485},"8509":{"orbit":2,"orbitIndex":10,"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"connections":[{"orbit":9,"id":59061}],"group":214,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":8509},"2344":{"orbit":7,"orbitIndex":6,"recipe":["Greed","Suffering","Isolation"],"connections":[{"orbit":0,"id":34317}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Dimensional Weakspot","group":255,"isNotable":true,"stats":["Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted"],"skill":2344},"39986":{"orbit":0,"orbitIndex":0,"stats":["Companions deal 12% increased Damage"],"connections":[{"orbit":0,"id":57933}],"group":1408,"name":"Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":39986},"26532":{"orbit":2,"orbitIndex":6,"stats":["15% increased Armour"],"connections":[{"orbit":-3,"id":46023},{"orbit":3,"id":41657},{"orbit":0,"id":36629}],"group":452,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":26532},"51749":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":30141}],"icon":"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds","name":"Blood Magic","group":129,"isKeystone":true,"stats":["You have no Mana","Skill Mana Costs Converted to Life Costs"],"skill":51749},"44487":{"orbit":7,"orbitIndex":5,"stats":["10% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":39884}],"group":957,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":44487},"35503":{"orbit":0,"orbitIndex":0,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":23764}],"group":937,"name":"Shock Effect and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":35503},"34308":{"orbit":3,"orbitIndex":19,"recipe":["Disgust","Despair","Ire"],"connections":[{"orbit":0,"id":37414},{"orbit":0,"id":10245}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds","name":"Personal Touch","group":444,"isNotable":true,"stats":["20% increased Attack Damage","12% increased Immobilisation buildup"],"skill":34308},"44875":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":935,"connections":[],"stats":[],"skill":44875},"57966":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":987,"connections":[],"stats":[],"skill":57966},"2119":{"orbit":2,"orbitIndex":0,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":0,"id":53505}],"group":632,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":2119},"43818":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":459,"connections":[],"stats":[],"skill":43818},"63772":{"orbit":7,"orbitIndex":23,"connections":[{"orbit":0,"id":37888}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Cooldown Recovery Rate","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":294,"connectionArt":"CharacterPlanned","stats":["6% increased Cooldown Recovery Rate"],"skill":63772},"53607":{"orbit":4,"orbitIndex":3,"recipe":["Suffering","Despair","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Fortified Location","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":585,"isNotable":true,"stats":["10% increased Armour and Evasion Rating per Summoned Totem in your Presence","10% increased Attack Damage per Summoned Totem in your Presence"],"skill":53607},"33393":{"orbit":5,"orbitIndex":15,"stats":["10% increased Damage with Flails"],"connections":[{"orbit":-3,"id":41747}],"group":141,"name":"Flail Damage","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":33393},"32148":{"orbit":2,"orbitIndex":2,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Rattling Ball","group":169,"isNotable":true,"stats":["25% increased Damage with Flails"],"skill":32148},"38668":{"orbit":7,"orbitIndex":23,"stats":["15% faster start of Energy Shield Recharge"],"connections":[],"group":1175,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","skill":38668},"63243":{"orbit":3,"orbitIndex":10,"connections":[{"orbit":2147483647,"id":48160},{"orbit":0,"id":49543}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Ally Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":188,"connectionArt":"CharacterPlanned","stats":["Allies in your Presence deal 20% increased Damage","10% reduced Damage"],"skill":63243},"36822":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":58591}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Attributes","ascendancyName":"Gemling Legionnaire","group":527,"stats":["3% increased Attributes"],"skill":36822},"56776":{"orbit":1,"orbitIndex":7,"recipe":["Suffering","Ire","Envy"],"connections":[{"orbit":5,"id":45609},{"orbit":0,"id":24129}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Cooked","group":1131,"isNotable":true,"stats":["60% increased Critical Damage Bonus","25% reduced Defences"],"skill":56776},"6153":{"orbit":7,"orbitIndex":14,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":44952},{"orbit":0,"id":10362}],"group":160,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":6153},"16489":{"orbit":6,"orbitIndex":30,"connections":[{"orbit":6,"id":28556},{"orbit":7,"id":49799}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":842,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":16489},"354":{"orbit":3,"orbitIndex":16,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"connections":[{"orbit":0,"id":48429}],"group":702,"name":"Grenade Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":354},"48583":{"orbit":2,"orbitIndex":23,"stats":["8% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"connections":[{"orbit":0,"id":58783}],"group":851,"name":"Life Leech. Armour and Evasion while Leeching","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":48583},"24748":{"orbit":3,"orbitIndex":15,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":4716}],"group":649,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":24748},"42500":{"orbit":6,"orbitIndex":10,"connections":[{"orbit":0,"id":59881}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":771,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":42500},"5728":{"orbit":7,"orbitIndex":4,"recipe":["Despair","Paranoia","Envy"],"connections":[{"orbit":-3,"id":17349},{"orbit":0,"id":58138}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Ancient Aegis","group":117,"isNotable":true,"stats":["60% increased Armour from Equipped Body Armour","60% increased Energy Shield from Equipped Body Armour"],"skill":5728},"1841":{"orbit":7,"orbitIndex":8,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":5,"id":9405}],"group":1353,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":1841},"61525":{"orbit":0,"orbitIndex":0,"classesStart":["Templar","Druid"],"connections":[{"orbit":0,"id":13855},{"orbit":0,"id":35715},{"orbit":0,"id":26353},{"orbit":0,"id":950},{"orbit":0,"id":28429},{"orbit":0,"id":35535},{"orbit":0,"id":42761}],"icon":"Art/2DArt/SkillIcons/passives/axedmgspeed.dds","name":"TEMPLAR","group":684,"stats":[],"skill":61525},"22710":{"orbit":7,"orbitIndex":8,"stats":["20% increased Curse Duration"],"connections":[{"orbit":0,"id":45111}],"group":1207,"name":"Curse Duration","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":22710},"47790":{"orbit":7,"orbitIndex":7,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":0,"id":17625}],"group":313,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":47790},"10495":{"orbit":7,"orbitIndex":18,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":1236,"connections":[],"stats":[],"skill":10495},"41447":{"orbit":3,"orbitIndex":8,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"connections":[],"group":961,"name":"Attack Area and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":41447},"12311":{"orbit":7,"orbitIndex":16,"stats":["15% increased Crossbow Reload Speed"],"connections":[{"orbit":0,"id":64119}],"group":838,"name":"Crossbow Reload Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":12311},"40918":{"orbit":0,"orbitIndex":0,"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"connections":[{"orbit":-4,"id":1773}],"group":1061,"name":"Ailment Effect and Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":40918},"39987":{"orbit":3,"orbitIndex":14,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"connections":[{"orbit":-3,"id":18913},{"orbit":-5,"id":47177}],"group":905,"name":"Chaos Damage and Duration","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":39987},"49111":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":134,"connections":[],"stats":[],"skill":49111},"43557":{"orbit":3,"orbitIndex":17,"stats":["Minions have 15% increased Critical Damage Bonus"],"connections":[],"group":735,"name":"Minion Critical Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":43557},"21314":{"orbit":2,"orbitIndex":17,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-4,"id":50912}],"group":1072,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":21314},"13397":{"orbit":4,"orbitIndex":6,"connections":[{"orbit":0,"id":1207}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":614,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":13397},"14328":{"orbit":7,"orbitIndex":19,"stats":["12% increased maximum Energy Shield","+5% of Armour also applies to Elemental Damage"],"connections":[{"orbit":0,"id":18959}],"group":420,"name":"Energy Shield and Armour applies to Elemental Resistance","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":14328},"21380":{"orbit":7,"orbitIndex":9,"recipe":["Guilt","Disgust","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Preemptive Strike","group":1160,"isNotable":true,"stats":["100% increased Critical Damage Bonus against Enemies that are on Full Life"],"skill":21380},"19794":{"orbit":3,"orbitIndex":22,"stats":["15% reduced Magnitude of Ignite on you"],"connections":[],"group":92,"name":"Ignite Magnitude on You","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":19794},"60203":{"orbit":2,"orbitIndex":2,"stats":["+8 to Strength"],"connections":[{"orbit":9,"id":5332}],"group":796,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":60203},"33518":{"orbit":4,"orbitIndex":34,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":6,"id":63579}],"group":621,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":33518},"52274":{"orbit":3,"orbitIndex":9,"stats":["12% increased Grenade Damage"],"connections":[{"orbit":0,"id":3109},{"orbit":0,"id":21077}],"group":702,"name":"Grenade Damage","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":52274},"24483":{"orbit":3,"orbitIndex":17,"recipe":["Disgust","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":32660},{"orbit":0,"id":62661}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Direct Approach","group":545,"isNotable":true,"stats":["35% increased Critical Hit Chance against Enemies that are affected","by no Elemental Ailments"],"skill":24483},"29447":{"orbit":2,"orbitIndex":11,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"connections":[{"orbit":2147483647,"id":11786}],"group":320,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":29447},"16695":{"orbit":2,"orbitIndex":6,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"connections":[{"orbit":0,"id":61926}],"group":1090,"name":"Energy Shield Recoup","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":16695},"34449":{"orbit":4,"orbitIndex":36,"stats":["10% increased Critical Hit Chance with Traps"],"connections":[{"orbit":0,"id":37688}],"group":1347,"name":"Trap Critical Chance","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":34449},"23040":{"orbit":7,"orbitIndex":14,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":4,"id":38493}],"group":1410,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":23040},"6735":{"orbit":0,"orbitIndex":0,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"connections":[{"orbit":4,"id":41935},{"orbit":-5,"id":43460}],"group":167,"name":"Shapeshifted Armour","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":6735},"23362":{"orbit":3,"orbitIndex":9,"recipe":["Despair","Disgust","Greed"],"connections":[{"orbit":0,"id":32672},{"orbit":0,"id":50403}],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Slippery Ice","group":1311,"isNotable":true,"stats":["25% reduced Effect of Chill on you","Unaffected by Chill during Dodge Roll"],"skill":23362},"12412":{"orbit":1,"orbitIndex":0,"recipe":["Paranoia","Fear","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Temporal Mastery","group":590,"isNotable":true,"stats":["16% increased Cooldown Recovery Rate"],"skill":12412},"50820":{"orbit":7,"orbitIndex":17,"stats":["15% increased Glory generation"],"connections":[{"orbit":0,"id":65472}],"group":106,"name":"Glory Generation","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":50820},"62581":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","name":"Block Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","group":442,"connections":[],"stats":[],"skill":62581},"48846":{"orbit":0,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":44566}],"group":852,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":48846},"23428":{"orbit":3,"orbitIndex":18,"stats":["12% increased Grenade Damage"],"connections":[{"orbit":0,"id":47623}],"group":613,"name":"Grenade Damage","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":23428},"64299":{"orbit":2,"orbitIndex":20,"connections":[{"orbit":2147483647,"id":17655}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Bolstering Presence","isSwitchable":true,"options":{"Druid":{"stats":["10% increased Critical Damage Bonus","10% increased Damage","10% increased Area Damage"],"id":56845,"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","name":"Harbinger of Disaster"}},"group":551,"isNotable":true,"stats":["Aura Skills have 12% increased Magnitudes"],"skill":64299},"57832":{"orbit":2,"orbitIndex":9,"stats":["10% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":46300}],"group":685,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":57832},"46071":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":9294}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Accuracy","ascendancyName":"Amazon","group":1471,"stats":["12% increased Accuracy Rating"],"skill":46071},"49110":{"orbit":0,"orbitIndex":0,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"connections":[{"orbit":-7,"id":54746}],"group":1055,"name":"Ailment Chance and Effect","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":49110},"59938":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Envy"],"connections":[{"orbit":0,"id":50757}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Against the Elements","group":290,"isNotable":true,"stats":["30% increased Elemental Ailment Threshold","15% reduced Slowing Potency of Debuffs on You"],"skill":59938},"21784":{"orbit":7,"orbitIndex":11,"recipe":["Isolation","Disgust","Despair"],"connections":[{"orbit":0,"id":50118},{"orbit":0,"id":34443}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Pack Encouragement","group":198,"isNotable":true,"stats":["5% increased Attack Damage for each Minion in your Presence, up to a maximum of 80%"],"skill":21784},"45278":{"orbit":7,"orbitIndex":14,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"connections":[{"orbit":0,"id":38138}],"group":761,"name":"Reduced Attribute Requirements","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":45278},"9037":{"orbit":2,"orbitIndex":23,"stats":["3% increased Skill Speed while Shapeshifted"],"connections":[{"orbit":0,"id":32353}],"group":325,"name":"Shapeshifted Skill Speed","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":9037},"58096":{"orbit":3,"orbitIndex":20,"recipe":["Isolation","Greed","Disgust"],"connections":[{"orbit":0,"id":17411}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Lasting Incantations","group":482,"isNotable":true,"stats":["20% increased Spell Damage","15% increased Skill Effect Duration"],"skill":58096},"9968":{"orbit":4,"orbitIndex":69,"recipe":["Paranoia","Suffering","Disgust"],"connections":[{"orbit":-6,"id":38678},{"orbit":0,"id":28623}],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Feel the Earth","group":1217,"isNotable":true,"stats":["25% reduced Shock duration on you","40% increased Elemental Ailment Threshold"],"skill":9968},"20791":{"orbit":2,"orbitIndex":10,"stats":["10% increased Power Charge Duration","10% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"connections":[{"orbit":0,"id":13777},{"orbit":0,"id":11741}],"group":206,"name":"Power Charge Duration and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":20791},"5348":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1210,"connections":[],"stats":[],"skill":5348},"44753":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Greed","Isolation"],"connections":[{"orbit":0,"id":63608}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"One With Flame","group":104,"isNotable":true,"stats":["50% reduced Magnitude of Ignite on you"],"skill":44753},"8975":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":4,"id":61196}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":956,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":8975},"11752":{"orbit":7,"orbitIndex":2,"stats":["Banner Skills have 20% increased Duration"],"connections":[{"orbit":0,"id":62455},{"orbit":0,"id":62258},{"orbit":0,"id":57616}],"group":656,"name":"Banner Duration","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":11752},"55180":{"orbit":3,"orbitIndex":15,"recipe":["Despair","Fear","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Relentless Fallen","group":868,"isNotable":true,"stats":["3% increased Movement Speed","Minions have 20% increased Movement Speed","Minions have 8% increased Attack and Cast Speed"],"skill":55180},"483":{"orbit":2,"orbitIndex":18,"connections":[{"orbit":2147483647,"id":12601},{"orbit":2147483647,"id":35745}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":611,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"skill":483},"21982":{"orbit":2,"orbitIndex":18,"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"connections":[{"orbit":0,"id":47371}],"group":355,"name":"Empowered Attack Damage and Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":21982},"20388":{"orbit":2,"orbitIndex":22,"recipe":["Greed","Disgust","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Regenerative Flesh","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","group":581,"isNotable":true,"stats":["6% of Damage taken Recouped as Life","Minions Recoup 15% of Damage taken as Life"],"skill":20388},"59541":{"orbit":3,"orbitIndex":3,"recipe":["Fear","Guilt","Fear"],"connections":[{"orbit":7,"id":28573},{"orbit":0,"id":56926}],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Necrotised Flesh","group":893,"isNotable":true,"stats":["Minions have 40% increased maximum Life","Minions have 10% reduced Life Recovery rate"],"skill":59541},"10131":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3251},{"orbit":0,"id":44669},{"orbit":0,"id":14127},{"orbit":0,"id":55947}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1016,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":10131},"29306":{"orbit":1,"orbitIndex":1,"recipe":["Fear","Disgust","Guilt"],"connections":[{"orbit":1,"id":17668}],"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Chakra of Thought","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":1171,"isNotable":true,"stats":["8% of Damage is taken from Mana before Life","15% increased Attack Speed while not on Low Mana"],"skill":29306},"39461":{"orbit":2,"orbitIndex":0,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"connections":[{"orbit":0,"id":229}],"group":617,"name":"Minion Damage and Life","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":39461},"48585":{"orbit":0,"orbitIndex":0,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"connections":[{"orbit":0,"id":20831},{"orbit":0,"id":56325}],"group":950,"name":"Evasion and Reduced Movement Penalty","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":48585},"20989":{"orbit":3,"orbitIndex":9,"stats":["6% increased Area of Effect"],"connections":[{"orbit":0,"id":42984},{"orbit":0,"id":30141}],"group":114,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":20989},"29372":{"orbit":5,"orbitIndex":60,"recipe":["Fear","Suffering","Isolation"],"connections":[{"orbit":0,"id":7720},{"orbit":0,"id":63268}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Sudden Infuriation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","group":487,"isNotable":true,"stats":["4% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"],"skill":29372},"4456":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57710},{"orbit":0,"id":4776}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":696,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":4456},"10100":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":47263},{"orbit":0,"id":25300}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":185,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":10100},"38003":{"orbit":7,"orbitIndex":20,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":4,"id":63526}],"group":758,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":38003},"52415":{"orbit":2,"orbitIndex":22,"stats":["4% increased Attack Speed while your Companion is in your Presence"],"connections":[{"orbit":0,"id":32655}],"group":1230,"name":"Attack Speed with Companion in Presence","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":52415},"41573":{"orbit":3,"orbitIndex":10,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":0,"id":24655}],"group":696,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":41573},"52803":{"orbit":7,"orbitIndex":0,"recipe":["Envy","Disgust","Disgust"],"connections":[{"orbit":0,"id":59356}],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Hale Traveller","group":1189,"isNotable":true,"stats":["20% increased Life Recovery from Flasks","Life Flasks gain 0.1 charges per Second"],"skill":52803},"26068":{"orbit":3,"orbitIndex":4,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":37389}],"group":1062,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":26068},"6900":{"orbit":5,"orbitIndex":0,"stats":["+1% to maximum Block chance"],"connections":[{"orbit":-6,"id":26479},{"orbit":0,"id":45751}],"group":245,"name":"Maximum Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":6900},"62844":{"orbit":3,"orbitIndex":18,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":0,"id":32427}],"group":696,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":62844},"44612":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","name":"Spell Suppression Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","group":1030,"connections":[],"stats":[],"skill":44612},"12078":{"orbit":5,"orbitIndex":39,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":-6,"id":53771},{"orbit":-4,"id":41877}],"group":1267,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":12078},"27662":{"orbit":2,"orbitIndex":14,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"connections":[],"group":962,"name":"Additional Spell Projectiles","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":27662},"60":{"orbit":2,"orbitIndex":13,"stats":["5% chance to Blind Enemies on Hit"],"connections":[{"orbit":0,"id":58426}],"group":1328,"name":"Blind Chance","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":60},"25011":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":552,"connections":[],"stats":[],"skill":25011},"6355":{"orbit":7,"orbitIndex":2,"stats":["15% increased Totem Damage"],"connections":[{"orbit":-4,"id":14110},{"orbit":4,"id":38124}],"group":287,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":6355},"38143":{"orbit":2,"orbitIndex":18,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":899,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38143},"18073":{"orbit":7,"orbitIndex":2,"stats":["12% increased Attack Damage"],"connections":[{"orbit":7,"id":49952},{"orbit":4,"id":63114}],"group":249,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":18073},"59945":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4527},{"orbit":0,"id":45327},{"orbit":0,"id":21684}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":200,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59945},"55708":{"orbit":7,"orbitIndex":10,"recipe":["Isolation","Fear","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electric Amplification","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":834,"isNotable":true,"stats":["Damage Penetrates 18% Lightning Resistance","Gain 6% of Elemental Damage as Extra Lightning Damage"],"skill":55708},"28050":{"orbit":6,"orbitIndex":24,"connections":[{"orbit":0,"id":63888},{"orbit":0,"id":53539}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1000,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28050},"62051":{"orbit":3,"orbitIndex":0,"stats":["3% increased Movement Speed if you've Killed Recently"],"connections":[{"orbit":-9,"id":21755}],"group":772,"name":"Movement Speed","icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":62051},"49235":{"orbit":2,"orbitIndex":7,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":42077}],"group":679,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":49235},"62984":{"orbit":2,"orbitIndex":4,"connections":[{"orbit":0,"id":15975}],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Mindful Awareness","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","group":955,"isNotable":true,"stats":["24% increased Evasion Rating","24% increased maximum Energy Shield"],"skill":62984},"58747":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds","name":"Ultimate Command","ascendancyName":"Chronomancer","group":342,"isNotable":true,"stats":["Grants Skill: Time Freeze"],"skill":58747},"61927":{"orbit":2,"orbitIndex":5,"stats":["15% increased Magnitude of Jagged Ground you create"],"connections":[{"orbit":0,"id":14515},{"orbit":0,"id":3698}],"group":283,"name":"Jagged Ground Effect","icon":"Art/2DArt/SkillIcons/icongroundslam.dds","skill":61927},"41044":{"orbit":7,"orbitIndex":10,"stats":["3% of Damage taken Recouped as Mana"],"connections":[{"orbit":-7,"id":47591}],"group":509,"name":"Mana Recoup","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":41044},"419":{"orbit":2,"orbitIndex":12,"stats":["10% increased Magnitude of Non-Damaging Ailments you inflict"],"connections":[{"orbit":-7,"id":63400}],"group":1118,"name":"Non-Damaging Ailment Magnitude","icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","skill":419},"14724":{"orbit":0,"orbitIndex":0,"stats":["20% increased Shock Duration"],"connections":[{"orbit":0,"id":62185}],"group":1242,"name":"Shock Duration","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":14724},"53207":{"orbit":1,"orbitIndex":4,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":47635},{"orbit":0,"id":56914}],"group":1123,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":53207},"59540":{"orbit":9,"orbitIndex":67,"connections":[],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds","name":"Mountain Splitter","ascendancyName":"Titan","group":77,"isNotable":true,"stats":["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"],"skill":59540},"30701":{"orbit":2,"orbitIndex":8,"stats":["6% reduced Projectile Speed"],"connections":[],"group":404,"name":"Reduced Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","skill":30701},"14026":{"orbit":0,"orbitIndex":0,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"connections":[],"group":145,"name":"Shapeshifted Damage against Immobilised","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":14026},"3985":{"orbit":2,"orbitIndex":15,"recipe":["Suffering","Isolation","Ire"],"connections":[{"orbit":0,"id":48660},{"orbit":3,"id":64140}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Forces of Nature","group":1010,"isNotable":true,"stats":["Attack Damage Penetrates 15% of Enemy Elemental Resistances"],"skill":3985},"2732":{"orbit":1,"orbitIndex":11,"stats":["8% increased Mana Cost Efficiency"],"connections":[{"orbit":-2,"id":16790}],"group":862,"name":"Mana Cost Efficiency","icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":2732},"46197":{"orbit":2,"orbitIndex":7,"recipe":["Suffering","Envy","Greed"],"connections":[{"orbit":0,"id":39237}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Careful Assassin","group":1250,"isNotable":true,"stats":["20% reduced Critical Damage Bonus","50% increased Critical Hit Chance"],"skill":46197},"38004":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57141}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds","name":"Explosive Concoction","ascendancyName":"Pathfinder","group":1440,"isMultipleChoiceOption":true,"stats":["Grants Skill: Explosive Concoction"],"skill":38004},"18678":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":9,"id":26638}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Buff Expiry Rate","ascendancyName":"Chronomancer","group":308,"stats":["Buffs on you expire 10% slower"],"skill":18678},"57039":{"orbit":3,"orbitIndex":4,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":6,"id":44605}],"group":731,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":57039},"904":{"orbit":7,"orbitIndex":4,"stats":["8% increased Mana Regeneration Rate","8% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":28578}],"group":280,"name":"Mana Regeneration and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":904},"18744":{"orbit":2,"orbitIndex":10,"stats":["Remnants can be collected from 20% further away"],"connections":[{"orbit":2,"id":60324}],"group":1057,"name":"Remnant Pickup Range","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":18744},"62455":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Greed","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","name":"Bannerman","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","group":656,"isNotable":true,"stats":["Banner Buffs linger on you for 2 seconds after you leave the Area"],"skill":62455},"56112":{"orbit":3,"orbitIndex":18,"recipe":["Suffering","Despair","Paranoia"],"connections":[{"orbit":-2,"id":42059},{"orbit":0,"id":49259}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Extinguishing Exhalation","group":222,"isNotable":true,"stats":["Remove Ignite when you Warcry"],"skill":56112},"29041":{"orbit":3,"orbitIndex":12,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":31388},{"orbit":0,"id":52298}],"group":282,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":29041},"26596":{"orbit":3,"orbitIndex":19,"stats":["3% increased Cast Speed"],"connections":[{"orbit":5,"id":5766},{"orbit":-5,"id":51416}],"group":1124,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":26596},"14127":{"orbit":2,"orbitIndex":13,"stats":["8% reduced Skill Effect Duration"],"connections":[],"group":1020,"name":"Reduced Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":14127},"8510":{"orbit":0,"orbitIndex":0,"stats":["Damaging Ailments deal damage 5% faster"],"connections":[{"orbit":-3,"id":13030}],"group":1049,"name":"Faster Ailments","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":8510},"17282":{"orbit":7,"orbitIndex":20,"stats":["16% increased Mana Regeneration Rate while stationary"],"connections":[{"orbit":0,"id":47252}],"group":237,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":17282},"39990":{"orbit":7,"orbitIndex":7,"recipe":["Despair","Fear","Despair"],"connections":[{"orbit":2,"id":13294},{"orbit":0,"id":61974}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Chronomancy","group":571,"isNotable":true,"stats":["20% increased Skill Effect Duration","Debuffs you inflict have 10% increased Slow Magnitude"],"skill":39990},"60068":{"orbit":3,"orbitIndex":12,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":7,"id":55925}],"group":176,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":60068},"53471":{"orbit":7,"orbitIndex":4,"stats":["12% increased Critical Hit Chance against Blinded Enemies"],"connections":[{"orbit":0,"id":11836}],"group":1184,"name":"Critical vs Blinded","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":53471},"30040":{"orbit":1,"orbitIndex":7,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":56016}],"group":943,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":30040},"53196":{"orbit":7,"orbitIndex":12,"stats":["8% increased Flask and Charm Charges gained"],"connections":[{"orbit":0,"id":46692}],"group":927,"name":"Flask and Charm Charges Gained","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":53196},"6714":{"orbit":2,"orbitIndex":12,"stats":["5% increased Life Regeneration rate","5% reduced effect of Curses on you"],"connections":[{"orbit":0,"id":41646}],"group":630,"name":"Curse Effect on you and Life Regeneration Rate","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":6714},"17348":{"orbit":7,"orbitIndex":17,"stats":["12% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":11275}],"group":104,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":17348},"1973":{"orbit":2,"orbitIndex":8,"stats":["10% increased Mana Recovery from Flasks"],"connections":[{"orbit":0,"id":8607}],"group":250,"name":"Mana Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":1973},"56640":{"orbit":7,"orbitIndex":0,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":-3,"id":10398}],"group":699,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","skill":56640},"34840":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":1433},{"orbit":0,"id":27674},{"orbit":0,"id":48618}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":523,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":34840},"3698":{"orbit":2,"orbitIndex":11,"recipe":["Isolation","Isolation","Greed"],"connections":[{"orbit":0,"id":33137}],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Spike Pit","group":283,"isNotable":true,"stats":["Enemies in Jagged Ground you create take 10% increased Damage"],"skill":3698},"46601":{"orbit":2,"orbitIndex":18,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":0,"id":18568},{"orbit":0,"id":43720}],"group":1169,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":46601},"61926":{"orbit":2,"orbitIndex":12,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"connections":[{"orbit":0,"id":1603}],"group":1090,"name":"Energy Shield Recoup","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":61926},"41171":{"orbit":7,"orbitIndex":4,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"connections":[{"orbit":0,"id":36341}],"group":936,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":41171},"15182":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54818}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":707,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":15182},"7412":{"orbit":7,"orbitIndex":15,"stats":["15% increased Life Flask Charges gained"],"connections":[{"orbit":0,"id":45709}],"group":1190,"name":"Life Flask Charges","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":7412},"28578":{"orbit":7,"orbitIndex":2,"stats":["8% increased Mana Regeneration Rate","8% increased Critical Hit Chance"],"connections":[],"group":280,"name":"Mana Regeneration and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":28578},"46989":{"orbit":7,"orbitIndex":12,"stats":["Spell Skills have 6% increased Area of Effect"],"connections":[],"group":819,"name":"Spell Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":46989},"9472":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Disgust","Guilt"],"connections":[{"orbit":0,"id":31991},{"orbit":0,"id":41062}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Catapult","group":1046,"isNotable":true,"stats":["15% increased Projectile Speed","12% increased Area of Effect for Attacks"],"skill":9472},"57821":{"orbit":4,"orbitIndex":12,"connections":[{"orbit":0,"id":31765},{"orbit":0,"id":26034}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1258,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":57821},"62578":{"orbit":7,"orbitIndex":16,"stats":["3% chance to gain Volatility on Kill"],"connections":[{"orbit":-7,"id":30102}],"group":1220,"name":"Volatility on Kill","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":62578},"10364":{"orbit":4,"orbitIndex":48,"stats":["4% increased Skill Speed"],"connections":[{"orbit":0,"id":44683},{"orbit":4,"id":55342},{"orbit":0,"id":42857}],"group":871,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":10364},"22045":{"orbit":2,"orbitIndex":14,"stats":["Regenerate 0.2% of maximum Life per second"],"connections":[{"orbit":3,"id":13505}],"group":563,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":22045},"40":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds","name":"Sustainable Practices","ascendancyName":"Pathfinder","group":1455,"isNotable":true,"stats":["50% of Evasion Rating also grants Elemental Damage reduction"],"skill":40},"27785":{"orbit":7,"orbitIndex":10,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":63863}],"group":833,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":27785},"24812":{"orbit":2,"orbitIndex":11,"stats":["20% increased Power Charge Duration"],"connections":[{"orbit":0,"id":64643}],"group":1003,"name":"Power Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":24812},"8611":{"orbit":8,"orbitIndex":56,"connections":[{"orbit":-4,"id":59}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Curse Area","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":28740,"stats":["15% increased Area of Effect of Curses"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Curse Area"}},"group":1120,"isSwitchable":true,"stats":["15% increased Area of Effect of Curses"],"skill":8611},"56237":{"orbit":3,"orbitIndex":23,"recipe":["Envy","Guilt","Disgust"],"connections":[{"orbit":0,"id":1825}],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Enhancing Attacks","group":165,"isNotable":true,"stats":["12% increased Spell Damage for each different Non-Instant Attack you've used in the past 8 seconds"],"skill":56237},"2864":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54818},{"orbit":0,"id":21468},{"orbit":0,"id":33369},{"orbit":0,"id":59480},{"orbit":0,"id":63360},{"orbit":0,"id":32564}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":634,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":2864},"9604":{"orbit":4,"orbitIndex":60,"recipe":["Greed","Suffering","Despair"],"connections":[{"orbit":0,"id":20015}],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Thirst of Kitava","group":383,"isNotable":true,"stats":["Life Leeched from Empowered Attacks is Instant"],"skill":9604},"19470":{"orbit":3,"orbitIndex":17,"stats":["10% increased Life and Mana Recovery from Flasks"],"connections":[],"group":922,"name":"Life and Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":19470},"9798":{"orbit":9,"orbitIndex":58,"connections":[{"orbit":0,"id":24868}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Skill Speed","ascendancyName":"Pathfinder","group":1438,"stats":["4% increased Skill Speed"],"skill":9798},"259":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":492,"connections":[],"stats":[],"skill":259},"17686":{"orbit":7,"orbitIndex":19,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":53996},{"orbit":0,"id":43575}],"group":839,"name":"Melee Damage ","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":17686},"50420":{"orbit":2,"orbitIndex":2,"stats":["10% increased Charm Charges gained"],"connections":[{"orbit":-2,"id":51241},{"orbit":0,"id":31364}],"group":1329,"name":"Charm Charges","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":50420},"29899":{"orbit":7,"orbitIndex":21,"recipe":["Suffering","Despair","Guilt"],"connections":[{"orbit":0,"id":19001},{"orbit":0,"id":6912}],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Finish Them","group":1084,"isNotable":true,"stats":["40% increased Culling Strike Threshold against Immobilised Enemies"],"skill":29899},"24481":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Recovery Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","group":1009,"connections":[],"stats":[],"skill":24481},"42103":{"orbit":3,"orbitIndex":0,"recipe":["Suffering","Greed","Despair"],"connections":[{"orbit":-2,"id":62427}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Enduring Deflection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1201,"isNotable":true,"stats":["20% increased Evasion Rating","Prevent +3% of Damage from Deflected Hits"],"skill":42103},"31295":{"orbit":3,"orbitIndex":21,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":9352}],"group":134,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":31295},"9736":{"orbit":4,"orbitIndex":42,"recipe":["Ire","Ire","Ire"],"connections":[{"orbit":0,"id":61318},{"orbit":0,"id":62235}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Insulated Treads","group":873,"isNotable":true,"stats":["Gain Ailment Threshold equal to the lowest of Evasion and Armour on your Boots"],"skill":9736},"13367":{"orbit":2,"orbitIndex":14,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":38969},{"orbit":0,"id":21713}],"group":1100,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":13367},"20649":{"orbit":0,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":62998},{"orbit":0,"id":2582},{"orbit":0,"id":65290}],"group":1363,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":20649},"59538":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":34912},{"orbit":0,"id":47976}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1315,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59538},"26331":{"orbit":7,"orbitIndex":18,"recipe":["Fear","Despair","Ire"],"connections":[{"orbit":0,"id":3128},{"orbit":0,"id":12166}],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Harsh Winter","group":1193,"isNotable":true,"stats":["8% increased Cast Speed with Cold Skills","16% increased Skill Effect Duration"],"skill":26331},"44213":{"orbit":7,"orbitIndex":5,"stats":["12% increased Armour","12% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":869}],"group":420,"name":"Armour and Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":44213},"60859":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":9,"id":4891}],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Charm Charges","ascendancyName":"Ritualist","group":1494,"stats":["15% increased Charm Charges gained"],"skill":60859},"37742":{"orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Fear"],"connections":[{"orbit":0,"id":15270},{"orbit":0,"id":8246}],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Manifold Method","group":1337,"isNotable":true,"stats":["50% increased amount of Mana Leeched","25% increased chance to inflict Ailments against Rare or Unique Enemies"],"skill":37742},"55846":{"orbit":1,"orbitIndex":5,"stats":["Gain 5 Life per enemy killed"],"connections":[{"orbit":0,"id":24239}],"group":1009,"name":"Life on Kill","icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":55846},"16276":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds","name":"Kitavan Imprint","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":57,"isNotable":true,"stats":["Body Armour grants 60% increased Glory generation"],"skill":16276},"60735":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":42658},{"orbit":0,"id":11825}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":1205,"stats":[],"skill":60735},"28718":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":627,"connections":[],"stats":[],"skill":28718},"48974":{"orbit":2,"orbitIndex":15,"recipe":["Ire","Envy","Guilt"],"connections":[{"orbit":0,"id":47418},{"orbit":0,"id":10738}],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Altered Brain Chemistry","group":1227,"isNotable":true,"stats":["25% increased Mana Recovery from Flasks","10% increased Mana Recovery Rate during Effect of any Mana Flask"],"skill":48974},"40783":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":11672},{"orbit":0,"id":15358},{"orbit":-4,"id":17711},{"orbit":0,"id":24035},{"orbit":0,"id":63009}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":808,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":40783},"64427":{"orbit":2,"orbitIndex":15,"stats":["6% increased Power Charge Duration","6% increased Elemental Infusion duration"],"connections":[],"group":885,"name":"Infusion and Power Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":64427},"3605":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds","name":"Unbound Encore","ascendancyName":"Chronomancer","group":357,"isNotable":true,"stats":["Grants Skill: Time Snap"],"skill":3605},"31757":{"orbit":6,"orbitIndex":9,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","name":"Physical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":136,"connectionArt":"CharacterPlanned","stats":[],"skill":31757},"17411":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":482,"connections":[],"stats":[],"skill":17411},"62973":{"orbit":3,"orbitIndex":1,"stats":["10% increased total Power counted by Warcries"],"connections":[{"orbit":0,"id":26070}],"group":333,"name":"Warcry Power Counted","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":62973},"22697":{"orbit":2,"orbitIndex":10,"stats":["+5% to Lightning Resistance"],"connections":[{"orbit":2,"id":43250}],"group":144,"name":"Lightning Resistance","icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","skill":22697},"4534":{"orbit":3,"orbitIndex":13,"recipe":["Disgust","Guilt","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Piercing Shot","group":1233,"isNotable":true,"stats":["50% chance to Pierce an Enemy"],"skill":4534},"45530":{"orbit":7,"orbitIndex":18,"stats":["Minions cause 15% increased Stun Buildup"],"connections":[{"orbit":-7,"id":55180}],"group":868,"name":"Minion Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":45530},"56762":{"orbit":2,"orbitIndex":20,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":28839}],"group":401,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":56762},"41838":{"orbit":7,"orbitIndex":4,"stats":["8% increased Skill Effect Duration","8% increased Stun Threshold"],"connections":[{"orbit":-8,"id":25429}],"group":604,"name":"Increased Duration and Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":41838},"4086":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds","name":"Strategic Embankments","ascendancyName":"Tactician","group":438,"isNotable":true,"stats":["Totems you place grant Embankment Auras"],"skill":4086},"19129":{"orbit":3,"orbitIndex":21,"stats":["15% increased Pin Buildup"],"connections":[{"orbit":0,"id":55066},{"orbit":0,"id":9290}],"group":716,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":19129},"18280":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameLargeCanAllocate","alloc":"RitualistFrameLargeAllocated","unalloc":"RitualistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds","name":"Mind Phylacteries","ascendancyName":"Ritualist","group":1484,"isNotable":true,"stats":["Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges"],"skill":18280},"27388":{"orbit":7,"orbitIndex":23,"recipe":["Suffering","Greed","Greed"],"connections":[{"orbit":0,"id":28578},{"orbit":0,"id":24551}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Aspiring Genius","group":280,"isNotable":true,"stats":["20% increased Mana Regeneration Rate","10% chance to Gain Arcane Surge when you deal a Critical Hit"],"skill":27388},"9069":{"orbit":2,"orbitIndex":4,"stats":["Triggered Spells deal 14% increased Spell Damage"],"connections":[{"orbit":0,"id":42245}],"group":1119,"name":"Triggered Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":9069},"57555":{"orbit":7,"orbitIndex":15,"stats":["15% chance to Impale on Spell Hit"],"connections":[{"orbit":0,"id":37608}],"group":654,"name":"Impale Chance","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":57555},"61263":{"orbit":2,"orbitIndex":11,"stats":["10% reduced Poison Duration on you"],"connections":[{"orbit":0,"id":4544}],"group":1113,"name":"Poison Duration on You","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","skill":61263},"53989":{"orbit":6,"orbitIndex":59,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":8,"id":29372}],"group":487,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":53989},"3128":{"orbit":7,"orbitIndex":14,"stats":["3% increased Cast Speed with Cold Skills"],"connections":[{"orbit":0,"id":19722}],"group":1191,"name":"Cast Speed with Cold Skills","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":3128},"34702":{"orbit":5,"orbitIndex":6,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":-4,"id":55664},{"orbit":-4,"id":63246},{"orbit":-7,"id":16568}],"group":1280,"name":"Damage and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":34702},"57819":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds","name":"Integrated Efficiency","ascendancyName":"Gemling Legionnaire","group":488,"isNotable":true,"stats":["Skills deal 20% increased Damage per Connected Red Support Gem","Skills have 6% increased Skill Speed per Connected Green Support Gem","Skills have 20% increased Critical Hit Chance per Connected Blue Support Gem"],"skill":57819},"25678":{"orbit":2,"orbitIndex":6,"connections":[{"orbit":2147483647,"id":49258}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"skill":25678},"32856":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3605},{"orbit":9,"id":10987}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cooldown Recovery Rate","ascendancyName":"Chronomancer","group":392,"stats":["6% increased Cooldown Recovery Rate"],"skill":32856},"3027":{"orbit":2,"orbitIndex":22,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":54228}],"group":212,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":3027},"50561":{"orbit":3,"orbitIndex":18,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":0,"id":12418}],"group":184,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":50561},"35618":{"orbit":7,"orbitIndex":15,"recipe":["Envy","Despair","Envy"],"connections":[{"orbit":0,"id":36504}],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Cold Coat","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":93,"isNotable":true,"stats":["25% increased Freeze Buildup","25% reduced Freeze Duration on you","25% increased Freeze Threshold"],"skill":35618},"55847":{"orbit":7,"orbitIndex":8,"recipe":["Fear","Paranoia","Disgust"],"connections":[{"orbit":0,"id":27274}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Ice Walls","group":1012,"isNotable":true,"stats":["200% increased Ice Crystal Life"],"skill":55847},"16620":{"orbit":3,"orbitIndex":10,"stats":["10% reduced Movement Speed Penalty while Actively Blocking"],"connections":[{"orbit":4,"id":21161}],"group":245,"name":"Movement Penalty with Raised Shield","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":16620},"11916":{"orbit":3,"orbitIndex":16,"stats":["Regenerate 0.2% of maximum Life per second"],"connections":[],"group":767,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":11916},"64690":{"orbit":3,"orbitIndex":23,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":-5,"id":5101},{"orbit":0,"id":46726}],"group":594,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":64690},"13065":{"orbit":8,"orbitIndex":14,"connections":[{"orbit":0,"id":63236}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Triggered Spell Damage","ascendancyName":"Invoker","group":1430,"stats":["Triggered Spells deal 16% increased Spell Damage"],"skill":13065},"29246":{"orbit":6,"orbitIndex":27,"stats":["10% increased Parried Debuff Magnitude"],"connections":[{"orbit":0,"id":22927},{"orbit":0,"id":35043}],"group":1342,"name":"Parried Debuff Magnitude","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":29246},"41701":{"orbit":2,"orbitIndex":6,"stats":["10% increased Endurance Charge Duration","10% increased Armour if you've consumed an Endurance Charge Recently"],"connections":[{"orbit":0,"id":11741},{"orbit":0,"id":11027}],"group":219,"name":"Endurance Charge Duration and Armour","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":41701},"57959":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":63401}],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds","name":"Coal Stoker","ascendancyName":"Smith of Kitava","group":9,"isNotable":true,"stats":["Modifiers to Fire Resistance also grant Cold and Lightning Resistance at 50% of their value"],"skill":57959},"43423":{"orbit":2,"orbitIndex":23,"recipe":["Suffering","Disgust","Greed"],"connections":[{"orbit":0,"id":48660}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Emboldened Avatar","group":1010,"isNotable":true,"stats":["50% increased Flammability Magnitude","25% increased Freeze Buildup","25% increased chance to Shock","25% increased Electrocute Buildup"],"skill":43423},"3896":{"orbit":7,"orbitIndex":19,"connections":[{"orbit":0,"id":56320}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Vale Dweller","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":399,"connectionArt":"CharacterPlanned","stats":["50% increased Armour while Bleeding","50% reduced Magnitude of Bleeding on You"],"skill":3896},"27726":{"orbit":2,"orbitIndex":8,"stats":["15% increased Armour"],"connections":[{"orbit":-4,"id":7721}],"group":579,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":27726},"6008":{"orbit":2,"orbitIndex":19,"stats":["10% increased Spell Damage"],"connections":[{"orbit":2,"id":58096}],"group":482,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":6008},"55572":{"orbit":7,"orbitIndex":20,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"connections":[{"orbit":0,"id":57626}],"group":784,"name":"Cold and Fire Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":55572},"40117":{"orbit":7,"orbitIndex":4,"recipe":["Despair","Guilt","Disgust"],"connections":[{"orbit":0,"id":64023}],"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","name":"Spiked Armour","group":259,"isNotable":true,"stats":["Thorns Damage has 50% chance to ignore Enemy Armour"],"skill":40117},"41965":{"orbit":2,"orbitIndex":21,"connections":[{"orbit":-6,"id":1755}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"id":37463,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage"}},"group":723,"isSwitchable":true,"stats":["8% increased Spell Damage"],"skill":41965},"13895":{"orbit":5,"orbitIndex":10,"recipe":["Guilt","Envy","Despair"],"connections":[{"orbit":0,"id":36071}],"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","name":"Precise Point","group":1322,"isNotable":true,"stats":["25% increased Damage with Spears","25% increased Accuracy Rating with Spears"],"skill":13895},"46726":{"orbit":7,"orbitIndex":1,"recipe":["Envy","Paranoia","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Reformed Barrier","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","group":594,"isNotable":true,"stats":["Your Energy Shield Recharge starts when your Minions are Reformed"],"skill":46726},"63236":{"orbit":6,"orbitIndex":17,"connections":[],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds","name":"The Soul Springs Eternal","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Meta Skills gain 35% more Energy","Meta Skills have 50% increased Reservation Efficiency"],"skill":63236},"38535":{"orbit":4,"orbitIndex":66,"recipe":["Fear","Fear","Envy"],"connections":[{"orbit":7,"id":61063},{"orbit":0,"id":42205}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Stormcharged","group":343,"isNotable":true,"stats":["40% increased Elemental Damage if you've dealt a Critical Hit Recently","15% increased Critical Hit Chance"],"skill":38535},"49363":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds","name":"Wildsurge Incantation","group":532,"isKeystone":true,"stats":["Storm and Plant Spells:","deal 50% more damage","cost 50% less","have 75% less duration"],"skill":49363},"51213":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Despair"],"connections":[{"orbit":5,"id":64747}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Wasting","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","group":1071,"isNotable":true,"stats":["15% increased Duration of Damaging Ailments on Enemies","30% increased Damage with Hits against Enemies affected by Ailments"],"skill":51213},"48836":{"orbit":7,"orbitIndex":16,"stats":["+10% Surpassing chance to fire an additional Arrow"],"connections":[{"orbit":0,"id":33542}],"group":1417,"name":"Surpassing Arrow Chance","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":48836},"1143":{"orbit":2,"orbitIndex":5,"connections":[{"orbit":0,"id":58170},{"orbit":0,"id":50084}],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","options":{"Druid":{"stats":["Regenerate 0.2% of maximum Life per second"],"id":57726,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration"}},"group":626,"isSwitchable":true,"stats":["15% increased Critical Spell Damage Bonus"],"skill":1143},"3640":{"orbit":3,"orbitIndex":7,"stats":["5% increased Attack Damage","5% Chance to build an additional Combo on Hit"],"connections":[{"orbit":2147483647,"id":37780},{"orbit":2147483647,"id":17724},{"orbit":0,"id":14267}],"group":1372,"name":"Attack Damage and Combo","icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","skill":3640},"58751":{"orbit":8,"orbitIndex":0,"connections":[{"orbit":0,"id":17788}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Energy Shield","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":35941,"stats":["20% increased maximum Energy Shield"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Energy Shield"}},"group":1120,"isSwitchable":true,"stats":["20% increased maximum Energy Shield"],"skill":58751},"46990":{"orbit":9,"orbitIndex":48,"connections":[{"orbit":0,"id":3987},{"orbit":0,"id":39723},{"orbit":0,"id":49165},{"orbit":0,"id":24295},{"orbit":0,"id":61461}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Deadeye","ascendancyName":"Deadeye","isAscendancyStart":true,"group":1427,"stats":[],"skill":46990},"43282":{"orbit":6,"orbitIndex":49,"stats":["12% increased Elemental Damage while Shapeshifted"],"connections":[],"group":201,"name":"Shapeshifted Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":43282},"27990":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-3,"id":49049}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Slow Effect","ascendancyName":"Chronomancer","group":375,"stats":["Debuffs you inflict have 6% increased Slow Magnitude"],"skill":27990},"32549":{"orbit":2,"orbitIndex":14,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"connections":[{"orbit":-2,"id":29098},{"orbit":3,"id":32474}],"group":165,"name":"Attack and Spell Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":32549},"52796":{"orbit":4,"orbitIndex":66,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"connections":[{"orbit":-6,"id":30371}],"group":174,"name":"Shield Damage","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":52796},"36286":{"orbit":1,"orbitIndex":5,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":41130},{"orbit":0,"id":14033},{"orbit":0,"id":34058}],"group":660,"name":"Spell and Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":36286},"48171":{"orbit":4,"orbitIndex":13,"stats":["12% increased Cold Damage"],"connections":[],"group":244,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":48171},"15842":{"orbit":3,"orbitIndex":10,"isOnlyImage":true,"icon":"","name":"Minion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":[],"skill":15842},"33245":{"orbit":1,"orbitIndex":3,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":9151},{"orbit":-7,"id":31918},{"orbit":7,"id":45331}],"group":1233,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":33245},"18742":{"orbit":3,"orbitIndex":6,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":-6,"id":7721},{"orbit":0,"id":62732}],"group":567,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":18742},"51741":{"orbit":6,"orbitIndex":12,"connections":[{"orbit":0,"id":61834},{"orbit":-4,"id":57230},{"orbit":0,"id":57821},{"orbit":0,"id":45798},{"orbit":0,"id":15424}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1172,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":51741},"34300":{"orbit":2,"orbitIndex":22,"recipe":["Disgust","Disgust","Ire"],"connections":[{"orbit":0,"id":45481},{"orbit":0,"id":13862}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Conservative Casting","group":1059,"isNotable":true,"stats":["20% increased Mana Regeneration Rate","15% increased Mana Cost Efficiency"],"skill":34300},"38923":{"orbit":7,"orbitIndex":14,"stats":["3% increased Skill Speed"],"connections":[{"orbit":3,"id":61429},{"orbit":-3,"id":511}],"group":189,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":38923},"17024":{"orbit":0,"orbitIndex":0,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"connections":[{"orbit":0,"id":37372}],"group":926,"name":"Lightning Skill Speed","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":17024},"20251":{"orbit":3,"orbitIndex":23,"recipe":["Suffering","Suffering","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Splitting Ground","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":114,"isNotable":true,"stats":["Skills which create Fissures have a 20% chance to create an additional Fissure"],"skill":20251},"10295":{"orbit":5,"orbitIndex":30,"recipe":["Fear","Despair","Isolation"],"connections":[{"orbit":0,"id":27733}],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Overzealous","group":266,"isNotable":true,"stats":["16% increased Cast Speed","15% increased Mana Cost of Skills"],"skill":10295},"31888":{"orbit":2,"orbitIndex":4,"stats":["8% increased Mana Cost Efficiency"],"connections":[{"orbit":0,"id":34300}],"group":1059,"name":"Mana Cost Efficiency","icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":31888},"7395":{"orbit":3,"orbitIndex":10,"recipe":["Ire","Fear","Suffering"],"connections":[{"orbit":0,"id":30007},{"orbit":0,"id":46051}],"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","name":"Retaliation","group":94,"isNotable":true,"stats":["75% increased Thorns damage if you've Blocked Recently"],"skill":7395},"48699":{"orbit":7,"orbitIndex":6,"recipe":["Paranoia","Fear","Suffering"],"connections":[{"orbit":0,"id":14601}],"icon":"Art/2DArt/SkillIcons/passives/frostborn.dds","name":"Frostwalker","group":689,"isNotable":true,"stats":["40% reduced Effect of Chill on you","Gain 15% of Damage as Extra Cold Damage while on Chilled Ground"],"skill":48699},"3516":{"orbit":7,"orbitIndex":0,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":62039},{"orbit":0,"id":23227}],"group":596,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":3516},"36814":{"orbit":7,"orbitIndex":6,"stats":["20% increased Curse Duration"],"connections":[],"group":814,"name":"Curse Duration","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":36814},"51210":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":192,"connections":[],"stats":[],"skill":51210},"34968":{"orbit":7,"orbitIndex":10,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":64637}],"group":1358,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":34968},"61393":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage while Shapeshifted"],"connections":[{"orbit":-7,"id":43941}],"group":110,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":61393},"19006":{"orbit":2,"orbitIndex":18,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"connections":[{"orbit":0,"id":39461}],"group":617,"name":"Minion Damage and Life","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":19006},"29369":{"orbit":4,"orbitIndex":42,"stats":["15% increased Magnitude of Chill you inflict"],"connections":[{"orbit":5,"id":11337},{"orbit":-4,"id":41669}],"group":749,"name":"Chill Magnitude","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":29369},"22962":{"orbit":7,"orbitIndex":14,"stats":["20% chance for Attack Hits to apply Incision"],"connections":[{"orbit":0,"id":22817}],"group":1240,"name":"Incision Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":22962},"4059":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":10382},{"orbit":0,"id":9510},{"orbit":0,"id":2446},{"orbit":7,"id":18744},{"orbit":-7,"id":42339}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1078,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":4059},"46060":{"orbit":7,"orbitIndex":0,"recipe":["Greed","Isolation","Suffering"],"connections":[{"orbit":-2,"id":29270},{"orbit":0,"id":7488}],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Voracious","group":550,"isNotable":true,"stats":["20% of Leech is Instant"],"skill":46060},"37869":{"orbit":7,"orbitIndex":16,"stats":["Inherent Rage loss starts 1 second later"],"connections":[{"orbit":-2,"id":60068},{"orbit":0,"id":21413}],"group":176,"name":"Later Rage Loss Start","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":37869},"47782":{"orbit":4,"orbitIndex":54,"recipe":["Envy","Disgust","Ire"],"connections":[{"orbit":4,"id":38003},{"orbit":-4,"id":28361}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Steady Footing","group":758,"isNotable":true,"stats":["40% increased Stun Threshold","20% increased Stun Threshold if you haven't been Stunned Recently"],"skill":47782},"9698":{"orbit":2,"orbitIndex":22,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":223,"connections":[],"stats":[],"skill":9698},"54127":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54282},{"orbit":0,"id":15182},{"orbit":0,"id":56978}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":762,"stats":[],"skill":54127},"32474":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":29611},{"orbit":0,"id":47931},{"orbit":0,"id":55888},{"orbit":-9,"id":36025},{"orbit":0,"id":61942}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":142,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":32474},"37078":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds","name":"Zealous Inquisition","ascendancyName":"Witchhunter","group":335,"isNotable":true,"stats":["10% chance for Enemies you Kill to Explode, dealing 100%","of their maximum Life as Physical Damage","Chance is doubled against Undead and Demons"],"skill":37078},"7721":{"orbit":4,"orbitIndex":45,"connections":[{"orbit":0,"id":54232},{"orbit":3,"id":61534},{"orbit":-6,"id":18629},{"orbit":0,"id":64683}],"icon":"Art/2DArt/SkillIcons/passives/Warrior.dds","name":"Relentless","group":631,"isNotable":true,"stats":["15% increased Armour","Regenerate 0.5% of maximum Life per second","+10 to Strength"],"skill":7721},"16947":{"orbit":4,"orbitIndex":54,"connections":[{"orbit":0,"id":18713}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shelter from the Rain","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["40% faster start of Energy Shield Recharge","15% increased Block chance"],"skill":16947},"56505":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":4197}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Immobilisation Buildup","ascendancyName":"Oracle","group":13,"stats":["20% increased Immobilisation buildup"],"skill":56505},"35760":{"orbit":3,"orbitIndex":8,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":6,"id":22359}],"group":1022,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":35760},"61921":{"orbit":3,"orbitIndex":23,"recipe":["Envy","Isolation","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Storm Surge","group":1245,"isNotable":true,"stats":["Damage Penetrates 8% Cold Resistance","Damage Penetrates 15% Lightning Resistance"],"skill":61921},"32416":{"orbit":2,"orbitIndex":16,"connections":[{"orbit":-3,"id":27726}],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Sturdy Metal","group":579,"isNotable":true,"stats":["80% increased Armour from Equipped Body Armour"],"skill":32416},"56893":{"orbit":7,"orbitIndex":16,"recipe":["Paranoia","Fear","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","name":"Thicket Warding","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","group":1202,"isNotable":true,"stats":["20% chance for Charms you use to not consume Charges","Recover 5% of maximum Mana when a Charm is used"],"skill":56893},"45923":{"orbit":6,"orbitIndex":31,"connections":[{"orbit":0,"id":50084},{"orbit":0,"id":52319}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":606,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":45923},"38537":{"orbit":2,"orbitIndex":21,"recipe":["Ire","Despair","Paranoia"],"connections":[{"orbit":-3,"id":54983},{"orbit":0,"id":51583}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Heartstopping","group":1410,"isNotable":true,"stats":["+10 to Intelligence","20% increased Critical Hit Chance"],"skill":38537},"54380":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","name":"Poison Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":421,"connectionArt":"CharacterPlanned","stats":[],"skill":54380},"62185":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Rattled","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1226,"isNotable":true,"stats":["+20 to maximum Mana","50% increased Shock Duration"],"skill":62185},"292":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":436,"connections":[],"stats":[],"skill":292},"39716":{"orbit":2,"orbitIndex":12,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":0,"id":31326}],"group":586,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":39716},"59542":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":42416}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds","name":"Far Shot","ascendancyName":"Deadeye","group":1431,"isMultipleChoiceOption":true,"stats":["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"],"skill":59542},"44605":{"orbit":5,"orbitIndex":21,"connections":[{"orbit":-6,"id":59881},{"orbit":0,"id":13081}],"icon":"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds","name":"Remorseless","group":730,"isNotable":true,"stats":["15% increased Projectile Damage","30% increased Stun Buildup against enemies within 2 metres","+5 to Strength and Dexterity"],"skill":44605},"8938":{"orbit":3,"orbitIndex":16,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":-4,"id":33229}],"group":1080,"name":"Bleed Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":8938},"53589":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":25374}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":625,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":53589},"13562":{"orbit":7,"orbitIndex":18,"stats":["15% increased Life Regeneration Rate while on Low Life"],"connections":[{"orbit":3,"id":23650}],"group":572,"name":"Life Regeneration on Low Life","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":13562},"6800":{"orbit":0,"orbitIndex":0,"stats":["11% increased Chaos Damage"],"connections":[{"orbit":4,"id":32438}],"group":1246,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":6800},"16":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":7,"id":41619}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Life Flask Charges","ascendancyName":"Pathfinder","group":1447,"stats":["20% increased Life Flask Charges gained"],"skill":16},"64819":{"orbit":4,"orbitIndex":48,"stats":["6% increased Fire Damage","10% increased Armour"],"connections":[{"orbit":-3,"id":47753}],"group":92,"name":"Fire Damage and Armour ","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":64819},"8171":{"orbit":7,"orbitIndex":22,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":45162}],"group":211,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":8171},"58088":{"orbit":4,"orbitIndex":36,"stats":["4% increased Block chance","5% reduced Movement Speed Penalty while Actively Blocking"],"connections":[{"orbit":5,"id":16620}],"group":245,"name":"Block and Movement Penalty with Raised Shield","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":58088},"40244":{"orbit":7,"orbitIndex":16,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"connections":[{"orbit":-3,"id":43263}],"group":1144,"name":"One Handed Attack Speed","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":40244},"52003":{"orbit":2,"orbitIndex":18,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":708,"connections":[],"stats":[],"skill":52003},"23630":{"orbit":4,"orbitIndex":0,"recipe":["Suffering","Despair","Fear"],"connections":[{"orbit":7,"id":19794},{"orbit":7,"id":17885},{"orbit":0,"id":38320}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Self Immolation","group":92,"isNotable":true,"stats":["Ignites you cause are reflected back to you","40% reduced Magnitude of Ignite on you"],"skill":23630},"38398":{"orbit":7,"orbitIndex":14,"recipe":["Suffering","Paranoia","Greed"],"connections":[{"orbit":7,"id":2211}],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Apocalypse","group":539,"isNotable":true,"stats":["30% reduced Damage","+8% to Critical Hit Chance of Herald Skills"],"skill":38398},"13500":{"orbit":3,"orbitIndex":2,"stats":["3% of Damage taken Recouped as Mana"],"connections":[{"orbit":-3,"id":41044},{"orbit":0,"id":44733}],"group":509,"name":"Mana Recoup","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":13500},"42354":{"orbit":2,"orbitIndex":0,"recipe":["Ire","Guilt","Ire"],"connections":[{"orbit":2,"id":43562},{"orbit":7,"id":3660}],"icon":"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds","name":"Blinding Flash","group":804,"isNotable":true,"stats":["20% increased Blind Effect","Blind Enemies when they Stun you"],"skill":42354},"56890":{"orbit":5,"orbitIndex":69,"connections":[{"orbit":0,"id":12005}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","name":"Endlessly Soaring","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":201,"connectionArt":"CharacterPlanned","stats":["Shapeshift Skills have 30% increased Skill Effect Duration"],"skill":56890},"57683":{"orbit":2,"orbitIndex":11,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":2,"id":35031}],"group":1404,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","skill":57683},"45798":{"orbit":3,"orbitIndex":13,"stats":["3% chance to gain Volatility on Kill"],"connections":[{"orbit":-7,"id":62578},{"orbit":7,"id":46615}],"group":1220,"name":"Volatility on Kill","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":45798},"27262":{"orbit":0,"orbitIndex":0,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"connections":[{"orbit":7,"id":49110}],"group":1070,"name":"Ailment Chance and Effect","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":27262},"36025":{"orbit":6,"orbitIndex":30,"connections":[{"orbit":2147483647,"id":44309}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Minions deal 12% increased Damage"],"skill":36025},"1915":{"orbit":7,"orbitIndex":21,"stats":["10% increased Critical Hit Chance against Humanoids"],"connections":[{"orbit":0,"id":60085}],"group":854,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":1915},"7341":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Fear","Suffering"],"connections":[{"orbit":0,"id":33244}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Ignore Pain","group":337,"isNotable":true,"stats":["Gain 3 Rage when Hit by an Enemy","Every Rage also grants 2% increased Stun Threshold"],"skill":7341},"11087":{"orbit":2,"orbitIndex":1,"stats":["Channelling Skills deal 12% increased Damage"],"connections":[{"orbit":0,"id":42635}],"group":265,"name":"Channelling Damage","icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","skill":11087},"32151":{"orbit":4,"orbitIndex":60,"recipe":["Isolation","Fear","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Crystalline Resistance","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":650,"isNotable":true,"stats":["+1% to all Maximum Elemental Resistances if you have at","least 5 Red, Green and Blue Support Gems Socketed"],"skill":32151},"16618":{"orbit":5,"orbitIndex":24,"recipe":["Greed","Fear","Envy"],"connections":[{"orbit":0,"id":24511},{"orbit":0,"id":4492}],"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Jack of all Trades","group":761,"isNotable":true,"stats":["2% increased Damage per 5 of your lowest Attribute"],"skill":16618},"31284":{"orbit":1,"orbitIndex":3,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1160,"connections":[{"orbit":0,"id":21380}],"stats":[],"skill":31284},"23091":{"orbit":3,"orbitIndex":10,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":45885},{"orbit":0,"id":39515}],"group":685,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":23091},"51868":{"orbit":5,"orbitIndex":64,"recipe":["Guilt","Disgust","Suffering"],"connections":[{"orbit":3,"id":19794},{"orbit":0,"id":38320}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Molten Carapace","group":92,"isNotable":true,"stats":["50% increased Armour while Ignited","+2% to Maximum Fire Resistance while Ignited","50% increased Fire Damage while Ignited"],"skill":51868},"39050":{"orbit":2,"orbitIndex":4,"recipe":["Disgust","Envy","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Exploit","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1165,"isNotable":true,"stats":["25% increased Damage with Hits against Enemies affected by Elemental Ailments","15% increased Duration of Ignite, Shock and Chill on Enemies"],"skill":39050},"27980":{"orbit":2,"orbitIndex":12,"stats":["Gain 2 Rage when Hit by an Enemy"],"connections":[{"orbit":-2,"id":270},{"orbit":2,"id":28981}],"group":182,"name":"Rage when Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":27980},"39857":{"orbit":7,"orbitIndex":20,"connections":[{"orbit":0,"id":4663}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Mentorship","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":376,"connectionArt":"CharacterPlanned","stats":["Minions have 15% reduced Attack Speed","Minions have 15% reduced Cast Speed","Minions deal 100% increased Damage with Command Skills"],"skill":39857},"32349":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3446}],"icon":"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds","name":"Giant's Blood","group":203,"isKeystone":true,"stats":["You can wield Two-Handed Axes, Maces and Swords in one hand","Triple Attribute requirements of Martial Weapons","Inherent Life granted by Strength is halved"],"skill":32349},"55700":{"orbit":2,"orbitIndex":8,"stats":["+3 to all Attributes"],"connections":[{"orbit":2147483647,"id":44983}],"group":650,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":55700},"26196":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":11741},{"orbit":0,"id":39710}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":258,"stats":[],"skill":26196},"54785":{"orbit":2,"orbitIndex":7,"stats":["5% increased Block chance"],"connections":[{"orbit":0,"id":32885}],"group":677,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":54785},"3458":{"orbit":2,"orbitIndex":23,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":-4,"id":45609}],"group":1131,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":3458},"31746":{"orbit":4,"orbitIndex":24,"stats":["Damage Penetrates 8% Fire Resistance"],"connections":[{"orbit":4,"id":32845},{"orbit":-4,"id":41012}],"group":92,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":31746},"32845":{"orbit":5,"orbitIndex":36,"stats":["10% increased Fire Damage"],"connections":[{"orbit":4,"id":64819}],"group":92,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":32845},"56767":{"orbit":7,"orbitIndex":13,"recipe":["Isolation","Disgust","Envy"],"connections":[{"orbit":0,"id":19461},{"orbit":0,"id":1416}],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Electrifying Daze","group":1295,"isNotable":true,"stats":["5% chance to Daze on Hit","Gain 12% of Physical Damage as Extra Lightning Damage against Dazed Enemies"],"skill":56767},"46854":{"orbit":3,"orbitIndex":8,"connections":[{"orbit":0,"id":12033},{"orbit":0,"id":42416}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Speed","ascendancyName":"Deadeye","group":1427,"stats":["10% increased Projectile Speed"],"skill":46854},"38663":{"orbit":7,"orbitIndex":6,"stats":["10% increased Melee Critical Hit Chance"],"connections":[{"orbit":0,"id":3516}],"group":597,"name":"Melee Critical Chance","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":38663},"35095":{"orbit":2,"orbitIndex":20,"stats":["10% increased Chaos Damage"],"connections":[{"orbit":2,"id":41886}],"group":1356,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","skill":35095},"24224":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds","name":"Axe Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern","group":172,"connections":[],"stats":[],"skill":24224},"54378":{"orbit":2,"orbitIndex":13,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"connections":[{"orbit":0,"id":26863},{"orbit":0,"id":58198}],"group":339,"name":"Recover Mana on consuming Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":54378},"37608":{"orbit":4,"orbitIndex":51,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":53524},{"orbit":0,"id":61042}],"group":654,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":37608},"48035":{"orbit":2,"orbitIndex":3,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":11329}],"group":541,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":48035},"44343":{"orbit":5,"orbitIndex":36,"connections":[{"orbit":0,"id":55276}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":878,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":44343},"25337":{"orbit":7,"orbitIndex":19,"connections":[{"orbit":0,"id":34990}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":421,"connectionArt":"CharacterPlanned","stats":["10% chance to Poison on Hit"],"skill":25337},"9272":{"orbit":1,"orbitIndex":0,"stats":["10% increased Pin duration"],"connections":[{"orbit":0,"id":12906}],"group":939,"name":"Pin Duration","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":9272},"37872":{"orbit":7,"orbitIndex":4,"recipe":["Ire","Fear","Isolation"],"connections":[{"orbit":0,"id":28863}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Presence Present","group":800,"isNotable":true,"stats":["Allies in your Presence have +100 to Accuracy Rating","35% increased Attack Damage while you have an Ally in your Presence"],"skill":37872},"7473":{"orbit":7,"orbitIndex":23,"stats":["Herald Skills deal 20% increased Damage"],"connections":[{"orbit":-4,"id":64471}],"group":539,"name":"Herald Damage","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":7473},"56104":{"orbit":3,"orbitIndex":16,"stats":["Break 20% increased Armour"],"connections":[],"group":640,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":56104},"52800":{"orbit":6,"orbitIndex":54,"stats":["+8% Surpassing chance to fire an additional Arrow"],"connections":[{"orbit":0,"id":57615}],"group":1417,"name":"Surpassing Arrow Chance","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":52800},"47242":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":257,"connections":[],"stats":[],"skill":47242},"42761":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-9,"id":11335},{"orbit":6,"id":21284},{"orbit":5,"id":56505},{"orbit":8,"id":39659},{"orbit":3,"id":25092},{"orbit":4,"id":15275}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Oracle","ascendancyName":"Oracle","isAscendancyStart":true,"group":1,"stats":[],"skill":42761},"25213":{"orbit":7,"orbitIndex":12,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"connections":[{"orbit":0,"id":19223}],"group":800,"name":"Attack Damage with nearby Ally","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":25213},"17088":{"orbit":6,"orbitIndex":48,"connections":[{"orbit":4,"id":51416}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1172,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":17088},"53188":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":954,"connections":[],"stats":[],"skill":53188},"45272":{"orbit":5,"orbitIndex":0,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":42280}],"group":761,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":45272},"43938":{"orbit":6,"orbitIndex":39,"stats":["6% increased Trap Throwing Speed"],"connections":[{"orbit":0,"id":37688}],"group":1347,"name":"Trap Throw Speed","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":43938},"30102":{"orbit":2,"orbitIndex":23,"stats":["3% chance to gain Volatility on Kill"],"connections":[{"orbit":2147483647,"id":43944},{"orbit":0,"id":53177}],"group":1220,"name":"Volatility on Kill","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":30102},"60324":{"orbit":2,"orbitIndex":14,"stats":["Remnants can be collected from 20% further away"],"connections":[{"orbit":2,"id":1506}],"group":1057,"name":"Remnant Pickup Range","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":60324},"41163":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1353,"connections":[],"stats":[],"skill":41163},"30829":{"orbit":2,"orbitIndex":0,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":56999}],"group":924,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":30829},"18407":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":698,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":18407},"15083":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Suffering","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Power Conduction","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":803,"isNotable":true,"stats":["25% increased Shock Duration","25% increased Magnitude of Shock you inflict"],"skill":15083},"12337":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Ire","Isolation"],"connections":[{"orbit":0,"id":5295}],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Flash Storm","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":947,"isNotable":true,"stats":["30% increased chance to Shock","Damage Penetrates 15% Lightning Resistance"],"skill":12337},"60464":{"orbit":4,"orbitIndex":45,"recipe":["Suffering","Paranoia","Despair"],"connections":[{"orbit":-6,"id":58971},{"orbit":0,"id":28623}],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Fan the Flames","group":1217,"isNotable":true,"stats":["25% reduced Ignite Duration on you","40% increased Elemental Ailment Threshold"],"skill":60464},"50423":{"orbit":6,"orbitIndex":57,"connections":[{"orbit":0,"id":38856},{"orbit":0,"id":23364},{"orbit":0,"id":56547}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":620,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":50423},"32274":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":863,"connections":[],"stats":[],"skill":32274},"46857":{"orbit":3,"orbitIndex":22,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":42916}],"group":268,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":46857},"43149":{"orbit":2,"orbitIndex":20,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"connections":[{"orbit":0,"id":40292}],"group":295,"name":"Attack Damage and Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":43149},"59795":{"orbit":5,"orbitIndex":33,"connections":[{"orbit":-3,"id":10156}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":648,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59795},"3365":{"orbit":2,"orbitIndex":17,"stats":["15% increased Immobilisation buildup"],"connections":[{"orbit":0,"id":59289}],"group":818,"name":"Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":3365},"18465":{"orbit":4,"orbitIndex":44,"connections":[{"orbit":0,"id":39540}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Cruel Fate","isSwitchable":true,"options":{"Druid":{"stats":["10% increased Critical Hit Chance while Shapeshifted","8% increased Skill Speed while Shapeshifted"],"id":50882,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds","name":"Primal Spirit"}},"group":551,"isNotable":true,"stats":["20% increased Critical Damage Bonus","20% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"skill":18465},"2814":{"orbit":3,"orbitIndex":5,"recipe":["Ire","Despair","Isolation"],"connections":[{"orbit":0,"id":41447},{"orbit":0,"id":19749}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Engineered Blaze","group":961,"isNotable":true,"stats":["4% increased Area of Effect for Attacks per Enemy you've Ignited in the last 8 seconds, up to 40%"],"skill":2814},"8737":{"orbit":0,"orbitIndex":0,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":41511},{"orbit":-7,"id":25927},{"orbit":-2,"id":6077},{"orbit":-2,"id":56284}],"group":516,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":8737},"50687":{"orbit":7,"orbitIndex":14,"recipe":["Envy","Disgust","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Coursing Energy","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":709,"isNotable":true,"stats":["40% increased Electrocute Buildup","30% increased Shock Chance against Electrocuted Enemies"],"skill":50687},"25807":{"orbit":0,"orbitIndex":0,"stats":["15% increased Crossbow Reload Speed"],"connections":[{"orbit":0,"id":53683}],"group":856,"name":"Crossbow Reload Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":25807},"65353":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Banner Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","group":491,"connections":[],"stats":[],"skill":65353},"178":{"orbit":5,"orbitIndex":30,"stats":["8% increased Reservation Efficiency of Herald Skills"],"connections":[],"group":1381,"name":"Herald Reservation","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":178},"56493":{"orbit":3,"orbitIndex":3,"recipe":["Greed","Greed","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Agile Succession","group":1110,"isNotable":true,"stats":["6% increased Attack Speed","30% increased Evasion Rating if you have Hit an Enemy Recently"],"skill":56493},"42760":{"orbit":1,"orbitIndex":4,"recipe":["Greed","Fear","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Chakra of Stability","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":1235,"isNotable":true,"stats":["30% increased Stun Recovery","Regenerate 3% of maximum Life over 1 second when Stunned","+1 to Stun Threshold per Dexterity"],"skill":42760},"29763":{"orbit":0,"orbitIndex":0,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":39423}],"group":1096,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":29763},"60992":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Despair","Suffering"],"connections":[{"orbit":0,"id":37971}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Nurturing Guardian","group":1421,"isNotable":true,"stats":["Life Recovery from your Flasks also applies to your Companions"],"skill":60992},"43677":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Crippling Toxins","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1073,"isNotable":true,"stats":["25% chance for Attacks to Maim on Hit against Poisoned Enemies","25% increased Magnitude of Poison you inflict"],"skill":43677},"18004":{"orbit":3,"orbitIndex":3,"stats":["Inherent Rage loss starts 1 second later"],"connections":[{"orbit":0,"id":8881}],"group":286,"name":"Later Rage Loss Start","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":18004},"7163":{"orbit":5,"orbitIndex":45,"recipe":["Despair","Greed","Greed"],"connections":[{"orbit":3,"id":45100},{"orbit":0,"id":23013}],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Stimulants","group":1173,"isNotable":true,"stats":["16% increased Attack Speed during any Flask Effect"],"skill":7163},"64948":{"orbit":2,"orbitIndex":20,"stats":["Aura Skills have 5% increased Magnitudes"],"connections":[{"orbit":0,"id":48264}],"group":264,"name":"Aura Effect","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":64948},"56757":{"orbit":2,"orbitIndex":10,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":0,"id":10100}],"group":168,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":56757},"21572":{"orbit":2,"orbitIndex":20,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"connections":[{"orbit":-7,"id":6660},{"orbit":0,"id":7526}],"group":1165,"name":"Damage against Ailments","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":21572},"54783":{"orbit":1,"orbitIndex":10,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":850,"connections":[],"stats":[],"skill":54783},"63891":{"orbit":1,"orbitIndex":7,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":0,"id":63074}],"group":881,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":63891},"37594":{"orbit":5,"orbitIndex":38,"stats":["Minions deal 12% increased Damage"],"connections":[{"orbit":0,"id":8983}],"group":460,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":37594},"60323":{"orbit":6,"orbitIndex":54,"stats":["+8% Surpassing chance to fire an additional Projectile"],"connections":[{"orbit":0,"id":9199},{"orbit":0,"id":47560}],"group":1233,"name":"Surpassing Projectile Chance","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":60323},"43941":{"orbit":0,"orbitIndex":0,"stats":["3% increased Skill Speed while Shapeshifted"],"connections":[{"orbit":-7,"id":48314}],"group":103,"name":"Shapeshifted Skill Speed","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":43941},"12601":{"orbit":2,"orbitIndex":2,"connections":[{"orbit":0,"id":50908},{"orbit":2147483647,"id":35745}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":611,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"skill":12601},"49357":{"orbit":6,"orbitIndex":0,"connections":[{"orbit":0,"id":32194},{"orbit":-9,"id":51618}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":551,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":49357},"31745":{"orbit":4,"orbitIndex":48,"recipe":["Guilt","Despair","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Lockdown","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":939,"isNotable":true,"stats":["40% increased Attack Damage against Maimed Enemies","Enemies are Maimed for 4 seconds after becoming Unpinned"],"skill":31745},"261":{"orbit":3,"orbitIndex":13,"recipe":["Suffering","Guilt","Disgust"],"connections":[{"orbit":0,"id":1205}],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Toxic Sludge","group":1351,"isNotable":true,"stats":["40% increased Duration of Poisons you inflict against Slowed Enemies"],"skill":261},"26798":{"orbit":0,"orbitIndex":0,"stats":["3% increased Skill Speed"],"connections":[{"orbit":-7,"id":9638}],"group":454,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":26798},"25014":{"orbit":3,"orbitIndex":6,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":0,"id":50228}],"group":222,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":25014},"24287":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":34015},{"orbit":0,"id":14226}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1324,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":24287},"57021":{"orbit":3,"orbitIndex":16,"stats":["Minions have 8% increased Area of Effect"],"connections":[{"orbit":0,"id":8957},{"orbit":0,"id":45343},{"orbit":0,"id":14505}],"group":460,"name":"Minion Area","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":57021},"32847":{"orbit":0,"orbitIndex":0,"stats":["Minions deal 20% increased Damage with Command Skills"],"connections":[],"group":501,"name":"Command Skill Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":32847},"40511":{"orbit":7,"orbitIndex":4,"connections":[{"orbit":0,"id":55375}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":291,"connectionArt":"CharacterPlanned","stats":["Minions have 12% increased maximum Life"],"skill":40511},"3431":{"orbit":1,"orbitIndex":6,"stats":["3% increased Skill Speed"],"connections":[{"orbit":0,"id":43082}],"group":1297,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":3431},"56897":{"orbit":7,"orbitIndex":10,"stats":["10% increased Ballista Critical Damage Bonus"],"connections":[],"group":886,"name":"Ballista Critical Damage","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":56897},"64031":{"orbit":3,"orbitIndex":4,"connections":[],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds","name":"...and I Shall Rage","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Grants Skill: Unbound Avatar"],"skill":64031},"49497":{"orbit":7,"orbitIndex":6,"stats":["5% increased Culling Strike Threshold"],"connections":[{"orbit":0,"id":23244}],"group":1084,"name":"Culling Strike Threshold","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":49497},"50816":{"orbit":5,"orbitIndex":67,"stats":["+8 to Intelligence"],"connections":[{"orbit":-9,"id":46554},{"orbit":0,"id":39567},{"orbit":-5,"id":37974}],"group":954,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":50816},"30820":{"orbit":7,"orbitIndex":16,"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"connections":[{"orbit":0,"id":26786}],"group":985,"name":"Attack Damage and Skill Duration","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":30820},"64683":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","name":"Armour Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":631,"connections":[],"stats":[],"skill":64683},"7576":{"orbit":0,"orbitIndex":0,"stats":["8% increased Attack Damage"],"connections":[{"orbit":0,"id":33866}],"group":871,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":7576},"44345":{"orbit":0,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":48833}],"group":958,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":44345},"24551":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":280,"connections":[],"stats":[],"skill":24551},"32009":{"orbit":7,"orbitIndex":2,"stats":["20% increased Curse Duration"],"connections":[{"orbit":0,"id":36814}],"group":814,"name":"Curse Duration","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":32009},"53329":{"orbit":2,"orbitIndex":20,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":64724}],"group":175,"name":"Flammability and Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":53329},"44733":{"orbit":2,"orbitIndex":12,"connections":[{"orbit":0,"id":10742},{"orbit":-9,"id":29432},{"orbit":0,"id":1433},{"orbit":0,"id":49363}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":531,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":44733},"51867":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Guilt","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Finality","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":374,"isNotable":true,"stats":["120% increased Damage with Hits against Enemies that are on Low Life","5% increased Damage taken while on Low Life"],"skill":51867},"7258":{"orbit":7,"orbitIndex":5,"connections":[{"orbit":0,"id":11861}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":665,"connectionArt":"CharacterPlanned","stats":["10% increased Spell Damage","+10 to Strength"],"skill":7258},"45522":{"orbit":3,"orbitIndex":6,"connections":[{"orbit":5,"id":22314}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","options":{"Witch":{"stats":["10% increased Chaos Damage"],"id":40885,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage"}},"group":713,"isSwitchable":true,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"skill":45522},"62841":{"orbit":3,"orbitIndex":20,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-6,"id":17367},{"orbit":0,"id":56045},{"orbit":5,"id":53941}],"group":1058,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":62841},"51743":{"orbit":4,"orbitIndex":0,"stats":["15% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"connections":[{"orbit":3,"id":57617}],"group":344,"name":"Shapeshifting Attack Damage","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":51743},"28441":{"orbit":7,"orbitIndex":15,"recipe":["Disgust","Despair","Despair"],"connections":[{"orbit":0,"id":10011}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Frantic Swings","group":1184,"isNotable":true,"stats":["Enemies Blinded by you have 50% reduced Critical Hit Chance"],"skill":28441},"8908":{"orbit":7,"orbitIndex":6,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":4,"id":13711},{"orbit":-5,"id":3203}],"group":1064,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":8908},"48565":{"orbit":3,"orbitIndex":2,"recipe":["Envy","Fear","Disgust"],"connections":[{"orbit":0,"id":47242}],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Bringer of Order","group":257,"isNotable":true,"stats":["20% increased Damage","Minions deal 20% increased Damage"],"skill":48565},"4665":{"orbit":7,"orbitIndex":0,"stats":["Regenerate 0.2% of maximum Life per second"],"connections":[{"orbit":0,"id":1913}],"group":631,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":4665},"33639":{"orbit":2,"orbitIndex":16,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"connections":[{"orbit":0,"id":8782}],"group":706,"name":"Infused Spell Damage","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":33639},"55575":{"orbit":2,"orbitIndex":9,"stats":["Gain 3% of Physical Damage as extra Chaos Damage"],"connections":[{"orbit":0,"id":58002}],"group":925,"name":"Physical as Extra Chaos Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":55575},"2500":{"orbit":7,"orbitIndex":10,"stats":["8% chance to Poison on Hit"],"connections":[{"orbit":7,"id":6030}],"group":1409,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":2500},"10987":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds","name":"Now and Again","ascendancyName":"Chronomancer","group":359,"isNotable":true,"stats":["Skills have 33% chance to not consume a Cooldown when used"],"skill":10987},"52395":{"orbit":5,"orbitIndex":27,"connections":[{"orbit":0,"id":56331},{"orbit":0,"id":26283},{"orbit":0,"id":664}],"isMultipleChoice":true,"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds","name":"Lucid Dreaming","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":[],"skill":52395},"2946":{"orbit":1,"orbitIndex":1,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Resistance Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":238,"connections":[],"stats":[],"skill":2946},"16484":{"orbit":2,"orbitIndex":0,"connections":[{"orbit":0,"id":25100},{"orbit":0,"id":18923}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":988,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":16484},"44204":{"orbit":7,"orbitIndex":0,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"connections":[{"orbit":3,"id":33729}],"group":1143,"name":"Elemental Damage and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":44204},"59661":{"orbit":7,"orbitIndex":17,"stats":["15% increased Flammability Magnitude","Ignites you inflict deal Damage 4% faster"],"connections":[{"orbit":0,"id":12245}],"group":961,"name":"Faster Ignites and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":59661},"49618":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Ire","Guilt"],"connections":[{"orbit":0,"id":38663},{"orbit":0,"id":55348}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Deadly Flourish","group":597,"isNotable":true,"stats":["25% increased Melee Critical Hit Chance"],"skill":49618},"62436":{"orbit":7,"orbitIndex":5,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":3215}],"group":836,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":62436},"39581":{"orbit":7,"orbitIndex":8,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":46325}],"group":614,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":39581},"2244":{"orbit":4,"orbitIndex":51,"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"connections":[],"group":419,"name":"Arcane Surge on Critical Hit","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":2244},"52659":{"orbit":7,"orbitIndex":20,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":10362}],"group":160,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":52659},"30555":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":3,"id":53960}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":857,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":30555},"51732":{"orbit":2,"orbitIndex":16,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":26568}],"group":424,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":51732},"50817":{"orbit":7,"orbitIndex":11,"stats":["4% of Damage is taken from Mana before Life"],"connections":[{"orbit":2,"id":61355}],"group":1171,"name":"Damage from Mana","icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","skill":50817},"33112":{"orbit":3,"orbitIndex":12,"stats":["40% increased Energy Shield from Equipped Focus"],"connections":[{"orbit":-7,"id":10881}],"group":1021,"name":"Focus Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":33112},"44344":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":4,"id":28092}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":578,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":44344},"52799":{"orbit":3,"orbitIndex":0,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":-4,"id":47270},{"orbit":4,"id":19955},{"orbit":0,"id":44455}],"group":749,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":52799},"50146":{"orbit":3,"orbitIndex":8,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Buckler Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","group":1368,"connections":[],"stats":[],"skill":50146},"45137":{"orbit":7,"orbitIndex":8,"stats":["10% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":44487}],"group":957,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":45137},"44608":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":861,"connections":[],"stats":[],"skill":44608},"11980":{"orbit":4,"orbitIndex":71,"stats":["5% increased Block chance"],"connections":[{"orbit":-5,"id":20504}],"group":959,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":11980},"47371":{"orbit":2,"orbitIndex":22,"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"connections":[{"orbit":0,"id":7668}],"group":355,"name":"Empowered Attack Damage and Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":47371},"1502":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Draiocht Cleansing","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","group":265,"isNotable":true,"stats":["Channelling Skills deal 20% increased Damage","Remove a Curse after Channelling for 2 seconds"],"skill":1502},"26194":{"orbit":7,"orbitIndex":0,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":37872}],"group":800,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":26194},"12174":{"orbit":2,"orbitIndex":22,"stats":["10% increased Magnitude of Ailments you inflict"],"connections":[{"orbit":0,"id":18864}],"group":1255,"name":"Ailment Magnitude","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","skill":12174},"52260":{"orbit":2,"orbitIndex":8,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":-2,"id":3688}],"group":1039,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":52260},"26070":{"orbit":2,"orbitIndex":4,"recipe":["Suffering","Disgust","Paranoia"],"connections":[{"orbit":0,"id":35977}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Bolstering Yell","group":333,"isNotable":true,"stats":["Empowered Attacks deal 30% increased Damage","Warcry Skills have 30% increased Area of Effect"],"skill":26070},"47635":{"orbit":3,"orbitIndex":8,"recipe":["Paranoia","Isolation","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Overload","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1123,"isNotable":true,"stats":["Damage Penetrates 10% Lightning Resistance if on Low Mana","Damage Penetrates 15% Lightning Resistance"],"skill":47635},"44872":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":11248},{"orbit":0,"id":22949},{"orbit":0,"id":4970},{"orbit":0,"id":3363}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":345,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":44872},"14882":{"orbit":7,"orbitIndex":18,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":0,"id":5048}],"group":1351,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":14882},"15580":{"orbit":4,"orbitIndex":48,"connections":[{"orbit":0,"id":61977}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":354,"connectionArt":"CharacterPlanned","stats":["15% increased Damage","Minions deal 15% increased Damage"],"skill":15580},"23419":{"orbit":2,"orbitIndex":20,"stats":["15% increased Glory generation"],"connections":[{"orbit":0,"id":55930}],"group":1007,"name":"Glory Generation","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":23419},"49231":{"orbit":7,"orbitIndex":0,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":43183}],"group":603,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":49231},"30695":{"orbit":2,"orbitIndex":14,"connections":[{"orbit":0,"id":13783},{"orbit":0,"id":19808},{"orbit":0,"id":56472}],"icon":"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds","name":"Vile Wounds","isSwitchable":true,"options":{"Huntress":{"stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"],"id":53849,"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","name":"Eagle Eye"}},"group":966,"isNotable":true,"stats":["33% increased Damage with Hits against Enemies affected by Ailments"],"skill":30695},"26863":{"orbit":2,"orbitIndex":21,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"connections":[{"orbit":0,"id":25890}],"group":339,"name":"Recover Mana on consuming Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":26863},"35223":{"orbit":3,"orbitIndex":4,"stats":["3% increased Attack Speed with Spears"],"connections":[{"orbit":0,"id":55680},{"orbit":0,"id":9227}],"group":1322,"name":"Spear Attack Speed","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":35223},"97":{"orbit":2,"orbitIndex":0,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":52442}],"group":753,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":97},"42361":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","name":"Chaos Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":1206,"connections":[],"stats":[],"skill":42361},"20049":{"orbit":7,"orbitIndex":0,"stats":["10% increased Charm Charges gained"],"connections":[{"orbit":5,"id":32818}],"group":968,"name":"Charm Charges","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":20049},"1151":{"orbit":7,"orbitIndex":8,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":4113}],"group":785,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":1151},"20115":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":49734},{"orbit":0,"id":24420},{"orbit":0,"id":63243},{"orbit":0,"id":30258}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":232,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":20115},"38124":{"orbit":4,"orbitIndex":26,"stats":["15% increased Totem Damage"],"connections":[{"orbit":8,"id":51820}],"group":287,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":38124},"14091":{"orbit":1,"orbitIndex":0,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"connections":[{"orbit":0,"id":28860},{"orbit":0,"id":36449},{"orbit":0,"id":23993}],"group":640,"name":"Armour Break and Physical Damage","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":14091},"18207":{"orbit":3,"orbitIndex":8,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"connections":[{"orbit":-3,"id":53261}],"group":122,"name":"Ancestral Boosted Area and Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":18207},"62963":{"orbit":7,"orbitIndex":18,"recipe":["Suffering","Fear","Greed"],"connections":[{"orbit":0,"id":14601}],"icon":"Art/2DArt/SkillIcons/passives/flameborn.dds","name":"Flamewalker","group":653,"isNotable":true,"stats":["40% reduced Magnitude of Ignite on you","Gain 15% of Damage as Extra Fire Damage while on Ignited Ground"],"skill":62963},"34168":{"orbit":7,"orbitIndex":22,"connections":[{"orbit":0,"id":16123},{"orbit":0,"id":4157},{"orbit":0,"id":55088}],"icon":"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds","name":"Crashing Wave","group":932,"isNotable":true,"stats":["36% increased Damage if you've dealt a Critical Hit in the past 8 seconds"],"skill":34168},"14952":{"orbit":7,"orbitIndex":8,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":0,"id":21985}],"group":322,"name":"Skill Effect Duration","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":14952},"40110":{"orbit":7,"orbitIndex":8,"stats":["10% increased Blind Effect"],"connections":[{"orbit":3,"id":42347}],"group":1395,"name":"Blind Effect","icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","skill":40110},"49220":{"orbit":4,"orbitIndex":12,"connections":[{"orbit":0,"id":10429},{"orbit":-3,"id":44223},{"orbit":-6,"id":53960},{"orbit":5,"id":21336},{"orbit":6,"id":36778}],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Flow Like Water","group":871,"isNotable":true,"stats":["8% increased Attack and Cast Speed","+5 to Dexterity and Intelligence"],"skill":49220},"50023":{"orbit":4,"orbitIndex":39,"recipe":["Guilt","Fear","Fear"],"connections":[{"orbit":0,"id":4921},{"orbit":0,"id":259}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Invigorating Grandeur","group":493,"isNotable":true,"stats":["Recover 1% of maximum Life per Glory consumed"],"skill":50023},"31017":{"orbit":3,"orbitIndex":0,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":26339}],"group":314,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":31017},"31950":{"orbit":6,"orbitIndex":12,"connections":[{"orbit":0,"id":58329},{"orbit":0,"id":8569},{"orbit":0,"id":21080},{"orbit":0,"id":7405}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":903,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":31950},"60064":{"orbit":2,"orbitIndex":18,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":47263},{"orbit":0,"id":3027}],"group":212,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":60064},"45400":{"orbit":7,"orbitIndex":2,"connections":[{"orbit":2147483647,"id":59908},{"orbit":0,"id":13691}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Mighty Trunk","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["Totems gain +3% to all Maximum Elemental Resistances","20% increased Area of Effect for Skills used by Totems"],"skill":45400},"8606":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":985,"connections":[],"stats":[],"skill":8606},"26598":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":3,"id":33366},{"orbit":0,"id":19880},{"orbit":0,"id":14658},{"orbit":0,"id":23915},{"orbit":0,"id":52501}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1146,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":26598},"32016":{"orbit":7,"orbitIndex":19,"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"connections":[{"orbit":-6,"id":5766},{"orbit":0,"id":49984}],"group":1172,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":32016},"55829":{"orbit":2,"orbitIndex":0,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":2147483647,"id":1420}],"group":1092,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":55829},"30959":{"orbit":2,"orbitIndex":14,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":2,"id":31778}],"group":255,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":30959},"64284":{"orbit":4,"orbitIndex":51,"stats":["8% increased Melee Damage"],"connections":[{"orbit":0,"id":27373},{"orbit":4,"id":19011}],"group":512,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":64284},"30554":{"orbit":7,"orbitIndex":20,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":29611}],"group":149,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":30554},"32404":{"orbit":2,"orbitIndex":18,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[{"orbit":6,"id":15618},{"orbit":0,"id":5501},{"orbit":-6,"id":22290}],"group":744,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":32404},"59006":{"orbit":0,"orbitIndex":0,"stats":["8% reduced Skill Effect Duration"],"connections":[{"orbit":7,"id":37956}],"group":456,"name":"Reduced Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":59006},"15247":{"orbit":3,"orbitIndex":7,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":0,"id":46683}],"group":140,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":15247},"59799":{"orbit":1,"orbitIndex":10,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"connections":[{"orbit":4,"id":7338}],"group":1209,"name":"Stun Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":59799},"9762":{"orbit":6,"orbitIndex":5,"stats":["10% increased Damage with Swords"],"connections":[{"orbit":0,"id":45824}],"group":548,"name":"Sword Damage","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":9762},"51606":{"orbit":4,"orbitIndex":48,"recipe":["Greed","Greed","Envy"],"connections":[{"orbit":-7,"id":65207}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Freedom of Movement","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1177,"isNotable":true,"stats":["20% increased Evasion Rating","10% reduced Slowing Potency of Debuffs on You","5% reduced Movement Speed Penalty from using Skills while moving"],"skill":51606},"14324":{"orbit":7,"orbitIndex":3,"recipe":["Envy","Despair","Despair"],"connections":[{"orbit":-2,"id":1468}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Blossom","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":759,"isNotable":true,"stats":["15% increased Mana Recovery rate"],"skill":14324},"24087":{"orbit":7,"orbitIndex":10,"recipe":["Guilt","Suffering","Despair"],"connections":[{"orbit":0,"id":13882}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Everlasting Infusions","group":706,"isNotable":true,"stats":["Skills have 10% chance to not remove Elemental Infusions but still count as consuming them"],"skill":24087},"35876":{"orbit":2,"orbitIndex":20,"recipe":["Disgust","Suffering","Disgust"],"connections":[{"orbit":4,"id":53194},{"orbit":0,"id":35977},{"orbit":0,"id":27540}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Admonisher","group":333,"isNotable":true,"stats":["25% increased Warcry Speed","25% increased Warcry Cooldown Recovery Rate"],"skill":35876},"24880":{"orbit":5,"orbitIndex":36,"stats":["3% increased Attack Speed"],"connections":[{"orbit":-7,"id":38501}],"group":662,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":24880},"31223":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds","name":"Crimson Power","ascendancyName":"Blood Mage","group":931,"isNotable":true,"stats":["Gain additional maximum Life equal to 100% of the Item Energy Shield on Equipped Body Armour"],"skill":31223},"27853":{"orbit":7,"orbitIndex":13,"stats":["10% increased Damage against Immobilised Enemies","8% increased Immobilisation buildup"],"connections":[{"orbit":0,"id":52576},{"orbit":0,"id":3365},{"orbit":0,"id":58109}],"group":818,"name":"Damage vs Immobilised and Buildup","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":27853},"7621":{"orbit":5,"orbitIndex":15,"connections":[{"orbit":0,"id":55611}],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds","name":"I am the Thunder...","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Gain 10% of Damage as Extra Lightning Damage","25% chance on Shocking Enemies to created Shocked Ground"],"skill":7621},"42347":{"orbit":3,"orbitIndex":6,"recipe":["Despair","Despair","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Chakra of Sight","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":1395,"isNotable":true,"stats":["20% increased Light Radius","Cannot be Blinded","12% chance to Blind Enemies on Hit"],"skill":42347},"18793":{"orbit":2,"orbitIndex":20,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"connections":[{"orbit":0,"id":33639}],"group":706,"name":"Infused Spell Damage","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":18793},"50540":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","name":"Curse Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","group":812,"connections":[{"orbit":0,"id":16499}],"stats":[],"skill":50540},"34433":{"orbit":2,"orbitIndex":9,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":7,"id":32354}],"group":649,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":34433},"56761":{"orbit":3,"orbitIndex":18,"stats":["8% increased Melee Damage"],"connections":[{"orbit":0,"id":8560},{"orbit":0,"id":48531},{"orbit":0,"id":2408}],"group":1314,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":56761},"31545":{"orbit":7,"orbitIndex":2,"stats":["10% increased Presence Area of Effect","6% increased Attack Damage"],"connections":[{"orbit":0,"id":8171},{"orbit":0,"id":3446}],"group":211,"name":"Attack Damage and Presence Area","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":31545},"54911":{"orbit":2,"orbitIndex":6,"recipe":["Greed","Isolation","Guilt"],"connections":[{"orbit":0,"id":11505},{"orbit":0,"id":39716}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Firestarter","group":586,"isNotable":true,"stats":["80% increased Flammability Magnitude","Enemies Ignited by you have -5% to Fire Resistance"],"skill":54911},"49485":{"orbit":2,"orbitIndex":18,"stats":["+8 to Dexterity"],"connections":[{"orbit":-9,"id":12174},{"orbit":9,"id":49107},{"orbit":0,"id":12890}],"group":1255,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","skill":49485},"33099":{"orbit":4,"orbitIndex":27,"recipe":["Paranoia","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":25029}],"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","name":"Hunter's Talisman","group":1208,"isNotable":true,"stats":["+1 Charm Slot"],"skill":33099},"26135":{"orbit":3,"orbitIndex":11,"stats":["8% increased Spell Damage","8% increased Projectile Speed for Spell Skills"],"connections":[{"orbit":0,"id":2335}],"group":1134,"name":"Spell Damage and Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":26135},"56090":{"orbit":3,"orbitIndex":16,"connections":[{"orbit":0,"id":59136}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":589,"connectionArt":"CharacterPlanned","stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"skill":56090},"36931":{"orbit":7,"orbitIndex":0,"recipe":["Disgust","Greed","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Concussive Attack","group":1024,"isNotable":true,"stats":["25% increased Attack Damage","5% chance to Daze on Hit"],"skill":36931},"57816":{"orbit":1,"orbitIndex":8,"stats":["+8 to Dexterity"],"connections":[{"orbit":0,"id":364}],"group":724,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":57816},"14355":{"orbit":7,"orbitIndex":3,"stats":["10% increased Spell Area Damage"],"connections":[{"orbit":0,"id":8483}],"group":819,"name":"Spell Area Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":14355},"54512":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":56933}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Maximum Rage","ascendancyName":"Shaman","group":64,"stats":["+3 to Maximum Rage"],"skill":54512},"59798":{"orbit":1,"orbitIndex":5,"stats":["Gain additional Ailment Threshold equal to 12% of maximum Energy Shield"],"connections":[{"orbit":-4,"id":5335}],"group":1209,"name":"Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":59798},"56618":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57141}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds","name":"Fulminating Concoction","ascendancyName":"Pathfinder","group":1445,"isMultipleChoiceOption":true,"stats":["Grants Skill: Fulminating Concoction"],"skill":56618},"22691":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":39037},{"orbit":-9,"id":61027}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"id":19990,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life"}},"group":792,"isSwitchable":true,"stats":["15% faster start of Energy Shield Recharge"],"skill":22691},"45650":{"orbit":3,"orbitIndex":14,"stats":["15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"],"connections":[{"orbit":0,"id":9572},{"orbit":0,"id":36997}],"group":1005,"name":"Melee Damage if Projectile Hit","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":45650},"48429":{"orbit":3,"orbitIndex":20,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"connections":[{"orbit":0,"id":58714},{"orbit":0,"id":36169}],"group":702,"name":"Grenade Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":48429},"61119":{"orbit":2,"orbitIndex":18,"stats":["10% increased Poison Duration"],"connections":[{"orbit":4,"id":64325},{"orbit":0,"id":63431}],"group":1326,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":61119},"17215":{"orbit":7,"orbitIndex":19,"stats":["2% increased Attack Speed","5% increased Mana Regeneration Rate"],"connections":[{"orbit":2,"id":4552}],"group":1171,"name":"Mana Regeneration and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","skill":17215},"51871":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Suffering","Guilt"],"connections":[{"orbit":0,"id":8045}],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Immortal Thirst","group":1218,"isNotable":true,"stats":["15% increased maximum Energy Shield","25% increased amount of Mana Leeched"],"skill":51871},"28976":{"orbit":0,"orbitIndex":0,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":0,"id":23374},{"orbit":0,"id":29458}],"group":1406,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":28976},"41029":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":25827},{"orbit":-4,"id":44563},{"orbit":0,"id":25557},{"orbit":0,"id":22219}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":999,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":41029},"36808":{"orbit":2,"orbitIndex":16,"recipe":["Fear","Suffering","Fear"],"connections":[{"orbit":3,"id":34076},{"orbit":0,"id":37795}],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Spiked Shield","group":1140,"isNotable":true,"stats":["2% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield","50% increased Defences from Equipped Shield"],"skill":36808},"63894":{"orbit":6,"orbitIndex":64,"connections":[{"orbit":-4,"id":61267}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Spell Damage","ascendancyName":"Infernalist","group":725,"stats":["12% increased Spell Damage"],"skill":63894},"43139":{"orbit":4,"orbitIndex":0,"recipe":["Isolation","Despair","Guilt"],"connections":[{"orbit":0,"id":38068}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Stormbreaker","group":705,"isNotable":true,"stats":["20% increased Damage for each type of Elemental Ailment on Enemy"],"skill":43139},"6287":{"orbit":2,"orbitIndex":10,"stats":["+8 to Intelligence"],"connections":[{"orbit":2147483647,"id":364}],"group":724,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":6287},"43944":{"orbit":2,"orbitIndex":13,"recipe":["Paranoia","Greed","Ire"],"connections":[{"orbit":0,"id":23547}],"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","name":"Instability","group":1220,"isNotable":true,"stats":["25% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility"],"skill":43944},"1700":{"orbit":2,"orbitIndex":12,"stats":["10% increased Cold Damage"],"connections":[{"orbit":0,"id":48699}],"group":689,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":1700},"4":{"orbit":0,"orbitIndex":0,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":11578}],"group":979,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":4},"48833":{"orbit":0,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":4}],"group":977,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":48833},"8273":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Despair","Despair"],"connections":[{"orbit":0,"id":25565}],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Endless Circuit","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1325,"isNotable":true,"stats":["25% chance on Consuming a Shock on an Enemy to reapply it"],"skill":8273},"30553":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":151,"connections":[],"stats":[],"skill":30553},"29240":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":55668},{"orbit":0,"id":10881},{"orbit":0,"id":31977},{"orbit":0,"id":57513}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":984,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":29240},"42750":{"orbit":6,"orbitIndex":42,"stats":["10% increased Attack Damage"],"connections":[{"orbit":4,"id":17088},{"orbit":-4,"id":9050}],"group":1172,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":42750},"3051":{"orbit":2,"orbitIndex":0,"stats":["Offerings have 30% increased Maximum Life"],"connections":[],"group":779,"name":"Offering Life","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":3051},"12998":{"orbit":4,"orbitIndex":21,"recipe":["Ire","Suffering","Fear"],"connections":[{"orbit":-6,"id":30463},{"orbit":0,"id":28623}],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Warm the Heart","group":1217,"isNotable":true,"stats":["25% reduced Freeze Duration on you","60% increased Freeze Threshold"],"skill":12998},"47235":{"orbit":7,"orbitIndex":22,"stats":["Enemies Blinded by you have 15% reduced Critical Hit Chance"],"connections":[{"orbit":0,"id":24570}],"group":1184,"name":"Blinded Enemies Critical","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":47235},"34419":{"orbit":9,"orbitIndex":12,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds","name":"Grinning Immolation","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["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"],"skill":34419},"23153":{"orbit":7,"orbitIndex":14,"stats":["15% increased Ballista damage"],"connections":[{"orbit":0,"id":23996},{"orbit":0,"id":39298}],"group":886,"name":"Ballista Damage","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":23153},"24813":{"orbit":7,"orbitIndex":14,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":3,"id":20397}],"group":655,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":24813},"13828":{"orbit":0,"orbitIndex":0,"stats":["+16 to Evasion Rating"],"connections":[{"orbit":0,"id":1140}],"group":835,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":13828},"35878":{"orbit":7,"orbitIndex":11,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":0,"id":50884}],"group":1062,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":35878},"50150":{"orbit":3,"orbitIndex":12,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":37279}],"group":799,"name":"Lightning Damage and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":50150},"14945":{"orbit":3,"orbitIndex":16,"recipe":["Guilt","Paranoia","Fear"],"connections":[{"orbit":0,"id":34552},{"orbit":0,"id":1447}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Growing Swarm","group":461,"isNotable":true,"stats":["Minions have 20% increased Area of Effect","Minions have 20% increased Cooldown Recovery Rate"],"skill":14945},"55568":{"orbit":2,"orbitIndex":21,"recipe":["Despair","Greed","Suffering"],"connections":[{"orbit":0,"id":41522},{"orbit":0,"id":44690}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Forthcoming","group":1020,"isNotable":true,"stats":["16% reduced Skill Effect Duration","10% increased Cooldown Recovery Rate"],"skill":55568},"18472":{"orbit":2,"orbitIndex":12,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":46533}],"group":1215,"name":"Stun and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","skill":18472},"47375":{"orbit":0,"orbitIndex":0,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[{"orbit":5,"id":63618}],"group":1407,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":47375},"6514":{"orbit":4,"orbitIndex":5,"recipe":["Isolation","Guilt","Fear"],"connections":[{"orbit":0,"id":47173}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Cacophony","group":184,"isNotable":true,"stats":["40% increased Damage with Warcries","Warcry Skills have 25% increased Area of Effect"],"skill":6514},"39570":{"orbit":4,"orbitIndex":59,"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"connections":[{"orbit":6,"id":49394}],"group":1076,"name":"Bleeding Chance on Critical","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":39570},"1506":{"orbit":2,"orbitIndex":20,"recipe":["Despair","Disgust","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","name":"Remnant Attraction","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1057,"isNotable":true,"stats":["10% chance to create an additional Remnant","Remnants can be collected from 50% further away"],"skill":1506},"26324":{"orbit":3,"orbitIndex":0,"stats":["15% increased Armour"],"connections":[{"orbit":0,"id":46023}],"group":452,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":26324},"55041":{"orbit":3,"orbitIndex":21,"stats":["8% increased Spell Damage","5% reduced Projectile Speed for Spell Skills"],"connections":[{"orbit":0,"id":35564}],"group":1134,"name":"Spell Damage and Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":55041},"11252":{"orbit":2,"orbitIndex":23,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":39911}],"group":1321,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":11252},"43014":{"orbit":2,"orbitIndex":22,"stats":["5% increased Attack Damage","8% increased Immobilisation buildup"],"connections":[{"orbit":0,"id":34308}],"group":444,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","skill":43014},"32543":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Unhindered","group":1358,"isNotable":true,"stats":["20% reduced Slowing Potency of Debuffs on You","6% reduced Movement Speed Penalty from using Skills while moving"],"skill":32543},"13293":{"orbit":7,"orbitIndex":18,"stats":["20% increased Armour if you haven't been Hit Recently"],"connections":[{"orbit":4,"id":30457}],"group":152,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":13293},"7344":{"orbit":3,"orbitIndex":4,"connections":[{"orbit":0,"id":58182},{"orbit":0,"id":26931}],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life from Death","group":955,"isNotable":true,"stats":["Recover 3% of maximum Life on Kill"],"skill":7344},"39710":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":51821},{"orbit":0,"id":12232},{"orbit":-4,"id":33045}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":251,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":39710},"4140":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":59093},{"orbit":0,"id":57273},{"orbit":0,"id":296}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":220,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":4140},"15969":{"orbit":3,"orbitIndex":0,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"connections":[{"orbit":0,"id":41129},{"orbit":0,"id":59376}],"group":635,"name":"Damage against Ailments","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":15969},"62439":{"orbit":3,"orbitIndex":11,"connections":[{"orbit":0,"id":24224},{"orbit":0,"id":52300}],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Enraged Reaver","group":172,"isNotable":true,"stats":["+10 to Maximum Rage while wielding an Axe"],"skill":62439},"35739":{"orbit":7,"orbitIndex":23,"recipe":["Greed","Isolation","Ire"],"connections":[{"orbit":3,"id":42410},{"orbit":0,"id":8556}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Crushing Judgement","group":655,"isNotable":true,"stats":["25% increased Armour Break Duration","25% increased Attack Area Damage"],"skill":35739},"20842":{"orbit":3,"orbitIndex":12,"stats":["Banner Skills have 15% increased Area of Effect"],"connections":[{"orbit":0,"id":48026},{"orbit":2147483647,"id":4661}],"group":491,"name":"Banner Area","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":20842},"22626":{"orbit":7,"orbitIndex":4,"recipe":["Guilt","Despair","Disgust"],"connections":[{"orbit":0,"id":45227},{"orbit":0,"id":48717}],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","name":"Irreparable","group":194,"isNotable":true,"stats":["100% increased Armour Break Duration"],"skill":22626},"56360":{"orbit":2,"orbitIndex":19,"stats":["20% increased Power Charge Duration"],"connections":[{"orbit":0,"id":24812}],"group":1003,"name":"Power Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":56360},"55429":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":22049}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","options":{"Huntress":{"stats":["10% increased Melee Damage","10% increased Projectile Damage"],"id":24854,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Melee and Projectile Damage"}},"group":990,"isSwitchable":true,"stats":["10% increased Projectile Damage"],"skill":55429},"5544":{"orbit":2,"orbitIndex":10,"stats":["30% increased Thorns Critical Damage Bonus"],"connections":[{"orbit":3,"id":43711}],"group":305,"name":"Thorn Critical Damage","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":5544},"51737":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-8,"id":8272}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","ascendancyName":"Witchhunter","group":230,"stats":["6% increased Cooldown Recovery Rate"],"skill":51737},"12276":{"orbit":4,"orbitIndex":39,"stats":["8% chance for Mace Slam Skills you use yourself to cause an additional Aftershock"],"connections":[{"orbit":0,"id":13980}],"group":126,"name":"Mace Aftershock Chance","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":12276},"17340":{"orbit":4,"orbitIndex":9,"recipe":["Disgust","Ire","Fear"],"connections":[{"orbit":-4,"id":62051}],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Adrenaline Rush","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":772,"isNotable":true,"stats":["4% increased Movement Speed if you've Killed Recently","8% increased Attack Speed if you've killed Recently"],"skill":17340},"61373":{"orbit":3,"orbitIndex":4,"stats":["15% increased Damage with Hits against Blinded Enemies"],"connections":[{"orbit":-7,"id":63610},{"orbit":7,"id":5988}],"group":1033,"name":"Damage vs Blinded","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":61373},"15876":{"orbit":2,"orbitIndex":10,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"connections":[{"orbit":2,"id":7947},{"orbit":0,"id":46554}],"group":865,"name":"Energy Shield as Freeze Threshold","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":15876},"17150":{"orbit":3,"orbitIndex":8,"recipe":["Paranoia","Fear","Envy"],"connections":[{"orbit":7,"id":53647},{"orbit":0,"id":19750}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"General's Bindings","group":676,"isNotable":true,"stats":["Gain 8% of Evasion Rating as extra Armour"],"skill":17150},"20718":{"orbit":7,"orbitIndex":12,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":-3,"id":30979}],"group":571,"name":"Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":20718},"39307":{"orbit":1,"orbitIndex":6,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":37026}],"group":1349,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":39307},"28975":{"orbit":6,"orbitIndex":0,"recipe":["Suffering","Guilt","Suffering"],"connections":[{"orbit":0,"id":26905}],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Pure Power","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":827,"isNotable":true,"stats":["10% more Maximum Lightning Damage"],"skill":28975},"53719":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":27082}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":159,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":53719},"40626":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":1195,"connections":[],"stats":[],"skill":40626},"47374":{"orbit":4,"orbitIndex":66,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies within 2m"],"connections":[{"orbit":0,"id":18049}],"group":1247,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":47374},"327":{"orbit":2,"orbitIndex":12,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":9652}],"group":1237,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":327},"57805":{"orbit":4,"orbitIndex":18,"recipe":["Paranoia","Guilt","Guilt"],"connections":[{"orbit":4,"id":43444}],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Clear Space","group":757,"isNotable":true,"stats":["20% increased Knockback Distance","20% chance to Knock Enemies Back with Hits at Close Range"],"skill":57805},"45916":{"orbit":5,"orbitIndex":48,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":-4,"id":27501},{"orbit":4,"id":19330}],"group":662,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":45916},"27513":{"orbit":7,"orbitIndex":4,"recipe":["Envy","Envy","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Material Solidification","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":1349,"isNotable":true,"stats":["Gain 8% of Damage as Extra Physical Damage","15% increased effect of Fully Broken Armour"],"skill":27513},"51206":{"orbit":3,"orbitIndex":17,"stats":["15% increased Totem Damage"],"connections":[{"orbit":-6,"id":49642}],"group":511,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":51206},"28446":{"orbit":2,"orbitIndex":9,"connections":[{"orbit":0,"id":12430},{"orbit":0,"id":50084}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","options":{"Druid":{"stats":["10% increased Spell Damage","10% increased Attack Damage"],"id":50612,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Spell and Attack Damage"}},"group":626,"isSwitchable":true,"stats":["6% increased Area of Effect for Attacks"],"skill":28446},"8607":{"orbit":7,"orbitIndex":12,"recipe":["Fear","Isolation","Ire"],"connections":[{"orbit":0,"id":46665}],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Lavianga's Brew","group":250,"isNotable":true,"stats":["30% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect"],"skill":8607},"48026":{"orbit":2,"orbitIndex":14,"stats":["20% increased Glory generation for Banner Skills"],"connections":[{"orbit":0,"id":65439},{"orbit":0,"id":6623}],"group":491,"name":"Banner Glory Gained","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":48026},"53444":{"orbit":4,"orbitIndex":31,"stats":["12% increased Minion Duration"],"connections":[{"orbit":5,"id":752}],"group":267,"name":"Minion Duration","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":53444},"48290":{"orbit":2,"orbitIndex":15,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","name":"Minion Defence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","group":868,"connections":[{"orbit":0,"id":55180},{"orbit":0,"id":49088}],"stats":[],"skill":48290},"53320":{"orbit":2,"orbitIndex":22,"stats":["20% increased Glory generation for Banner Skills"],"connections":[{"orbit":0,"id":43791}],"group":643,"name":"Banner Glory Gained","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":53320},"26786":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":64352},{"orbit":0,"id":48568}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":913,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":26786},"9825":{"orbit":3,"orbitIndex":0,"stats":["15% increased Elemental Ailment Threshold"],"connections":[{"orbit":-4,"id":934},{"orbit":9,"id":21755}],"group":729,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":9825},"43281":{"orbit":7,"orbitIndex":21,"stats":["Triggered Spells deal 16% increased Spell Damage"],"connections":[{"orbit":0,"id":47359},{"orbit":7,"id":51934}],"group":1174,"name":"Triggered Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":43281},"25935":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":23005}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Block Chance","ascendancyName":"Warbringer","group":45,"stats":["6% increased Block chance"],"skill":25935},"33366":{"orbit":7,"orbitIndex":14,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-3,"id":10944}],"group":1157,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":33366},"32278":{"orbit":7,"orbitIndex":11,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":486,"connections":[],"stats":[],"skill":32278},"4083":{"orbit":2,"orbitIndex":11,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":0,"id":33815},{"orbit":0,"id":43677}],"group":1073,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":4083},"13425":{"orbit":0,"orbitIndex":0,"stats":["10% increased Bleeding Duration"],"connections":[{"orbit":0,"id":315}],"group":690,"name":"Bleeding Duration","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":13425},"2128":{"orbit":0,"orbitIndex":0,"stats":["10% increased Hazard Area of Effect"],"connections":[{"orbit":0,"id":65256}],"group":1182,"name":"Hazard Area","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":2128},"11578":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Disgust","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Spreading Shocks","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":997,"isNotable":true,"stats":["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"],"skill":11578},"6266":{"orbit":7,"orbitIndex":9,"stats":["10% increased Damage against Demons"],"connections":[{"orbit":0,"id":60085}],"group":854,"name":"Damage","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":6266},"41154":{"orbit":2,"orbitIndex":14,"stats":["20% increased Freeze Buildup"],"connections":[{"orbit":0,"id":33601}],"group":524,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":41154},"63759":{"orbit":3,"orbitIndex":0,"recipe":["Isolation","Disgust","Paranoia"],"connections":[{"orbit":0,"id":26565}],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Stacking Toxins","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1176,"isNotable":true,"stats":["Targets can be affected by +1 of your Poisons at the same time","20% reduced Magnitude of Poison you inflict"],"skill":63759},"12471":{"orbit":2,"orbitIndex":19,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":0,"id":19942}],"group":303,"name":"Attack Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":12471},"35880":{"orbit":4,"orbitIndex":6,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameSmallCanAllocate","alloc":"Disciple of VarashtaFrameSmallAllocated","unalloc":"Disciple of VarashtaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Cast Speed","ascendancyName":"Disciple of Varashta","group":593,"stats":["4% increased Cast Speed"],"skill":35880},"65204":{"orbit":2,"orbitIndex":7,"recipe":["Isolation","Envy","Greed"],"connections":[{"orbit":0,"id":30615},{"orbit":0,"id":10162}],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Overflowing Power","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":1341,"isNotable":true,"stats":["+2 to Maximum Power Charges"],"skill":65204},"46972":{"orbit":7,"orbitIndex":23,"recipe":["Paranoia","Paranoia","Guilt"],"connections":[{"orbit":0,"id":54783}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Arcane Mixtures","group":849,"isNotable":true,"stats":["25% increased Energy Shield Recharge Rate","Mana Flasks gain 0.1 charges per Second"],"skill":46972},"20641":{"orbit":1,"orbitIndex":1,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1174,"connections":[{"orbit":0,"id":51934}],"stats":[],"skill":20641},"18923":{"orbit":6,"orbitIndex":36,"connections":[{"orbit":0,"id":61976},{"orbit":0,"id":17118},{"orbit":0,"id":39570},{"orbit":0,"id":9085}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1036,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":18923},"31609":{"orbit":3,"orbitIndex":0,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":-4,"id":36163}],"group":442,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":31609},"11741":{"orbit":3,"orbitIndex":8,"connections":[{"orbit":0,"id":17282},{"orbit":0,"id":31159}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":209,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":11741},"64023":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Thorns Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","group":259,"connections":[],"stats":[],"skill":64023},"65468":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Isolation"],"connections":[{"orbit":0,"id":61432},{"orbit":0,"id":25807}],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Repeating Explosives","group":832,"isNotable":true,"stats":["Grenades have 15% chance to activate a second time"],"skill":65468},"14418":{"orbit":7,"orbitIndex":6,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":2147483647,"id":16602}],"group":1232,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","skill":14418},"44461":{"orbit":7,"orbitIndex":21,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":-7,"id":54998}],"group":282,"name":"Increased Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":44461},"35477":{"orbit":2,"orbitIndex":1,"recipe":["Guilt","Ire","Fear"],"connections":[{"orbit":0,"id":10277}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Far Sighted","group":1249,"isNotable":true,"stats":["30% reduced penalty to Accuracy Rating at range"],"skill":35477},"11679":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":29148},{"orbit":8,"id":7424},{"orbit":0,"id":61042}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":616,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":11679},"5077":{"orbit":2,"orbitIndex":4,"stats":["15% increased Parry Hit Area of Effect"],"connections":[{"orbit":0,"id":33400}],"group":996,"name":"Parry Area","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":5077},"63618":{"orbit":0,"orbitIndex":0,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[{"orbit":2147483647,"id":60992}],"group":1413,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":63618},"23360":{"orbit":4,"orbitIndex":33,"stats":["8% increased Attack Damage while moving","2% reduced Movement Speed Penalty from using Skills while moving"],"connections":[{"orbit":0,"id":53566}],"group":1053,"name":"Reduced Movement Penalty and Attack Damage while Moving","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":23360},"3893":{"orbit":2,"orbitIndex":16,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":-2,"id":28038}],"group":907,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":3893},"10058":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","name":"Chaos Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":1241,"connections":[{"orbit":0,"id":55149},{"orbit":0,"id":44373}],"stats":[],"skill":10058},"54640":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Greed","Greed"],"connections":[{"orbit":0,"id":64042}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Constricting","group":407,"isNotable":true,"stats":["Debuffs you inflict have 5% increased Slow Magnitude","25% increased Physical Damage"],"skill":54640},"47236":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":60298}],"nodeOverlay":{"path":"Smith of KitavaFrameSmallCanAllocate","alloc":"Smith of KitavaFrameSmallAllocated","unalloc":"Smith of KitavaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Melee Damage","ascendancyName":"Smith of Kitava","group":16,"stats":["20% increased Melee Damage"],"skill":47236},"51735":{"orbit":2,"orbitIndex":17,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"connections":[{"orbit":0,"id":44707}],"group":677,"name":"Shield Damage","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":51735},"64939":{"orbit":2,"orbitIndex":12,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":30123}],"group":389,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":64939},"1543":{"orbit":1,"orbitIndex":0,"stats":["3% increased Cast Speed"],"connections":[{"orbit":7,"id":14096},{"orbit":0,"id":59376}],"group":636,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":1543},"45390":{"orbit":2,"orbitIndex":7,"stats":["Mark Skills have 10% increased Use Speed"],"connections":[{"orbit":0,"id":13624},{"orbit":2,"id":28258}],"group":1279,"name":"Mark Use Speed","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":45390},"9065":{"orbit":4,"orbitIndex":23,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":5,"id":752}],"group":267,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":9065},"22565":{"orbit":2,"orbitIndex":1,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":26648}],"group":774,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":22565},"38921":{"orbit":2,"orbitIndex":1,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","name":"Block Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","group":306,"connections":[],"stats":[],"skill":38921},"1477":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":776,"connections":[{"orbit":0,"id":11037}],"stats":[],"skill":1477},"48821":{"orbit":2,"orbitIndex":6,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":-6,"id":15618}],"group":744,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","skill":48821},"23822":{"orbit":2,"orbitIndex":0,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":9652}],"group":1237,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":23822},"59653":{"orbit":7,"orbitIndex":10,"stats":["2% increased Movement Speed"],"connections":[{"orbit":0,"id":35987}],"group":863,"name":"Movement Speed","icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":59653},"41033":{"orbit":2,"orbitIndex":23,"recipe":["Paranoia","Fear","Greed"],"connections":[{"orbit":0,"id":55872}],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Utmost Offering","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":1044,"isNotable":true,"stats":["Offerings cannot be damaged if they have been created Recently"],"skill":41033},"10159":{"orbit":4,"orbitIndex":42,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":4,"id":31977}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":10159},"23888":{"orbit":3,"orbitIndex":0,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":7,"id":7390},{"orbit":0,"id":54099}],"group":676,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":23888},"2516":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds","name":"Price of Power","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":11705,"stats":["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds","name":"Steward of Kulemak"}},"group":1167,"isNotable":true,"stats":["Spells consume a Power Charge if able to deal 40% more Damage"],"skill":2516},"45918":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/heroicspirit.dds","name":"Mind Over Matter","group":411,"isKeystone":true,"stats":["All Damage is taken from Mana before Life","50% less Mana Recovery Rate"],"skill":45918},"5048":{"orbit":2,"orbitIndex":15,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":0,"id":261}],"group":1351,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":5048},"35602":{"orbit":2,"orbitIndex":12,"stats":["Offerings have 30% reduced Maximum Life"],"connections":[],"group":779,"name":"Offering Life","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":35602},"51336":{"orbit":4,"orbitIndex":45,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":4,"id":56818},{"orbit":0,"id":53965}],"group":1010,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":51336},"42614":{"orbit":2,"orbitIndex":6,"stats":["Offering Skills have 30% reduced Duration"],"connections":[],"group":787,"name":"Offering Duration","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":42614},"46182":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Fear","Disgust"],"connections":[{"orbit":4,"id":42460}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Intense Dose","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","group":1082,"isNotable":true,"stats":["20% increased chance to inflict Ailments","15% increased Duration of Damaging Ailments on Enemies"],"skill":46182},"19715":{"orbit":4,"orbitIndex":66,"recipe":["Isolation","Disgust","Isolation"],"connections":[{"orbit":0,"id":34927}],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Cremation","group":685,"isNotable":true,"stats":["Damage Penetrates 18% Fire Resistance","Gain 6% of Elemental Damage as Extra Fire Damage"],"skill":19715},"37991":{"orbit":7,"orbitIndex":18,"stats":["6% increased Curse Magnitudes"],"connections":[{"orbit":0,"id":52254}],"group":811,"name":"Curse Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":37991},"61106":{"orbit":2,"orbitIndex":15,"stats":["2% increased Movement Speed"],"connections":[{"orbit":0,"id":59653}],"group":863,"name":"Movement Speed","icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":61106},"64550":{"orbit":2,"orbitIndex":5,"stats":["20% increased Damage against Immobilised Enemies"],"connections":[{"orbit":0,"id":22532}],"group":818,"name":"Damage vs Immobilised","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":64550},"25934":{"orbit":7,"orbitIndex":12,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","name":"Two Hand Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","group":389,"connections":[],"stats":[],"skill":25934},"21111":{"orbit":7,"orbitIndex":11,"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"connections":[{"orbit":-5,"id":33099}],"group":1208,"name":"Charm Activation Chance","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":21111},"4536":{"orbit":2,"orbitIndex":1,"stats":["3% increased Attack Speed with Quarterstaves"],"connections":[{"orbit":0,"id":37514}],"group":1388,"name":"Quarterstaff Speed","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":4536},"13030":{"orbit":0,"orbitIndex":0,"stats":["Damaging Ailments deal damage 5% faster"],"connections":[{"orbit":-3,"id":55}],"group":1040,"name":"Faster Ailments","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":13030},"47363":{"orbit":4,"orbitIndex":50,"recipe":["Fear","Greed","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Colossal Weapon","group":720,"isNotable":true,"stats":["12% increased Area of Effect for Attacks","+10 to Strength"],"skill":47363},"61246":{"orbit":4,"orbitIndex":18,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"connections":[{"orbit":5,"id":144}],"group":1143,"name":"Elemental Damage and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":61246},"28106":{"orbit":2,"orbitIndex":8,"stats":["15% increased Life Flask Charges gained"],"connections":[{"orbit":0,"id":3775}],"group":1095,"name":"Life Flask Charges","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":28106},"31286":{"orbit":3,"orbitIndex":14,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":16140}],"group":1289,"name":"Physical","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":31286},"18470":{"orbit":1,"orbitIndex":4,"stats":["15% increased Pin Buildup"],"connections":[{"orbit":0,"id":4447}],"group":939,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":18470},"15644":{"orbit":3,"orbitIndex":10,"recipe":["Envy","Ire","Paranoia"],"connections":[{"orbit":6,"id":41538},{"orbit":0,"id":44612}],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Shedding Skin","group":1030,"isNotable":true,"stats":["40% increased Elemental Ailment Threshold","10% reduced Duration of Ailments on You"],"skill":15644},"29502":{"orbit":2,"orbitIndex":20,"stats":["3% increased Cast Speed"],"connections":[{"orbit":4,"id":36302}],"group":745,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":29502},"62039":{"orbit":7,"orbitIndex":18,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":49618}],"group":597,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":62039},"63484":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":7,"id":18158}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Flammability Magnitude","ascendancyName":"Infernalist","group":710,"stats":["40% increased Flammability Magnitude"],"skill":63484},"8406":{"orbit":3,"orbitIndex":21,"connections":[{"orbit":-4,"id":48305},{"orbit":0,"id":5692}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":580,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":8406},"62427":{"orbit":2,"orbitIndex":21,"stats":["4% increased Deflection Rating"],"connections":[],"group":1201,"name":"Deflection Rating","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":62427},"52392":{"orbit":3,"orbitIndex":17,"recipe":["Disgust","Envy","Fear"],"connections":[{"orbit":0,"id":25934}],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Singular Purpose","group":389,"isNotable":true,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"skill":52392},"36270":{"orbit":3,"orbitIndex":1,"stats":["5% chance to Daze on Hit"],"connections":[{"orbit":0,"id":5009}],"group":1183,"name":"Daze on Hit","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":36270},"23547":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","name":"Chaos Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":1220,"connections":[],"stats":[],"skill":23547},"62303":{"orbit":7,"orbitIndex":23,"stats":["10% increased Elemental Ailment Threshold","5% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":-4,"id":59938}],"group":290,"name":"Ailment Threshold and Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":62303},"15838":{"orbit":4,"orbitIndex":2,"stats":["10% increased chance to inflict Ailments"],"connections":[{"orbit":0,"id":15969}],"group":635,"name":"Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":15838},"33229":{"orbit":4,"orbitIndex":60,"recipe":["Ire","Isolation","Paranoia"],"connections":[{"orbit":0,"id":64996},{"orbit":0,"id":6161}],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Haemorrhaging Cuts","group":1080,"isNotable":true,"stats":["Enemies you inflict Bleeding on cannot Regenerate Life"],"skill":33229},"53443":{"orbit":3,"orbitIndex":8,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":-6,"id":5710},{"orbit":0,"id":59767}],"group":512,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":53443},"28370":{"orbit":6,"orbitIndex":39,"connections":[{"orbit":0,"id":7628},{"orbit":-6,"id":11916},{"orbit":-6,"id":37450}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":751,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28370},"51194":{"orbit":2,"orbitIndex":0,"stats":["10% increased Elemental Infusion duration"],"connections":[{"orbit":4,"id":24060},{"orbit":-5,"id":18793},{"orbit":0,"id":49512}],"group":706,"name":"Infusion Duration","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":51194},"59387":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Guilt","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Infusion of Power","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":885,"isNotable":true,"stats":["Gain a Power Charge when you consume an Elemental Infusion"],"skill":59387},"13294":{"orbit":1,"orbitIndex":7,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":2,"id":20718}],"group":571,"name":"Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":13294},"8569":{"orbit":6,"orbitIndex":6,"connections":[{"orbit":0,"id":47177},{"orbit":9,"id":55507},{"orbit":0,"id":46034},{"orbit":0,"id":8540}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":903,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":8569},"59263":{"orbit":4,"orbitIndex":33,"connections":[{"orbit":0,"id":37963}],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Ripping Blade","group":546,"isNotable":true,"stats":["25% increased Damage with Swords"],"skill":59263},"56488":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Glancing Deflection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":907,"isNotable":true,"stats":["10% increased Deflection Rating"],"skill":56488},"57405":{"orbit":2,"orbitIndex":2,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":0,"id":64807}],"group":234,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":57405},"61113":{"orbit":7,"orbitIndex":10,"connections":[{"orbit":-3,"id":53910}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":291,"connectionArt":"CharacterPlanned","stats":["Minions deal 15% increased Damage"],"skill":61113},"19122":{"orbit":2,"orbitIndex":16,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"connections":[{"orbit":0,"id":28432}],"group":425,"name":"Armour if Consumed Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":19122},"7971":{"orbit":4,"orbitIndex":10,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":-7,"id":1468}],"group":759,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":7971},"56876":{"orbit":2,"orbitIndex":6,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"connections":[{"orbit":0,"id":46380}],"group":312,"name":"Energy Shield if Consumed Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":56876},"5692":{"orbit":2,"orbitIndex":8,"stats":["12% increased Magnitude of Chill you inflict"],"connections":[{"orbit":0,"id":41154},{"orbit":0,"id":35708}],"group":524,"name":"Chill Magnitude","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":5692},"60708":{"orbit":3,"orbitIndex":17,"connections":[{"orbit":0,"id":17894}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["16% increased Damage with Bows"],"skill":60708},"20848":{"orbit":7,"orbitIndex":8,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":2147483647,"id":16721}],"group":307,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":20848},"17602":{"orbit":7,"orbitIndex":15,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":4,"id":59799},{"orbit":-4,"id":59798}],"group":1209,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":17602},"10423":{"orbit":1,"orbitIndex":0,"recipe":["Isolation","Envy","Disgust"],"connections":[{"orbit":-7,"id":37905}],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Exposed to the Inferno","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":1364,"isNotable":true,"stats":["Damage Penetrates 18% Fire Resistance","15% increased Duration of Ailments against Enemies with Exposure"],"skill":10423},"11315":{"orbit":0,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":48846}],"group":884,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":11315},"41159":{"orbit":3,"orbitIndex":18,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":27434}],"group":799,"name":"Lightning Damage and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":41159},"32078":{"orbit":7,"orbitIndex":21,"stats":["15% increased Spell Damage while you have Arcane Surge"],"connections":[{"orbit":0,"id":16940}],"group":390,"name":"Arcane Surge Spell Damage","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":32078},"40630":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":44527}],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","options":{"Huntress":{"stats":["15% increased Elemental Ailment Threshold"],"id":18391,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold"}},"group":965,"isSwitchable":true,"stats":["15% increased Flask Charges gained"],"skill":40630},"17668":{"orbit":2,"orbitIndex":22,"stats":["2% increased Attack Speed","5% increased Mana Regeneration Rate"],"connections":[{"orbit":2,"id":17215}],"group":1171,"name":"Mana Regeneration and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","skill":17668},"53308":{"orbit":3,"orbitIndex":5,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":17138}],"group":208,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":53308},"24868":{"orbit":9,"orbitIndex":72,"connections":[{"orbit":0,"id":33736}],"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds","name":"Relentless Pursuit","ascendancyName":"Pathfinder","group":1438,"isNotable":true,"stats":["Your speed is unaffected by Slows"],"skill":24868},"11284":{"orbit":7,"orbitIndex":7,"stats":["10% increased Elemental Infusion duration"],"connections":[{"orbit":0,"id":31697},{"orbit":0,"id":30985},{"orbit":0,"id":50104}],"group":427,"name":"Infusion Duration","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":11284},"57933":{"orbit":0,"orbitIndex":0,"stats":["Companions deal 12% increased Damage"],"connections":[{"orbit":0,"id":16150}],"group":1415,"name":"Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":57933},"3994":{"orbit":2,"orbitIndex":20,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":9089},{"orbit":0,"id":37951}],"group":1302,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":3994},"28510":{"orbit":6,"orbitIndex":56,"connections":[{"orbit":-5,"id":45969},{"orbit":0,"id":10247}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":727,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28510},"11509":{"orbit":2,"orbitIndex":16,"stats":["12% increased Critical Hit Chance against Enemies that have entered your Presence Recently"],"connections":[{"orbit":0,"id":17664}],"group":1307,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":11509},"56349":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds","name":"Chaos Inoculation","group":1181,"isKeystone":true,"stats":["Maximum Life is 1","Immune to Chaos Damage and Bleeding"],"skill":56349},"40894":{"orbit":3,"orbitIndex":20,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":1218}],"group":461,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":40894},"41811":{"orbit":3,"orbitIndex":2,"recipe":["Greed","Despair","Paranoia"],"connections":[{"orbit":0,"id":35173}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Shatter Palm","group":1289,"isNotable":true,"stats":["30% increased Stun Buildup","10% chance to Daze on Hit"],"skill":41811},"16485":{"orbit":2,"orbitIndex":2,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":-2,"id":2344}],"group":255,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":16485},"9663":{"orbit":2,"orbitIndex":8,"stats":["+5% to Chaos Resistance"],"connections":[{"orbit":-5,"id":19359}],"group":1356,"name":"Chaos Resistance","icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","skill":9663},"58197":{"orbit":6,"orbitIndex":60,"connections":[{"orbit":0,"id":35980}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Unquenchable Iron","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["Gain 18% of Physical Damage as Extra Lightning Damage"],"skill":58197},"36659":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds","name":"Imploding Impacts","ascendancyName":"Warbringer","group":31,"isNotable":true,"stats":["Fully Broken Armour you inflict increases all Damage Taken from Hits instead","You can Break Enemy Armour to below 0"],"skill":36659},"48030":{"orbit":7,"orbitIndex":1,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":62436}],"group":836,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":48030},"39839":{"orbit":2,"orbitIndex":20,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[{"orbit":0,"id":20205},{"orbit":0,"id":14340}],"group":894,"name":"Stun Threshold if no recent Stun","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":39839},"24339":{"orbit":2,"orbitIndex":0,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":58295}],"group":250,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":24339},"33618":{"orbit":2,"orbitIndex":10,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","name":"Duration Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","group":571,"connections":[{"orbit":0,"id":39990}],"stats":[],"skill":33618},"9857":{"orbit":2,"orbitIndex":8,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":54990}],"group":693,"name":"Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":9857},"37450":{"orbit":4,"orbitIndex":46,"stats":["10% increased chance to inflict Ailments"],"connections":[],"group":732,"name":"Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":37450},"31409":{"orbit":2,"orbitIndex":3,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":50437}],"group":863,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":31409},"12565":{"orbit":3,"orbitIndex":5,"stats":["4% increased Block chance","10% increased Thorns damage"],"connections":[{"orbit":0,"id":3245}],"group":94,"name":"Thorns and Block","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":12565},"48682":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":4,"id":40915}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Totem Life","ascendancyName":"Warbringer","group":43,"stats":["20% increased Totem Life"],"skill":48682},"11641":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":45248},{"orbit":0,"id":55582}],"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds","name":"Crystalline Potential","ascendancyName":"Gemling Legionnaire","group":400,"isNotable":true,"stats":["+10% to Quality of all Skills"],"skill":11641},"42339":{"orbit":2,"orbitIndex":6,"stats":["5% chance to create an additional Remnant"],"connections":[{"orbit":-2,"id":60974}],"group":1057,"name":"Additional Remnant Chance","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":42339},"26726":{"orbit":2,"orbitIndex":0,"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"connections":[{"orbit":0,"id":48103}],"group":1291,"name":"Knockback and Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":26726},"13457":{"orbit":4,"orbitIndex":60,"recipe":["Despair","Guilt","Despair"],"connections":[{"orbit":5,"id":3630},{"orbit":0,"id":52445}],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Shadow Dancing","group":1257,"isNotable":true,"stats":["30% increased Evasion Rating if you have been Hit Recently","60% faster start of Energy Shield Recharge if you've been Stunned Recently"],"skill":13457},"34425":{"orbit":2,"orbitIndex":14,"recipe":["Envy","Despair","Greed"],"connections":[{"orbit":2,"id":47021}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Precise Volatility","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":1360,"isNotable":true,"stats":["Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded"],"skill":34425},"53185":{"orbit":3,"orbitIndex":19,"recipe":["Greed","Greed","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds","name":"The Winter Owl","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":1375,"isNotable":true,"stats":["3% increased Evasion Rating per 10 Intelligence","Gain Accuracy Rating equal to your Intelligence","+10 to Intelligence"],"skill":53185},"52126":{"orbit":2,"orbitIndex":0,"stats":["10% increased Stun Threshold","+5 to Strength"],"connections":[{"orbit":3,"id":21885}],"group":253,"name":"Stun Threshold and Strength","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":52126},"34813":{"orbit":4,"orbitIndex":60,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":7218},{"orbit":0,"id":62505},{"orbit":0,"id":472},{"orbit":0,"id":2847}],"group":796,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":34813},"46171":{"orbit":7,"orbitIndex":13,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":7,"id":61421}],"group":1366,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":46171},"57141":{"orbit":0,"orbitIndex":0,"connections":[],"isMultipleChoice":true,"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds","name":"Brew Concoction","ascendancyName":"Pathfinder","group":1443,"isNotable":true,"stats":[],"skill":57141},"30748":{"orbit":7,"orbitIndex":0,"recipe":["Greed","Envy","Guilt"],"connections":[{"orbit":0,"id":21801}],"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","name":"Controlled Chaos","group":1168,"isNotable":true,"stats":["Maximum Volatility is 30"],"skill":30748},"31673":{"orbit":2,"orbitIndex":14,"stats":["15% faster start of Energy Shield Recharge while Shapeshifted"],"connections":[{"orbit":0,"id":48649}],"group":500,"name":"Energy Shield Delay while Shapeshifted","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":31673},"44201":{"orbit":2,"orbitIndex":2,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"connections":[],"group":962,"name":"Additional Spell Projectiles","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":44201},"51335":{"orbit":7,"orbitIndex":21,"connections":[{"orbit":-6,"id":51968},{"orbit":0,"id":5726}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Affliction Enforcer","isSwitchable":true,"options":{"Witch":{"stats":["20% increased Critical Hit Chance for Spells","20% increased Physical Damage"],"id":64801,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Jagged Shards"}},"group":713,"isNotable":true,"stats":["40% increased Flammability Magnitude","20% increased Freeze Buildup","20% increased chance to Shock"],"skill":51335},"722":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3419},{"orbit":0,"id":15775}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1355,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":722},"28774":{"orbit":6,"orbitIndex":26,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":2999},{"orbit":0,"id":10295}],"group":266,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":28774},"39964":{"orbit":2,"orbitIndex":4,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":48198}],"group":878,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":39964},"32672":{"orbit":3,"orbitIndex":12,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"connections":[{"orbit":0,"id":4031},{"orbit":0,"id":9928}],"group":1311,"name":"Freeze and Chill Resistance","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":32672},"9896":{"orbit":3,"orbitIndex":4,"recipe":["Isolation","Ire","Suffering"],"connections":[{"orbit":0,"id":292}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Heartstopping Presence","group":440,"isNotable":true,"stats":["Enemies in your Presence have 75% reduced Life Regeneration rate"],"skill":9896},"65472":{"orbit":3,"orbitIndex":21,"stats":["15% increased Glory generation"],"connections":[{"orbit":0,"id":9323}],"group":106,"name":"Glory Generation","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":65472},"30219":{"orbit":1,"orbitIndex":10,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":-2,"id":45177}],"group":574,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":30219},"64415":{"orbit":7,"orbitIndex":19,"recipe":["Disgust","Isolation","Envy"],"connections":[{"orbit":0,"id":22063},{"orbit":0,"id":1416}],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Shattering Daze","group":1295,"isNotable":true,"stats":["5% chance to Daze on Hit","Gain 12% of Physical Damage as Extra Cold Damage against Dazed Enemies"],"skill":64415},"63085":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage while Shapeshifted"],"connections":[{"orbit":9,"id":36100},{"orbit":0,"id":34490}],"group":157,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":63085},"54892":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":44371}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Armour and Evasion","ascendancyName":"Tactician","group":358,"stats":["15% increased Armour and Evasion Rating"],"skill":54892},"29162":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":15044}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Spirit","ascendancyName":"Tactician","group":321,"stats":["8% increased Spirit"],"skill":29162},"18270":{"orbit":5,"orbitIndex":55,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":3,"id":45874}],"group":307,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":18270},"25594":{"orbit":7,"orbitIndex":0,"stats":["Offerings have 15% increased Maximum Life"],"connections":[{"orbit":0,"id":34030}],"group":787,"name":"Offering Life","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":25594},"35745":{"orbit":2,"orbitIndex":10,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":611,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"skill":35745},"37327":{"orbit":7,"orbitIndex":16,"stats":["10% increased Mana Regeneration Rate"],"connections":[],"group":522,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":37327},"296":{"orbit":7,"orbitIndex":18,"stats":["Damage Penetrates 3% of Enemy Elemental Resistances"],"connections":[{"orbit":2,"id":30959},{"orbit":2,"id":8145},{"orbit":2,"id":12992}],"group":255,"name":"Elemental Penetration","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":296},"38646":{"orbit":0,"orbitIndex":0,"stats":["+20 to Armour"],"connections":[{"orbit":0,"id":23570}],"group":672,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":38646},"43131":{"orbit":8,"orbitIndex":40,"connections":[{"orbit":-9,"id":61973}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage vs Low Life Enemies","ascendancyName":"Witchhunter","group":271,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"skill":43131},"15443":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Guilt","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Endured Suffering","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":1001,"isNotable":true,"stats":["10% of Physical Damage taken Recouped as Life","20% increased Physical Damage"],"skill":15443},"24801":{"orbit":3,"orbitIndex":14,"stats":["10% increased Presence Area of Effect","6% increased Attack Damage"],"connections":[{"orbit":7,"id":40736}],"group":211,"name":"Attack Damage and Presence Area","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":24801},"65207":{"orbit":3,"orbitIndex":14,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":-6,"id":63566}],"group":1177,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":65207},"40632":{"orbit":2,"orbitIndex":4,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":-2,"id":48889}],"group":907,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":40632},"50673":{"orbit":3,"orbitIndex":18,"recipe":["Disgust","Greed","Suffering"],"connections":[{"orbit":-2,"id":58526},{"orbit":-2,"id":62427}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Avoiding Deflection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1201,"isNotable":true,"stats":["-5% to amount of Damage Prevented by Deflection","20% increased Deflection Rating"],"skill":50673},"2745":{"orbit":1,"orbitIndex":3,"recipe":["Fear","Greed","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds","name":"The Noble Wolf","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","group":1255,"isNotable":true,"stats":["25% increased Magnitude of Ailments you inflict against Marked Enemies","20% increased Critical Hit Chance against Marked Enemies","+10 to Dexterity"],"skill":2745},"4519":{"orbit":0,"orbitIndex":0,"stats":["20% increased Damage if you've dealt a Critical Hit Recently"],"connections":[{"orbit":0,"id":13724}],"group":1067,"name":"Damage on Critical","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":4519},"12169":{"orbit":2,"orbitIndex":13,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","name":"Physical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":1183,"connections":[{"orbit":0,"id":60138}],"stats":[],"skill":12169},"55420":{"orbit":2,"orbitIndex":0,"stats":["6% increased Curse Magnitudes"],"connections":[{"orbit":0,"id":30061}],"group":982,"name":"Curse Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":55420},"22959":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","name":"Curse Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","group":916,"connections":[],"stats":[],"skill":22959},"15606":{"orbit":4,"orbitIndex":30,"recipe":["Despair","Envy","Suffering"],"connections":[{"orbit":0,"id":41821}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Thrill of the Fight","group":211,"isNotable":true,"stats":["Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60%"],"skill":15606},"1130":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with Flails"],"connections":[{"orbit":0,"id":29611}],"group":141,"name":"Flail Damage","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":1130},"244":{"orbit":4,"orbitIndex":66,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"connections":[{"orbit":0,"id":52354}],"group":936,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":244},"42077":{"orbit":2,"orbitIndex":11,"recipe":["Envy","Envy","Greed"],"connections":[{"orbit":0,"id":56564},{"orbit":0,"id":2102}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Essence Infusion","group":679,"isNotable":true,"stats":["40% increased Energy Shield Recharge Rate","+10 to Intelligence"],"skill":42077},"39298":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38814},{"orbit":0,"id":3995},{"orbit":0,"id":18115},{"orbit":0,"id":1019}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":872,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":39298},"16940":{"orbit":7,"orbitIndex":1,"recipe":["Guilt","Isolation","Ire"],"connections":[{"orbit":0,"id":25446}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Nature","group":390,"isNotable":true,"stats":["12% increased Area of Effect while you have Arcane Surge","30% increased Spell Damage while you have Arcane Surge"],"skill":16940},"7405":{"orbit":0,"orbitIndex":0,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":4850}],"group":949,"name":"Shock Effect and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":7405},"41020":{"orbit":2,"orbitIndex":8,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":34908}],"group":1302,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":41020},"24150":{"orbit":2,"orbitIndex":3,"stats":["3% chance to gain Volatility on Kill"],"connections":[{"orbit":-7,"id":44369}],"group":1168,"name":"Volatility on Kill","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":24150},"40105":{"orbit":2,"orbitIndex":20,"stats":["3% increased Attack Speed","Minions have 3% increased Attack Speed"],"connections":[{"orbit":0,"id":20558}],"group":225,"name":"Attack Speed and Minion Attack Speed","icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","skill":40105},"17871":{"orbit":2,"orbitIndex":12,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"connections":[{"orbit":0,"id":32672}],"group":1311,"name":"Freeze and Chill Resistance","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":17871},"3936":{"orbit":0,"orbitIndex":0,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":13397}],"group":664,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":3936},"7888":{"orbit":3,"orbitIndex":21,"stats":["10% Chance to build an additional Combo on Hit"],"connections":[{"orbit":0,"id":17101},{"orbit":2,"id":28963}],"group":1372,"name":"Combo Gain","icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","skill":7888},"55033":{"orbit":3,"orbitIndex":21,"connections":[{"orbit":3,"id":17059}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Life Recoup","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":173,"connectionArt":"CharacterPlanned","stats":["10% of Damage taken Recouped as Life while Channelling"],"skill":55033},"33093":{"orbit":7,"orbitIndex":6,"recipe":["Suffering","Isolation","Envy"],"connections":[{"orbit":0,"id":30077}],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Effervescent","group":1300,"isNotable":true,"stats":["4% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"],"skill":33093},"17138":{"orbit":0,"orbitIndex":0,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":51903}],"group":208,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":17138},"36522":{"orbit":4,"orbitIndex":33,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":3999},{"orbit":0,"id":54099}],"group":655,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":36522},"16816":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Envy","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Pinpoint Shot","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":1048,"isNotable":true,"stats":["Attacks gain increased Accuracy Rating equal to their Critical Hit Chance"],"skill":16816},"28963":{"orbit":2,"orbitIndex":1,"recipe":["Guilt","Greed","Despair"],"connections":[{"orbit":0,"id":23105}],"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Chakra of Rhythm","group":1372,"isNotable":true,"stats":["6% increased Attack Speed","20% Chance to build an additional Combo on Hit"],"skill":28963},"6088":{"orbit":7,"orbitIndex":10,"connections":[{"orbit":0,"id":54380}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"First Sting","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":421,"connectionArt":"CharacterPlanned","stats":["30% chance to Poison on Hit against Enemies that are not Poisoned","80% increased Effect of Poison you inflict on targets that are not Poisoned"],"skill":6088},"64405":{"orbit":3,"orbitIndex":12,"stats":["15% increased Totem Damage"],"connections":[],"group":314,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":64405},"4139":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":137,"connections":[],"stats":[],"skill":4139},"12208":{"orbit":7,"orbitIndex":3,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":-7,"id":32813}],"group":1148,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":12208},"22556":{"orbit":3,"orbitIndex":15,"stats":["30% increased Evasion Rating while Surrounded"],"connections":[{"orbit":0,"id":11257},{"orbit":7,"id":35028}],"group":717,"name":"Evasion while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":22556},"62431":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Anticipation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":951,"isNotable":true,"stats":["Skills Supported by Unleash have 25% increased Seal gain frequency"],"skill":62431},"28839":{"orbit":2,"orbitIndex":16,"stats":["3% increased Cast Speed"],"connections":[],"group":401,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":28839},"15141":{"orbit":6,"orbitIndex":63,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Impale Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":177,"connectionArt":"CharacterPlanned","stats":["30% chance to Impale on Spell Hit"],"skill":15141},"49088":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Paranoia","Guilt"],"connections":[{"orbit":7,"id":17394}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Splintering Force","group":868,"isNotable":true,"stats":["Minions Break Armour equal to 3% of Physical damage dealt"],"skill":49088},"20582":{"orbit":6,"orbitIndex":21,"stats":["15% increased Parried Debuff Duration"],"connections":[{"orbit":0,"id":55329}],"group":1342,"name":"Parried Duration","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":20582},"34412":{"orbit":2,"orbitIndex":7,"stats":["12% increased Damage while Shapeshifted"],"connections":[{"orbit":0,"id":25915}],"group":410,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":34412},"18864":{"orbit":2,"orbitIndex":2,"stats":["10% increased Magnitude of Ailments you inflict"],"connections":[{"orbit":0,"id":2745}],"group":1255,"name":"Ailment Magnitude","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","skill":18864},"34940":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Meditative Focus","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":173,"connectionArt":"CharacterPlanned","stats":["60% increased Stun Threshold while Channelling","30% of Damage taken Recouped as Life while Channelling"],"skill":34940},"2877":{"orbit":9,"orbitIndex":104,"connections":[],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds","name":"Blackened Heart","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":36863,"stats":["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"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds","name":"Unwilling Offering"}},"group":1120,"isNotable":true,"stats":["4% increased Magnitude of Unholy Might Buffs you grant per 100 maximum Mana"],"skill":2877},"17468":{"orbit":6,"orbitIndex":48,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":455,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":17468},"42076":{"orbit":0,"orbitIndex":0,"stats":["10% increased Energy Shield Recharge Rate","10% increased Mana Recovery from Flasks"],"connections":[{"orbit":-7,"id":17706}],"group":849,"name":"Energy Shield Recharge and Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":42076},"56616":{"orbit":2,"orbitIndex":0,"recipe":["Despair","Disgust","Ire"],"connections":[{"orbit":3,"id":13562},{"orbit":0,"id":41415}],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Desperate Times","group":573,"isNotable":true,"stats":["Regenerate 1.5% of maximum Life per second while on Low Life","40% increased Life Recovery from Flasks used when on Low Life"],"skill":56616},"49340":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds","name":"Support Straps","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":49,"isNotable":true,"stats":["Body Armour grants 20% increased Strength"],"skill":49340},"41147":{"orbit":2,"orbitIndex":2,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"connections":[{"orbit":-6,"id":23797},{"orbit":0,"id":13279}],"group":588,"name":"Armour and Applies to Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":41147},"3234":{"orbit":1,"orbitIndex":8,"stats":["15% increased Pin duration"],"connections":[{"orbit":0,"id":4447},{"orbit":0,"id":31745}],"group":939,"name":"Pin Duration","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":3234},"47754":{"orbit":7,"orbitIndex":16,"stats":["10% increased Cold Damage"],"connections":[{"orbit":0,"id":23455}],"group":1012,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":47754},"34552":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":461,"connections":[],"stats":[],"skill":34552},"64140":{"orbit":3,"orbitIndex":10,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":-5,"id":51336},{"orbit":-4,"id":30905}],"group":1010,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":64140},"50795":{"orbit":7,"orbitIndex":7,"recipe":["Guilt","Guilt","Paranoia"],"connections":[{"orbit":0,"id":58013},{"orbit":0,"id":20744}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Careful Aim","group":908,"isNotable":true,"stats":["15% increased Accuracy Rating","20% increased Projectile Damage"],"skill":50795},"62166":{"orbit":2,"orbitIndex":0,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":19337}],"group":1126,"name":"Accuracy and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":62166},"42604":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":409,"connections":[],"stats":[],"skill":42604},"53975":{"orbit":2,"orbitIndex":8,"stats":["10% increased Spell Damage"],"connections":[{"orbit":0,"id":33254}],"group":726,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":53975},"59779":{"orbit":0,"orbitIndex":0,"stats":["+10 to Armour","+8 to Evasion Rating"],"connections":[{"orbit":0,"id":50986},{"orbit":6,"id":42350},{"orbit":6,"id":97},{"orbit":5,"id":11311}],"group":733,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":59779},"4271":{"orbit":2,"orbitIndex":8,"stats":["Minions have +8% to all Elemental Resistances"],"connections":[{"orbit":0,"id":62887},{"orbit":-3,"id":33225},{"orbit":-7,"id":61768},{"orbit":-2,"id":63926}],"group":889,"name":"Minion Resistances","icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","skill":4271},"5163":{"orbit":2,"orbitIndex":15,"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"connections":[{"orbit":0,"id":26726}],"group":1291,"name":"Knockback and Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":5163},"15180":{"orbit":2,"orbitIndex":3,"stats":["10% chance to Hinder Enemies on Hit with Spells"],"connections":[{"orbit":-2,"id":61444}],"group":482,"name":"Spell Hinder","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":15180},"12465":{"orbit":7,"orbitIndex":14,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":30040}],"group":943,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":12465},"7128":{"orbit":6,"orbitIndex":63,"recipe":["Paranoia","Envy","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Dangerous Blossom","group":307,"isNotable":true,"stats":["Gain 10% of Damage as Extra Physical Damage"],"skill":7128},"1869":{"orbit":2,"orbitIndex":1,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":-4,"id":27095}],"group":1038,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":1869},"3843":{"orbit":2,"orbitIndex":11,"stats":["Parry has 25% increased Stun Buildup"],"connections":[{"orbit":0,"id":65265}],"group":1284,"name":"Parry Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":3843},"37190":{"orbit":2,"orbitIndex":7,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":0,"id":35855}],"group":851,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":37190},"6715":{"orbit":7,"orbitIndex":17,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"connections":[{"orbit":3,"id":116},{"orbit":0,"id":41372}],"group":836,"name":"Energy Shield and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":6715},"16615":{"orbit":4,"orbitIndex":60,"connections":[{"orbit":0,"id":18713}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Unmoving Craiceann","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["30% increased Armour while stationary","30% increased Life Regeneration Rate while stationary"],"skill":16615},"45383":{"orbit":4,"orbitIndex":36,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":23930},{"orbit":0,"id":30662}],"group":269,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":45383},"59390":{"orbit":2,"orbitIndex":16,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"connections":[{"orbit":0,"id":11472}],"group":1145,"name":"Evasion if Consumed Frenzy Charge","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":59390},"26063":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":28745}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Damage","ascendancyName":"Shaman","group":73,"stats":["12% increased Elemental Damage"],"skill":26063},"34817":{"orbit":9,"orbitIndex":64,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds","name":"Deepening Shadows","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["1% increased maximum Darkness per 1% Chaos Resistance"],"skill":34817},"16204":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds","name":"Sacred Flow","ascendancyName":"Shaman","group":58,"isNotable":true,"stats":["+40 to Spirit for each of your empty Charm slots"],"skill":16204},"52254":{"orbit":7,"orbitIndex":14,"stats":["6% increased Curse Magnitudes"],"connections":[{"orbit":0,"id":42290}],"group":811,"name":"Curse Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":52254},"34553":{"orbit":7,"orbitIndex":20,"recipe":["Ire","Envy","Fear"],"connections":[{"orbit":0,"id":1220}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Emboldening Lead","group":660,"isNotable":true,"stats":["Minions deal 30% increased Damage if you've Hit Recently"],"skill":34553},"6748":{"orbit":7,"orbitIndex":8,"stats":["4% of Damage is taken from Mana before Life"],"connections":[{"orbit":7,"id":48618},{"orbit":3,"id":62122}],"group":522,"name":"Damage from Mana","icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","skill":6748},"39564":{"orbit":7,"orbitIndex":12,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":62039},{"orbit":0,"id":38663},{"orbit":0,"id":13279}],"group":596,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":39564},"9796":{"orbit":2,"orbitIndex":18,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":-4,"id":62310}],"group":542,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":9796},"21374":{"orbit":7,"orbitIndex":21,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":[],"skill":21374},"47633":{"orbit":2,"orbitIndex":4,"connections":[{"orbit":0,"id":57002}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":464,"connectionArt":"CharacterPlanned","stats":["20% increased Thorns damage"],"skill":47633},"11580":{"orbit":2,"orbitIndex":13,"connections":[{"orbit":0,"id":34769}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration Rate","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":["25% increased Life Regeneration rate"],"skill":11580},"44453":{"orbit":2,"orbitIndex":3,"stats":["15% increased Stun Threshold"],"connections":[{"orbit":0,"id":42760}],"group":1235,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","skill":44453},"5390":{"orbit":7,"orbitIndex":14,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":2147483647,"id":16142}],"group":1384,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":5390},"24477":{"orbit":2,"orbitIndex":16,"stats":["10% increased Stun Threshold","+5 to Strength"],"connections":[{"orbit":0,"id":17532}],"group":555,"name":"Stun Threshold and Strength","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":24477},"16367":{"orbit":0,"orbitIndex":0,"stats":["10% increased Elemental Damage"],"connections":[],"group":1022,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":16367},"43396":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Ire"],"connections":[{"orbit":0,"id":40550}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Ancestral Reach","group":363,"isNotable":true,"stats":["25% increased Totem Placement speed","50% increased Totem Placement range"],"skill":43396},"5295":{"orbit":0,"orbitIndex":0,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":5961}],"group":915,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":5295},"11774":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Despair","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds","name":"The Spring Hare","group":1232,"isNotable":true,"stats":["20% chance for Damage of Enemies Hitting you to be Unlucky","20% chance for Damage with Hits to be Lucky"],"skill":11774},"63610":{"orbit":2,"orbitIndex":0,"stats":["10% increased Blind Effect"],"connections":[{"orbit":-7,"id":38459}],"group":1033,"name":"Blind Effect","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":63610},"20645":{"orbit":3,"orbitIndex":14,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":4,"id":64284}],"group":512,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":20645},"64543":{"orbit":5,"orbitIndex":57,"recipe":["Disgust","Envy","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Unbound Forces","group":1245,"isNotable":true,"stats":["40% increased Chill Duration on Enemies","40% increased Shock Duration","25% increased Magnitude of Chill you inflict","25% increased Magnitude of Shock you inflict"],"skill":64543},"36927":{"orbit":2,"orbitIndex":11,"stats":["Mark Skills have 10% increased Use Speed"],"connections":[{"orbit":5,"id":44756}],"group":1279,"name":"Mark Use Speed","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":36927},"15374":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Greed"],"connections":[{"orbit":0,"id":48035}],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Hale Heart","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":541,"isNotable":true,"stats":["15% increased Life Recovery rate"],"skill":15374},"54632":{"orbit":2,"orbitIndex":12,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"connections":[{"orbit":0,"id":36507}],"group":678,"name":"Minion Life and Chaos Resistance","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":54632},"9928":{"orbit":4,"orbitIndex":36,"recipe":["Fear","Fear","Guilt"],"connections":[{"orbit":0,"id":50403}],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Embracing Frost","group":1311,"isNotable":true,"stats":["+1% to Maximum Cold Resistance","+10% to Cold Resistance"],"skill":9928},"36788":{"orbit":6,"orbitIndex":8,"connections":[{"orbit":0,"id":25781}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Leech","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["11% increased amount of Life Leeched","11% increased amount of Mana Leeched"],"skill":36788},"22817":{"orbit":3,"orbitIndex":18,"recipe":["Greed","Ire","Paranoia"],"connections":[{"orbit":0,"id":55724},{"orbit":0,"id":29065}],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Inevitable Rupture","group":1240,"isNotable":true,"stats":["10% chance for Attack Hits to apply ten Incision"],"skill":22817},"39037":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":11672}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":781,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":39037},"45382":{"orbit":3,"orbitIndex":15,"stats":["10% increased Elemental Damage","6% increased chance to inflict Ailments"],"connections":[{"orbit":0,"id":53265}],"group":1317,"name":"Ailment Chance and Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":45382},"11014":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":314,"connections":[],"stats":[],"skill":11014},"64807":{"orbit":2,"orbitIndex":20,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":59945}],"group":234,"name":"Attack Area Damage and Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":64807},"52115":{"orbit":2,"orbitIndex":0,"connections":[{"orbit":0,"id":51454}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Nurturing Nature","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":["40% increased Mana Regeneration Rate while on Full Life"],"skill":52115},"19249":{"orbit":6,"orbitIndex":0,"recipe":["Fear","Disgust","Isolation"],"connections":[{"orbit":4,"id":33209},{"orbit":0,"id":40550}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Supportive Ancestors","group":363,"isNotable":true,"stats":["25% increased Damage while you have a Totem","Spells Cast by Totems have 3% increased Cast Speed per Summoned Totem","Attacks used by Totems have 3% increased Attack Speed per Summoned Totem"],"skill":19249},"50273":{"orbit":0,"orbitIndex":0,"stats":["12% increased Attack Damage while Dual Wielding"],"connections":[{"orbit":0,"id":47893},{"orbit":0,"id":63267},{"orbit":0,"id":3131}],"group":795,"name":"Dual Wielding Damage","icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":50273},"53965":{"orbit":0,"orbitIndex":0,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":12337}],"group":975,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":53965},"49214":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Ire","Despair"],"connections":[{"orbit":0,"id":50767}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","name":"Blood of the Wolf","group":125,"isNotable":true,"stats":["15% increased amount of Life Leeched while Shapeshifted","15% increased Life Regeneration rate while Shapeshifted","+1% to Maximum Cold Resistance while Shapeshifted"],"skill":49214},"57002":{"orbit":2,"orbitIndex":10,"connections":[{"orbit":0,"id":48761}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Rough Carapace","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":464,"connectionArt":"CharacterPlanned","stats":["Gain Physical Thorns damage equal to 8% of maximum Life while Shapeshifted"],"skill":57002},"3463":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4328},{"orbit":0,"id":26885},{"orbit":0,"id":28021}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1153,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":3463},"46034":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":41029},{"orbit":0,"id":10552}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":980,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":46034},"13691":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":[],"skill":13691},"55947":{"orbit":2,"orbitIndex":1,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[{"orbit":3,"id":46088}],"group":1013,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":55947},"17729":{"orbit":2,"orbitIndex":5,"connections":[{"orbit":0,"id":56466}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":589,"connectionArt":"CharacterPlanned","stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"skill":17729},"33887":{"orbit":4,"orbitIndex":7,"recipe":["Ire","Isolation","Greed"],"connections":[{"orbit":0,"id":61432}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Full Salvo","group":874,"isNotable":true,"stats":["25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds"],"skill":33887},"35594":{"orbit":2,"orbitIndex":8,"stats":["10% increased effect of Fully Broken Armour"],"connections":[],"group":943,"name":"Armour Break Effect","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":35594},"44452":{"orbit":5,"orbitIndex":48,"connections":[{"orbit":-6,"id":21809}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":177,"connectionArt":"CharacterPlanned","stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"skill":44452},"40760":{"orbit":2,"orbitIndex":1,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":21779},{"orbit":0,"id":9185},{"orbit":0,"id":47177}],"group":880,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":40760},"28573":{"orbit":7,"orbitIndex":6,"stats":["Minions Revive 5% faster"],"connections":[],"group":893,"name":"Minion Revive Speed","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":28573},"14777":{"orbit":2,"orbitIndex":20,"recipe":["Suffering","Guilt","Despair"],"connections":[{"orbit":4,"id":59466},{"orbit":0,"id":20015}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Bravado","group":383,"isNotable":true,"stats":["Empowered Attacks have 50% increased Stun Buildup","100% increased Stun Threshold during Empowered Attacks"],"skill":14777},"59909":{"orbit":7,"orbitIndex":22,"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"connections":[{"orbit":4,"id":30539}],"group":1015,"name":"Corpses","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":59909},"59785":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":27296},{"orbit":0,"id":1200},{"orbit":0,"id":33452},{"orbit":0,"id":8852}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":121,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59785},"10192":{"orbit":3,"orbitIndex":0,"connections":[{"orbit":0,"id":3823}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","options":{"Witch":{"stats":["Minions deal 10% increased Damage"],"id":61436,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage"}},"group":713,"isSwitchable":true,"stats":["10% increased Elemental Damage"],"skill":10192},"53698":{"orbit":7,"orbitIndex":22,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-3,"id":20916},{"orbit":0,"id":59355}],"group":1115,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":53698},"60974":{"orbit":2,"orbitIndex":2,"stats":["5% chance to create an additional Remnant"],"connections":[{"orbit":-2,"id":1506}],"group":1057,"name":"Additional Remnant Chance","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":60974},"59256":{"orbit":2,"orbitIndex":7,"stats":["10% increased Critical Hit Chance if you have Killed Recently"],"connections":[{"orbit":0,"id":8531}],"group":545,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":59256},"13823":{"orbit":3,"orbitIndex":13,"recipe":["Envy","Fear","Isolation"],"connections":[{"orbit":0,"id":63861},{"orbit":0,"id":32054}],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Controlling Magic","group":1013,"isNotable":true,"stats":["25% increased Critical Hit Chance for Spells","Hits have 25% reduced Critical Hit Chance against you"],"skill":13823},"60173":{"orbit":7,"orbitIndex":21,"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"connections":[{"orbit":2,"id":4238}],"group":1144,"name":"One Handed Accuracy","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":60173},"24338":{"orbit":5,"orbitIndex":70,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"connections":[{"orbit":0,"id":48581}],"group":635,"name":"Damage against Ailments","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":24338},"24807":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds","name":"Stone Skin","ascendancyName":"Titan","group":69,"isNotable":true,"stats":["50% more Armour from Equipped Body Armour"],"skill":24807},"61362":{"orbit":2,"orbitIndex":20,"stats":["10% increased Area Damage"],"connections":[{"orbit":-2,"id":36737}],"group":239,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":61362},"34415":{"orbit":4,"orbitIndex":61,"stats":["12% increased Physical Damage"],"connections":[{"orbit":4,"id":55422}],"group":407,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":34415},"16938":{"orbit":7,"orbitIndex":18,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":3,"id":8789}],"group":989,"name":"Damage and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":16938},"9199":{"orbit":5,"orbitIndex":54,"stats":["+8% Surpassing chance to fire an additional Projectile"],"connections":[],"group":1233,"name":"Surpassing Projectile Chance","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":9199},"42205":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":343,"connections":[],"stats":[],"skill":42205},"9393":{"orbit":1,"orbitIndex":8,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":927,"connections":[],"stats":[],"skill":9393},"60313":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","name":"Chaos Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":678,"connections":[],"stats":[],"skill":60313},"59644":{"orbit":7,"orbitIndex":15,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":-7,"id":42959}],"group":1222,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":59644},"47759":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":62677}],"icon":"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds","name":"Whispers of Doom","group":837,"isKeystone":true,"stats":["You can apply an additional Curse","Double Activation Delay of Curses"],"skill":47759},"23221":{"orbit":3,"orbitIndex":23,"recipe":["Suffering","Isolation","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Trick Shot","group":1233,"isNotable":true,"stats":["Projectiles have 15% chance to Chain an additional time from terrain"],"skill":23221},"43522":{"orbit":7,"orbitIndex":7,"stats":["6% reduced Charm Charges used"],"connections":[{"orbit":4,"id":38497},{"orbit":6,"id":33099}],"group":1208,"name":"Charm Charges Used","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":43522},"58058":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","name":"Bow Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":[],"skill":58058},"44455":{"orbit":0,"orbitIndex":0,"stats":["12% increased Cold Damage"],"connections":[{"orbit":0,"id":41669},{"orbit":0,"id":60515}],"group":749,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":44455},"59908":{"orbit":3,"orbitIndex":23,"connections":[{"orbit":2147483647,"id":36197}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Area of Effect","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["10% increased Area of Effect for Skills used by Totems"],"skill":59908},"17268":{"orbit":6,"orbitIndex":13,"connections":[{"orbit":3,"id":7621}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Shock Effect","ascendancyName":"Invoker","group":1430,"stats":["15% increased Magnitude of Shock you inflict"],"skill":17268},"56216":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":9485}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":780,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":56216},"28903":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","name":"Poison Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1222,"connections":[],"stats":[],"skill":28903},"46565":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":15855}],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Stance Breaker","group":510,"isNotable":true,"stats":["25% increased Damage with Swords"],"skill":46565},"23939":{"orbit":7,"orbitIndex":12,"recipe":["Isolation","Fear","Fear"],"connections":[{"orbit":0,"id":857}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Glazed Flesh","group":591,"isNotable":true,"stats":["3% of Damage Taken Recouped as Life, Mana and Energy Shield"],"skill":23939},"3688":{"orbit":7,"orbitIndex":4,"recipe":["Isolation","Greed","Ire"],"connections":[{"orbit":-7,"id":47614},{"orbit":0,"id":32509}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Dynamism","group":1039,"isNotable":true,"stats":["40% increased Damage if you've Triggered a Skill Recently","Meta Skills gain 15% increased Energy"],"skill":3688},"58198":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Ire","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Well of Power","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":339,"isNotable":true,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently","Recover 5% of maximum Mana when you consume a Power Charge"],"skill":58198},"3339":{"orbit":3,"orbitIndex":19,"stats":["25% increased Attack Damage while Surrounded"],"connections":[{"orbit":0,"id":45585}],"group":439,"name":"Attack Damage while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":3339},"52245":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds","name":"Distant Dreamer","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":1356,"isNotable":true,"stats":["+10% to Chaos Resistance","Gain 5% of Damage as Extra Chaos Damage","50% reduced effect of Withered on you"],"skill":52245},"17532":{"orbit":2,"orbitIndex":20,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":0,"id":61934}],"group":555,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":17532},"44983":{"orbit":2,"orbitIndex":22,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":3685}],"group":650,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":44983},"28564":{"orbit":2,"orbitIndex":8,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":0,"id":8460}],"group":190,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":28564},"46705":{"orbit":2,"orbitIndex":6,"stats":["15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"],"connections":[{"orbit":0,"id":12822}],"group":1005,"name":"Projectile Damage if Melee Hit","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":46705},"48551":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":9,"id":52703}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Spell Critical Chance","ascendancyName":"Blood Mage","group":864,"stats":["12% increased Critical Hit Chance for Spells"],"skill":48551},"60700":{"orbit":7,"orbitIndex":3,"stats":["20% increased Freeze Buildup with Empowered Attacks"],"connections":[{"orbit":2147483647,"id":44974}],"group":1161,"name":"Empowered Attack Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":60700},"3242":{"orbit":2,"orbitIndex":16,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":-4,"id":59636}],"group":745,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":3242},"27705":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":48773},{"orbit":0,"id":2582},{"orbit":0,"id":65212},{"orbit":0,"id":39495},{"orbit":0,"id":3543},{"orbit":0,"id":20787}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1380,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":27705},"61493":{"orbit":3,"orbitIndex":19,"recipe":["Paranoia","Envy","Despair"],"connections":[{"orbit":0,"id":18240}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Austerity Measures","group":350,"isNotable":true,"stats":["+5 to all Attributes","Gain additional Ailment Threshold equal to 16% of maximum Energy Shield","Gain additional Stun Threshold equal to 16% of maximum Energy Shield"],"skill":61493},"38776":{"orbit":7,"orbitIndex":16,"stats":["+8 to Dexterity"],"connections":[{"orbit":0,"id":57816}],"group":724,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":38776},"50535":{"orbit":2,"orbitIndex":18,"stats":["15% increased effect of Archon Buffs on you"],"connections":[{"orbit":2,"id":10612}],"group":700,"name":"Archon Effect","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":50535},"7553":{"orbit":5,"orbitIndex":48,"connections":[{"orbit":-7,"id":43385},{"orbit":0,"id":15842}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Trusted Partner","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Companions have 20% increased maximum Life","5% of Damage from Hits is taken from your Damageable Companion's Life before you"],"skill":7553},"22419":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":18407},{"orbit":0,"id":4739}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":715,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":22419},"30546":{"orbit":7,"orbitIndex":23,"recipe":["Guilt","Fear","Suffering"],"connections":[{"orbit":0,"id":12005}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","name":"Electrified Claw","group":201,"isNotable":true,"stats":["Gain 8% of Damage as Extra Lightning Damage while Shapeshifted"],"skill":30546},"41415":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":573,"connections":[],"stats":[],"skill":41415},"46300":{"orbit":2,"orbitIndex":14,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":0,"id":63021},{"orbit":0,"id":52774}],"group":685,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":46300},"31273":{"orbit":2,"orbitIndex":4,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":17372}],"group":1314,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":31273},"49996":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32183},{"orbit":-4,"id":38215},{"orbit":3,"id":5163},{"orbit":0,"id":33463}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1272,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":49996},"1778":{"orbit":7,"orbitIndex":12,"stats":["20% increased Hazard Duration"],"connections":[{"orbit":0,"id":30408},{"orbit":0,"id":17523}],"group":1369,"name":"Hazard Duration","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":1778},"17796":{"orbit":2,"orbitIndex":12,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":2147483647,"id":12412}],"group":590,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":17796},"28638":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds","name":"Quarterstaff Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern","group":1390,"connections":[{"orbit":0,"id":37514},{"orbit":0,"id":2113}],"stats":[],"skill":28638},"53440":{"orbit":3,"orbitIndex":7,"stats":["Gain 2 Rage on Melee Axe Hit"],"connections":[{"orbit":0,"id":11306}],"group":172,"name":"Axe Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":53440},"56605":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds","name":"Bulwark","group":469,"isKeystone":true,"stats":["Dodge Roll cannot Avoid Damage","Take 30% less Damage from Hits while Dodge Rolling"],"skill":56605},"63739":{"orbit":7,"orbitIndex":13,"recipe":["Envy","Despair","Guilt"],"connections":[{"orbit":0,"id":37593}],"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","name":"Vigorous Remnants","group":802,"isNotable":true,"stats":["Recover 3% of Maximum Life when you collect a Remnant"],"skill":63739},"54631":{"orbit":0,"orbitIndex":0,"stats":["6% increased bonuses gained from Equipped Quiver"],"connections":[{"orbit":0,"id":30132}],"group":1252,"name":"Quiver Effect","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":54631},"1200":{"orbit":4,"orbitIndex":36,"connections":[{"orbit":-5,"id":53822},{"orbit":0,"id":55190},{"orbit":0,"id":62313},{"orbit":0,"id":18353}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":98,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":1200},"17672":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38732},{"orbit":0,"id":64427}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":866,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":17672},"27581":{"orbit":4,"orbitIndex":12,"stats":["5% increased Block chance"],"connections":[{"orbit":0,"id":50510}],"group":117,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":27581},"61104":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Greed","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Staggering Wounds","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":1019,"isNotable":true,"stats":["50% chance to Knock Back Bleeding Enemies with Hits"],"skill":61104},"55422":{"orbit":3,"orbitIndex":17,"stats":["12% increased Physical Damage"],"connections":[{"orbit":4,"id":54640}],"group":407,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":55422},"34541":{"orbit":1,"orbitIndex":3,"recipe":["Paranoia","Greed","Suffering"],"connections":[{"orbit":0,"id":63762}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Energising Deflection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1309,"isNotable":true,"stats":["30% increased Energy Shield Recharge Rate","5% increased Deflection Rating"],"skill":34541},"61897":{"orbit":8,"orbitIndex":32,"connections":[{"orbit":8,"id":38601}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Armour and Evasion","ascendancyName":"Witchhunter","group":271,"stats":["15% increased Armour and Evasion Rating"],"skill":61897},"58329":{"orbit":6,"orbitIndex":18,"connections":[{"orbit":0,"id":56360},{"orbit":0,"id":61196},{"orbit":0,"id":56638}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":903,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":58329},"45899":{"orbit":3,"orbitIndex":5,"stats":["6% increased Fire Damage","5% increased Area of Effect"],"connections":[{"orbit":0,"id":968}],"group":586,"name":"Fire Damage and Area","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":45899},"53177":{"orbit":2,"orbitIndex":3,"stats":["50% chance to gain Volatility when you are Stunned"],"connections":[{"orbit":2147483647,"id":43944}],"group":1220,"name":"Volatility when Stunned","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":53177},"41538":{"orbit":3,"orbitIndex":18,"stats":["15% increased Elemental Ailment Threshold"],"connections":[{"orbit":3,"id":9112},{"orbit":0,"id":30047}],"group":1030,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":41538},"4931":{"orbit":2,"orbitIndex":0,"recipe":["Ire","Fear","Envy"],"connections":[{"orbit":0,"id":21404},{"orbit":0,"id":27307}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Dependable Ward","group":472,"isNotable":true,"stats":["25% increased Energy Shield Recharge Rate","25% faster start of Energy Shield Recharge"],"skill":4931},"21438":{"orbit":7,"orbitIndex":7,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":0,"id":1019}],"group":873,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":21438},"10053":{"orbit":2,"orbitIndex":20,"connections":[{"orbit":0,"id":19470},{"orbit":0,"id":9458}],"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds","name":"Combat Alchemy","group":922,"isNotable":true,"stats":["10% chance for Flasks you use to not consume Charges","20% increased Life and Mana Recovery from Flasks"],"skill":10053},"20511":{"orbit":3,"orbitIndex":14,"recipe":["Despair","Suffering","Paranoia"],"connections":[{"orbit":-7,"id":53804},{"orbit":0,"id":49259}],"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Cremating Cries","group":222,"isNotable":true,"stats":["Empowered Attacks Gain 15% of Physical Damage as Extra Fire damage"],"skill":20511},"41414":{"orbit":7,"orbitIndex":23,"stats":["+5% to Cold Resistance"],"connections":[{"orbit":-7,"id":4547}],"group":238,"name":"Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","skill":41414},"54232":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":5,"id":44659}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":637,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54232},"12761":{"orbit":2,"orbitIndex":4,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[],"group":1058,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":12761},"45370":{"orbit":2,"orbitIndex":16,"recipe":["Suffering","Ire","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds","name":"The Raging Ox","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":1179,"isNotable":true,"stats":["Hits against you have 30% reduced Critical Damage Bonus","15% reduced Duration of Ailments on You","+10 to Strength"],"skill":45370},"25458":{"orbit":7,"orbitIndex":20,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"connections":[{"orbit":3,"id":37568}],"group":1179,"name":"Strength and Critical Damage Bonus on You","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","skill":25458},"57273":{"orbit":4,"orbitIndex":33,"stats":["12% increased Damage while Shapeshifted"],"connections":[{"orbit":0,"id":33562}],"group":201,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":57273},"61632":{"orbit":5,"orbitIndex":2,"stats":["5% chance to Daze on Hit","20% increased Freeze Buildup with Quarterstaves"],"connections":[{"orbit":0,"id":34316}],"group":1388,"name":"Quarterstaff Freeze and Daze Buildup","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":61632},"56214":{"orbit":3,"orbitIndex":3,"stats":["8% increased Ignite Duration on Enemies"],"connections":[{"orbit":0,"id":30334}],"group":175,"name":"Ignite Duration","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":56214},"28175":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":64471},{"orbit":0,"id":21716},{"orbit":0,"id":48026}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":462,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28175},"60170":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1188,"connections":[],"stats":[],"skill":60170},"42999":{"orbit":3,"orbitIndex":10,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":3,"id":4925}],"group":881,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":42999},"23940":{"orbit":7,"orbitIndex":20,"recipe":["Isolation","Envy","Ire"],"connections":[{"orbit":3,"id":14342},{"orbit":0,"id":58138}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Adamant Recovery","group":117,"isNotable":true,"stats":["Increases and Reductions to Armour also apply to Energy Shield","Recharge Rate at 40% of their value"],"skill":23940},"61896":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance while Shapeshifted"],"connections":[{"orbit":-1,"id":53354},{"orbit":-3,"id":8850}],"group":109,"name":"Shapeshifted Critical Chance","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":61896},"11938":{"orbit":0,"orbitIndex":0,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":39964}],"group":878,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":11938},"61367":{"orbit":2,"orbitIndex":10,"connections":[{"orbit":2147483647,"id":64239}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Attack Added Lighting Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":288,"connectionArt":"CharacterPlanned","stats":["Adds 1 to 7 Lightning damage to Attacks"],"skill":61367},"45774":{"orbit":4,"orbitIndex":71,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"connections":[{"orbit":3,"id":54975}],"group":1159,"name":"Slow Effect","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":45774},"11015":{"orbit":0,"orbitIndex":0,"stats":["16% increased Hazard Damage"],"connections":[{"orbit":0,"id":45329}],"group":1185,"name":"Hazard Damage","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":11015},"3471":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":647,"connections":[],"stats":[],"skill":3471},"44316":{"orbit":1,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":293,"connections":[],"stats":[],"skill":44316},"37971":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Companion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","group":1414,"connections":[],"stats":[],"skill":37971},"27572":{"orbit":4,"orbitIndex":14,"connections":[{"orbit":2147483647,"id":12940}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage.dds","name":"Chaos Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":["20% increased Chaos Damage"],"skill":27572},"7788":{"orbit":7,"orbitIndex":4,"stats":["8% increased Knockback Distance"],"connections":[{"orbit":5,"id":57805}],"group":757,"name":"Knockback","icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":7788},"7338":{"orbit":7,"orbitIndex":23,"recipe":["Paranoia","Despair","Fear"],"connections":[{"orbit":0,"id":52060}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Abasement","group":1209,"isNotable":true,"stats":["20% increased Stun Recovery","Gain additional Stun Threshold equal to 30% of maximum Energy Shield"],"skill":7338},"12800":{"orbit":0,"orbitIndex":0,"stats":["25% increased Evasion Rating while Sprinting"],"connections":[{"orbit":0,"id":8896}],"group":1301,"name":"Evasion while Sprinting","icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","skill":12800},"36389":{"orbit":8,"orbitIndex":59,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":8,"id":53989}],"group":487,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":36389},"24929":{"orbit":2,"orbitIndex":19,"isOnlyImage":true,"icon":"","name":"Minion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":188,"connectionArt":"CharacterPlanned","stats":[],"skill":24929},"11178":{"orbit":3,"orbitIndex":19,"connections":[{"orbit":0,"id":24224}],"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Whirling Onslaught","group":172,"isNotable":true,"stats":["50% chance to gain Onslaught on Killing Blow with Axes"],"skill":11178},"38235":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":555,"connections":[],"stats":[],"skill":38235},"39569":{"orbit":7,"orbitIndex":2,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":35901},{"orbit":-4,"id":3458},{"orbit":3,"id":7353}],"group":1131,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":39569},"229":{"orbit":2,"orbitIndex":6,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"connections":[{"orbit":0,"id":46365}],"group":617,"name":"Minion Damage and Life","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":229},"5988":{"orbit":2,"orbitIndex":8,"stats":["15% increased Damage with Hits against Blinded Enemies"],"connections":[{"orbit":7,"id":38459}],"group":1033,"name":"Damage vs Blinded","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":5988},"55412":{"orbit":3,"orbitIndex":15,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":22538},{"orbit":-4,"id":17796}],"group":590,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":55412},"74":{"orbit":9,"orbitIndex":24,"connections":[{"orbit":0,"id":17923},{"orbit":-9,"id":24475},{"orbit":0,"id":36788},{"orbit":0,"id":25779},{"orbit":-8,"id":1347},{"orbit":0,"id":25885}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Acolyte of Chayula","ascendancyName":"Acolyte of Chayula","isAscendancyStart":true,"group":1458,"stats":[],"skill":74},"38111":{"orbit":2,"orbitIndex":0,"recipe":["Greed","Disgust","Isolation"],"connections":[{"orbit":0,"id":32241}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Pliable Flesh","group":1156,"isNotable":true,"stats":["6% of Damage taken Recouped as Life","25% increased speed of Recoup Effects"],"skill":38111},"32271":{"orbit":7,"orbitIndex":15,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":-2,"id":54311}],"group":346,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":32271},"13855":{"orbit":0,"orbitIndex":0,"stats":["+10 to Armour","+5 to maximum Energy Shield"],"connections":[{"orbit":0,"id":50626},{"orbit":0,"id":64370}],"group":673,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":13855},"3215":{"orbit":7,"orbitIndex":9,"recipe":["Guilt","Envy","Suffering"],"connections":[{"orbit":0,"id":44359}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Melding","group":836,"isNotable":true,"stats":["40% increased maximum Energy Shield","10% reduced maximum Mana"],"skill":3215},"42998":{"orbit":2,"orbitIndex":9,"stats":["12% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":2,"id":40333}],"group":1230,"name":"Damage with Companion in Presence","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":42998},"59913":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":29871}],"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds","name":"Called Shots","ascendancyName":"Deadeye","group":1432,"isNotable":true,"stats":["Grants Skill: Called Shots"],"skill":59913},"24871":{"orbit":4,"orbitIndex":4,"stats":["3% increased Attack Speed with One Handed Weapons"],"connections":[{"orbit":0,"id":10602}],"group":386,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":24871},"43791":{"orbit":3,"orbitIndex":0,"recipe":["Greed","Despair","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","name":"Rallying Icon","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","group":643,"isNotable":true,"stats":["When a Banner expires, recover 15% of the Glory required for that Banner"],"skill":43791},"41012":{"orbit":0,"orbitIndex":0,"stats":["6% increased Fire Damage","10% increased Armour"],"connections":[{"orbit":-6,"id":11392}],"group":96,"name":"Fire Damage and Armour ","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":41012},"38763":{"orbit":7,"orbitIndex":16,"stats":["6% increased Reservation Efficiency of Herald Skills"],"connections":[{"orbit":0,"id":27859}],"group":824,"name":"Herald Reservation","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":38763},"47359":{"orbit":7,"orbitIndex":17,"stats":["Triggered Spells deal 16% increased Spell Damage"],"connections":[{"orbit":-7,"id":14231}],"group":1174,"name":"Triggered Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":47359},"34543":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds","name":"The Frenzied Bear","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":1121,"isNotable":true,"stats":["30% increased Damage if you've consumed a Frenzy Charge Recently","10% increased Skill Speed if you've consumed a Frenzy Charge Recently","+10 to Strength"],"skill":34543},"3630":{"orbit":3,"orbitIndex":18,"stats":["10% increased Evasion Rating","10% increased Energy Shield Recharge Rate"],"connections":[{"orbit":-5,"id":62624}],"group":1257,"name":"Evasion and Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":3630},"55149":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Pure Chaos","group":1223,"isNotable":true,"stats":["Gain 11% of Damage as Extra Chaos Damage"],"skill":55149},"58591":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds","name":"Enhanced Effectiveness","ascendancyName":"Gemling Legionnaire","group":543,"isNotable":true,"stats":["20% less Attributes","Inherent bonuses gained from Attributes are doubled"],"skill":58591},"36250":{"orbit":0,"orbitIndex":0,"stats":["15% increased Life Regeneration rate while Shapeshifted"],"connections":[{"orbit":-7,"id":56368},{"orbit":3,"id":49214},{"orbit":3,"id":55897}],"group":123,"name":"Shapeshifted Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":36250},"16680":{"orbit":4,"orbitIndex":15,"stats":["15% increased Crossbow Reload Speed"],"connections":[{"orbit":0,"id":48137}],"group":874,"name":"Crossbow Reload Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":16680},"27910":{"orbit":1,"orbitIndex":0,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":64056},{"orbit":0,"id":53938}],"group":1024,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":27910},"21567":{"orbit":7,"orbitIndex":23,"stats":["12% increased Spell Damage if you have Shapeshifted to Human form Recently"],"connections":[{"orbit":0,"id":59710}],"group":313,"name":"Shapeshifting Spell Damage","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":21567},"47623":{"orbit":2,"orbitIndex":14,"stats":["12% increased Grenade Damage"],"connections":[{"orbit":0,"id":38570}],"group":613,"name":"Grenade Damage","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":47623},"62159":{"orbit":2,"orbitIndex":8,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":-7,"id":59603}],"group":898,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":62159},"65322":{"orbit":0,"orbitIndex":0,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":54818},{"orbit":0,"id":13425},{"orbit":0,"id":47709},{"orbit":0,"id":58718}],"group":681,"name":"Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":65322},"45777":{"orbit":2,"orbitIndex":16,"recipe":["Envy","Paranoia","Isolation"],"connections":[{"orbit":0,"id":47212}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Hidden Barb","group":468,"isNotable":true,"stats":["20% increased chance to inflict Ailments","20% increased Physical Damage"],"skill":45777},"61490":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-8,"id":47429},{"orbit":0,"id":64995},{"orbit":0,"id":8600}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":397,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":61490},"58855":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","name":"Armour Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":235,"connections":[],"stats":[],"skill":58855},"4716":{"orbit":3,"orbitIndex":18,"recipe":["Guilt","Greed","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Afterimage","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":649,"isNotable":true,"stats":["60% increased Evasion Rating if you have Hit an Enemy Recently","5% reduced Movement Speed Penalty from using Skills while moving"],"skill":4716},"37972":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-4,"id":4891},{"orbit":5,"id":18280}],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Charm Charges","ascendancyName":"Ritualist","group":1489,"stats":["15% increased Charm Charges gained"],"skill":37972},"13289":{"orbit":8,"orbitIndex":15,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds","name":"Barya of Kelari","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Kelari, the Tainted Sands"],"skill":13289},"20105":{"orbit":0,"orbitIndex":0,"stats":["10% increased Accuracy Rating with Spears"],"connections":[{"orbit":0,"id":13895}],"group":1357,"name":"Spear Accuracy","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":20105},"10286":{"orbit":7,"orbitIndex":8,"stats":["10% increased Armour","Break 15% increased Armour"],"connections":[{"orbit":-4,"id":38066}],"group":205,"name":"Armour Break and Armour","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":10286},"44707":{"orbit":0,"orbitIndex":0,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"connections":[{"orbit":0,"id":54785},{"orbit":0,"id":7628}],"group":677,"name":"Shield Damage","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":44707},"43650":{"orbit":1,"orbitIndex":11,"stats":["8% increased Critical Damage Bonus","5% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":21070},{"orbit":0,"id":53386}],"group":223,"name":"Critical Chance and Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":43650},"36778":{"orbit":4,"orbitIndex":58,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":36479}],"group":934,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":36778},"42737":{"orbit":7,"orbitIndex":4,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","name":"Crossbow Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":553,"connections":[],"stats":[],"skill":42737},"33225":{"orbit":0,"orbitIndex":0,"stats":["Minions have +3% to Maximum Fire Resistances","Minions have +20% to Fire Resistance"],"connections":[],"group":879,"name":"Minion Fire Resistance","icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","skill":33225},"27307":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":472,"connections":[],"stats":[],"skill":27307},"45248":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":14429}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","ascendancyName":"Gemling Legionnaire","group":394,"stats":["+2% to Quality of all Skills"],"skill":45248},"8440":{"orbit":1,"orbitIndex":7,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[{"orbit":-7,"id":45013}],"group":846,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":8440},"30346":{"orbit":7,"orbitIndex":13,"stats":["+10 to maximum Energy Shield"],"connections":[{"orbit":0,"id":44871},{"orbit":-5,"id":29695},{"orbit":6,"id":34006}],"group":775,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":30346},"14980":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":276,"connectionArt":"CharacterPlanned","stats":[],"skill":14980},"35863":{"orbit":2,"orbitIndex":20,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":51732}],"group":424,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":35863},"5802":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Greed","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","name":"Stand and Deliver","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1247,"isNotable":true,"stats":["Projectiles have 40% increased Critical Damage Bonus against Enemies within 2m","Projectiles deal 25% increased Damage with Hits against Enemies within 2m"],"skill":5802},"65189":{"orbit":2,"orbitIndex":7,"stats":["Damage Penetrates 6% of Enemy Elemental Resistances while Shapeshifted"],"connections":[{"orbit":0,"id":17260}],"group":325,"name":"Shapeshifted Elemental Penetration","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":65189},"56996":{"orbit":4,"orbitIndex":3,"stats":["16% increased Totem Life"],"connections":[{"orbit":0,"id":9568}],"group":147,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":56996},"6516":{"orbit":7,"orbitIndex":22,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[{"orbit":7,"id":63981},{"orbit":0,"id":12890}],"group":1231,"name":"Stun Threshold if no recent Stun","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":6516},"23879":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","name":"Shapeshifting Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":344,"connections":[],"stats":[],"skill":23879},"5257":{"orbit":7,"orbitIndex":20,"recipe":["Suffering","Guilt","Greed"],"connections":[{"orbit":2,"id":16367}],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Echoing Frost","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1022,"isNotable":true,"stats":["30% increased Elemental Damage if you've Chilled an Enemy Recently"],"skill":5257},"5740":{"orbit":2,"orbitIndex":6,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":40687}],"group":1007,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":5740},"55817":{"orbit":7,"orbitIndex":1,"recipe":["Ire","Isolation","Guilt"],"connections":[{"orbit":0,"id":58674}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Alchemical Oil","group":641,"isNotable":true,"stats":["30% increased Exposure Effect"],"skill":55817},"16413":{"orbit":2,"orbitIndex":4,"stats":["8% increased Attack Damage","Minions deal 8% increased Damage"],"connections":[{"orbit":0,"id":42660}],"group":221,"name":"Attack and Minion Damage","icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","skill":16413},"47097":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds","name":"Warcaller's Bellow","ascendancyName":"Warbringer","group":53,"isNotable":true,"stats":["Warcries Explode Corpses dealing 25% of their Life as Physical Damage","Ignore Warcry Cooldowns"],"skill":47097},"59647":{"orbit":7,"orbitIndex":10,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[{"orbit":3,"id":8791}],"group":1032,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":59647},"51454":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":[],"skill":51454},"19644":{"orbit":4,"orbitIndex":29,"recipe":["Isolation","Suffering","Envy"],"connections":[{"orbit":0,"id":14505}],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Left Hand of Darkness","group":460,"isNotable":true,"stats":["Minions have 20% additional Physical Damage Reduction","Minions have +23% to Chaos Resistance","Attacks Gain 5% of Damage as extra Chaos Damage"],"skill":19644},"45111":{"orbit":7,"orbitIndex":2,"stats":["20% increased Curse Duration"],"connections":[{"orbit":0,"id":14446}],"group":1207,"name":"Curse Duration","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":45111},"3091":{"orbit":2,"orbitIndex":8,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"],"connections":[{"orbit":0,"id":24087}],"group":706,"name":"Infusion Consumption Chance","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":3091},"18585":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":6127}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour","ascendancyName":"Warbringer","group":34,"stats":["20% increased Armour"],"skill":18585},"10713":{"orbit":3,"orbitIndex":23,"connections":[{"orbit":0,"id":16615}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["30% increased Armour while stationary"],"skill":10713},"42736":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-3,"id":60685}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":840,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":42736},"43653":{"orbit":4,"orbitIndex":9,"stats":["12% increased Cold Damage"],"connections":[{"orbit":0,"id":26518},{"orbit":0,"id":48171}],"group":244,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":43653},"63074":{"orbit":1,"orbitIndex":2,"recipe":["Despair","Isolation","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Dark Entries","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":881,"isNotable":true,"stats":["+1 to Level of all Chaos Skills"],"skill":63074},"331":{"orbit":2,"orbitIndex":3,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 3% of Evasion Rating"],"connections":[{"orbit":2,"id":42103}],"group":1201,"name":"Deflection and Evasion","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":331},"22359":{"orbit":4,"orbitIndex":36,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":-2,"id":60692}],"group":1022,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":22359},"54883":{"orbit":0,"orbitIndex":0,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":-2,"id":34473}],"group":1211,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":54883},"38501":{"orbit":4,"orbitIndex":40,"stats":["3% increased Attack Speed"],"connections":[{"orbit":-4,"id":47796}],"group":662,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":38501},"12498":{"orbit":0,"orbitIndex":0,"stats":["6% increased bonuses gained from Equipped Quiver"],"connections":[{"orbit":0,"id":30341}],"group":1102,"name":"Quiver Effect","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":12498},"6842":{"orbit":3,"orbitIndex":9,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"connections":[{"orbit":3,"id":18472}],"group":1215,"name":"Stun and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","skill":6842},"39292":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-7,"id":40}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Evasion","ascendancyName":"Pathfinder","group":1456,"stats":["20% increased Evasion Rating"],"skill":39292},"13359":{"orbit":3,"orbitIndex":15,"stats":["8% increased Energy Shield Recharge Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":31943}],"group":700,"name":"Cold Damage and Energy Shield Recharge Rate","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":13359},"18849":{"orbit":5,"orbitIndex":2,"connections":[],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds","name":"Shaper of Winter","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["All Damage from Hits Contributes to Chill Magnitude"],"skill":18849},"5009":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Paranoia"],"connections":[{"orbit":0,"id":12169}],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Seeing Stars","group":1183,"isNotable":true,"stats":["10% chance to Daze on Hit","25% increased Daze Duration"],"skill":5009},"56997":{"orbit":4,"orbitIndex":6,"recipe":["Ire","Envy","Despair"],"connections":[{"orbit":-5,"id":23861},{"orbit":0,"id":56595}],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Heavy Contact","group":428,"isNotable":true,"stats":["Hits that Heavy Stun Enemies have Culling Strike"],"skill":56997},"55938":{"orbit":3,"orbitIndex":9,"stats":["10% increased effect of Archon Buffs on you"],"connections":[{"orbit":7,"id":41394}],"group":1051,"name":"Archon Effect","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":55938},"28892":{"orbit":3,"orbitIndex":2,"recipe":["Suffering","Guilt","Paranoia"],"connections":[{"orbit":7,"id":13845},{"orbit":0,"id":65042}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Primal Rage","group":176,"isNotable":true,"stats":["+12 to maximum Rage while Shapeshifted"],"skill":28892},"36252":{"orbit":6,"orbitIndex":36,"connections":[{"orbit":0,"id":46522},{"orbit":0,"id":762},{"orbit":0,"id":12054},{"orbit":0,"id":29162},{"orbit":0,"id":54892}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Tactician","ascendancyName":"Tactician","isAscendancyStart":true,"group":349,"stats":[],"skill":36252},"12661":{"orbit":7,"orbitIndex":16,"recipe":["Isolation","Ire","Guilt"],"connections":[{"orbit":0,"id":34984}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Asceticism","group":942,"isNotable":true,"stats":["Stun Threshold is based on 30% of your Energy Shield instead of Life"],"skill":12661},"32534":{"orbit":9,"orbitIndex":96,"connections":[{"orbit":0,"id":35453},{"orbit":0,"id":19424},{"orbit":0,"id":13715},{"orbit":0,"id":51690},{"orbit":0,"id":29323}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Titan","ascendancyName":"Titan","isAscendancyStart":true,"group":77,"stats":[],"skill":32534},"62677":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":825,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":62677},"3762":{"orbit":9,"orbitIndex":125,"connections":[],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds","name":"Ancestral Empowerment","ascendancyName":"Titan","group":77,"isNotable":true,"stats":["Every second Slam Skill you use yourself is Ancestrally Boosted"],"skill":3762},"21568":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":26196},{"orbit":0,"id":26300}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":284,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":21568},"10783":{"orbit":2,"orbitIndex":16,"stats":["10% increased Damage with Swords"],"connections":[{"orbit":0,"id":9762},{"orbit":0,"id":38564}],"group":548,"name":"Sword Damage","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":10783},"49473":{"orbit":0,"orbitIndex":0,"stats":["20% chance for Attack Hits to apply Incision"],"connections":[{"orbit":0,"id":61104}],"group":1011,"name":"Incision Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":49473},"64659":{"orbit":3,"orbitIndex":21,"recipe":["Isolation","Fear","Greed"],"connections":[{"orbit":0,"id":3355}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Lasting Boons","group":590,"isNotable":true,"stats":["20% reduced Slowing Potency of Debuffs on You","Buffs on you expire 10% slower"],"skill":64659},"56466":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Night's Bite","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":589,"connectionArt":"CharacterPlanned","stats":["Spells Gain 12% of Damage as extra Chaos Damage"],"skill":56466},"8867":{"orbit":8,"orbitIndex":60,"connections":[{"orbit":0,"id":7246}],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds","name":"Constant Gale","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["You have Arcane Surge"],"skill":8867},"14383":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Despair","Guilt"],"connections":[{"orbit":0,"id":46601}],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Suffusion","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","group":1169,"isNotable":true,"stats":["30% increased amount of Mana Leeched","Unaffected by Chill while Leeching Mana"],"skill":14383},"6330":{"orbit":7,"orbitIndex":5,"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"connections":[],"group":1260,"name":"Accuracy and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":6330},"52774":{"orbit":2,"orbitIndex":18,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":0,"id":5084}],"group":685,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":52774},"23352":{"orbit":8,"orbitIndex":62,"connections":[{"orbit":-4,"id":8611}],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds","name":"Rupture the Soul","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":390,"stats":["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"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds","name":"Rupture the Flesh"}},"group":1120,"isNotable":true,"stats":["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"],"skill":23352},"56342":{"orbit":0,"orbitIndex":0,"stats":["Gain 2 Rage when Hit by an Enemy"],"connections":[{"orbit":3,"id":7341}],"group":336,"name":"Rage when Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":56342},"60034":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":15207},{"orbit":0,"id":22208}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Falcon Dive","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":1260,"isNotable":true,"stats":["4% increased Attack Speed","1% increased Attack Speed per 400 Accuracy Rating, up to 20%"],"skill":60034},"11838":{"orbit":7,"orbitIndex":6,"recipe":["Disgust","Suffering","Fear"],"connections":[{"orbit":-4,"id":33112}],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Dreamcatcher","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":1021,"isNotable":true,"stats":["25% increased Spell Damage while on Full Energy Shield","75% increased Energy Shield from Equipped Focus"],"skill":11838},"46431":{"orbit":0,"orbitIndex":0,"stats":["16% increased Hazard Damage"],"connections":[{"orbit":0,"id":11015},{"orbit":0,"id":38463}],"group":1196,"name":"Hazard Damage","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":46431},"46819":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":8616},{"orbit":0,"id":13909}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":737,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":46819},"61355":{"orbit":2,"orbitIndex":8,"stats":["4% of Damage is taken from Mana before Life"],"connections":[{"orbit":2,"id":29306}],"group":1171,"name":"Damage from Mana","icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","skill":61355},"60298":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds","name":"Against the Anvil","ascendancyName":"Smith of Kitava","group":15,"isNotable":true,"stats":["Grants Skill: Temper Weapon"],"skill":60298},"2672":{"orbit":2,"orbitIndex":2,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":6,"id":45569}],"group":214,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":2672},"42070":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Envy","Isolation"],"connections":[{"orbit":0,"id":26148}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Saqawal's Guidance","group":303,"isNotable":true,"stats":["20% increased Elemental Damage with Attacks","15% increased Accuracy Rating","+10 to Dexterity"],"skill":42070},"11776":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":37046}],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Physical Damage","ascendancyName":"Ritualist","group":1497,"stats":["15% increased Physical Damage"],"skill":11776},"48805":{"orbit":7,"orbitIndex":4,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[{"orbit":4,"id":7782},{"orbit":0,"id":26563}],"group":1080,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":48805},"55276":{"orbit":5,"orbitIndex":24,"connections":[{"orbit":5,"id":13411}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":878,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":55276},"14515":{"orbit":3,"orbitIndex":8,"stats":["15% increased Magnitude of Jagged Ground you create"],"connections":[{"orbit":0,"id":43778}],"group":283,"name":"Jagged Ground Effect","icon":"Art/2DArt/SkillIcons/icongroundslam.dds","skill":14515},"63469":{"orbit":2,"orbitIndex":10,"stats":["2% increased Skill Speed","5% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":30834},{"orbit":0,"id":50216}],"group":592,"name":"Mana Regeneration and Skill Speed","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":63469},"41017":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":14262},{"orbit":0,"id":1801}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1338,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":41017},"32071":{"orbit":3,"orbitIndex":2,"recipe":["Envy","Fear","Fear"],"connections":[{"orbit":0,"id":15427},{"orbit":0,"id":49111}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Primal Growth","group":134,"isNotable":true,"stats":["15% increased Area of Effect if you've Killed Recently","8% increased Area of Effect for Attacks"],"skill":32071},"21161":{"orbit":3,"orbitIndex":7,"stats":["10% reduced Movement Speed Penalty while Actively Blocking"],"connections":[{"orbit":5,"id":10500}],"group":245,"name":"Movement Penalty with Raised Shield","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":21161},"16538":{"orbit":2,"orbitIndex":2,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":0,"id":44330}],"group":769,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":16538},"22821":{"orbit":7,"orbitIndex":0,"connections":[{"orbit":0,"id":3823},{"orbit":0,"id":22314}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","options":{"Witch":{"stats":["Minions deal 10% increased Damage"],"id":183,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage"}},"group":711,"isSwitchable":true,"stats":["10% increased Elemental Damage"],"skill":22821},"664":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds","name":"Choice of Power","ascendancyName":"Acolyte of Chayula","group":1460,"isMultipleChoiceOption":true,"stats":["Remnants have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Purple"],"skill":664},"54485":{"orbit":7,"orbitIndex":22,"stats":["+8 to Strength"],"connections":[{"orbit":0,"id":25482}],"group":373,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":54485},"27834":{"orbit":4,"orbitIndex":41,"stats":["10% increased Critical Hit Chance with Traps"],"connections":[{"orbit":0,"id":63659},{"orbit":0,"id":34449}],"group":1347,"name":"Trap Critical Chance","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":27834},"21227":{"orbit":4,"orbitIndex":39,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":-2,"id":36290}],"group":1234,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":21227},"17923":{"orbit":9,"orbitIndex":16,"connections":[{"orbit":0,"id":18826}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Volatility","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["10% chance to gain Volatility on Kill"],"skill":17923},"27900":{"orbit":7,"orbitIndex":5,"stats":["4% increased Skill Effect Duration","8% increased Physical Damage"],"connections":[{"orbit":5,"id":54640}],"group":407,"name":"Physical Damage and Increased Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":27900},"41669":{"orbit":3,"orbitIndex":12,"stats":["12% increased Cold Damage"],"connections":[],"group":749,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":41669},"51708":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1043,"connections":[],"stats":[],"skill":51708},"34143":{"orbit":5,"orbitIndex":66,"connections":[{"orbit":0,"id":36408}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":177,"connectionArt":"CharacterPlanned","stats":["16% increased Physical Damage"],"skill":34143},"46554":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":62677},{"orbit":0,"id":36379},{"orbit":0,"id":10131},{"orbit":-3,"id":42999}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":888,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":46554},"59372":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-5,"id":56842}],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds","name":"Crushing Impacts","ascendancyName":"Titan","group":79,"isNotable":true,"stats":["25% more Damage against Heavy Stunned Enemies","Your Hits are Crushing Blows"],"skill":59372},"3894":{"orbit":4,"orbitIndex":30,"recipe":["Isolation","Guilt","Isolation"],"connections":[{"orbit":0,"id":13307},{"orbit":0,"id":857}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Eldritch Will","group":591,"isNotable":true,"stats":["3% increased maximum Life, Mana and Energy Shield","Gain additional Ailment Threshold equal to 15% of maximum Energy Shield","Gain additional Stun Threshold equal to 15% of maximum Energy Shield"],"skill":3894},"13724":{"orbit":4,"orbitIndex":54,"recipe":["Disgust","Suffering","Envy"],"connections":[{"orbit":0,"id":20236},{"orbit":0,"id":33823}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Deadly Force","group":1094,"isNotable":true,"stats":["25% increased Damage if you've dealt a Critical Hit in the past 8 seconds","10% increased Critical Hit Chance"],"skill":13724},"34531":{"orbit":7,"orbitIndex":4,"recipe":["Despair","Disgust","Disgust"],"connections":[{"orbit":0,"id":3471}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Hallowed","group":647,"isNotable":true,"stats":["Gain additional Ailment Threshold equal to 20% of maximum Energy Shield","Gain additional Stun Threshold equal to 20% of maximum Energy Shield"],"skill":34531},"25992":{"orbit":6,"orbitIndex":7,"stats":["10% increased Accuracy Rating with Bows"],"connections":[],"group":1387,"name":"Bow Accuracy Rating","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":25992},"61354":{"orbit":3,"orbitIndex":18,"recipe":["Envy","Greed","Fear"],"connections":[{"orbit":0,"id":50383}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Infernal Limit","group":719,"isNotable":true,"stats":["+1 to maximum Fire Infusions"],"skill":61354},"18121":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1134,"connections":[],"stats":[],"skill":18121},"858":{"orbit":5,"orbitIndex":18,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":5,"id":58387}],"group":610,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":858},"36114":{"orbit":7,"orbitIndex":10,"stats":["12% increased Attack Damage while moving"],"connections":[{"orbit":0,"id":23360}],"group":1053,"name":"Attack Damage while Moving","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":36114},"12964":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Lone Warrior","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":264,"isNotable":true,"stats":["Aura Skills have 14% increased Magnitudes","Your Aura Buffs do not affect Allies"],"skill":12964},"13856":{"orbit":7,"orbitIndex":9,"stats":["12% increased Magnitude of Ailments you inflict"],"connections":[{"orbit":0,"id":18496}],"group":249,"name":"Ailment Effect","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":13856},"5686":{"orbit":2,"orbitIndex":12,"recipe":["Paranoia","Disgust","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Chillproof","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":199,"isNotable":true,"stats":["30% reduced Effect of Chill on you","30% increased Freeze Threshold","+30% of Armour also applies to Cold Damage"],"skill":5686},"21755":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54127},{"orbit":0,"id":48635},{"orbit":0,"id":61281},{"orbit":0,"id":52274}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":756,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":21755},"9294":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":528}],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds","name":"Critical Strike","ascendancyName":"Amazon","group":1469,"isNotable":true,"stats":["Chance to Hit with Attacks can exceed 100%","Gain additional Critical Hit Chance equal to 25% of excess chance to Hit with Attacks"],"skill":9294},"55680":{"orbit":4,"orbitIndex":14,"stats":["3% increased Attack Speed with Spears"],"connections":[{"orbit":0,"id":61112}],"group":1322,"name":"Spear Attack Speed","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":55680},"62023":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":285,"connections":[],"stats":[],"skill":62023},"7998":{"orbit":6,"orbitIndex":70,"connections":[{"orbit":0,"id":39640}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Shock Chance","ascendancyName":"Stormweaver","group":502,"stats":["20% increased chance to Shock"],"skill":7998},"34671":{"orbit":2,"orbitIndex":10,"stats":["10% increased Stun Threshold","+5 to Strength"],"connections":[{"orbit":0,"id":24477},{"orbit":0,"id":48418}],"group":555,"name":"Stun Threshold and Strength","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":34671},"41016":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":1095,"connections":[],"stats":[],"skill":41016},"59636":{"orbit":7,"orbitIndex":12,"connections":[{"orbit":-4,"id":13769},{"orbit":0,"id":48007}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Open Mind","group":745,"isNotable":true,"stats":["25% increased Mana Regeneration Rate"],"skill":59636},"16744":{"orbit":3,"orbitIndex":12,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":-5,"id":24009},{"orbit":0,"id":24748}],"group":649,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":16744},"43250":{"orbit":7,"orbitIndex":6,"recipe":["Disgust","Isolation","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","name":"Adaptive Skin","group":144,"isNotable":true,"stats":["+1% to Maximum Resistances of each Elemental Damage Type you have been Hit with Recently"],"skill":43250},"52764":{"orbit":1,"orbitIndex":0,"recipe":["Isolation","Greed","Envy"],"connections":[{"orbit":0,"id":47606}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Mystical Rage","group":182,"isNotable":true,"stats":["Every Rage also grants 2% increased Spell Damage"],"skill":52764},"64525":{"orbit":7,"orbitIndex":4,"recipe":["Guilt","Greed","Fear"],"connections":[{"orbit":0,"id":58855}],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Easy Target","group":236,"isNotable":true,"stats":["Your Hits cannot be Evaded by Heavy Stunned Enemies"],"skill":64525},"32599":{"orbit":2,"orbitIndex":12,"stats":["6% increased Area of Effect"],"connections":[{"orbit":2,"id":28516}],"group":239,"name":"Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":32599},"54746":{"orbit":0,"orbitIndex":0,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"connections":[{"orbit":7,"id":14343}],"group":1045,"name":"Ailment Chance and Effect","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":54746},"23415":{"orbit":9,"orbitIndex":14,"connections":[{"orbit":9,"id":8143}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Evasion and Energy Shield","ascendancyName":"Invoker","group":1430,"stats":["15% increased Evasion Rating","15% increased maximum Energy Shield"],"skill":23415},"761":{"orbit":7,"orbitIndex":12,"connections":[{"orbit":0,"id":22133}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":376,"connectionArt":"CharacterPlanned","stats":["Minions have 25% increased Cooldown Recovery Rate for Command Skills"],"skill":761},"64789":{"orbit":8,"orbitIndex":68,"connections":[{"orbit":0,"id":8867}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Mana Regeneration","ascendancyName":"Stormweaver","group":502,"stats":["12% increased Mana Regeneration Rate"],"skill":64789},"43778":{"orbit":3,"orbitIndex":2,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":36894}],"group":283,"name":"Bleed Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":43778},"63732":{"orbit":1,"orbitIndex":1,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[{"orbit":-3,"id":8440}],"group":846,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":63732},"64665":{"orbit":4,"orbitIndex":30,"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":51847},{"orbit":0,"id":21274}],"group":800,"name":"Attack Damage and Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":64665},"56472":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":966,"connections":[],"stats":[],"skill":56472},"22682":{"orbit":3,"orbitIndex":4,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"connections":[],"group":1134,"name":"Additional Spell Projectiles","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":22682},"63608":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":104,"connections":[],"stats":[],"skill":63608},"13228":{"orbit":2,"orbitIndex":19,"connections":[{"orbit":2147483647,"id":43486}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":226,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"skill":13228},"38628":{"orbit":2,"orbitIndex":19,"recipe":["Despair","Isolation","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Escalating Toxins","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1409,"isNotable":true,"stats":["10% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"],"skill":38628},"28304":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":37258},{"orbit":0,"id":2491}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":398,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28304},"26520":{"orbit":2,"orbitIndex":11,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":0,"id":14340},{"orbit":0,"id":37190}],"group":851,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":26520},"56860":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Resolute Reprisal","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","group":1155,"isNotable":true,"stats":["30% increased Parry Range","Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently"],"skill":56860},"32194":{"orbit":6,"orbitIndex":60,"connections":[{"orbit":0,"id":55933},{"orbit":0,"id":36478}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":551,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":32194},"22558":{"orbit":6,"orbitIndex":66,"connections":[{"orbit":0,"id":55933},{"orbit":0,"id":20547},{"orbit":0,"id":62378}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":455,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":22558},"54886":{"orbit":7,"orbitIndex":20,"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":-4,"id":56997}],"group":428,"name":"Two Handed Damage and Stun","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":54886},"3704":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32559}],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds","name":"Witchbane","ascendancyName":"Witchhunter","group":275,"isNotable":true,"stats":["Enemies have Maximum Concentration equal to 30% of their Maximum Life","Break enemy Concentration on Hit equal to 100% of Damage Dealt","Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds"],"skill":3704},"25851":{"orbit":6,"orbitIndex":0,"stats":["5% chance to Daze on Hit"],"connections":[{"orbit":-6,"id":52695},{"orbit":5,"id":36270}],"group":1172,"name":"Daze on Hit","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":25851},"3355":{"orbit":3,"orbitIndex":0,"stats":["4% reduced Slowing Potency of Debuffs on You","Debuffs on you expire 3% faster"],"connections":[{"orbit":0,"id":25211}],"group":590,"name":"Slow Effect on You and Debuff Expiry Rate","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":3355},"58718":{"orbit":0,"orbitIndex":0,"stats":["10% increased Magnitude of Bleeding you inflict"],"connections":[{"orbit":0,"id":35015}],"group":666,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":58718},"7424":{"orbit":4,"orbitIndex":0,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":36994},{"orbit":0,"id":1823}],"group":647,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":7424},"42460":{"orbit":7,"orbitIndex":3,"stats":["10% increased chance to inflict Ailments"],"connections":[{"orbit":5,"id":11882}],"group":1082,"name":"Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":42460},"52501":{"orbit":7,"orbitIndex":8,"stats":["20% increased Freeze Buildup with Empowered Attacks"],"connections":[{"orbit":2147483647,"id":60700}],"group":1161,"name":"Empowered Attack Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":52501},"8697":{"orbit":3,"orbitIndex":2,"stats":["12% increased Elemental Damage with Attacks"],"connections":[],"group":1010,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":8697},"60568":{"orbit":3,"orbitIndex":13,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":-6,"id":52348}],"group":511,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":60568},"36379":{"orbit":4,"orbitIndex":58,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":25026}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":36379},"65193":{"orbit":3,"orbitIndex":13,"recipe":["Disgust","Greed","Paranoia"],"connections":[{"orbit":0,"id":48714},{"orbit":0,"id":10245}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds","name":"Viciousness","group":444,"isNotable":true,"stats":["3% increased Attack Speed per Enemy in Close Range","+10 to Dexterity"],"skill":65193},"2102":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":679,"connections":[],"stats":[],"skill":2102},"18451":{"orbit":2,"orbitIndex":12,"stats":["20% increased Frenzy Charge Duration"],"connections":[],"group":952,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":18451},"52765":{"orbit":2,"orbitIndex":12,"stats":["10% increased Mana Regeneration Rate"],"connections":[],"group":1059,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":52765},"11505":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":586,"connections":[],"stats":[],"skill":11505},"2455":{"orbit":5,"orbitIndex":11,"stats":["8% increased Projectile Damage"],"connections":[],"group":730,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":2455},"59775":{"orbit":0,"orbitIndex":0,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":-4,"id":20782}],"group":1214,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":59775},"45363":{"orbit":3,"orbitIndex":23,"connections":[{"orbit":0,"id":31292},{"orbit":0,"id":58528}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds","name":"Smash","group":512,"isNotable":true,"stats":["20% increased Melee Damage","40% increased Melee Damage against Heavy Stunned enemies"],"skill":45363},"48014":{"orbit":5,"orbitIndex":63,"recipe":["Ire","Guilt","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Honourless","group":208,"isNotable":true,"stats":["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently","50% increased Melee Damage against Immobilised Enemies"],"skill":48014},"37046":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameLargeCanAllocate","alloc":"RitualistFrameLargeAllocated","unalloc":"RitualistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds","name":"Corrupted Lifeforce","ascendancyName":"Ritualist","group":1493,"isNotable":true,"stats":["15% more Damage against Enemies affected by Blood Boils","Grants Skill: Blood Boil"],"skill":37046},"63731":{"orbit":0,"orbitIndex":0,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"connections":[{"orbit":0,"id":244}],"group":920,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":63731},"12367":{"orbit":3,"orbitIndex":0,"stats":["7% increased Chaos Damage"],"connections":[],"group":678,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":12367},"25058":{"orbit":2,"orbitIndex":12,"connections":[{"orbit":2147483647,"id":48828},{"orbit":2147483647,"id":4681}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":466,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"skill":25058},"38365":{"orbit":2,"orbitIndex":22,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"connections":[{"orbit":0,"id":34626},{"orbit":0,"id":46499}],"group":204,"name":"Recover Life on consuming Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":38365},"57388":{"orbit":3,"orbitIndex":22,"recipe":["Despair","Envy","Disgust"],"connections":[{"orbit":0,"id":9698}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Overwhelming Strike","group":223,"isNotable":true,"stats":["15% increased Critical Hit Chance for Attacks","20% increased Critical Damage Bonus for Attack Damage","20% more Stun Buildup with Critical Hits"],"skill":57388},"29881":{"orbit":1,"orbitIndex":8,"recipe":["Disgust","Ire","Disgust"],"connections":[{"orbit":0,"id":25446}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","name":"Surging Beast","group":390,"isNotable":true,"stats":["Gain Arcane Surge when you Shapeshift to Human form after","being Shapeshifted for at least 8 seconds"],"skill":29881},"41935":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Disgust"],"connections":[{"orbit":0,"id":34782}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","name":"Hide of the Bear","group":166,"isNotable":true,"stats":["40% increased Armour while Shapeshifted","+1% to Maximum Fire Resistance while Shapeshifted","25% increased Stun Threshold while Shapeshifted"],"skill":41935},"55011":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":534,"connections":[],"stats":[],"skill":55011},"45503":{"orbit":2,"orbitIndex":0,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":4,"id":37746}],"group":409,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":45503},"44974":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Fear","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Hail","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1161,"isNotable":true,"stats":["Empowered Attacks Gain 16% of Damage as Extra Cold Damage"],"skill":44974},"46696":{"orbit":4,"orbitIndex":68,"recipe":["Envy","Suffering","Disgust"],"connections":[{"orbit":0,"id":8629}],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"Impair","group":386,"isNotable":true,"stats":["25% increased Damage with One Handed Weapons","Attacks have 10% chance to Maim on Hit"],"skill":46696},"50392":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Brute Strength","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":202,"isNotable":true,"stats":["10% reduced maximum Mana","1% increased Damage per 15 Strength"],"skill":50392},"49461":{"orbit":2,"orbitIndex":23,"stats":["3% increased Attack Speed"],"connections":[{"orbit":2,"id":50912}],"group":1072,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":49461},"55275":{"orbit":3,"orbitIndex":2,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":6,"id":12890}],"group":1177,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":55275},"62153":{"orbit":3,"orbitIndex":17,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":3,"id":55947}],"group":1013,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":62153},"53960":{"orbit":5,"orbitIndex":54,"connections":[{"orbit":-5,"id":8975}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":933,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":53960},"44309":{"orbit":5,"orbitIndex":35,"connections":[{"orbit":2147483647,"id":44485}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Companion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Companions deal 15% increased Damage"],"skill":44309},"52374":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds","name":"Unnamed Heartwood","ascendancyName":"Oracle","group":21,"isNotable":true,"stats":["+1 to maximum number of Summoned Totems","Totems die 6 seconds after their Life is reduced to 0"],"skill":52374},"65192":{"orbit":3,"orbitIndex":11,"connections":[{"orbit":2147483647,"id":63170}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"skill":65192},"38769":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":58704}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour Break","ascendancyName":"Warbringer","group":30,"stats":["Break 25% increased Armour"],"skill":38769},"364":{"orbit":2,"orbitIndex":4,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":2847}],"group":724,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":364},"34006":{"orbit":2,"orbitIndex":19,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":3,"id":15408}],"group":775,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":34006},"47753":{"orbit":0,"orbitIndex":0,"stats":["Damage Penetrates 8% Fire Resistance"],"connections":[{"orbit":-6,"id":51868}],"group":87,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":47753},"44573":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Disciplined Training","group":1259,"isNotable":true,"stats":["10% increased Skill Effect Duration","10% increased Area of Effect for Attacks","Combo count loss occurs 20% slower"],"skill":44573},"43128":{"orbit":4,"orbitIndex":60,"connections":[{"orbit":4,"id":10731}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cast Speed and Area of Effect","ascendancyName":"Chronomancer","group":351,"stats":["4% increased Cast Speed","8% increased Area of Effect"],"skill":43128},"14446":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":61403},{"orbit":0,"id":22713},{"orbit":9,"id":58022},{"orbit":0,"id":45702}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1224,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":14446},"32664":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Chakra of Breathing","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":1175,"isNotable":true,"stats":["1% increased Energy Shield Recharge Rate per 4 Dexterity","20% increased Evasion Rating while you have Energy Shield"],"skill":32664},"2936":{"orbit":7,"orbitIndex":4,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"connections":[{"orbit":-3,"id":13407}],"group":1410,"name":"Attack Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":2936},"23738":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Paranoia","Suffering"],"connections":[{"orbit":0,"id":34520}],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Madness in the Bones","group":925,"isNotable":true,"stats":["Gain 8% of Physical Damage as extra Chaos Damage"],"skill":23738},"51707":{"orbit":5,"orbitIndex":66,"recipe":["Fear","Ire","Envy"],"connections":[{"orbit":5,"id":38728},{"orbit":0,"id":41163}],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Enhanced Reflexes","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1353,"isNotable":true,"stats":["20% increased Evasion Rating","Gain Deflection Rating equal to 5% of Evasion Rating","8% increased Dexterity"],"skill":51707},"3165":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-4,"id":56162}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life","ascendancyName":"Blood Mage","group":974,"stats":["3% increased maximum Life"],"skill":3165},"46683":{"orbit":3,"orbitIndex":4,"recipe":["Envy","Suffering","Despair"],"connections":[{"orbit":0,"id":30553}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Inherited Strength ","group":140,"isNotable":true,"stats":["Warcries have 15% chance to Empower 3 additional Attacks"],"skill":46683},"27048":{"orbit":0,"orbitIndex":0,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[{"orbit":8,"id":47375}],"group":1401,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":27048},"64399":{"orbit":1,"orbitIndex":7,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"connections":[{"orbit":3,"id":2511}],"group":528,"name":"Attack Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":64399},"51583":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1410,"connections":[],"stats":[],"skill":51583},"23416":{"orbit":6,"orbitIndex":64,"connections":[],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds","name":"Vitality Siphon","ascendancyName":"Blood Mage","group":910,"isNotable":true,"stats":["10% of Spell Damage Leeched as Life"],"skill":23416},"50253":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Guilt","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Aftershocks","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":341,"isNotable":true,"stats":["Slam Skills you use yourself have 30% increased Aftershock Area of Effect"],"skill":50253},"20236":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":4346}],"group":1068,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":20236},"22811":{"orbit":2,"orbitIndex":16,"recipe":["Disgust","Fear","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds","name":"The Wild Cat","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1327,"isNotable":true,"stats":["Gain Deflection Rating equal to 10% of Evasion Rating","40% increased Evasion Rating while moving","+10 to Dexterity"],"skill":22811},"51184":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-4,"id":41965},{"orbit":6,"id":29502},{"orbit":-4,"id":3242}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","name":"Raw Power","isSwitchable":true,"options":{"Witch":{"stats":["16% increased Spell Damage","Minions deal 16% increased Damage","+10 to Intelligence"],"id":5788,"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","name":"Raw Destruction"}},"group":712,"isNotable":true,"stats":["20% increased Spell Damage","+10 to Intelligence"],"skill":51184},"10055":{"orbit":7,"orbitIndex":2,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"connections":[{"orbit":0,"id":30554},{"orbit":0,"id":41497}],"group":149,"name":"Minion Life and Chaos Resistance","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":10055},"53697":{"orbit":5,"orbitIndex":26,"connections":[{"orbit":7,"id":47555},{"orbit":-3,"id":3041}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":648,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":53697},"20837":{"orbit":0,"orbitIndex":0,"stats":["8% increased Knockback Distance"],"connections":[{"orbit":0,"id":61104}],"group":998,"name":"Knockback","icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":20837},"64927":{"orbit":6,"orbitIndex":18,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":4,"id":52464},{"orbit":-4,"id":51741},{"orbit":-6,"id":54351}],"group":1172,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":64927},"59501":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Blind Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","group":804,"connections":[{"orbit":0,"id":25619},{"orbit":0,"id":42354}],"stats":[],"skill":59501},"28625":{"orbit":7,"orbitIndex":0,"stats":["10% increased Life and Mana Recovery from Flasks"],"connections":[{"orbit":5,"id":32135},{"orbit":0,"id":35848}],"group":927,"name":"Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":28625},"63209":{"orbit":2,"orbitIndex":22,"stats":["5% increased Damage","Regenerate 0.1% of maximum Life per second"],"connections":[{"orbit":0,"id":30704},{"orbit":0,"id":22045},{"orbit":-4,"id":17655},{"orbit":-3,"id":36602}],"group":563,"name":"Life Regeneration and Damage","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":63209},"12033":{"orbit":2,"orbitIndex":8,"connections":[],"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds","name":"Endless Munitions","ascendancyName":"Deadeye","group":1427,"isNotable":true,"stats":["Skills fire an additional Projectile"],"skill":12033},"13624":{"orbit":2,"orbitIndex":23,"stats":["Mark Skills have 25% increased Skill Effect Duration"],"connections":[{"orbit":-2,"id":28258}],"group":1279,"name":"Mark Duration","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":13624},"25528":{"orbit":3,"orbitIndex":15,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":1234,"connections":[],"stats":[],"skill":25528},"37963":{"orbit":3,"orbitIndex":13,"stats":["10% increased Damage with Swords"],"connections":[],"group":546,"name":"Sword Damage","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":37963},"58848":{"orbit":7,"orbitIndex":10,"stats":["20% chance for Attack Hits to apply Incision"],"connections":[{"orbit":2147483647,"id":22962},{"orbit":0,"id":10576}],"group":1240,"name":"Incision Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":58848},"32952":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds","name":"Bolstering Implants","ascendancyName":"Gemling Legionnaire","group":353,"isMultipleChoiceOption":true,"stats":["+2 to Level of all Skills with a Strength requirement"],"skill":32952},"57791":{"orbit":2,"orbitIndex":16,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"connections":[{"orbit":0,"id":52229}],"group":638,"name":"Spell Damage and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","skill":57791},"16602":{"orbit":7,"orbitIndex":23,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":2,"id":29285},{"orbit":0,"id":30657}],"group":1232,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","skill":16602},"62804":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameLargeCanAllocate","alloc":"RitualistFrameLargeAllocated","unalloc":"RitualistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds","name":"Wildwood Persistence","ascendancyName":"Ritualist","group":1485,"isNotable":true,"stats":["10% increased Life Recovery rate per 5% missing Unreserved Life"],"skill":62804},"10156":{"orbit":6,"orbitIndex":38,"connections":[{"orbit":-6,"id":6744}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":648,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":10156},"33340":{"orbit":7,"orbitIndex":15,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":51267}],"group":410,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":33340},"11048":{"orbit":7,"orbitIndex":20,"stats":["Minions deal 8% increased Damage","8% increased Minion Duration"],"connections":[],"group":267,"name":"Minion Damage and Duration","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":11048},"33216":{"orbit":2,"orbitIndex":10,"recipe":["Disgust","Despair","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Deep Wounds","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":695,"isNotable":true,"stats":["Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds"],"skill":33216},"38103":{"orbit":7,"orbitIndex":12,"stats":["8% increased Skill Effect Duration","8% increased Stun Threshold"],"connections":[{"orbit":-8,"id":6898}],"group":604,"name":"Increased Duration and Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":38103},"56595":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":428,"connections":[],"stats":[],"skill":56595},"44836":{"orbit":2,"orbitIndex":12,"connections":[{"orbit":0,"id":47150}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Feel no Pain","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","group":754,"isNotable":true,"stats":["20% increased Armour and Evasion Rating","20% increased Stun Threshold"],"skill":44836},"32523":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":609,"connections":[{"orbit":0,"id":1546}],"stats":[],"skill":32523},"8302":{"orbit":2,"orbitIndex":0,"stats":["15% increased Damage with Hits against Blinded Enemies"],"connections":[{"orbit":-3,"id":4467}],"group":1395,"name":"Damage vs Blinded","icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","skill":8302},"25990":{"orbit":4,"orbitIndex":23,"stats":["8% increased Fire Damage","8% increased Attack Damage"],"connections":[{"orbit":0,"id":43461}],"group":487,"name":"Fire Damage and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":25990},"7275":{"orbit":4,"orbitIndex":64,"recipe":["Fear","Fear","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocuting Exposure","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":709,"isNotable":true,"stats":["Gain 25% of Physical Damage as Extra Lightning Damage against Electrocuted Enemies"],"skill":7275},"33604":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":608,"connections":[],"stats":[],"skill":33604},"40213":{"orbit":1,"orbitIndex":1,"recipe":["Envy","Ire","Greed"],"connections":[{"orbit":0,"id":55846},{"orbit":0,"id":24481}],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Taste for Blood","group":1009,"isNotable":true,"stats":["Gain 20 Life per enemy killed","2% chance to Recover all Life when you Kill an Enemy"],"skill":40213},"59376":{"orbit":6,"orbitIndex":3,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":620,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59376},"35187":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds","name":"In for the Kill","ascendancyName":"Amazon","group":1457,"isNotable":true,"stats":["20% increased Movement Speed while an enemy with an Open Weakness is in your Presence","40% increased Skill Speed while an enemy with an Open Weakness is in your Presence"],"skill":35187},"30615":{"orbit":2,"orbitIndex":13,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"connections":[],"group":1341,"name":"Critical Damage when consuming a Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":30615},"32813":{"orbit":2,"orbitIndex":12,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":-7,"id":59600},{"orbit":0,"id":35809}],"group":1147,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":32813},"5702":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-5,"id":13411}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1023,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":5702},"14113":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":380,"connections":[{"orbit":0,"id":10029},{"orbit":0,"id":8660}],"stats":[],"skill":14113},"32721":{"orbit":7,"orbitIndex":11,"recipe":["Despair","Disgust","Despair"],"connections":[{"orbit":0,"id":10011}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Distracted Target","group":1184,"isNotable":true,"stats":["30% increased Critical Hit Chance against Blinded Enemies"],"skill":32721},"2397":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Last Stand","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":642,"isNotable":true,"stats":["25% increased Attack Damage if you have been Heavy Stunned Recently","25% increased Attack Damage while you have no Life Flask uses left","25% increased Attack Damage while Surrounded","25% increased Attack Damage while on Low Life"],"skill":2397},"48544":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1106,"connections":[{"orbit":0,"id":40166}],"stats":[],"skill":48544},"4810":{"orbit":1,"orbitIndex":6,"recipe":["Isolation","Disgust","Greed"],"connections":[{"orbit":7,"id":48805},{"orbit":0,"id":6161}],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Sanguine Tolerance","group":1080,"isNotable":true,"stats":["Immune to Corrupted Blood","40% reduced Duration of Bleeding on You"],"skill":4810},"53958":{"orbit":3,"orbitIndex":23,"stats":["10% increased Mana Recovery from Flasks"],"connections":[{"orbit":2,"id":51006}],"group":1227,"name":"Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":53958},"58971":{"orbit":2,"orbitIndex":11,"stats":["15% increased Elemental Ailment Threshold"],"connections":[{"orbit":-6,"id":12998},{"orbit":-7,"id":38678}],"group":1217,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":58971},"2843":{"orbit":5,"orbitIndex":36,"recipe":["Guilt","Isolation","Fear"],"connections":[{"orbit":0,"id":61396},{"orbit":0,"id":61318},{"orbit":0,"id":62235}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Tolerant Equipment","group":873,"isNotable":true,"stats":["Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating","Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour"],"skill":2843},"38895":{"orbit":2,"orbitIndex":7,"recipe":["Fear","Suffering","Greed"],"connections":[{"orbit":3,"id":8697},{"orbit":0,"id":48660}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Crystal Elixir","group":1010,"isNotable":true,"stats":["40% increased Elemental Damage with Attack Skills during any Flask Effect"],"skill":38895},"6416":{"orbit":2,"orbitIndex":20,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":51821}],"group":268,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":6416},"32597":{"orbit":2,"orbitIndex":3,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":12777}],"group":645,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":32597},"56999":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Disgust","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Locked On","group":924,"isNotable":true,"stats":["15% increased Critical Hit Chance for Attacks","15% increased Accuracy Rating"],"skill":56999},"45100":{"orbit":4,"orbitIndex":37,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"connections":[{"orbit":-3,"id":56928}],"group":1173,"name":"Attack Speed and Flask Duration","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":45100},"62803":{"orbit":4,"orbitIndex":51,"recipe":["Suffering","Guilt","Isolation"],"connections":[{"orbit":0,"id":25029}],"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","name":"Woodland Aspect","group":1270,"isNotable":true,"stats":["Charms applied to you have 25% increased Effect"],"skill":62803},"3999":{"orbit":4,"orbitIndex":15,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":4,"id":37665},{"orbit":0,"id":57863}],"group":655,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":3999},"44699":{"orbit":0,"orbitIndex":0,"stats":["8% increased Reservation Efficiency of Companion Skills"],"connections":[{"orbit":0,"id":16150}],"group":1420,"name":"Companion Reservation","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":44699},"48267":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":175,"connections":[],"stats":[],"skill":48267},"43254":{"orbit":2,"orbitIndex":22,"stats":["10% increased Parried Debuff Magnitude"],"connections":[{"orbit":0,"id":33400}],"group":996,"name":"Parry Debuff Magnitude","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":43254},"62679":{"orbit":2,"orbitIndex":12,"stats":["Remnants can be collected from 20% further away"],"connections":[],"group":791,"name":"Remnant Pickup Range","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":62679},"46421":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","name":"Aura Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":304,"connections":[],"stats":[],"skill":46421},"56336":{"orbit":7,"orbitIndex":20,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"connections":[{"orbit":0,"id":21208}],"group":1186,"name":"Curse Activation Speed and Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":56336},"30210":{"orbit":2,"orbitIndex":6,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":64650}],"group":1086,"name":"Evasion Rating","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":30210},"18856":{"orbit":3,"orbitIndex":0,"stats":["Invocated Spells deal 15% increased Damage"],"connections":[{"orbit":0,"id":24491}],"group":870,"name":"Invocation Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":18856},"4748":{"orbit":3,"orbitIndex":6,"connections":[{"orbit":6,"id":2254}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"id":48235,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life"}},"group":782,"isSwitchable":true,"stats":["15% faster start of Energy Shield Recharge"],"skill":4748},"28492":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54099}],"icon":"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds","name":"Iron Reflexes","group":691,"isKeystone":true,"stats":["Converts all Evasion Rating to Armour"],"skill":28492},"16401":{"orbit":0,"orbitIndex":0,"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":44490}],"group":1292,"name":"Lightning Damage and Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":16401},"57517":{"orbit":0,"orbitIndex":0,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"connections":[{"orbit":0,"id":28268}],"group":978,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":57517},"17394":{"orbit":7,"orbitIndex":0,"stats":["Minions cause 15% increased Stun Buildup"],"connections":[{"orbit":-3,"id":45530}],"group":868,"name":"Minion Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":17394},"26518":{"orbit":4,"orbitIndex":5,"recipe":["Envy","Fear","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Nature","group":244,"isNotable":true,"stats":["25% increased Cold Damage","15% increased Chill Duration on Enemies"],"skill":26518},"35855":{"orbit":2,"orbitIndex":3,"recipe":["Greed","Paranoia","Fear"],"connections":[{"orbit":0,"id":48583},{"orbit":0,"id":35859}],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Fortifying Blood","group":851,"isNotable":true,"stats":["20% increased amount of Life Leeched","40% increased Armour and Evasion Rating while Leeching"],"skill":35855},"46561":{"orbit":2,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Recovery Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","group":898,"connections":[],"stats":[],"skill":46561},"4203":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":4,"id":30555},{"orbit":-4,"id":42736},{"orbit":-4,"id":59603},{"orbit":0,"id":49046},{"orbit":3,"id":42076}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":859,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":4203},"12329":{"orbit":7,"orbitIndex":0,"stats":["16% increased Hazard Damage"],"connections":[{"orbit":4,"id":17523}],"group":1369,"name":"Hazard Damage","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":12329},"56988":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Isolation","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electric Blood","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1308,"isNotable":true,"stats":["+1% to Maximum Lightning Resistance","50% reduced effect of Shock on you"],"skill":56988},"25915":{"orbit":2,"orbitIndex":2,"stats":["12% increased Damage while Shapeshifted"],"connections":[{"orbit":2,"id":8916}],"group":410,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":25915},"15044":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32560},{"orbit":0,"id":42845}],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds","name":"A Solid Plan","ascendancyName":"Tactician","group":302,"isNotable":true,"stats":["Persistent Buffs have 50% less Reservation"],"skill":15044},"32258":{"orbit":3,"orbitIndex":8,"stats":["Minions have 12% increased maximum Life"],"connections":[{"orbit":0,"id":19644}],"group":460,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":32258},"52241":{"orbit":1,"orbitIndex":3,"stats":["Recover 1% of maximum Mana on Kill"],"connections":[{"orbit":2,"id":94}],"group":862,"name":"Mana on Kill","icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":52241},"55933":{"orbit":6,"orbitIndex":48,"connections":[{"orbit":0,"id":60886}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":551,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":55933},"47614":{"orbit":2,"orbitIndex":22,"stats":["Triggered Spells deal 14% increased Spell Damage"],"connections":[{"orbit":-7,"id":22219}],"group":1039,"name":"Triggered Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":47614},"39423":{"orbit":2,"orbitIndex":20,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":53207}],"group":1123,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":39423},"3363":{"orbit":2,"orbitIndex":11,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":38433}],"group":323,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":3363},"15207":{"orbit":7,"orbitIndex":0,"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":6330}],"group":1260,"name":"Accuracy and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":15207},"48935":{"orbit":3,"orbitIndex":3,"connections":[{"orbit":2147483647,"id":61367}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Attack Added Lighting Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":288,"connectionArt":"CharacterPlanned","stats":["Adds 1 to 7 Lightning damage to Attacks"],"skill":48935},"45227":{"orbit":3,"orbitIndex":1,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":42111}],"group":194,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":45227},"36507":{"orbit":2,"orbitIndex":4,"recipe":["Greed","Fear","Fear"],"connections":[{"orbit":0,"id":60313}],"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","name":"Vile Mending","group":678,"isNotable":true,"stats":["Minions have 20% increased maximum Life","Minions Regenerate 3% of maximum Life per second","Minions have +13% to Chaos Resistance"],"skill":36507},"19442":{"orbit":2,"orbitIndex":8,"recipe":["Guilt","Despair","Suffering"],"connections":[{"orbit":-3,"id":25170},{"orbit":0,"id":8606}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Prolonged Assault","group":985,"isNotable":true,"stats":["16% increased Attack Damage","16% increased Skill Effect Duration","Buffs on you expire 10% slower"],"skill":19442},"4847":{"orbit":5,"orbitIndex":66,"stats":["3% increased Cast Speed"],"connections":[{"orbit":5,"id":6294}],"group":610,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":4847},"51446":{"orbit":3,"orbitIndex":16,"recipe":["Greed","Suffering","Ire"],"connections":[{"orbit":-7,"id":53647},{"orbit":0,"id":19750}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Leather Bound Gauntlets","group":676,"isNotable":true,"stats":["+1 to Evasion Rating per 1 Item Armour on Equipped Gloves"],"skill":51446},"57921":{"orbit":3,"orbitIndex":21,"recipe":["Disgust","Paranoia","Greed"],"connections":[{"orbit":0,"id":23879}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Wolf's Howl","group":344,"isNotable":true,"stats":["30% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently"],"skill":57921},"12430":{"orbit":2,"orbitIndex":13,"connections":[{"orbit":0,"id":17584}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","options":{"Druid":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"id":36764,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Spell and Attack Damage"}},"group":626,"isSwitchable":true,"stats":["10% increased Melee Damage"],"skill":12430},"17600":{"orbit":3,"orbitIndex":19,"recipe":["Ire","Greed","Suffering"],"connections":[{"orbit":3,"id":18519},{"orbit":0,"id":32096},{"orbit":-2,"id":10041}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Thirsting Ally","group":1032,"isNotable":true,"stats":["Leeching Life from your Hits causes your Companion to also Leech the same amount of Life"],"skill":17600},"46296":{"orbit":1,"orbitIndex":4,"recipe":["Suffering","Guilt","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Short Shot","group":875,"isNotable":true,"stats":["10% reduced Projectile Speed","20% increased Projectile Damage"],"skill":46296},"2653":{"orbit":7,"orbitIndex":17,"stats":["Channelling Skills deal 8% increased Damage","2% increased Skill Speed with Channelling Skills"],"connections":[{"orbit":0,"id":19203},{"orbit":0,"id":30896}],"group":433,"name":"Channelling Damage and Speed","icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","skill":2653},"53560":{"orbit":0,"orbitIndex":0,"stats":["20% chance for Lightning Skills to Chain an additional time"],"connections":[{"orbit":0,"id":46157}],"group":941,"name":"Lightning Skill Chain Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":53560},"38105":{"orbit":4,"orbitIndex":67,"stats":["15% increased maximum Energy Shield"],"connections":[],"group":591,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":38105},"3332":{"orbit":0,"orbitIndex":0,"stats":["Minions have +20% to Cold Resistance","Minions have +3% to Maximum Cold Resistances"],"connections":[],"group":605,"name":"Minion Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","skill":3332},"18713":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryArmourandEnergyShield.dds","name":"Armour and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":[],"skill":18713},"38493":{"orbit":4,"orbitIndex":45,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":4,"id":55621}],"group":1410,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":38493},"10552":{"orbit":7,"orbitIndex":8,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"connections":[{"orbit":-3,"id":703},{"orbit":3,"id":18895}],"group":942,"name":"Stun Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":10552},"51183":{"orbit":2,"orbitIndex":12,"stats":["10% increased Armour","10% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":45301},{"orbit":0,"id":10635}],"group":405,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":51183},"35980":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","name":"Lightning Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":[],"skill":35980},"41130":{"orbit":2,"orbitIndex":4,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"connections":[],"group":660,"name":"Spell and Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":41130},"51974":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","name":"Fortify Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","group":717,"connections":[{"orbit":0,"id":25711}],"stats":[],"skill":51974},"45631":{"orbit":7,"orbitIndex":14,"stats":["10% increased Evasion Rating","10% increased Energy Shield Recharge Rate"],"connections":[{"orbit":-5,"id":3630}],"group":1257,"name":"Evasion and Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":45631},"47477":{"orbit":1,"orbitIndex":3,"stats":["15% reduced Volatility Explosion delay"],"connections":[{"orbit":1,"id":51774}],"group":1360,"name":"Volatility Detonation Time","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":47477},"59498":{"orbit":2,"orbitIndex":10,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":54814}],"group":430,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":59498},"48670":{"orbit":6,"orbitIndex":42,"connections":[{"orbit":0,"id":13241},{"orbit":0,"id":53589},{"orbit":0,"id":51299},{"orbit":0,"id":49231},{"orbit":0,"id":1865}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":629,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48670},"18186":{"orbit":3,"orbitIndex":0,"stats":["15% increased Armour"],"connections":[{"orbit":0,"id":13942}],"group":649,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":18186},"55930":{"orbit":2,"orbitIndex":16,"stats":["15% increased Glory generation"],"connections":[{"orbit":0,"id":40687}],"group":1007,"name":"Glory Generation","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":55930},"50908":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Strength of the Deep","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":611,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","+1 to Maximum Endurance Charges"],"skill":50908},"6874":{"orbit":7,"orbitIndex":11,"connections":[{"orbit":2,"id":34940}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Life Recoup","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":173,"connectionArt":"CharacterPlanned","stats":["10% of Damage taken Recouped as Life while Channelling"],"skill":6874},"33203":{"orbit":4,"orbitIndex":9,"connections":[{"orbit":4,"id":55033}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Stun Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":173,"connectionArt":"CharacterPlanned","stats":["25% increased Stun Threshold while Channelling"],"skill":33203},"57253":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38646},{"orbit":0,"id":3936}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds","name":"Path of the Warrior","ascendancyName":"Pathfinder","group":1449,"isMultipleChoiceOption":true,"stats":["Can Allocate Passives from the Warrior's starting point","Grants 4 Passive Skill Point"],"skill":57253},"19846":{"orbit":1,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":346,"connections":[],"stats":[],"skill":19846},"35453":{"orbit":5,"orbitIndex":52,"connections":[{"orbit":0,"id":42275}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Slam Area of Effect","ascendancyName":"Titan","group":77,"stats":["Slam Skills have 8% increased Area of Effect"],"skill":35453},"63470":{"orbit":3,"orbitIndex":14,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"connections":[{"orbit":-3,"id":9908}],"group":396,"name":"Life Costs","icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":63470},"47088":{"orbit":4,"orbitIndex":0,"recipe":["Paranoia","Greed","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Sic 'Em","group":989,"isNotable":true,"stats":["Companions deal 60% increased damage against Immobilised enemies"],"skill":47088},"20637":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","name":"Damage Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":[],"skill":20637},"16332":{"orbit":6,"orbitIndex":64,"connections":[{"orbit":-7,"id":49258},{"orbit":-9,"id":11160}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["17% increased Stun Threshold"],"skill":16332},"26319":{"orbit":2,"orbitIndex":0,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":-7,"id":30990}],"group":861,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":26319},"51048":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":17702},{"orbit":0,"id":58814},{"orbit":0,"id":33946},{"orbit":0,"id":30910}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1017,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":51048},"47212":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":468,"connections":[],"stats":[],"skill":47212},"61347":{"orbit":7,"orbitIndex":8,"stats":["Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m"],"connections":[{"orbit":3,"id":64488}],"group":688,"name":"Projectile Critical Chance","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":61347},"17523":{"orbit":7,"orbitIndex":8,"stats":["16% increased Hazard Damage"],"connections":[{"orbit":0,"id":42032}],"group":1369,"name":"Hazard Damage","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":17523},"49993":{"orbit":7,"orbitIndex":0,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":2,"id":40632},{"orbit":0,"id":64434},{"orbit":0,"id":38814}],"group":907,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":49993},"53030":{"orbit":2,"orbitIndex":2,"recipe":["Ire","Despair","Disgust"],"connections":[{"orbit":0,"id":11525},{"orbit":0,"id":48267}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Immolation","group":175,"isNotable":true,"stats":["25% increased Ignite Magnitude","+10 to Strength"],"skill":53030},"4661":{"orbit":3,"orbitIndex":4,"recipe":["Paranoia","Greed","Greed"],"connections":[{"orbit":0,"id":12821},{"orbit":0,"id":65353}],"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","name":"Inspiring Leader","group":491,"isNotable":true,"stats":["Banners also grant +25% to all Elemental Resistances to you and Allies"],"skill":4661},"44841":{"orbit":2,"orbitIndex":19,"stats":["Mark Skills have 25% increased Skill Effect Duration"],"connections":[{"orbit":0,"id":36927},{"orbit":2,"id":28258}],"group":1279,"name":"Mark Duration","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":44841},"30151":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32637}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Armour and Evasion","ascendancyName":"Tactician","group":366,"stats":["15% increased Armour and Evasion Rating"],"skill":30151},"13524":{"orbit":4,"orbitIndex":27,"recipe":["Disgust","Ire","Suffering"],"connections":[{"orbit":0,"id":54923},{"orbit":0,"id":259}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Everlasting Glory","group":493,"isNotable":true,"stats":["Skills have a 15% chance to not consume Glory"],"skill":13524},"49198":{"orbit":7,"orbitIndex":22,"stats":["5% increased Block chance"],"connections":[{"orbit":3,"id":49023}],"group":306,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":49198},"27434":{"orbit":3,"orbitIndex":21,"recipe":["Fear","Isolation","Guilt"],"connections":[{"orbit":0,"id":15984}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Archon of the Storm","group":799,"isNotable":true,"stats":["Gain Elemental Archon after spending 100% of your Maximum Mana"],"skill":27434},"1468":{"orbit":2,"orbitIndex":6,"stats":["10% increased Mana Regeneration Rate"],"connections":[],"group":759,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":1468},"11871":{"orbit":3,"orbitIndex":1,"stats":["5% chance to Blind Enemies on Hit"],"connections":[{"orbit":0,"id":47235},{"orbit":0,"id":53471},{"orbit":0,"id":24958}],"group":1184,"name":"Blind Chance","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":11871},"12795":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":44871},{"orbit":0,"id":4739}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds","name":"Path of the Sorceress","ascendancyName":"Pathfinder","group":1454,"isMultipleChoiceOption":true,"stats":["Can Allocate Passives from the Sorceress's starting point","Grants 4 Passive Skill Point"],"skill":12795},"40480":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Despair"],"connections":[{"orbit":0,"id":1953}],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Harmonic Generator","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1130,"isNotable":true,"stats":["15% increased Critical Hit Chance against Shocked Enemies","40% increased Magnitude of Shock you inflict with Critical Hits"],"skill":40480},"55807":{"orbit":2,"orbitIndex":5,"connections":[{"orbit":-4,"id":6686}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","options":{"Witch":{"stats":["Minions have 10% increased maximum Life"],"id":21429,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life"}},"group":723,"isSwitchable":true,"stats":["10% increased Mana Regeneration Rate"],"skill":55807},"42714":{"orbit":5,"orbitIndex":60,"recipe":["Envy","Fear","Despair"],"connections":[{"orbit":0,"id":29065}],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Thousand Cuts","group":1240,"isNotable":true,"stats":["Enemies you apply Incision to take 2% increased Physical Damage per Incision"],"skill":42714},"4467":{"orbit":7,"orbitIndex":4,"stats":["15% increased Damage with Hits against Blinded Enemies"],"connections":[{"orbit":-2,"id":42347}],"group":1395,"name":"Damage vs Blinded","icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","skill":4467},"30539":{"orbit":7,"orbitIndex":18,"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"connections":[{"orbit":0,"id":25620}],"group":1015,"name":"Corpses","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":30539},"3041":{"orbit":3,"orbitIndex":10,"connections":[{"orbit":-4,"id":59795},{"orbit":0,"id":858},{"orbit":6,"id":19240}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":648,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":3041},"64650":{"orbit":2,"orbitIndex":12,"recipe":["Suffering","Suffering","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Wary Dodging","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":1086,"isNotable":true,"stats":["Cannot be Light Stunned if you haven't been Hit Recently"],"skill":64650},"33080":{"orbit":2,"orbitIndex":18,"stats":["10% increased Parried Debuff Magnitude"],"connections":[{"orbit":0,"id":43254}],"group":996,"name":"Parry Debuff Magnitude","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":33080},"61487":{"orbit":4,"orbitIndex":66,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[{"orbit":-4,"id":36596},{"orbit":0,"id":58109}],"group":846,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":61487},"53294":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Disgust","Disgust"],"connections":[{"orbit":0,"id":33397}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Burn Away","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":530,"isNotable":true,"stats":["15% increased Fire Damage","10% increased Ignite Magnitude","Damage Penetrates 10% Fire Resistance"],"skill":53294},"43383":{"orbit":4,"orbitIndex":51,"connections":[{"orbit":0,"id":62588},{"orbit":0,"id":37450}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Exposed Wounds","group":732,"isNotable":true,"stats":["15% increased chance to inflict Ailments","Hits Break 30% increased Armour on targets with Ailments"],"skill":43383},"22949":{"orbit":3,"orbitIndex":20,"stats":["Spell Skills have 6% increased Area of Effect"],"connections":[{"orbit":0,"id":35171}],"group":380,"name":"Spell Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":22949},"29358":{"orbit":2,"orbitIndex":7,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":-7,"id":917}],"group":150,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":29358},"3685":{"orbit":7,"orbitIndex":18,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":32151}],"group":650,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":3685},"58183":{"orbit":2,"orbitIndex":11,"recipe":["Despair","Isolation","Greed"],"connections":[{"orbit":0,"id":60241},{"orbit":0,"id":21245},{"orbit":0,"id":32278}],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Blood Tearing","group":486,"isNotable":true,"stats":["15% increased Magnitude of Bleeding you inflict","25% increased Physical Damage"],"skill":58183},"12166":{"orbit":7,"orbitIndex":22,"stats":["3% increased Cast Speed with Cold Skills"],"connections":[],"group":1191,"name":"Cast Speed with Cold Skills","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":12166},"26905":{"orbit":3,"orbitIndex":2,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":8821}],"group":826,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":26905},"40341":{"orbit":3,"orbitIndex":6,"stats":["3% increased Movement Speed if you've Killed Recently"],"connections":[{"orbit":-3,"id":17340},{"orbit":9,"id":21274}],"group":772,"name":"Movement Speed","icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":40341},"9164":{"orbit":5,"orbitIndex":45,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":25513}],"group":720,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":9164},"42065":{"orbit":2,"orbitIndex":17,"recipe":["Fear","Envy","Isolation"],"connections":[{"orbit":0,"id":37532}],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Surging Currents","group":1166,"isNotable":true,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"skill":42065},"62015":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":355,"connections":[],"stats":[],"skill":62015},"44299":{"orbit":4,"orbitIndex":0,"recipe":["Isolation","Paranoia","Isolation"],"connections":[{"orbit":0,"id":38105},{"orbit":0,"id":49455},{"orbit":0,"id":857}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Enhanced Barrier","group":591,"isNotable":true,"stats":["25% increased maximum Energy Shield","5% of Maximum Life Converted to Energy Shield"],"skill":44299},"8272":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds","name":"Weapon Master","ascendancyName":"Witchhunter","group":215,"isNotable":true,"stats":["100 Passive Skill Points become Weapon Set Skill Points"],"skill":8272},"41008":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds","name":"Penetrate","ascendancyName":"Amazon","group":1459,"isNotable":true,"stats":["Attacks using your Weapons have Added Physical Damage equal","to 25% of the Accuracy Rating on the Weapon"],"skill":41008},"23667":{"orbit":5,"orbitIndex":40,"stats":["16% increased Totem Life"],"connections":[{"orbit":0,"id":25312}],"group":314,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":23667},"44563":{"orbit":0,"orbitIndex":0,"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"connections":[{"orbit":7,"id":59053}],"group":1026,"name":"Slow Effect and Hinder Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":44563},"21495":{"orbit":3,"orbitIndex":14,"stats":["12% increased Elemental Damage with Attacks"],"connections":[],"group":1210,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":21495},"1823":{"orbit":4,"orbitIndex":60,"recipe":["Suffering","Paranoia","Suffering"],"connections":[{"orbit":0,"id":3471}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Illuminated Crown","group":647,"isNotable":true,"stats":["20% increased Light Radius","70% increased Energy Shield from Equipped Helmet"],"skill":1823},"48007":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":745,"connections":[{"orbit":0,"id":36302}],"stats":[],"skill":48007},"17260":{"orbit":3,"orbitIndex":2,"recipe":["Greed","Ire","Despair"],"connections":[{"orbit":0,"id":41180},{"orbit":0,"id":9037}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Piercing Claw","group":325,"isNotable":true,"stats":["Damage Penetrates 15% of Enemy Elemental Resistances while Shapeshifted"],"skill":17260},"42981":{"orbit":4,"orbitIndex":40,"recipe":["Suffering","Envy","Paranoia"],"connections":[{"orbit":0,"id":56104}],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","name":"Cruel Methods","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":640,"isNotable":true,"stats":["Break 40% increased Armour","25% increased Physical Damage"],"skill":42981},"32727":{"orbit":2,"orbitIndex":23,"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"connections":[],"group":654,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":32727},"53683":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Despair","Isolation"],"connections":[{"orbit":0,"id":30082},{"orbit":0,"id":61432}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Efficient Loading","group":876,"isNotable":true,"stats":["30% chance when you Reload a Crossbow to be immediate"],"skill":53683},"10382":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":21984},{"orbit":0,"id":33979}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1108,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":10382},"19044":{"orbit":1,"orbitIndex":0,"recipe":["Disgust","Fear","Despair"],"connections":[{"orbit":0,"id":53188}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Arcane Intensity","group":954,"isNotable":true,"stats":["3% increased Spell Damage per 100 maximum Mana"],"skill":19044},"58182":{"orbit":3,"orbitIndex":22,"stats":["Gain 3 Life per enemy killed"],"connections":[{"orbit":-5,"id":49220}],"group":955,"name":"Life on Kill","icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":58182},"33345":{"orbit":4,"orbitIndex":14,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":61923},{"orbit":0,"id":10131}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":33345},"22147":{"orbit":9,"orbitIndex":0,"connections":[{"orbit":0,"id":18678},{"orbit":0,"id":50219},{"orbit":0,"id":1579},{"orbit":-4,"id":27990},{"orbit":4,"id":43128},{"orbit":0,"id":54194}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Chronomancer","ascendancyName":"Chronomancer","isAscendancyStart":true,"group":348,"stats":[],"skill":22147},"52229":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Suffering","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","name":"Secrets of the Orb","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":638,"isNotable":true,"stats":["Orb Skills have +1 to Limit"],"skill":52229},"8629":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":382,"connections":[],"stats":[],"skill":8629},"28556":{"orbit":3,"orbitIndex":12,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":842,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28556},"39411":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":48682}],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds","name":"Answered Call","ascendancyName":"Warbringer","group":44,"isNotable":true,"stats":["+1 to maximum number of Summoned Totems","Trigger Ancestral Spirits when you Summon a Totem","Grants Skill: Ancestral Spirits"],"skill":39411},"10320":{"orbit":7,"orbitIndex":18,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":3,"id":14548}],"group":893,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":10320},"6626":{"orbit":2,"orbitIndex":21,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":4,"id":46475}],"group":649,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":6626},"44298":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":262,"connections":[{"orbit":0,"id":46024}],"stats":[],"skill":44298},"45632":{"orbit":7,"orbitIndex":19,"recipe":["Fear","Ire","Paranoia"],"connections":[{"orbit":0,"id":24551}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mind Eraser","group":280,"isNotable":true,"stats":["20% increased Mana Regeneration Rate","15% increased Mana Cost Efficiency"],"skill":45632},"5817":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds","name":"Mirage Deadeye","ascendancyName":"Deadeye","group":1433,"isNotable":true,"stats":["Grants Skill: Mirage Deadeye"],"skill":5817},"53823":{"orbit":3,"orbitIndex":18,"recipe":["Ire","Despair","Guilt"],"connections":[{"orbit":-3,"id":10508}],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Towering Shield","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","group":174,"isNotable":true,"stats":["25% increased Chance to Block if you've Blocked with a raised Shield Recently","50% increased Defences from Equipped Shield"],"skill":53823},"42452":{"orbit":5,"orbitIndex":6,"stats":["15% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"connections":[{"orbit":3,"id":51743}],"group":344,"name":"Shapeshifting Attack Damage","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":42452},"4925":{"orbit":3,"orbitIndex":4,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":7,"id":19779}],"group":881,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":4925},"15301":{"orbit":2,"orbitIndex":13,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":4709},{"orbit":0,"id":64064}],"group":1249,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":15301},"24129":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1131,"connections":[],"stats":[],"skill":24129},"59503":{"orbit":7,"orbitIndex":13,"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":22208}],"group":1260,"name":"Accuracy and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":59503},"56061":{"orbit":2,"orbitIndex":12,"stats":["14% increased Damage with Hits against Burning Enemies"],"connections":[],"group":409,"name":"Damage against Burning Enemies","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":56061},"57785":{"orbit":7,"orbitIndex":6,"recipe":["Greed","Despair","Ire"],"connections":[{"orbit":0,"id":31112},{"orbit":0,"id":56897}],"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Trained Turrets","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":886,"isNotable":true,"stats":["25% increased Ballista Critical Damage Bonus","20% increased Ballista Critical Hit Chance"],"skill":57785},"25591":{"orbit":2,"orbitIndex":6,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"connections":[{"orbit":0,"id":25315},{"orbit":0,"id":20115}],"group":199,"name":"Armour and Applies to Cold Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":25591},"62542":{"orbit":3,"orbitIndex":0,"stats":["10% increased Flask Charges gained"],"connections":[{"orbit":7,"id":16329},{"orbit":0,"id":57821}],"group":1282,"name":"Flask Charges Gained","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":62542},"24922":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":18923},{"orbit":0,"id":64345},{"orbit":0,"id":17077}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1060,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":24922},"15270":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1337,"connections":[],"stats":[],"skill":15270},"54351":{"orbit":7,"orbitIndex":7,"stats":["Recover 1% of maximum Life on Kill"],"connections":[{"orbit":-6,"id":52464}],"group":1172,"name":"Life on Kill","icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":54351},"17788":{"orbit":6,"orbitIndex":0,"connections":[],"options":{"Abyssal Lich":{"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds"},"ascendancyName":"Abyssal Lich"}},"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Crystalline Phylactery","isSwitchable":true,"ascendancyName":"Lich","containJewelSocket":true,"group":1120,"isNotable":true,"stats":["Can Socket a non-Unique Basic Jewel into the Phylactery","100% increased Effect of the Socketed Jewel","50% more Mana Cost of Skills if you have no Energy Shield"],"skill":17788},"61741":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Isolation","Envy"],"connections":[{"orbit":2,"id":40024}],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Lasting Toxins","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1176,"isNotable":true,"stats":["10% increased Skill Effect Duration","40% increased Poison Duration"],"skill":61741},"26772":{"orbit":7,"orbitIndex":22,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"connections":[{"orbit":2,"id":24240},{"orbit":3,"id":45774}],"group":1159,"name":"Slow Effect","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":26772},"22221":{"orbit":7,"orbitIndex":2,"connections":[{"orbit":-7,"id":57079}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Minions deal 15% increased Damage"],"skill":22221},"48006":{"orbit":7,"orbitIndex":9,"recipe":["Ire","Ire","Despair"],"connections":[{"orbit":0,"id":33604}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Devastation","group":608,"isNotable":true,"stats":["15% increased Attack Area Damage","12% increased Area of Effect for Attacks"],"skill":48006},"59362":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":41669},{"orbit":0,"id":62677},{"orbit":0,"id":50720}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":738,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59362},"5305":{"orbit":1,"orbitIndex":2,"stats":["3% increased Skill Speed"],"connections":[{"orbit":0,"id":3431},{"orbit":0,"id":24287}],"group":1297,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","skill":5305},"43385":{"orbit":7,"orbitIndex":18,"connections":[{"orbit":-5,"id":64139}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Minions deal 15% increased Damage"],"skill":43385},"12462":{"orbit":3,"orbitIndex":20,"connections":[{"orbit":0,"id":64299}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","options":{"Druid":{"stats":["8% increased Damage"],"id":25740,"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","name":"Damage"}},"group":551,"isSwitchable":true,"stats":["Aura Skills have 5% increased Magnitudes"],"skill":12462},"17664":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Envy","Ire"],"connections":[{"orbit":0,"id":11463},{"orbit":0,"id":33348}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Decisive Retreat","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1307,"isNotable":true,"stats":["50% increased Critical Damage Bonus against Enemies that have exited your Presence Recently"],"skill":17664},"16100":{"orbit":8,"orbitIndex":0,"connections":[{"orbit":7,"id":65173}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Evasion","ascendancyName":"Invoker","group":1430,"stats":["20% increased Evasion Rating"],"skill":16100},"48658":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Shattering","group":1038,"isNotable":true,"stats":["30% increased Freeze Buildup","20% increased Chill Duration on Enemies","20% increased Magnitude of Chill you inflict"],"skill":48658},"49189":{"orbit":9,"orbitIndex":17,"connections":[],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds","name":"Storm's Recollection","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["Remnants can be collected from 50% further away","Remnants you create reappear once, 3 seconds after being collected"],"skill":49189},"35720":{"orbit":7,"orbitIndex":9,"connections":[{"orbit":0,"id":7258}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":665,"connectionArt":"CharacterPlanned","stats":["10% increased Spell Damage","+10 to Strength"],"skill":35720},"37302":{"orbit":3,"orbitIndex":20,"recipe":["Guilt","Paranoia","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Kept at Bay","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":585,"isNotable":true,"stats":["Attacks used by Ballistas have 10% increased Attack Speed","50% increased Ballista Immobilisation buildup"],"skill":37302},"34401":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Blind Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","group":1328,"connections":[],"stats":[],"skill":34401},"46688":{"orbit":7,"orbitIndex":1,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"connections":[{"orbit":-2,"id":4238}],"group":1144,"name":"One Handed Attack Speed","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":46688},"17059":{"orbit":3,"orbitIndex":17,"connections":[{"orbit":7,"id":6874}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Stun Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":173,"connectionArt":"CharacterPlanned","stats":["25% increased Stun Threshold while Channelling"],"skill":17059},"38497":{"orbit":7,"orbitIndex":19,"stats":["6% reduced Charm Charges used"],"connections":[{"orbit":-5,"id":62803}],"group":1270,"name":"Charm Charges Used","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":38497},"63863":{"orbit":0,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[],"group":833,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":63863},"54340":{"orbit":2,"orbitIndex":3,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","name":"Armour Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":356,"connections":[],"stats":[],"skill":54340},"41522":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","name":"Duration Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","group":1020,"connections":[],"stats":[],"skill":41522},"32943":{"orbit":4,"orbitIndex":67,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":0,"id":16938},{"orbit":0,"id":29930},{"orbit":0,"id":16484}],"group":989,"name":"Damage and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":32943},"7782":{"orbit":3,"orbitIndex":0,"recipe":["Greed","Suffering","Guilt"],"connections":[{"orbit":0,"id":6161}],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Rupturing Pins","group":1080,"isNotable":true,"stats":["40% increased Magnitude of Bleeding you inflict against Pinned Enemies"],"skill":7782},"8831":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Despair","Paranoia"],"connections":[{"orbit":0,"id":14082}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Tempered Mind","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":1137,"isNotable":true,"stats":["20% increased Critical Damage Bonus","+10 to Strength","20% increased Physical Damage"],"skill":8831},"46023":{"orbit":3,"orbitIndex":3,"stats":["15% increased Armour"],"connections":[],"group":452,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":46023},"62797":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-4,"id":23352}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Curse Area","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":11965,"stats":["15% increased Area of Effect of Curses"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Curse Area"}},"group":1089,"isSwitchable":true,"stats":["15% increased Area of Effect of Curses"],"skill":62797},"3084":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":30996}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","ascendancyName":"Gemling Legionnaire","group":485,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"skill":3084},"50912":{"orbit":7,"orbitIndex":20,"recipe":["Ire","Disgust","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Imbibed Power","group":1072,"isNotable":true,"stats":["6% increased Attack Speed during any Flask Effect","25% increased Damage during any Flask Effect"],"skill":50912},"52630":{"orbit":7,"orbitIndex":13,"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"connections":[{"orbit":0,"id":61800},{"orbit":0,"id":28371}],"group":1303,"name":"Critical Damage vs Full Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":52630},"45354":{"orbit":2,"orbitIndex":9,"stats":["Aura Skills have 5% increased Magnitudes"],"connections":[{"orbit":0,"id":64948},{"orbit":0,"id":21568}],"group":264,"name":"Aura Effect","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":45354},"27234":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":858,"connections":[],"stats":[],"skill":27234},"26383":{"orbit":8,"orbitIndex":59,"connections":[{"orbit":8,"id":48551}],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds","name":"Sunder the Flesh","ascendancyName":"Blood Mage","group":910,"isNotable":true,"stats":["Base Critical Hit Chance for Spells is 15%"],"skill":26383},"45230":{"orbit":2,"orbitIndex":4,"stats":["10% increased Area of Effect of Curses"],"connections":[{"orbit":0,"id":28229}],"group":916,"name":"Curse Area","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":45230},"20701":{"orbit":3,"orbitIndex":4,"connections":[{"orbit":3,"id":35880}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds","name":"Instruments of Power","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["You can equip a Focus while wielding a Staff","50% reduced bonuses gained from Equipped Focus"],"skill":20701},"57379":{"orbit":3,"orbitIndex":10,"recipe":["Fear","Greed","Envy"],"connections":[{"orbit":0,"id":39190},{"orbit":0,"id":49111}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"In Your Face","group":134,"isNotable":true,"stats":["40% increased Melee Damage with Hits at Close Range"],"skill":57379},"32123":{"orbit":3,"orbitIndex":4,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":54678}],"group":1163,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":32123},"23932":{"orbit":5,"orbitIndex":69,"connections":[{"orbit":0,"id":8423}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["5% increased Attack Speed with Bows"],"skill":23932},"28489":{"orbit":4,"orbitIndex":69,"connections":[{"orbit":8,"id":27216},{"orbit":0,"id":56890}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Skill Effect Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":201,"connectionArt":"CharacterPlanned","stats":["Shapeshift Skills have 15% increased Skill Effect Duration"],"skill":28489},"22873":{"orbit":3,"orbitIndex":4,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"connections":[{"orbit":7,"id":7777},{"orbit":0,"id":64318}],"group":343,"name":"Elemental Penetration","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":22873},"45494":{"orbit":3,"orbitIndex":9,"stats":["20% increased Ballista Immobilisation buildup"],"connections":[],"group":585,"name":"Ballista Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":45494},"58312":{"orbit":7,"orbitIndex":10,"stats":["5% increased Culling Strike Threshold"],"connections":[{"orbit":0,"id":49497}],"group":1084,"name":"Culling Strike Threshold","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":58312},"50121":{"orbit":0,"orbitIndex":0,"stats":["10% increased Cold Damage"],"connections":[{"orbit":0,"id":3128}],"group":1164,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":50121},"27176":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Paranoia","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"The Power Within","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":1003,"isNotable":true,"stats":["20% increased Critical Damage Bonus if you've gained a Power Charge Recently","+1 to Maximum Power Charges"],"skill":27176},"37691":{"orbit":7,"orbitIndex":13,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-6,"id":42750}],"group":1172,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":37691},"270":{"orbit":2,"orbitIndex":6,"stats":["Inherent loss of Rage is 15% slower"],"connections":[{"orbit":2,"id":56219}],"group":182,"name":"Rage Decay","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":270},"36109":{"orbit":6,"orbitIndex":19,"connections":[{"orbit":8,"id":13289}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds","name":"Kelari's Malediction","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Kelari's Malediction"],"skill":36109},"16466":{"orbit":2,"orbitIndex":0,"recipe":["Fear","Envy","Paranoia"],"connections":[{"orbit":0,"id":40196}],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Mental Alacrity","group":1098,"isNotable":true,"stats":["5% increased Cast Speed","15% increased Mana Regeneration Rate","+10 to Intelligence"],"skill":16466},"21089":{"orbit":7,"orbitIndex":20,"stats":["Thorns Damage has 25% chance to ignore Enemy Armour"],"connections":[{"orbit":7,"id":31848}],"group":259,"name":"Thorns Ignore Armour","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":21089},"48537":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds","name":"Forged in Flame","ascendancyName":"Smith of Kitava","group":25,"isNotable":true,"stats":["Modifiers to Maximum Fire Resistance also grant Maximum Cold and Lightning Resistance"],"skill":48537},"46146":{"orbit":7,"orbitIndex":4,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":0,"id":43691}],"group":1037,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":46146},"35985":{"orbit":6,"orbitIndex":18,"stats":["10% increased Melee Damage"],"connections":[],"group":1314,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":35985},"48925":{"orbit":7,"orbitIndex":0,"recipe":["Fear","Guilt","Despair"],"connections":[{"orbit":0,"id":54887}],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Blessing of the Moon","group":322,"isNotable":true,"stats":["8% increased Skill Effect Duration per Enemy you've Frozen in the last 8 seconds, up to 40%"],"skill":48925},"28431":{"orbit":9,"orbitIndex":40,"connections":[],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds","name":"Eternal Life","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"ascendancyName":"Abyssal Lich"}},"group":1120,"isNotable":true,"stats":["Your Life cannot change while you have Energy Shield"],"skill":28431},"3949":{"orbit":2,"orbitIndex":10,"stats":["Empowered Attacks deal 8% increased Damage","5% increased total Power counted by Warcries"],"connections":[{"orbit":0,"id":27296},{"orbit":2,"id":15247}],"group":140,"name":"Empowered Attack Damage and Power Counted","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":3949},"44176":{"orbit":7,"orbitIndex":18,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":57047}],"group":761,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":44176},"12066":{"orbit":3,"orbitIndex":8,"stats":["Aura Skills have 5% increased Magnitudes"],"connections":[{"orbit":0,"id":48734}],"group":1378,"name":"Aura Magnitude","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","skill":12066},"13882":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Infusion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","group":703,"connections":[],"stats":[],"skill":13882},"46674":{"orbit":2,"orbitIndex":16,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":35921},{"orbit":0,"id":64807}],"group":234,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":46674},"37164":{"orbit":2,"orbitIndex":16,"stats":["10% increased Magnitude of Non-Damaging Ailments you inflict"],"connections":[{"orbit":2147483647,"id":419}],"group":1118,"name":"Non-Damaging Ailment Magnitude","icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","skill":37164},"23013":{"orbit":4,"orbitIndex":42,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1173,"connections":[],"stats":[],"skill":23013},"18049":{"orbit":7,"orbitIndex":22,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies within 2m"],"connections":[{"orbit":0,"id":5802}],"group":1247,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":18049},"41665":{"orbit":3,"orbitIndex":2,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":6,"id":50562}],"group":327,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":41665},"3918":{"orbit":2,"orbitIndex":15,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":59695}],"group":645,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":3918},"33596":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","name":"Crossbow Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":838,"connections":[],"stats":[],"skill":33596},"62936":{"orbit":2,"orbitIndex":11,"stats":["4% of Damage is taken from Mana before Life"],"connections":[{"orbit":7,"id":51891}],"group":1234,"name":"Damage from Mana","icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","skill":62936},"39274":{"orbit":2,"orbitIndex":6,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":0,"id":2119}],"group":632,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":39274},"59368":{"orbit":7,"orbitIndex":2,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":4,"id":61215},{"orbit":0,"id":48116}],"group":1343,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","skill":59368},"18115":{"orbit":7,"orbitIndex":7,"stats":["12% increased Grenade Damage"],"connections":[{"orbit":0,"id":48856}],"group":838,"name":"Grenade Damage","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":18115},"50118":{"orbit":1,"orbitIndex":4,"stats":["Companions have +12% to all Elemental Resistances","Companions have 12% increased maximum Life"],"connections":[{"orbit":0,"id":55450}],"group":198,"name":"Companion Resistance and Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":50118},"27638":{"orbit":7,"orbitIndex":3,"stats":["15% increased Glory generation"],"connections":[{"orbit":0,"id":38010}],"group":493,"name":"Glory Generation","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":27638},"28092":{"orbit":7,"orbitIndex":8,"stats":["Archon recovery period expires 10% faster"],"connections":[{"orbit":7,"id":17061}],"group":534,"name":"Archon Delay","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":28092},"55536":{"orbit":9,"orbitIndex":72,"connections":[{"orbit":2147483647,"id":34882},{"orbit":0,"id":1442},{"orbit":2147483647,"id":3084}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Gambler","ascendancyName":"Gemling Legionnaire","isAscendancyStart":true,"group":443,"stats":[],"skill":55536},"14045":{"orbit":5,"orbitIndex":48,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":33848}],"group":1046,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":14045},"37304":{"orbit":4,"orbitIndex":57,"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"connections":[{"orbit":4,"id":336},{"orbit":-4,"id":61921},{"orbit":0,"id":64543}],"group":1245,"name":"Elemental","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":37304},"45497":{"orbit":0,"orbitIndex":0,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":-7,"id":13333},{"orbit":0,"id":17057},{"orbit":7,"id":61170}],"group":668,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":45497},"26308":{"orbit":2,"orbitIndex":10,"stats":["+3 to all Attributes"],"connections":[{"orbit":-9,"id":27017}],"group":1107,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","skill":26308},"15829":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Envy","Guilt"],"connections":[{"orbit":0,"id":46146}],"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Siphon","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","group":1037,"isNotable":true,"stats":["Recover 2% of maximum Mana on Kill","25% increased amount of Mana Leeched"],"skill":15829},"2091":{"orbit":4,"orbitIndex":18,"stats":["8% chance to Poison on Hit"],"connections":[],"group":1176,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":2091},"40345":{"orbit":7,"orbitIndex":0,"recipe":["Suffering","Fear","Suffering"],"connections":[{"orbit":0,"id":37991},{"orbit":0,"id":50540}],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Master of Hexes","group":811,"isNotable":true,"stats":["25% reduced Curse Duration","18% increased Curse Magnitudes"],"skill":40345},"3472":{"orbit":7,"orbitIndex":12,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[{"orbit":-3,"id":26682}],"group":699,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":3472},"9421":{"orbit":2,"orbitIndex":8,"recipe":["Isolation","Guilt","Disgust"],"connections":[{"orbit":0,"id":60170}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Snowpiercer","group":1188,"isNotable":true,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"skill":9421},"37568":{"orbit":2,"orbitIndex":6,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"connections":[{"orbit":0,"id":45370}],"group":1179,"name":"Strength and Critical Damage Bonus on You","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","skill":37568},"37956":{"orbit":0,"orbitIndex":0,"stats":["8% reduced Skill Effect Duration"],"connections":[{"orbit":3,"id":35581}],"group":494,"name":"Reduced Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":37956},"51565":{"orbit":3,"orbitIndex":6,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"connections":[{"orbit":0,"id":2335},{"orbit":0,"id":22682}],"group":1134,"name":"Additional Spell Projectiles","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":51565},"23343":{"orbit":2,"orbitIndex":21,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":3,"id":58388}],"group":1095,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":23343},"42845":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":10371}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Banner Area","ascendancyName":"Tactician","group":310,"stats":["Banner Skills have 20% increased Area of Effect"],"skill":42845},"20504":{"orbit":0,"orbitIndex":0,"stats":["Recover 5 Life when you Block"],"connections":[{"orbit":-5,"id":62341}],"group":959,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":20504},"58170":{"orbit":2,"orbitIndex":1,"connections":[{"orbit":0,"id":61067}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","options":{"Druid":{"stats":["Regenerate 0.2% of maximum Life per second"],"id":41568,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration"}},"group":626,"isSwitchable":true,"stats":["10% increased Spell Damage"],"skill":58170},"10251":{"orbit":2,"orbitIndex":16,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":7204}],"group":236,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":10251},"48135":{"orbit":7,"orbitIndex":12,"stats":["10% increased Charm Charges gained"],"connections":[{"orbit":0,"id":12750}],"group":968,"name":"Charm Charges","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":48135},"55397":{"orbit":7,"orbitIndex":21,"connections":[{"orbit":0,"id":44527}],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","options":{"Huntress":{"stats":["15% increased Elemental Ailment Threshold"],"id":1247,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold"}},"group":935,"isSwitchable":true,"stats":["15% increased Flask Charges gained"],"skill":55397},"9328":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Envy","Despair"],"connections":[{"orbit":0,"id":34782}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","name":"Spirit of the Bear","group":138,"isNotable":true,"stats":["50% increased Damage against Immobilised Enemies while Shapeshifted","25% increased Stun buildup while Shapeshifted"],"skill":9328},"33209":{"orbit":4,"orbitIndex":2,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"connections":[],"group":363,"name":"Totem Cast and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":33209},"15899":{"orbit":2,"orbitIndex":6,"stats":["10% increased Magnitude of Bleeding you inflict"],"connections":[{"orbit":9,"id":21627}],"group":716,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":15899},"4015":{"orbit":4,"orbitIndex":6,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[{"orbit":3,"id":47429},{"orbit":-6,"id":59466},{"orbit":0,"id":49136}],"group":383,"name":"Warcry Cooldown","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":4015},"11337":{"orbit":3,"orbitIndex":16,"stats":["15% increased Magnitude of Chill you inflict"],"connections":[{"orbit":5,"id":23427},{"orbit":0,"id":44455}],"group":749,"name":"Chill Magnitude","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":11337},"59367":{"orbit":2,"orbitIndex":6,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":10774}],"group":424,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":59367},"1988":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds","name":"Unleash Hell!","ascendancyName":"Tactician","group":402,"isNotable":true,"stats":["Grants Skill: Supporting Fire"],"skill":1988},"11306":{"orbit":2,"orbitIndex":5,"stats":["Gain 1 Rage on Melee Axe Hit"],"connections":[{"orbit":0,"id":57880}],"group":172,"name":"Axe Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":11306},"25779":{"orbit":9,"orbitIndex":34,"connections":[{"orbit":0,"id":41076}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Darkness","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["10% increased maximum Darkness"],"skill":25779},"49192":{"orbit":7,"orbitIndex":12,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":0,"id":43396},{"orbit":0,"id":41615}],"group":363,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":49192},"11275":{"orbit":7,"orbitIndex":12,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":0,"id":13893}],"group":104,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":11275},"50383":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Infusion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","group":718,"connections":[],"stats":[],"skill":50383},"55925":{"orbit":7,"orbitIndex":8,"stats":["+3 to maximum Rage while Shapeshifted"],"connections":[{"orbit":0,"id":37290}],"group":176,"name":"Maximum Rage while Shapeshifted","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":55925},"27761":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Fear"],"connections":[{"orbit":0,"id":5826}],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Counterstancing","group":1018,"isNotable":true,"stats":["Successfully Parrying a Melee Hit grants 40% increased Damage to your next Ranged Attack","Successfully Parrying a Projectile Hit grants 40% increased Damage to your next Melee Attack"],"skill":27761},"47606":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","name":"Rage Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","group":182,"connections":[],"stats":[],"skill":47606},"20303":{"orbit":2,"orbitIndex":16,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":9908}],"group":368,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":20303},"65437":{"orbit":2,"orbitIndex":14,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":63064}],"group":970,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":65437},"55270":{"orbit":7,"orbitIndex":1,"stats":["15% increased Pin Buildup"],"connections":[{"orbit":0,"id":60083}],"group":1050,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":55270},"21156":{"orbit":7,"orbitIndex":8,"stats":["15% increased Endurance, Frenzy and Power Charge Duration"],"connections":[{"orbit":0,"id":34623}],"group":1362,"name":"Charge Duration","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","skill":21156},"41651":{"orbit":2,"orbitIndex":2,"stats":["Banner Skills have 15% increased Area of Effect"],"connections":[{"orbit":0,"id":43791},{"orbit":-5,"id":53320}],"group":643,"name":"Banner Area","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":41651},"37026":{"orbit":1,"orbitIndex":2,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"connections":[{"orbit":0,"id":27513}],"group":1349,"name":"Armour Break and Physical Damage","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":37026},"8145":{"orbit":1,"orbitIndex":9,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":-6,"id":23331}],"group":255,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":8145},"44690":{"orbit":2,"orbitIndex":5,"stats":["8% reduced Skill Effect Duration"],"connections":[{"orbit":0,"id":14127}],"group":1020,"name":"Reduced Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":44690},"703":{"orbit":1,"orbitIndex":2,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"connections":[{"orbit":-3,"id":44917}],"group":942,"name":"Stun Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":703},"62670":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","name":"Minion Defence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","group":149,"connections":[],"stats":[],"skill":62670},"56453":{"orbit":5,"orbitIndex":39,"recipe":["Greed","Paranoia","Greed"],"connections":[{"orbit":0,"id":37691}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Killer Instinct","group":1172,"isNotable":true,"stats":["40% increased Attack Damage while on Full Life","60% increased Attack Damage while on Low Life"],"skill":56453},"6229":{"orbit":7,"orbitIndex":5,"recipe":["Fear","Ire","Disgust"],"connections":[{"orbit":7,"id":26490}],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"Push the Advantage","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":483,"isNotable":true,"stats":["40% increased Critical Damage Bonus with One Handed Melee Weapons"],"skill":6229},"44566":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Isolation","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Rod","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":831,"isNotable":true,"stats":["30% chance for Lightning Damage with Hits to be Lucky"],"skill":44566},"35708":{"orbit":2,"orbitIndex":2,"stats":["12% increased Magnitude of Chill you inflict"],"connections":[{"orbit":0,"id":2863}],"group":524,"name":"Chill Magnitude","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":35708},"37290":{"orbit":7,"orbitIndex":5,"stats":["+3 to maximum Rage while Shapeshifted"],"connections":[{"orbit":0,"id":28892}],"group":176,"name":"Maximum Rage while Shapeshifted","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":37290},"3282":{"orbit":3,"orbitIndex":15,"stats":["20% increased Ballista Immobilisation buildup"],"connections":[{"orbit":0,"id":52860}],"group":585,"name":"Ballista Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":3282},"11376":{"orbit":1,"orbitIndex":10,"recipe":["Despair","Despair","Suffering"],"connections":[{"orbit":0,"id":35492}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Necrotic Touch","group":735,"isNotable":true,"stats":["Minions have 40% increased Critical Hit Chance"],"skill":11376},"49984":{"orbit":5,"orbitIndex":57,"recipe":["Despair","Fear","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spellblade","group":1172,"isNotable":true,"stats":["32% increased Spell Damage while wielding a Melee Weapon","+10 to Dexterity"],"skill":49984},"51702":{"orbit":7,"orbitIndex":16,"stats":["+8 to Strength"],"connections":[],"group":373,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":51702},"33722":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4140},{"orbit":0,"id":55048},{"orbit":0,"id":27980},{"orbit":0,"id":61811}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":183,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":33722},"36639":{"orbit":7,"orbitIndex":22,"stats":["20% increased Curse Duration"],"connections":[{"orbit":-6,"id":62677},{"orbit":0,"id":32009}],"group":814,"name":"Curse Duration","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":36639},"42984":{"orbit":1,"orbitIndex":8,"stats":["6% increased Area of Effect"],"connections":[{"orbit":0,"id":21184}],"group":114,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":42984},"18519":{"orbit":7,"orbitIndex":16,"stats":["8% increased amount of Life Leeched","Companions deal 12% increased Damage"],"connections":[{"orbit":-7,"id":30910}],"group":1032,"name":"Life Leech and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":18519},"52354":{"orbit":0,"orbitIndex":0,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"connections":[{"orbit":0,"id":41171}],"group":930,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":52354},"35848":{"orbit":7,"orbitIndex":20,"stats":["10% increased Life and Mana Recovery from Flasks"],"connections":[],"group":927,"name":"Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":35848},"55131":{"orbit":4,"orbitIndex":38,"recipe":["Disgust","Isolation","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Light on your Feet","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":621,"isNotable":true,"stats":["3% increased Movement Speed","Immune to Hinder","Immune to Maim"],"skill":55131},"1220":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":657,"connections":[],"stats":[],"skill":1220},"10841":{"orbit":7,"orbitIndex":15,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1051,"connections":[],"stats":[],"skill":10841},"51299":{"orbit":2,"orbitIndex":0,"connections":[{"orbit":0,"id":35265},{"orbit":0,"id":19802},{"orbit":0,"id":44419}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":549,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":51299},"40471":{"orbit":7,"orbitIndex":16,"stats":["+8 to Dexterity"],"connections":[{"orbit":-2,"id":19027},{"orbit":0,"id":7847}],"group":1362,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","skill":40471},"9918":{"orbit":2,"orbitIndex":4,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":0,"id":16626}],"group":285,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":9918},"39540":{"orbit":4,"orbitIndex":49,"connections":[{"orbit":0,"id":55933},{"orbit":0,"id":50558}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","options":{"Druid":{"stats":["3% increased Skill Speed while Shapeshifted"],"id":22652,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Skill Speed while Shapeshifted"}},"group":551,"isSwitchable":true,"stats":["10% increased Critical Hit Chance"],"skill":39540},"20691":{"orbit":2,"orbitIndex":10,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":41739}],"group":552,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":20691},"37694":{"orbit":7,"orbitIndex":21,"connections":[{"orbit":0,"id":12940}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":["20% increased Fire Damage"],"skill":37694},"56857":{"orbit":6,"orbitIndex":44,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds","name":"Sacred Rituals","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["60% of your current Energy Shield is added to your Armour for","determining your Physical Damage Reduction from Armour"],"skill":56857},"46275":{"orbit":4,"orbitIndex":35,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":3894}],"group":591,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":46275},"18717":{"orbit":0,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":60483}],"group":1323,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":18717},"59093":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":14110},{"orbit":0,"id":5088},{"orbit":0,"id":53444},{"orbit":0,"id":4621}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":270,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59093},"42583":{"orbit":2,"orbitIndex":18,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":2147483647,"id":6714}],"group":630,"name":"Life Regeneration Rate","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":42583},"64379":{"orbit":8,"orbitIndex":69,"connections":[{"orbit":-4,"id":25239}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Spell Damage","ascendancyName":"Infernalist","group":725,"stats":["12% increased Spell Damage"],"skill":64379},"64643":{"orbit":2,"orbitIndex":3,"stats":["20% increased Power Charge Duration"],"connections":[{"orbit":0,"id":56360},{"orbit":0,"id":27176}],"group":1003,"name":"Power Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":64643},"40068":{"orbit":4,"orbitIndex":38,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":32683}],"group":972,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":40068},"51040":{"orbit":0,"orbitIndex":0,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":9652}],"group":1237,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":51040},"56714":{"orbit":3,"orbitIndex":10,"recipe":["Suffering","Suffering","Guilt"],"connections":[{"orbit":0,"id":47212}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Swift Flight","group":468,"isNotable":true,"stats":["15% increased Projectile Speed","20% increased Physical Damage"],"skill":56714},"29148":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":34840}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":575,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":29148},"26447":{"orbit":2,"orbitIndex":0,"recipe":["Paranoia","Suffering","Ire"],"connections":[{"orbit":0,"id":12918},{"orbit":0,"id":49633}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Refocus","group":777,"isNotable":true,"stats":["30% increased Energy Shield Recharge Rate","20% increased Mana Regeneration Rate"],"skill":26447},"23608":{"orbit":7,"orbitIndex":20,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":2,"id":61741},{"orbit":-2,"id":24401}],"group":1176,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":23608},"23930":{"orbit":4,"orbitIndex":40,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":46024},{"orbit":0,"id":58295}],"group":269,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":23930},"3414":{"orbit":0,"orbitIndex":0,"stats":["Minions have +20% to Lightning Resistance"],"connections":[{"orbit":0,"id":14575}],"group":595,"name":"Minion Lightning Resistance","icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","skill":3414},"13619":{"orbit":7,"orbitIndex":0,"stats":["15% increased Life Flask Charges gained"],"connections":[{"orbit":0,"id":12208},{"orbit":0,"id":59600}],"group":1148,"name":"Life Flask Charges","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":13619},"30808":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":14267},{"orbit":-4,"id":28101}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1379,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":30808},"20831":{"orbit":2,"orbitIndex":14,"connections":[{"orbit":0,"id":29843},{"orbit":0,"id":44875}],"icon":"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds","name":"Catlike Agility","group":935,"isNotable":true,"stats":["25% increased Evasion Rating","40% increased Evasion Rating if you've Dodge Rolled Recently","3% reduced Movement Speed Penalty from using Skills while moving"],"skill":20831},"53941":{"orbit":3,"orbitIndex":12,"recipe":["Envy","Envy","Suffering"],"connections":[{"orbit":0,"id":17283}],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Shimmering","group":1058,"isNotable":true,"stats":["20% increased Energy Shield Recovery Rate if you haven't been Hit Recently","3% increased Movement Speed while you have Energy Shield"],"skill":53941},"56978":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":21274}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":793,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":56978},"32932":{"orbit":7,"orbitIndex":21,"recipe":["Envy","Suffering","Paranoia"],"connections":[{"orbit":0,"id":14205},{"orbit":0,"id":63268}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Ichlotl's Inferno","group":487,"isNotable":true,"stats":["Every Rage also grants 1% increased Fire Damage"],"skill":32932},"55260":{"orbit":2,"orbitIndex":23,"stats":["15% increased Freeze Threshold"],"connections":[{"orbit":-5,"id":19751}],"group":93,"name":"Freeze Threshold","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":55260},"47344":{"orbit":9,"orbitIndex":0,"connections":[{"orbit":0,"id":3781}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Damage","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["11% increased Chaos Damage"],"skill":47344},"14511":{"orbit":4,"orbitIndex":15,"stats":["10% increased Stun Buildup","10% increased Melee Damage"],"connections":[{"orbit":-3,"id":18207},{"orbit":0,"id":53719}],"group":122,"name":"Melee and Stun","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":14511},"58704":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":49380}],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds","name":"Anvil's Weight","ascendancyName":"Warbringer","group":29,"isNotable":true,"stats":["Break Armour equal to 10% of Hit Damage dealt"],"skill":58704},"5936":{"orbit":4,"orbitIndex":36,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":65248}],"group":705,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":5936},"12890":{"orbit":6,"orbitIndex":12,"connections":[{"orbit":0,"id":2091},{"orbit":0,"id":42118}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1177,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":12890},"37695":{"orbit":0,"orbitIndex":0,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":-5,"id":11813}],"group":1104,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":37695},"16596":{"orbit":3,"orbitIndex":20,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"connections":[{"orbit":7,"id":38535},{"orbit":0,"id":5088}],"group":343,"name":"Speed with Elemental Skills","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":16596},"40736":{"orbit":7,"orbitIndex":10,"stats":["5% increased Attack Damage","8% increased Glory generation"],"connections":[{"orbit":0,"id":34305},{"orbit":2,"id":15606}],"group":211,"name":"Glory Generation and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":40736},"59356":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":1190,"connections":[],"stats":[],"skill":59356},"41529":{"orbit":2,"orbitIndex":5,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":-2,"id":21380}],"group":1160,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":41529},"29288":{"orbit":3,"orbitIndex":1,"recipe":["Isolation","Ire","Envy"],"connections":[{"orbit":0,"id":36759}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Deadly Invocations","group":1119,"isNotable":true,"stats":["Invocation Spells have 50% increased Critical Damage Bonus"],"skill":29288},"151":{"orbit":7,"orbitIndex":5,"stats":["16% increased Accuracy Rating at Close Range"],"connections":[{"orbit":0,"id":34747}],"group":570,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":151},"17725":{"orbit":7,"orbitIndex":10,"recipe":["Disgust","Envy","Suffering"],"connections":[{"orbit":0,"id":9221}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Bonded Precision","group":263,"isNotable":true,"stats":["Allies in your Presence have 25% increased Critical Hit Chance","25% increased Critical Hit Chance"],"skill":17725},"51832":{"orbit":2,"orbitIndex":6,"stats":["16% increased Damage with Warcries"],"connections":[{"orbit":0,"id":47722}],"group":184,"name":"Warcry Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":51832},"35043":{"orbit":4,"orbitIndex":36,"stats":["10% increased Parried Debuff Magnitude"],"connections":[],"group":1368,"name":"Parried Debuff Magnitude","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":35043},"15698":{"orbit":7,"orbitIndex":3,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":55260},{"orbit":0,"id":28982}],"group":93,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":15698},"55400":{"orbit":2,"orbitIndex":5,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":30372}],"group":1166,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":55400},"48524":{"orbit":2,"orbitIndex":10,"recipe":["Paranoia","Paranoia","Suffering"],"connections":[{"orbit":0,"id":43818}],"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Blood Transfusion","group":458,"isNotable":true,"stats":["25% increased Life Regeneration rate","25% of Spell Mana Cost Converted to Life Cost"],"skill":48524},"40333":{"orbit":7,"orbitIndex":12,"stats":["12% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":2,"id":24178}],"group":1230,"name":"Damage with Companion in Presence","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":40333},"53938":{"orbit":2,"orbitIndex":18,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":36931}],"group":1024,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":53938},"63981":{"orbit":7,"orbitIndex":4,"recipe":["Envy","Ire","Ire"],"connections":[{"orbit":0,"id":8194}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Deft Recovery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":1231,"isNotable":true,"stats":["30% increased Stun Recovery","30% increased Stun Threshold if you haven't been Stunned Recently"],"skill":63981},"63064":{"orbit":2,"orbitIndex":10,"connections":[{"orbit":3,"id":30634},{"orbit":0,"id":54413}],"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","name":"Mystic Stance","group":970,"isNotable":true,"stats":["30% faster start of Energy Shield Recharge","30% increased Stun Threshold while on Full Life"],"skill":63064},"35974":{"orbit":2,"orbitIndex":22,"stats":["16% increased Totem Life"],"connections":[{"orbit":0,"id":51105}],"group":287,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":35974},"55664":{"orbit":4,"orbitIndex":0,"stats":["10% increased Presence Area of Effect","Companions have 10% increased Area of Effect"],"connections":[{"orbit":-3,"id":31826}],"group":1280,"name":"Presence Area and Companion Area","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":55664},"40597":{"orbit":4,"orbitIndex":9,"stats":["Attacks used by Ballistas have 4% increased Attack Speed"],"connections":[{"orbit":0,"id":53607},{"orbit":0,"id":58817}],"group":585,"name":"Ballista Attack Speed","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":40597},"17058":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Resistances","ascendancyName":"Ritualist","group":1486,"stats":["-20% to all Elemental Resistances"],"skill":17058},"50510":{"orbit":4,"orbitIndex":18,"stats":["5% increased Block chance"],"connections":[{"orbit":0,"id":46384}],"group":117,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":50510},"21945":{"orbit":0,"orbitIndex":0,"stats":["5% chance to Daze on Hit"],"connections":[{"orbit":0,"id":61718},{"orbit":0,"id":26572},{"orbit":0,"id":39128},{"orbit":0,"id":54545}],"group":1376,"name":"Damage and Criticals vs Dazed Enemies","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":21945},"28693":{"orbit":2,"orbitIndex":1,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":7,"id":49280}],"group":667,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":28693},"49455":{"orbit":4,"orbitIndex":5,"stats":["15% increased maximum Energy Shield"],"connections":[],"group":591,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":49455},"25315":{"orbit":2,"orbitIndex":0,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"connections":[{"orbit":0,"id":19820}],"group":199,"name":"Armour and Applies to Cold Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":25315},"31724":{"orbit":2,"orbitIndex":0,"recipe":["Isolation","Envy","Guilt"],"connections":[{"orbit":0,"id":2074}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Iron Slippers","group":405,"isNotable":true,"stats":["+3 to Armour per 1 Item Energy Shield on Equipped Boots","10% reduced Slowing Potency of Debuffs on You"],"skill":31724},"65310":{"orbit":3,"orbitIndex":2,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"connections":[{"orbit":0,"id":22682}],"group":1134,"name":"Additional Spell Projectiles","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":65310},"10314":{"orbit":4,"orbitIndex":30,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":16256}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":10314},"59355":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1115,"connections":[],"stats":[],"skill":59355},"53675":{"orbit":2,"orbitIndex":0,"stats":["15% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":59498}],"group":430,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":53675},"50107":{"orbit":2,"orbitIndex":16,"stats":["15% reduced effect of Curses on you"],"connections":[{"orbit":0,"id":50881}],"group":982,"name":"Curse Effect on Self","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":50107},"25513":{"orbit":6,"orbitIndex":45,"recipe":["Despair","Fear","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Overwhelm","group":720,"isNotable":true,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"skill":25513},"4313":{"orbit":7,"orbitIndex":6,"connections":[{"orbit":0,"id":28992}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","options":{"Huntress":{"stats":["8% increased Attack Damage"],"id":55896,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Attack Damage"}},"group":882,"isSwitchable":true,"stats":["8% increased Projectile Damage"],"skill":4313},"57373":{"orbit":0,"orbitIndex":0,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":4,"id":44733}],"group":556,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":57373},"23993":{"orbit":2,"orbitIndex":12,"stats":["12% increased Physical Damage"],"connections":[{"orbit":0,"id":42981},{"orbit":0,"id":52684}],"group":640,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":23993},"56844":{"orbit":7,"orbitIndex":0,"stats":["15% increased Archon Buff duration"],"connections":[{"orbit":-2,"id":40929}],"group":1051,"name":"Archon Duration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":56844},"32186":{"orbit":4,"orbitIndex":43,"stats":["10% increased Accuracy Rating while Shapeshifted"],"connections":[],"group":201,"name":"Shapeshifted Accuracy Rating","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":32186},"4346":{"orbit":0,"orbitIndex":0,"stats":["20% increased Damage if you've dealt a Critical Hit Recently"],"connections":[{"orbit":0,"id":4519},{"orbit":0,"id":20677}],"group":1079,"name":"Damage on Critical","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":4346},"22616":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":0,"id":51052},{"orbit":0,"id":17468},{"orbit":0,"id":48631},{"orbit":0,"id":19122}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":455,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":22616},"38876":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":61490},{"orbit":0,"id":31903}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":435,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38876},"63451":{"orbit":6,"orbitIndex":6,"recipe":["Greed","Paranoia","Disgust"],"connections":[{"orbit":0,"id":44406},{"orbit":0,"id":64312}],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Cranial Impact","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":395,"isNotable":true,"stats":["30% increased Stun Buildup","Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy"],"skill":63451},"57513":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds","name":"Eldritch Battery","group":993,"isKeystone":true,"stats":["Converts all Energy Shield to Mana","Doubles Mana Costs"],"skill":57513},"50635":{"orbit":3,"orbitIndex":13,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":25971},{"orbit":5,"id":42750},{"orbit":-5,"id":9050}],"group":1158,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":50635},"31129":{"orbit":1,"orbitIndex":1,"recipe":["Despair","Despair","Ire"],"connections":[{"orbit":0,"id":24889}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Lifelong Friend","group":1280,"isNotable":true,"stats":["Minions Revive 35% faster if all your Minions are Companions"],"skill":31129},"8693":{"orbit":7,"orbitIndex":7,"connections":[{"orbit":0,"id":35393}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":399,"connectionArt":"CharacterPlanned","stats":["30% increased Armour while Bleeding"],"skill":8693},"24786":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":24287},{"orbit":0,"id":30657},{"orbit":0,"id":4378},{"orbit":0,"id":21225},{"orbit":0,"id":58848}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1283,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":24786},"52361":{"orbit":2,"orbitIndex":9,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":7,"id":26107}],"group":1267,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":52361},"8631":{"orbit":3,"orbitIndex":2,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":32660},{"orbit":0,"id":59256},{"orbit":0,"id":30979}],"group":545,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":8631},"44430":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage with Crossbows"],"connections":[{"orbit":0,"id":7062}],"group":877,"name":"Crossbow Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":44430},"51690":{"orbit":6,"orbitIndex":43,"connections":[{"orbit":-5,"id":12000}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Life Regeneration","ascendancyName":"Titan","group":77,"stats":["Regenerate 0.5% of maximum Life per second"],"skill":51690},"59759":{"orbit":8,"orbitIndex":4,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds","name":"Chayula's Gift","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["+10% to Maximum Chaos Resistance","Chaos Resistance is doubled"],"skill":59759},"8600":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":27439},{"orbit":8,"id":40596},{"orbit":4,"id":44406},{"orbit":0,"id":43778},{"orbit":0,"id":31650}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":352,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":8600},"7488":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","name":"Leech Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","group":550,"connections":[],"stats":[],"skill":7488},"6596":{"orbit":4,"orbitIndex":30,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"connections":[{"orbit":0,"id":41171}],"group":936,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":6596},"53804":{"orbit":4,"orbitIndex":48,"stats":["10% increased Fire Damage"],"connections":[{"orbit":7,"id":56112}],"group":222,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","skill":53804},"17726":{"orbit":7,"orbitIndex":5,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":7,"id":33053}],"group":883,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":17726},"1286":{"orbit":7,"orbitIndex":12,"stats":["16% increased Thorns damage"],"connections":[{"orbit":-7,"id":17903}],"group":259,"name":"Thorns","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":1286},"63979":{"orbit":7,"orbitIndex":8,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[{"orbit":0,"id":9750}],"group":292,"name":"Warcry Cooldown","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":63979},"12526":{"orbit":3,"orbitIndex":18,"stats":["15% increased Elemental Ailment Threshold"],"connections":[{"orbit":-9,"id":54818}],"group":729,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":12526},"36100":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Greed","Paranoia"],"connections":[{"orbit":0,"id":34782}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","name":"Molten Claw","group":156,"isNotable":true,"stats":["Gain 8% of Damage as Extra Fire Damage while Shapeshifted"],"skill":36100},"45751":{"orbit":2,"orbitIndex":0,"recipe":["Disgust","Disgust","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Frightening Shield","group":245,"isNotable":true,"stats":["Apply Debilitate to Enemies 3 Metres in front of you while your Shield is raised"],"skill":45751},"13387":{"orbit":5,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":635,"connections":[],"stats":[],"skill":13387},"21748":{"orbit":7,"orbitIndex":6,"recipe":["Envy","Isolation","Ire"],"connections":[{"orbit":0,"id":54725},{"orbit":0,"id":6570}],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Impending Doom","group":1186,"isNotable":true,"stats":["40% faster Curse Activation","Your Curses have 20% increased Magnitudes if 50% of Curse Duration expired"],"skill":21748},"3131":{"orbit":2,"orbitIndex":9,"stats":["3% increased Attack Speed while Dual Wielding"],"connections":[{"orbit":0,"id":2394}],"group":795,"name":"Dual Wielding Speed","icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":3131},"41126":{"orbit":3,"orbitIndex":4,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":0,"id":1170},{"orbit":0,"id":9918}],"group":285,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":41126},"37946":{"orbit":0,"orbitIndex":0,"stats":["20% increased Projectile Stun Buildup"],"connections":[],"group":1114,"name":"Projectile Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":37946},"10873":{"orbit":3,"orbitIndex":12,"recipe":["Ire","Disgust","Fear"],"connections":[{"orbit":0,"id":32777}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Bestial Rage","group":313,"isNotable":true,"stats":["Gain 1 Rage on Melee Hit","Every 10 Rage also grants 12% increased Physical Damage"],"skill":10873},"39280":{"orbit":3,"orbitIndex":1,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":0,"id":44669}],"group":1020,"name":"Increased Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":39280},"60551":{"orbit":2,"orbitIndex":14,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":21861}],"group":304,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":60551},"13356":{"orbit":2,"orbitIndex":0,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":7,"id":6229}],"group":483,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":13356},"65176":{"orbit":6,"orbitIndex":48,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":14045},{"orbit":0,"id":42250}],"group":1046,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":65176},"52746":{"orbit":2,"orbitIndex":12,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":9796},{"orbit":3,"id":64471}],"group":542,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":52746},"36364":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocution","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1339,"isNotable":true,"stats":["Enemies you Electrocute have 20% increased Damage taken"],"skill":36364},"36891":{"orbit":6,"orbitIndex":28,"connections":[{"orbit":9,"id":56783}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds","name":"Baryanic Leylines","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Non-Unique Time-Lost Jewels have 40% increased radius"],"skill":36891},"57776":{"orbit":3,"orbitIndex":5,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":33914}],"group":350,"name":"Energy Shield and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":57776},"8957":{"orbit":4,"orbitIndex":44,"recipe":["Envy","Isolation","Suffering"],"connections":[{"orbit":0,"id":14505}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Right Hand of Darkness","group":460,"isNotable":true,"stats":["Minions have 20% increased Area of Effect","Minions have 10% chance to inflict Withered on Hit","Spells Gain 5% of Damage as extra Chaos Damage"],"skill":8957},"51303":{"orbit":1,"orbitIndex":11,"stats":["10% increased Elemental Infusion duration"],"connections":[{"orbit":0,"id":38965}],"group":427,"name":"Infusion Duration","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":51303},"1447":{"orbit":3,"orbitIndex":14,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":22393}],"group":461,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":1447},"336":{"orbit":3,"orbitIndex":15,"recipe":["Envy","Suffering","Suffering"],"connections":[{"orbit":-3,"id":4806}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Storm Swell","group":1245,"isNotable":true,"stats":["Damage Penetrates 15% Cold Resistance","Damage Penetrates 8% Lightning Resistance"],"skill":336},"2200":{"orbit":7,"orbitIndex":20,"stats":["10% increased Damage"],"connections":[{"orbit":7,"id":35689}],"group":1121,"name":"Damage","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","skill":2200},"41654":{"orbit":2,"orbitIndex":5,"stats":["Offerings have 15% increased Maximum Life"],"connections":[{"orbit":2147483647,"id":41033}],"group":1044,"name":"Offering Life","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":41654},"38474":{"orbit":7,"orbitIndex":13,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","name":"Bleed Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":515,"connectionArt":"CharacterPlanned","stats":[],"skill":38474},"11672":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":47177},{"orbit":0,"id":48030}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":845,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":11672},"12821":{"orbit":2,"orbitIndex":2,"stats":["20% increased Glory generation for Banner Skills"],"connections":[],"group":491,"name":"Banner Glory Gained","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":12821},"40196":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1098,"connections":[],"stats":[],"skill":40196},"58149":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":8,"id":62804}],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Life Recovery Rate","ascendancyName":"Ritualist","group":1492,"stats":["10% increased Life Recovery rate"],"skill":58149},"4891":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameLargeCanAllocate","alloc":"RitualistFrameLargeAllocated","unalloc":"RitualistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds","name":"Intricate Sigils","ascendancyName":"Ritualist","group":1491,"isNotable":true,"stats":["+1 Charm Slot","20% more Charm Charges gained"],"skill":4891},"28229":{"orbit":2,"orbitIndex":0,"stats":["10% increased Area of Effect of Curses"],"connections":[{"orbit":0,"id":50485}],"group":916,"name":"Curse Area","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":28229},"36365":{"orbit":6,"orbitIndex":27,"connections":[{"orbit":9,"id":60859},{"orbit":9,"id":58149},{"orbit":9,"id":22661},{"orbit":-9,"id":17058},{"orbit":0,"id":42017},{"orbit":9,"id":58574},{"orbit":8,"id":11776}],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Ritualist","ascendancyName":"Ritualist","isAscendancyStart":true,"group":1490,"stats":[],"skill":36365},"58574":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Mana","ascendancyName":"Ritualist","group":1488,"stats":["30% reduced maximum Mana"],"skill":58574},"33463":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":41877},{"orbit":0,"id":31286},{"orbit":0,"id":45304},{"orbit":0,"id":28859}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1271,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":33463},"34785":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-9,"id":58574},{"orbit":0,"id":42017},{"orbit":9,"id":17058}],"nodeOverlay":{"path":"RitualistFrameLargeCanAllocate","alloc":"RitualistFrameLargeAllocated","unalloc":"RitualistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds","name":"Unfurled Finger","ascendancyName":"Ritualist","group":1483,"isNotable":true,"stats":["+1 Ring Slot"],"skill":34785},"5563":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-7,"id":47312}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Flask Recovery","ascendancyName":"Amazon","group":1482,"stats":["15% increased Life and Mana Recovery from Flasks"],"skill":5563},"30996":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":53762},{"orbit":0,"id":18146}],"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds","name":"Gem Studded","ascendancyName":"Gemling Legionnaire","group":498,"isNotable":true,"stats":["For each colour of Socketed Support Gem that is most numerous, gain:","Red: Hits against you have no Critical Damage Bonus","Blue: Skills have 30% less cost","Green: 40% less Movement Speed Penalty from using Skills while Moving"],"skill":30996},"3223":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-5,"id":7068},{"orbit":9,"id":34785}],"nodeOverlay":{"path":"RitualistFrameSmallCanAllocate","alloc":"RitualistFrameSmallAllocated","unalloc":"RitualistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Attributes","ascendancyName":"Ritualist","group":1481,"stats":["3% increased Attributes"],"skill":3223},"46931":{"orbit":3,"orbitIndex":11,"stats":["25% increased Attack Damage while Surrounded"],"connections":[{"orbit":0,"id":23036},{"orbit":5,"id":28175}],"group":439,"name":"Attack Damage while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":46931},"56842":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-5,"id":59540}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Stun Buildup","ascendancyName":"Titan","group":80,"stats":["18% increased Stun Buildup"],"skill":56842},"2999":{"orbit":6,"orbitIndex":22,"recipe":["Isolation","Despair","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Final Barrage","group":266,"isNotable":true,"stats":["20% increased Cast Speed when on Low Life","10% reduced Cast Speed when on Full Life"],"skill":2999},"61441":{"orbit":6,"orbitIndex":7,"stats":["3% increased Attack Speed with Swords"],"connections":[{"orbit":0,"id":54138}],"group":546,"name":"Sword Speed","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":61441},"9089":{"orbit":1,"orbitIndex":1,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":41020}],"group":1302,"name":"Evasion Rating","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":9089},"53150":{"orbit":3,"orbitIndex":18,"recipe":["Guilt","Disgust","Ire"],"connections":[{"orbit":0,"id":15270},{"orbit":0,"id":17589}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Sharp Sight","group":1337,"isNotable":true,"stats":["5% increased Attack Speed","30% increased Accuracy Rating against Rare or Unique Enemies"],"skill":53150},"38614":{"orbit":3,"orbitIndex":20,"recipe":["Paranoia","Disgust","Isolation"],"connections":[{"orbit":0,"id":27662},{"orbit":0,"id":44201}],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Psychic Fragmentation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":962,"isNotable":true,"stats":["12% chance for Spell Skills to fire 2 additional Projectiles"],"skill":38614},"20895":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":47184}],"nodeOverlay":{"path":"Smith of KitavaFrameSmallCanAllocate","alloc":"Smith of KitavaFrameSmallAllocated","unalloc":"Smith of KitavaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Strength","ascendancyName":"Smith of Kitava","group":18,"stats":["5% increased Strength"],"skill":20895},"6109":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":63254}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Evasion","ascendancyName":"Amazon","group":1479,"stats":["20% increased Evasion Rating"],"skill":6109},"63254":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds","name":"Stalking Panther","ascendancyName":"Amazon","group":1478,"isNotable":true,"stats":["Evasion Rating from Equipped Helmet, Gloves and Boots is doubled","Evasion Rating from Equipped Body Armour is halved"],"skill":63254},"4577":{"orbit":7,"orbitIndex":8,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":4,"id":3999}],"group":655,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":4577},"7302":{"orbit":7,"orbitIndex":0,"recipe":["Fear","Envy","Ire"],"connections":[{"orbit":0,"id":52615},{"orbit":0,"id":30077}],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Echoing Pulse","group":1300,"isNotable":true,"stats":["Final Repeat of Spells has 30% increased Area of Effect"],"skill":7302},"40336":{"orbit":0,"orbitIndex":0,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":6655}],"group":671,"name":"Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":40336},"24060":{"orbit":2,"orbitIndex":4,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"],"connections":[{"orbit":0,"id":3091}],"group":706,"name":"Infusion Consumption Chance","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":24060},"58379":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57141}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds","name":"Acidic Concoction","ascendancyName":"Pathfinder","group":1446,"isMultipleChoiceOption":true,"stats":["Grants Skill: Acidic Concoction"],"skill":58379},"13157":{"orbit":3,"orbitIndex":1,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":3,"id":30392}],"group":1095,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":13157},"60662":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":7979}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Elemental Damage","ascendancyName":"Amazon","group":1473,"stats":["12% increased Elemental Damage"],"skill":60662},"13845":{"orbit":0,"orbitIndex":0,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":-7,"id":28408}],"group":176,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":13845},"33369":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/vaalpact.dds","name":"Vaal Pact","group":652,"isKeystone":true,"stats":["Life Leech is Instant","Cannot use Life Flasks"],"skill":33369},"35977":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":333,"connections":[],"stats":[],"skill":35977},"25520":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds","name":"Resonance","group":1162,"isKeystone":true,"stats":["Gain Power Charges instead of Frenzy Charges","Gain Frenzy Charges instead of Endurance Charges","Gain Endurance Charges instead of Power Charges"],"skill":25520},"4709":{"orbit":2,"orbitIndex":19,"recipe":["Ire","Envy","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Near Sighted","group":1249,"isNotable":true,"stats":["30% increased Critical Hit Chance for Attacks","30% increased penalty to Accuracy Rating at range"],"skill":4709},"55796":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":43095}],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds","name":"Predatory Instinct","ascendancyName":"Amazon","group":1468,"isNotable":true,"stats":["Reveal Weaknesses against Rare and Unique enemies","50% more damage against enemies with an Open Weakness"],"skill":55796},"56334":{"orbit":7,"orbitIndex":7,"stats":["Meta Skills gain 4% increased Energy","5% increased Critical Hit Chance"],"connections":[{"orbit":7,"id":46171},{"orbit":0,"id":41753}],"group":1366,"name":"Energy and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":56334},"41129":{"orbit":4,"orbitIndex":70,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"connections":[{"orbit":0,"id":24338}],"group":635,"name":"Damage against Ailments","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":41129},"528":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":41008}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Accuracy","ascendancyName":"Amazon","group":1465,"stats":["12% increased Accuracy Rating"],"skill":528},"56331":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds","name":"Choice of Life","ascendancyName":"Acolyte of Chayula","group":1464,"isMultipleChoiceOption":true,"stats":["Remnants have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Red"],"skill":56331},"43095":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35187}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Skill Speed","ascendancyName":"Amazon","group":1463,"stats":["4% increased Skill Speed"],"skill":43095},"57775":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","name":"Aura Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":414,"connections":[],"stats":[],"skill":57775},"39448":{"orbit":3,"orbitIndex":21,"stats":["3% increased Attack Speed with Axes"],"connections":[{"orbit":0,"id":11178}],"group":172,"name":"Axe Attack Speed","icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":39448},"27626":{"orbit":5,"orbitIndex":54,"recipe":["Despair","Isolation","Suffering"],"connections":[{"orbit":0,"id":15628}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Touch the Arcane","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":419,"isNotable":true,"stats":["40% increased effect of Arcane Surge on you"],"skill":27626},"32771":{"orbit":9,"orbitIndex":55,"connections":[{"orbit":0,"id":34817}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Darkness","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["10% increased maximum Darkness"],"skill":32771},"11771":{"orbit":5,"orbitIndex":22,"connections":[{"orbit":0,"id":52395}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Skill Speed","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["4% increased Skill Speed"],"skill":11771},"1347":{"orbit":6,"orbitIndex":12,"connections":[{"orbit":7,"id":50098}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Skill Speed","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["4% increased Skill Speed"],"skill":1347},"46402":{"orbit":7,"orbitIndex":13,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":18923},{"orbit":0,"id":37220},{"orbit":0,"id":50342}],"group":1043,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":46402},"24475":{"orbit":8,"orbitIndex":8,"connections":[{"orbit":-9,"id":59759}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameSmallCanAllocate","alloc":"Acolyte of ChayulaFrameSmallAllocated","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Resistance","ascendancyName":"Acolyte of Chayula","group":1458,"stats":["+7% to Chaos Resistance"],"skill":24475},"31116":{"orbit":8,"orbitIndex":24,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds","name":"Grasp of the Void","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["Grants Skill: Void Illusion"],"skill":31116},"41076":{"orbit":9,"orbitIndex":45,"connections":[{"orbit":0,"id":32771}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds","name":"Embrace the Darkness","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["You have no Spirit","Base Maximum Darkness is 100","Damage taken is Reserved from Darkness before being taken from Life or Energy Shield","Darkness Reservation lasts for 5 seconds","+10 to Maximum Darkness per Level"],"skill":41076},"42710":{"orbit":2,"orbitIndex":20,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":0,"id":41186}],"group":147,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":42710},"22152":{"orbit":2,"orbitIndex":10,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":10382},{"orbit":0,"id":15304}],"group":1098,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":22152},"50098":{"orbit":5,"orbitIndex":16,"connections":[{"orbit":0,"id":11771}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds","name":"Waking Dream","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["Grants Skill: Into the Breach"],"skill":50098},"65439":{"orbit":1,"orbitIndex":4,"stats":["Banner Skills have 12% increased Aura Magnitudes"],"connections":[{"orbit":0,"id":12821}],"group":491,"name":"Banner Aura Effect","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":65439},"5407":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":728,"connections":[{"orbit":0,"id":56910}],"stats":[],"skill":5407},"13783":{"orbit":7,"orbitIndex":19,"connections":[{"orbit":0,"id":28992}],"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","name":"Ailment Chance","options":{"Huntress":{"stats":["8% increased Accuracy Rating"],"id":53191,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy"}},"group":966,"isSwitchable":true,"stats":["10% increased chance to inflict Ailments"],"skill":13783},"25781":{"orbit":5,"orbitIndex":2,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds","name":"Sap of Nightmares","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["Leech recovers based on Chaos Damage as well as Physical Damage"],"skill":25781},"60013":{"orbit":3,"orbitIndex":8,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":57776}],"group":350,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":60013},"3781":{"orbit":9,"orbitIndex":136,"connections":[],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds","name":"Unravelling","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["Grants Unravelling"],"skill":3781},"1352":{"orbit":7,"orbitIndex":10,"recipe":["Fear","Despair","Paranoia"],"connections":[{"orbit":0,"id":53216}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Unbending","group":253,"isNotable":true,"stats":["3% increased maximum Life","10% increased Stun Threshold for each time you've been Hit by an Enemy Recently, up to 100%"],"skill":1352},"36629":{"orbit":5,"orbitIndex":45,"connections":[{"orbit":0,"id":44659}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":567,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":36629},"60692":{"orbit":7,"orbitIndex":12,"recipe":["Guilt","Suffering","Disgust"],"connections":[{"orbit":2,"id":16367}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Echoing Flames","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":1022,"isNotable":true,"stats":["30% increased Elemental Damage if you've Ignited an Enemy Recently"],"skill":60692},"36676":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":46454}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Passive Points","ascendancyName":"Pathfinder","group":1453,"stats":["Grants 1 Passive Skill Point"],"skill":36676},"46454":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds","name":"Traveller's Wisdom","ascendancyName":"Pathfinder","group":1452,"isNotable":true,"stats":["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"],"skill":46454},"41657":{"orbit":3,"orbitIndex":10,"stats":["15% increased Armour"],"connections":[],"group":453,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":41657},"16433":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":12795},{"orbit":0,"id":57253},{"orbit":0,"id":36676}],"isMultipleChoice":true,"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds","name":"Path Seeker","ascendancyName":"Pathfinder","group":1450,"isNotable":true,"stats":[],"skill":16433},"19573":{"orbit":7,"orbitIndex":11,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"connections":[{"orbit":-5,"id":38479},{"orbit":-3,"id":19342}],"group":875,"name":"Projectile Pierce","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":19573},"42045":{"orbit":3,"orbitIndex":3,"recipe":["Isolation","Fear","Ire"],"connections":[{"orbit":7,"id":50535},{"orbit":0,"id":52003}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Archon of the Blizzard","group":700,"isNotable":true,"stats":["Gain Elemental Archon when your Energy Shield Recharge begins"],"skill":42045},"41619":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds","name":"Enduring Elixirs","ascendancyName":"Pathfinder","group":1448,"isNotable":true,"stats":["Life Flask Effects are not removed when Unreserved Life is Filled","Life Flask Effects do not Queue"],"skill":41619},"3065":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds","name":"Mystic Harvest","ascendancyName":"Amazon","group":1477,"isNotable":true,"stats":["Life Leech recovers based on your Elemental damage as well as Physical damage"],"skill":3065},"49503":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57141}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Mana Flask Charges","ascendancyName":"Pathfinder","group":1444,"stats":["20% increased Mana Flask Charges gained"],"skill":49503},"48264":{"orbit":2,"orbitIndex":3,"stats":["Aura Skills have 5% increased Magnitudes"],"connections":[{"orbit":0,"id":12964}],"group":264,"name":"Aura Effect","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":48264},"9710":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57141}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds","name":"Bleeding Concoction","ascendancyName":"Pathfinder","group":1441,"isMultipleChoiceOption":true,"stats":["Grants Skill: Bleeding Concoction"],"skill":9710},"7054":{"orbit":7,"orbitIndex":8,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":21142},{"orbit":0,"id":47009},{"orbit":0,"id":17088}],"group":1092,"name":"Attack Area Damage and Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":7054},"37336":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35801}],"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds","name":"Avidity","ascendancyName":"Deadeye","group":1439,"isNotable":true,"stats":["50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge"],"skill":37336},"1583":{"orbit":9,"orbitIndex":48,"connections":[{"orbit":5,"id":14508},{"orbit":0,"id":9798},{"orbit":-5,"id":49503},{"orbit":5,"id":39292},{"orbit":0,"id":12183},{"orbit":-5,"id":16}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Pathfinder","ascendancyName":"Pathfinder","isAscendancyStart":true,"group":1438,"stats":[],"skill":1583},"40073":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Suffering","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Drenched","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":906,"isNotable":true,"stats":["40% increased chance to Shock","Gain 5% of Lightning Damage as Extra Cold Damage"],"skill":40073},"33736":{"orbit":9,"orbitIndex":86,"connections":[{"orbit":0,"id":61991}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Skill Speed","ascendancyName":"Pathfinder","group":1438,"stats":["4% increased Skill Speed"],"skill":33736},"4197":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds","name":"Converging Paths","ascendancyName":"Oracle","group":36,"isNotable":true,"stats":["Grants Skill: Moment of Vulnerability"],"skill":4197},"14712":{"orbit":3,"orbitIndex":2,"stats":["Minions have 12% increased maximum Life"],"connections":[{"orbit":0,"id":3866}],"group":460,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":14712},"23996":{"orbit":0,"orbitIndex":0,"stats":["15% increased Ballista damage"],"connections":[{"orbit":0,"id":63828},{"orbit":0,"id":57785}],"group":886,"name":"Ballista Damage","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":23996},"14432":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","name":"Lunar Boon","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":113,"connectionArt":"CharacterPlanned","stats":["40% increased Mana Regeneration Rate while Shapeshifted"],"skill":14432},"10245":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":444,"connections":[],"stats":[],"skill":10245},"35801":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":23508}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Frenzy Charge Duration","ascendancyName":"Deadeye","group":1437,"stats":["25% increased Frenzy Charge Duration"],"skill":35801},"12992":{"orbit":2,"orbitIndex":22,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":-2,"id":16485}],"group":255,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":12992},"41875":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":42416}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds","name":"Point Blank","ascendancyName":"Deadeye","group":1434,"isMultipleChoiceOption":true,"stats":["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"],"skill":41875},"9994":{"orbit":9,"orbitIndex":24,"connections":[{"orbit":0,"id":23415},{"orbit":0,"id":44357},{"orbit":0,"id":13065},{"orbit":0,"id":27686},{"orbit":2147483647,"id":25434},{"orbit":0,"id":17268}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Master of the Elements","ascendancyName":"Invoker","isAscendancyStart":true,"group":1430,"stats":[],"skill":9994},"27686":{"orbit":8,"orbitIndex":10,"connections":[{"orbit":0,"id":12876}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Energy Shield Recharge Rate","ascendancyName":"Invoker","group":1430,"stats":["20% increased Energy Shield Recharge Rate"],"skill":27686},"62523":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":26063}],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds","name":"Turning of the Seasons","ascendancyName":"Shaman","group":74,"isNotable":true,"stats":["Enemies in your Presence have Exposure","Gain 10% of Damage as Extra Damage of a random Element"],"skill":62523},"29133":{"orbit":4,"orbitIndex":9,"connections":[{"orbit":2,"id":64031}],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Elemental Damage","ascendancyName":"Invoker","group":1430,"stats":["12% increased Elemental Damage"],"skill":29133},"25434":{"orbit":6,"orbitIndex":11,"connections":[],"nodeOverlay":{"path":"InvokerFrameSmallCanAllocate","alloc":"InvokerFrameSmallAllocated","unalloc":"InvokerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Chill Effect","ascendancyName":"Invoker","group":1430,"stats":["15% increased Magnitude of Chill you inflict"],"skill":25434},"45215":{"orbit":2,"orbitIndex":2,"stats":["Allies in your Presence deal 8% increased Damage","8% increased Attack Damage while you have an Ally in your Presence"],"connections":[{"orbit":0,"id":53187}],"group":413,"name":"Attack Damage with Ally","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":45215},"11248":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35831},{"orbit":0,"id":21568},{"orbit":0,"id":46380},{"orbit":0,"id":48387},{"orbit":0,"id":22270}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":299,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":11248},"65173":{"orbit":9,"orbitIndex":139,"connections":[],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds","name":"...and Protect me from Harm","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating","35% less Evasion Rating"],"skill":65173},"44419":{"orbit":7,"orbitIndex":10,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":7,"id":7251},{"orbit":-7,"id":29788}],"group":550,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":44419},"51820":{"orbit":6,"orbitIndex":30,"recipe":["Despair","Suffering","Suffering"],"connections":[{"orbit":0,"id":21127}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Ancestral Conduits","group":287,"isNotable":true,"stats":["12% increased Attack and Cast Speed if you've summoned a Totem Recently"],"skill":51820},"30":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds","name":"Gathering Winds","ascendancyName":"Deadeye","group":1428,"isNotable":true,"stats":["Gain Tailwind on Skill use","Lose all Tailwind when Hit"],"skill":30},"39723":{"orbit":6,"orbitIndex":21,"connections":[{"orbit":0,"id":5817}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Damage","ascendancyName":"Deadeye","group":1427,"stats":["12% increased Projectile Damage"],"skill":39723},"49165":{"orbit":8,"orbitIndex":27,"connections":[{"orbit":0,"id":59913}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Mark Effect","ascendancyName":"Deadeye","group":1427,"stats":["12% increased Effect of your Mark Skills"],"skill":49165},"3987":{"orbit":6,"orbitIndex":27,"connections":[{"orbit":0,"id":30}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Skill Speed","ascendancyName":"Deadeye","group":1427,"stats":["4% increased Skill Speed"],"skill":3987},"61461":{"orbit":6,"orbitIndex":24,"connections":[{"orbit":2147483647,"id":42416}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Speed","ascendancyName":"Deadeye","group":1427,"stats":["10% increased Projectile Speed"],"skill":61461},"42416":{"orbit":5,"orbitIndex":24,"connections":[],"isMultipleChoice":true,"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds","name":"Projectile Proximity Specialisation","ascendancyName":"Deadeye","group":1427,"isNotable":true,"stats":[],"skill":42416},"57774":{"orbit":3,"orbitIndex":21,"stats":["3% increased Attack Speed while Dual Wielding"],"connections":[{"orbit":0,"id":49657}],"group":795,"name":"Dual Wielding Speed","icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":57774},"24226":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"DeadeyeFrameLargeCanAllocate","alloc":"DeadeyeFrameLargeAllocated","unalloc":"DeadeyeFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds","name":"Bullseye","ascendancyName":"Deadeye","group":1426,"isNotable":true,"stats":["Apply 10 Critical Weakness to Enemies when Consuming a Mark on them"],"skill":24226},"28101":{"orbit":2,"orbitIndex":12,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":0,"id":57571},{"orbit":-7,"id":43867}],"group":1364,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":28101},"52300":{"orbit":3,"orbitIndex":9,"stats":["Gain 1 Rage on Melee Axe Hit"],"connections":[{"orbit":0,"id":53440}],"group":172,"name":"Axe Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":52300},"33542":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Suffering","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Quick Fingers","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":1417,"isNotable":true,"stats":["+24% Surpassing chance to fire an additional Arrow"],"skill":33542},"9485":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":60685}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":801,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":9485},"44683":{"orbit":0,"orbitIndex":0,"classesStart":["Shadow","Monk"],"connections":[{"orbit":0,"id":5162},{"orbit":0,"id":45406},{"orbit":0,"id":50198},{"orbit":0,"id":11495},{"orbit":0,"id":9994},{"orbit":0,"id":74},{"orbit":0,"id":52980}],"icon":"Art/2DArt/SkillIcons/passives/tempint.dds","name":"SIX","group":828,"stats":[],"skill":44683},"62194":{"orbit":3,"orbitIndex":0,"stats":["15% increased Pin Buildup"],"connections":[{"orbit":2147483647,"id":19129}],"group":716,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":62194},"43238":{"orbit":7,"orbitIndex":12,"stats":["Hazards have 5% chance to rearm after they are triggered"],"connections":[{"orbit":-7,"id":14211}],"group":1105,"name":"Hazard Rearm Chance","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":43238},"46017":{"orbit":7,"orbitIndex":0,"stats":["15% increased Life Regeneration Rate while stationary"],"connections":[{"orbit":0,"id":54962}],"group":242,"name":"Life Regeneration while Stationary","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":46017},"32655":{"orbit":7,"orbitIndex":18,"recipe":["Guilt","Envy","Ire"],"connections":[{"orbit":0,"id":33514}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Hunting Companion","group":1230,"isNotable":true,"stats":["20% increased Culling Strike Threshold","Culling Strike against Beasts while your Companion is in your Presence"],"skill":32655},"28823":{"orbit":7,"orbitIndex":23,"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"connections":[{"orbit":4,"id":21111},{"orbit":5,"id":59303}],"group":1219,"name":"Charm Activation Chance","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":28823},"57615":{"orbit":4,"orbitIndex":54,"stats":["+8% Surpassing chance to fire an additional Arrow"],"connections":[{"orbit":0,"id":32319},{"orbit":0,"id":48836}],"group":1417,"name":"Surpassing Arrow Chance","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":57615},"27439":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":21982}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":319,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":27439},"8045":{"orbit":3,"orbitIndex":7,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":-6,"id":64927},{"orbit":5,"id":52464}],"group":1218,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":8045},"56320":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","name":"Armour Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":399,"connectionArt":"CharacterPlanned","stats":[],"skill":56320},"54983":{"orbit":7,"orbitIndex":2,"stats":["10% increased Critical Hit Chance for Attacks"],"connections":[{"orbit":3,"id":39369}],"group":1410,"name":"Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":54983},"18972":{"orbit":2,"orbitIndex":0,"connections":[{"orbit":0,"id":34782}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","name":"Echoes of Ferocity","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":154,"connectionArt":"CharacterPlanned","stats":["15% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"],"skill":18972},"13407":{"orbit":2,"orbitIndex":9,"recipe":["Isolation","Paranoia","Fear"],"connections":[{"orbit":-3,"id":23040},{"orbit":0,"id":51583}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Heartbreaking","group":1410,"isNotable":true,"stats":["25% increased Critical Damage Bonus","+10 to Strength"],"skill":13407},"1723":{"orbit":3,"orbitIndex":22,"stats":["10% increased Poison Duration"],"connections":[{"orbit":0,"id":53595},{"orbit":0,"id":2134}],"group":1409,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":1723},"53595":{"orbit":3,"orbitIndex":19,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":7,"id":29458},{"orbit":0,"id":38628}],"group":1409,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":53595},"2134":{"orbit":3,"orbitIndex":0,"recipe":["Suffering","Fear","Isolation"],"connections":[{"orbit":0,"id":9703}],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Toxic Tolerance","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1409,"isNotable":true,"stats":["Immune to Poison"],"skill":2134},"5766":{"orbit":6,"orbitIndex":60,"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"connections":[{"orbit":-4,"id":51416},{"orbit":4,"id":16705}],"group":1172,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":5766},"15986":{"orbit":2,"orbitIndex":5,"recipe":["Greed","Isolation","Isolation"],"connections":[{"orbit":0,"id":6030}],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Building Toxins","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1409,"isNotable":true,"stats":["25% reduced Poison Duration","Targets can be affected by +1 of your Poisons at the same time"],"skill":15986},"36630":{"orbit":2,"orbitIndex":4,"recipe":["Greed","Greed","Greed"],"connections":[{"orbit":0,"id":49473}],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":991,"isNotable":true,"stats":["50% increased effect of Incision"],"skill":36630},"10315":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Isolation"],"connections":[{"orbit":0,"id":44699},{"orbit":0,"id":47443},{"orbit":0,"id":37971}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Easy Going","group":1422,"isNotable":true,"stats":["25% increased Reservation Efficiency of Companion Skills"],"skill":10315},"61333":{"orbit":2,"orbitIndex":11,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":46197}],"group":1250,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":61333},"328":{"orbit":0,"orbitIndex":0,"stats":["10% increased Accuracy Rating with Bows"],"connections":[{"orbit":0,"id":25992},{"orbit":0,"id":60764},{"orbit":0,"id":21112}],"group":1405,"name":"Bow Accuracy Rating","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":328},"52618":{"orbit":3,"orbitIndex":18,"recipe":["Fear","Suffering","Paranoia"],"connections":[{"orbit":0,"id":32777}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Boon of the Beast","group":313,"isNotable":true,"stats":["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"],"skill":52618},"33830":{"orbit":2,"orbitIndex":5,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":-2,"id":35031}],"group":1404,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","skill":33830},"45612":{"orbit":2,"orbitIndex":12,"recipe":["Greed","Ire","Ire"],"connections":[{"orbit":0,"id":53901}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Defensive Reflexes","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","group":446,"isNotable":true,"stats":["12% increased Block chance","5 Mana gained when you Block"],"skill":45612},"38212":{"orbit":2,"orbitIndex":16,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":57683}],"group":1404,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","skill":38212},"39495":{"orbit":0,"orbitIndex":0,"stats":["Companions deal 12% increased Damage"],"connections":[{"orbit":2147483647,"id":46386},{"orbit":9,"id":27048}],"group":1403,"name":"Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":39495},"62001":{"orbit":2,"orbitIndex":1,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Backstabbing","group":1402,"isNotable":true,"stats":["25% increased Critical Damage Bonus with Daggers"],"skill":62001},"31928":{"orbit":2,"orbitIndex":12,"stats":["6% of Physical Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":50574},{"orbit":0,"id":15443}],"group":1001,"name":"Physical Life Recoup","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":31928},"4423":{"orbit":2,"orbitIndex":7,"connections":[{"orbit":0,"id":54058}],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Coated Knife","group":1402,"isNotable":true,"stats":["Critical Hits with Daggers have a 25% chance to Poison the Enemy"],"skill":4423},"35755":{"orbit":2,"orbitIndex":16,"stats":["10% increased Critical Damage Bonus with Daggers"],"connections":[{"orbit":0,"id":54058}],"group":1402,"name":"Dagger Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":35755},"54058":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Damage Bonus with Daggers"],"connections":[{"orbit":0,"id":62001}],"group":1402,"name":"Dagger Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":54058},"56366":{"orbit":3,"orbitIndex":16,"connections":[{"orbit":0,"id":35755}],"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Silent Shiv","group":1402,"isNotable":true,"stats":["5% increased Attack Speed with Daggers","15% increased Critical Hit Chance with Daggers"],"skill":56366},"47709":{"orbit":0,"orbitIndex":0,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":63814},{"orbit":0,"id":40336}],"group":682,"name":"Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":47709},"8531":{"orbit":3,"orbitIndex":11,"recipe":["Despair","Guilt","Guilt"],"connections":[{"orbit":0,"id":51534},{"orbit":0,"id":62661}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Leaping Ambush","group":545,"isNotable":true,"stats":["50% increased Critical Hit Chance against Enemies that are on Full Life"],"skill":8531},"4031":{"orbit":3,"orbitIndex":15,"recipe":["Ire","Paranoia","Fear"],"connections":[{"orbit":0,"id":50403}],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Icebreaker","group":1311,"isNotable":true,"stats":["Gain 50% of maximum Energy Shield as additional Freeze Threshold"],"skill":4031},"5704":{"orbit":2,"orbitIndex":8,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":62166}],"group":1126,"name":"Accuracy and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":5704},"34520":{"orbit":7,"orbitIndex":15,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":55575},{"orbit":4,"id":14548},{"orbit":-4,"id":63545}],"group":925,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":34520},"20830":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":8,"id":37078}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Area of Effect","ascendancyName":"Witchhunter","group":311,"stats":["8% increased Area of Effect"],"skill":20830},"19236":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Projectile Bulwark","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":152,"isNotable":true,"stats":["30% increased Armour","Defend with 120% of Armour against Projectile Attacks"],"skill":19236},"30871":{"orbit":7,"orbitIndex":9,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":12208}],"group":1149,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":30871},"54067":{"orbit":5,"orbitIndex":49,"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"connections":[{"orbit":0,"id":27626},{"orbit":-4,"id":2244}],"group":419,"name":"Arcane Surge on Critical Hit","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":54067},"57970":{"orbit":2,"orbitIndex":10,"stats":["20% increased Frenzy Charge Duration"],"connections":[{"orbit":0,"id":55995},{"orbit":0,"id":21537}],"group":1400,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":57970},"41873":{"orbit":2,"orbitIndex":22,"stats":["20% increased Frenzy Charge Duration"],"connections":[],"group":1400,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":41873},"52180":{"orbit":1,"orbitIndex":9,"recipe":["Suffering","Despair","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Trained Deflection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1398,"isNotable":true,"stats":["Prevent +6% of Damage from Deflected Hits"],"skill":52180},"26400":{"orbit":7,"orbitIndex":18,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"connections":[{"orbit":0,"id":8904}],"group":1278,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":26400},"20044":{"orbit":2,"orbitIndex":7,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":30736}],"group":1398,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":20044},"27303":{"orbit":7,"orbitIndex":16,"recipe":["Ire","Guilt","Despair"],"connections":[{"orbit":0,"id":43142}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Vulgar Methods","group":327,"isNotable":true,"stats":["10% reduced maximum Mana","+10 to Strength","30% increased Critical Hit Chance"],"skill":27303},"53272":{"orbit":3,"orbitIndex":20,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":2560},{"orbit":0,"id":2582}],"group":1398,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":53272},"33729":{"orbit":4,"orbitIndex":66,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"connections":[{"orbit":4,"id":45712}],"group":1143,"name":"Elemental Damage and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":33729},"1773":{"orbit":0,"orbitIndex":0,"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"connections":[{"orbit":4,"id":51213}],"group":1063,"name":"Ailment Effect and Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":1773},"32442":{"orbit":0,"orbitIndex":0,"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"connections":[{"orbit":0,"id":2361}],"group":1397,"name":"Quarterstaff Stun and Knockback","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":32442},"38993":{"orbit":0,"orbitIndex":0,"stats":["16% increased Critical Damage Bonus with Bows"],"connections":[{"orbit":0,"id":21112}],"group":1396,"name":"Bow Critical Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":38993},"42974":{"orbit":2,"orbitIndex":18,"stats":["5% chance to Blind Enemies on Hit"],"connections":[{"orbit":3,"id":46152},{"orbit":-7,"id":8302},{"orbit":0,"id":30808}],"group":1395,"name":"Blind Chance","icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","skill":42974},"46152":{"orbit":1,"orbitIndex":6,"stats":["10% increased Blind Effect"],"connections":[{"orbit":4,"id":40110}],"group":1395,"name":"Blind Effect","icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","skill":46152},"18441":{"orbit":7,"orbitIndex":10,"connections":[{"orbit":0,"id":34181}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":408,"connectionArt":"CharacterPlanned","stats":["+3 to Maximum Rage"],"skill":18441},"13701":{"orbit":2,"orbitIndex":2,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"connections":[{"orbit":0,"id":17871},{"orbit":0,"id":59538}],"group":1311,"name":"Freeze and Chill Resistance","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":13701},"19112":{"orbit":3,"orbitIndex":8,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":0,"id":36358}],"group":678,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":19112},"3419":{"orbit":6,"orbitIndex":59,"stats":["10% increased Damage with Daggers"],"connections":[{"orbit":0,"id":20429},{"orbit":2,"id":30973}],"group":1394,"name":"Dagger Damage","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":3419},"59070":{"orbit":7,"orbitIndex":13,"recipe":["Disgust","Isolation","Paranoia"],"connections":[{"orbit":0,"id":55011}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Enduring Archon","group":534,"isNotable":true,"stats":["30% increased Archon Buff duration"],"skill":59070},"26572":{"orbit":2,"orbitIndex":12,"stats":["12% increased Critical Hit Chance against Dazed Enemies"],"connections":[{"orbit":0,"id":47514}],"group":1376,"name":"Criticals vs Dazed Enemies","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":26572},"64700":{"orbit":0,"orbitIndex":0,"stats":["5% chance to Daze on Hit","20% increased Freeze Buildup with Quarterstaves"],"connections":[{"orbit":0,"id":61632}],"group":1391,"name":"Quarterstaff Freeze and Daze Buildup","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":64700},"44516":{"orbit":2,"orbitIndex":13,"stats":["3% increased Attack Speed with Quarterstaves"],"connections":[{"orbit":0,"id":2113}],"group":1388,"name":"Quarterstaff Speed","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":44516},"11598":{"orbit":0,"orbitIndex":0,"stats":["3% increased Attack Speed with Quarterstaves"],"connections":[{"orbit":0,"id":4536},{"orbit":0,"id":44516}],"group":1388,"name":"Quarterstaff Speed","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":11598},"21218":{"orbit":3,"orbitIndex":5,"connections":[{"orbit":0,"id":7066},{"orbit":0,"id":13950}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["16% increased Damage with Bows"],"skill":21218},"46016":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":7,"id":24039}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","ascendancyName":"Infernalist","group":725,"stats":["3% increased maximum Life"],"skill":46016},"3775":{"orbit":2,"orbitIndex":12,"stats":["15% increased Life Flask Charges gained"],"connections":[{"orbit":0,"id":45244}],"group":1095,"name":"Life Flask Charges","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":3775},"36894":{"orbit":3,"orbitIndex":20,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":61938}],"group":283,"name":"Bleed Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":36894},"63579":{"orbit":4,"orbitIndex":30,"recipe":["Greed","Isolation","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Momentum","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":621,"isNotable":true,"stats":["Ignore all Movement Penalties from Armour","5% reduced Slowing Potency of Debuffs on You"],"skill":63579},"21284":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":30904}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Life and Mana Regeneration Rate","ascendancyName":"Oracle","group":8,"stats":["8% increased Life Regeneration rate","8% increased Mana Regeneration Rate"],"skill":21284},"34316":{"orbit":6,"orbitIndex":3,"recipe":["Guilt","Paranoia","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"One with the River","group":1388,"isNotable":true,"stats":["10% chance to Daze on Hit","30% increased Defences while wielding a Quarterstaff","30% increased Freeze Buildup with Quarterstaves","30% increased Stun Buildup with Quarterstaves"],"skill":34316},"52399":{"orbit":5,"orbitIndex":38,"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"connections":[{"orbit":0,"id":9444}],"group":1388,"name":"Quarterstaff Critical Damage","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":52399},"29285":{"orbit":7,"orbitIndex":19,"stats":["2% increased Movement Speed"],"connections":[{"orbit":2147483647,"id":9745},{"orbit":0,"id":38463}],"group":1232,"name":"Movement Speed","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","skill":29285},"9444":{"orbit":6,"orbitIndex":39,"recipe":["Isolation","Suffering","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"One with the Storm","group":1388,"isNotable":true,"stats":["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"],"skill":9444},"62258":{"orbit":7,"orbitIndex":22,"stats":["20% increased Glory generation for Banner Skills"],"connections":[{"orbit":0,"id":62455},{"orbit":0,"id":21096}],"group":656,"name":"Banner Glory Gained","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":62258},"37514":{"orbit":3,"orbitIndex":1,"recipe":["Envy","Disgust","Greed"],"connections":[{"orbit":0,"id":32442},{"orbit":0,"id":64700}],"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Whirling Assault","group":1388,"isNotable":true,"stats":["8% increased Attack Speed with Quarterstaves","Knocks Back Enemies if you get a Critical Hit with a Quarterstaff"],"skill":37514},"27501":{"orbit":4,"orbitIndex":44,"stats":["10% increased Life Regeneration rate"],"connections":[],"group":662,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":27501},"2361":{"orbit":5,"orbitIndex":4,"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"connections":[{"orbit":0,"id":34316}],"group":1388,"name":"Quarterstaff Stun and Knockback","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":2361},"39935":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":44344}],"icon":"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds","name":"Necromantic Talisman","group":558,"isKeystone":true,"stats":["All bonuses from Equipped Amulet apply to your Minions instead of you"],"skill":39935},"64900":{"orbit":7,"orbitIndex":23,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"connections":[{"orbit":-4,"id":54999}],"group":122,"name":"Ancestral Boosted Attack Damage and Stun","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":64900},"49976":{"orbit":7,"orbitIndex":5,"stats":["4% of Damage is taken from Mana before Life"],"connections":[{"orbit":7,"id":62936},{"orbit":-3,"id":47976}],"group":1234,"name":"Damage from Mana","icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","skill":49976},"25586":{"orbit":6,"orbitIndex":35,"stats":["16% increased Critical Damage Bonus with Bows"],"connections":[{"orbit":0,"id":38993}],"group":1387,"name":"Bow Critical Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":25586},"8573":{"orbit":5,"orbitIndex":26,"stats":["12% increased Damage with Bows"],"connections":[{"orbit":0,"id":11526}],"group":1387,"name":"Bow Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":8573},"21112":{"orbit":4,"orbitIndex":57,"stats":["10% increased Damage with Bows"],"connections":[{"orbit":0,"id":31055}],"group":1387,"name":"Bow Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":21112},"21788":{"orbit":5,"orbitIndex":21,"stats":["12% increased Damage with Bows"],"connections":[{"orbit":0,"id":8573},{"orbit":0,"id":34612}],"group":1387,"name":"Bow Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":21788},"24239":{"orbit":1,"orbitIndex":9,"stats":["Gain 5 Life per enemy killed"],"connections":[{"orbit":0,"id":34136}],"group":1009,"name":"Life on Kill","icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":24239},"44141":{"orbit":3,"orbitIndex":7,"stats":["3% increased Attack Speed with Bows"],"connections":[{"orbit":0,"id":18969},{"orbit":0,"id":21788}],"group":1387,"name":"Bow Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":44141},"4948":{"orbit":3,"orbitIndex":6,"stats":["Break 20% increased Armour"],"connections":[],"group":370,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":4948},"11526":{"orbit":5,"orbitIndex":30,"recipe":["Isolation","Suffering","Despair"],"connections":[{"orbit":0,"id":38993}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Sniper","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":1387,"isNotable":true,"stats":["Arrows gain Critical Hit Chance as they travel farther, up to","40% increased Critical Hit Chance after 7 metres"],"skill":11526},"43893":{"orbit":3,"orbitIndex":10,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":55101},{"orbit":0,"id":1433}],"group":343,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":43893},"33590":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":131,"connections":[],"stats":[],"skill":33590},"60764":{"orbit":5,"orbitIndex":12,"recipe":["Isolation","Suffering","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Feathered Fletching","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":1387,"isNotable":true,"stats":["Increases and Reductions to Projectile Speed also apply to Damage with Bows"],"skill":60764},"5410":{"orbit":3,"orbitIndex":15,"recipe":["Envy","Envy","Fear"],"connections":[{"orbit":0,"id":33590}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Channelled Heritage","group":122,"isNotable":true,"stats":["30% increased Area of Effect of Ancestrally Boosted Attacks"],"skill":5410},"20787":{"orbit":7,"orbitIndex":21,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":2147483647,"id":5390}],"group":1384,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":20787},"31825":{"orbit":7,"orbitIndex":6,"stats":["12% increased Attack Cold Damage"],"connections":[{"orbit":2147483647,"id":16142}],"group":1384,"name":"Attack Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":31825},"32923":{"orbit":7,"orbitIndex":0,"stats":["5% increased Life Regeneration rate","10% increased effect of Arcane Surge on you"],"connections":[{"orbit":4,"id":58215}],"group":440,"name":"Arcane Surge Effect and Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":32923},"10742":{"orbit":3,"orbitIndex":4,"stats":["Minions have 3% increased Attack and Cast Speed"],"connections":[{"orbit":0,"id":41991}],"group":461,"name":"Minion Attack and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":10742},"15304":{"orbit":2,"orbitIndex":14,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":16466}],"group":1098,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":15304},"28153":{"orbit":2,"orbitIndex":9,"connections":[],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds","name":"The Rapid River","ascendancyName":"Chronomancer","group":347,"isNotable":true,"stats":["Recoup Effects instead occur over 4 seconds"],"skill":28153},"3744":{"orbit":1,"orbitIndex":10,"stats":["+8 to Dexterity"],"connections":[{"orbit":0,"id":5332}],"group":796,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":3744},"35173":{"orbit":7,"orbitIndex":22,"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"connections":[{"orbit":0,"id":1599}],"group":1289,"name":"Physical Damage and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":35173},"33978":{"orbit":7,"orbitIndex":21,"recipe":["Fear","Paranoia","Ire"],"connections":[{"orbit":7,"id":31609},{"orbit":0,"id":62581}],"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Unstoppable Barrier","group":442,"isNotable":true,"stats":["10% increased Block chance","15% reduced Slowing Potency of Debuffs on You"],"skill":33978},"1826":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":39037}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":830,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":1826},"32799":{"orbit":3,"orbitIndex":1,"recipe":["Isolation","Guilt","Greed"],"connections":[{"orbit":0,"id":23961},{"orbit":0,"id":32096}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Captivating Companionship","group":1032,"isNotable":true,"stats":["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"],"skill":32799},"21746":{"orbit":6,"orbitIndex":12,"connections":[{"orbit":0,"id":46782}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1041,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":21746},"59694":{"orbit":0,"orbitIndex":0,"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"connections":[{"orbit":0,"id":52399}],"group":1383,"name":"Quarterstaff Critical Damage","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":59694},"54999":{"orbit":3,"orbitIndex":2,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"connections":[{"orbit":-3,"id":14511}],"group":122,"name":"Ancestral Boosted Attack Damage and Stun","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":54999},"8115":{"orbit":3,"orbitIndex":8,"stats":["15% increased Pin Buildup"],"connections":[],"group":640,"name":"Pin Buildup","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":8115},"326":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance with Quarterstaves"],"connections":[{"orbit":0,"id":31449}],"group":1382,"name":"Quarterstaff Critical Chance","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":326},"34340":{"orbit":4,"orbitIndex":48,"recipe":["Ire","Paranoia","Greed"],"connections":[{"orbit":0,"id":17294}],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Mass Rejuvenation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":662,"isNotable":true,"stats":["Allies in your Presence Regenerate 1% of your Maximum Life per second","Regenerate 0.5% of maximum Life per second"],"skill":34340},"13419":{"orbit":7,"orbitIndex":14,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":14958}],"group":1006,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":13419},"6294":{"orbit":4,"orbitIndex":54,"stats":["3% increased Cast Speed"],"connections":[{"orbit":4,"id":52429}],"group":610,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":6294},"28044":{"orbit":3,"orbitIndex":12,"recipe":["Disgust","Isolation","Suffering"],"connections":[{"orbit":0,"id":28835},{"orbit":0,"id":178},{"orbit":0,"id":6988}],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Coming Calamity","group":1381,"isNotable":true,"stats":["40% increased Cold Damage while affected by Herald of Ice","40% increased Fire Damage while affected by Herald of Ash","40% increased Lightning Damage while affected by Herald of Thunder"],"skill":28044},"9151":{"orbit":2,"orbitIndex":18,"stats":["Projectiles have 25% chance for an additional Projectile when Forking"],"connections":[{"orbit":0,"id":42302}],"group":1233,"name":"Forking Projectiles","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":9151},"10162":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","name":"Power Charge Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":1341,"connections":[],"stats":[],"skill":10162},"11572":{"orbit":7,"orbitIndex":19,"stats":["5% increased Life Regeneration rate","10% increased effect of Arcane Surge on you"],"connections":[{"orbit":-7,"id":32923}],"group":440,"name":"Arcane Surge Effect and Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":11572},"28835":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":56847},{"orbit":0,"id":60480},{"orbit":0,"id":8157}],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1381,"stats":["12% increased Damage while affected by a Herald"],"skill":28835},"48734":{"orbit":3,"orbitIndex":4,"recipe":["Guilt","Despair","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds","name":"The Howling Primate","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":1378,"isNotable":true,"stats":["15% increased Presence Area of Effect","Aura Skills have 10% increased Magnitudes","+10 to Intelligence"],"skill":48734},"42226":{"orbit":3,"orbitIndex":14,"stats":["+10 to Intelligence"],"connections":[{"orbit":0,"id":34892},{"orbit":9,"id":17792}],"group":1378,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","skill":42226},"34892":{"orbit":3,"orbitIndex":11,"stats":["Aura Skills have 5% increased Magnitudes"],"connections":[{"orbit":0,"id":12066}],"group":1378,"name":"Aura Magnitude","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","skill":34892},"17792":{"orbit":2,"orbitIndex":9,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":3,"id":48734}],"group":1378,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","skill":17792},"5386":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":22541}],"nodeOverlay":{"path":"Smith of KitavaFrameSmallCanAllocate","alloc":"Smith of KitavaFrameSmallAllocated","unalloc":"Smith of KitavaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Damage","ascendancyName":"Smith of Kitava","group":6,"stats":["20% increased Fire Damage"],"skill":5386},"53405":{"orbit":6,"orbitIndex":42,"connections":[{"orbit":0,"id":17468},{"orbit":6,"id":16090},{"orbit":4,"id":26798},{"orbit":0,"id":8693}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":455,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":53405},"46024":{"orbit":4,"orbitIndex":44,"recipe":["Paranoia","Suffering","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Sigil of Lightning","group":269,"isNotable":true,"stats":["30% increased Damage with Hits against Shocked Enemies"],"skill":46024},"29959":{"orbit":2,"orbitIndex":14,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":3,"id":6891},{"orbit":-3,"id":60362}],"group":1377,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":29959},"39128":{"orbit":2,"orbitIndex":4,"stats":["15% increased Magnitude of Daze"],"connections":[{"orbit":0,"id":47514}],"group":1376,"name":"Daze Magnitude","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":39128},"61472":{"orbit":7,"orbitIndex":10,"stats":["+8 to Strength"],"connections":[{"orbit":0,"id":9417},{"orbit":6,"id":36389}],"group":373,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":61472},"18969":{"orbit":0,"orbitIndex":0,"stats":["3% increased Attack Speed with Bows"],"connections":[],"group":1392,"name":"Bow Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":18969},"38338":{"orbit":4,"orbitIndex":60,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":-2,"id":5257}],"group":1022,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":38338},"18845":{"orbit":7,"orbitIndex":11,"connections":[{"orbit":-5,"id":55807}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"id":27384,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage"}},"group":723,"isSwitchable":true,"stats":["10% increased Spell Damage"],"skill":18845},"17061":{"orbit":3,"orbitIndex":4,"stats":["Archon recovery period expires 10% faster"],"connections":[{"orbit":2,"id":31773}],"group":534,"name":"Archon Delay","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":17061},"14205":{"orbit":1,"orbitIndex":1,"stats":["Gain 1 Rage when your Hit Ignites a target"],"connections":[{"orbit":0,"id":25753}],"group":487,"name":"Rage on Ignite","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":14205},"14505":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":460,"connections":[],"stats":[],"skill":14505},"38342":{"orbit":7,"orbitIndex":20,"recipe":["Paranoia","Despair","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Stupefy","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":1376,"isNotable":true,"stats":["10% chance to Daze on Hit","30% increased Damage against Dazed Enemies"],"skill":38342},"47514":{"orbit":7,"orbitIndex":8,"recipe":["Ire","Despair","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Dizzying Hits","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":1376,"isNotable":true,"stats":["10% chance to Daze on Hit","25% increased Critical Hit Chance against Dazed Enemies"],"skill":47514},"9290":{"orbit":4,"orbitIndex":57,"recipe":["Suffering","Guilt","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Rusted Pins","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":716,"isNotable":true,"stats":["30% increased Pin Buildup","Bleeding you inflict on Pinned Enemies is Aggravated"],"skill":9290},"2582":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":48116},{"orbit":0,"id":41861},{"orbit":0,"id":56847}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1374,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":2582},"25362":{"orbit":2,"orbitIndex":13,"recipe":["Greed","Greed","Despair"],"connections":[{"orbit":0,"id":23105}],"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Chakra of Impact","group":1372,"isNotable":true,"stats":["20% increased Attack Damage","Skills deal 8% increased Damage per Combo consumed, up to 40%"],"skill":25362},"59886":{"orbit":5,"orbitIndex":23,"stats":["+15% of Armour also applies to Lightning Damage"],"connections":[{"orbit":0,"id":4442}],"group":143,"name":"Armour Applies to Lightning Damage Hits","icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","skill":59886},"17724":{"orbit":3,"orbitIndex":13,"stats":["10% increased Attack Damage"],"connections":[{"orbit":-4,"id":17101}],"group":1372,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","skill":17724},"15775":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":30808},{"orbit":0,"id":11598},{"orbit":0,"id":29959}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1371,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":15775},"5324":{"orbit":7,"orbitIndex":16,"stats":["20% increased Attack Damage if you have been Heavy Stunned Recently"],"connections":[{"orbit":2147483647,"id":54437},{"orbit":0,"id":2397}],"group":642,"name":"Attack Damage if Stunned Recently","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":5324},"49320":{"orbit":6,"orbitIndex":31,"stats":["10% increased Critical Hit Chance with Daggers"],"connections":[{"orbit":0,"id":52215}],"group":1370,"name":"Dagger Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":49320},"16168":{"orbit":6,"orbitIndex":48,"connections":[{"orbit":-5,"id":54232},{"orbit":0,"id":25374},{"orbit":0,"id":45916}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":662,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":16168},"39608":{"orbit":7,"orbitIndex":20,"stats":["20% increased Hazard Duration"],"connections":[{"orbit":-3,"id":1778}],"group":1369,"name":"Hazard Duration","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":39608},"30408":{"orbit":7,"orbitIndex":16,"recipe":["Fear","Paranoia","Guilt"],"connections":[{"orbit":0,"id":17906}],"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","name":"Efficient Contraptions","group":1369,"isNotable":true,"stats":["Hazards have 15% chance to rearm after they are triggered"],"skill":30408},"45350":{"orbit":7,"orbitIndex":6,"stats":["Invocated Spells deal 15% increased Damage"],"connections":[{"orbit":0,"id":3438}],"group":870,"name":"Invocation Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":45350},"42032":{"orbit":7,"orbitIndex":4,"recipe":["Isolation","Guilt","Ire"],"connections":[{"orbit":0,"id":17906}],"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","name":"Escalating Mayhem","group":1369,"isNotable":true,"stats":["10% increased Damage for each Hazard triggered Recently, up to 50%"],"skill":42032},"30077":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1298,"connections":[],"stats":[],"skill":30077},"60274":{"orbit":7,"orbitIndex":0,"stats":["15% increased Armour"],"connections":[{"orbit":4,"id":13293},{"orbit":0,"id":19236}],"group":152,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":60274},"8896":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Agile Sprinter","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1312,"isNotable":true,"stats":["100% increased Evasion Rating while Sprinting"],"skill":8896},"60191":{"orbit":7,"orbitIndex":11,"stats":["8% increased Bolt Speed"],"connections":[{"orbit":0,"id":54985}],"group":553,"name":"Bolt Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":60191},"20414":{"orbit":4,"orbitIndex":31,"recipe":["Ire","Despair","Despair"],"connections":[{"orbit":0,"id":35043},{"orbit":0,"id":52410},{"orbit":0,"id":50146}],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Reprisal","group":1368,"isNotable":true,"stats":["25% increased Parried Debuff Magnitude"],"skill":20414},"30143":{"orbit":7,"orbitIndex":0,"stats":["5% increased Block chance"],"connections":[{"orbit":9,"id":34201}],"group":1140,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":30143},"12822":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Envy"],"connections":[{"orbit":0,"id":5826}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Adaptable Assault","group":1005,"isNotable":true,"stats":["+4 to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds","Projectiles have 25% chance to Fork if you've dealt a Melee Hit in the past eight seconds"],"skill":12822},"19233":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":42441}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Elemental Damage","ascendancyName":"Amazon","group":1466,"stats":["12% increased Elemental Damage"],"skill":19233},"61421":{"orbit":7,"orbitIndex":19,"stats":["Meta Skills gain 4% increased Energy","5% increased Critical Hit Chance"],"connections":[{"orbit":7,"id":16121}],"group":1366,"name":"Energy and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":61421},"21017":{"orbit":5,"orbitIndex":0,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":-7,"id":26969},{"orbit":7,"id":55789}],"group":327,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":21017},"44952":{"orbit":3,"orbitIndex":11,"recipe":["Suffering","Fear","Guilt"],"connections":[{"orbit":0,"id":9163}],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Made to Last","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":160,"isNotable":true,"stats":["30% increased Armour","5% of Physical Damage prevented Recouped as Life"],"skill":44952},"65290":{"orbit":0,"orbitIndex":0,"stats":["5% increased Lightning Damage","+3% to Lightning Resistance"],"connections":[{"orbit":0,"id":57069}],"group":1365,"name":"Lightning Damage and Resistance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":65290},"6030":{"orbit":3,"orbitIndex":5,"stats":["8% chance to Poison on Hit"],"connections":[],"group":1409,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":6030},"57571":{"orbit":2,"orbitIndex":6,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":-3,"id":37905}],"group":1364,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","skill":57571},"23736":{"orbit":4,"orbitIndex":38,"recipe":["Fear","Greed","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Spray and Pray","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1053,"isNotable":true,"stats":["20% reduced Accuracy Rating while moving","50% increased Attack Damage while moving","5% reduced Movement Speed Penalty from using Skills while moving"],"skill":23736},"43867":{"orbit":7,"orbitIndex":23,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":2,"id":10423}],"group":1364,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":43867},"14769":{"orbit":7,"orbitIndex":20,"stats":["+8 to Dexterity"],"connections":[{"orbit":-2,"id":40471}],"group":1362,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","skill":14769},"16460":{"orbit":6,"orbitIndex":18,"connections":[{"orbit":0,"id":28992},{"orbit":0,"id":6772}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":899,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":16460},"34623":{"orbit":2,"orbitIndex":2,"stats":["10% increased Endurance, Frenzy and Power Charge Duration","+5 to Dexterity"],"connections":[{"orbit":0,"id":14769},{"orbit":0,"id":14262}],"group":1362,"name":"Charge Duration and Dexterity","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","skill":34623},"10944":{"orbit":2,"orbitIndex":0,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[],"group":1157,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":10944},"43142":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":327,"connections":[],"stats":[],"skill":43142},"41861":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds","name":"Trusted Kinship","group":1361,"isKeystone":true,"stats":["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"],"skill":41861},"54923":{"orbit":7,"orbitIndex":7,"stats":["15% increased Glory generation"],"connections":[{"orbit":2147483647,"id":27638}],"group":493,"name":"Glory Generation","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":54923},"11836":{"orbit":2,"orbitIndex":7,"stats":["12% increased Critical Hit Chance against Blinded Enemies"],"connections":[{"orbit":0,"id":32721}],"group":1184,"name":"Critical vs Blinded","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":11836},"54934":{"orbit":2,"orbitIndex":4,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"connections":[{"orbit":0,"id":15494}],"group":601,"name":"Fire Damage when consuming an Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":54934},"64637":{"orbit":7,"orbitIndex":14,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":7,"id":32543}],"group":1358,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":64637},"19563":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage while Shapeshifted"],"connections":[{"orbit":0,"id":47931},{"orbit":-7,"id":58496},{"orbit":7,"id":6735}],"group":154,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":19563},"60899":{"orbit":7,"orbitIndex":22,"stats":["3% reduced Movement Speed Penalty from using Skills while moving"],"connections":[{"orbit":-7,"id":32543}],"group":1358,"name":"Reduced Movement Penalty","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":60899},"17517":{"orbit":7,"orbitIndex":12,"stats":["5% increased Area of Effect"],"connections":[{"orbit":-4,"id":13233},{"orbit":9,"id":17655}],"group":577,"name":"Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":17517},"65212":{"orbit":7,"orbitIndex":6,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":58539},{"orbit":0,"id":34968}],"group":1358,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":65212},"14575":{"orbit":0,"orbitIndex":0,"stats":["Minions have +20% to Lightning Resistance","Minions have +3% to Maximum Lightning Resistances"],"connections":[],"group":587,"name":"Minion Lightning Resistance","icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","skill":14575},"9405":{"orbit":7,"orbitIndex":12,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":6,"id":59720}],"group":1353,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":9405},"44420":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":28021}],"group":1135,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":44420},"30341":{"orbit":7,"orbitIndex":0,"recipe":["Fear","Despair","Disgust"],"connections":[{"orbit":0,"id":1995},{"orbit":0,"id":37946}],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Master Fletching","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":1102,"isNotable":true,"stats":["20% increased bonuses gained from Equipped Quiver"],"skill":30341},"14539":{"orbit":7,"orbitIndex":4,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 3% of Evasion Rating"],"connections":[{"orbit":5,"id":44776}],"group":1353,"name":"Deflection and Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":14539},"57110":{"orbit":7,"orbitIndex":5,"recipe":["Greed","Envy","Envy"],"connections":[{"orbit":-2,"id":62159},{"orbit":0,"id":46561}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Infused Flesh","group":898,"isNotable":true,"stats":["+20 to maximum Life","8% of Damage taken Recouped as Life"],"skill":57110},"64370":{"orbit":6,"orbitIndex":17,"connections":[{"orbit":0,"id":53396}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":606,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":64370},"44776":{"orbit":5,"orbitIndex":18,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":48773},{"orbit":5,"id":1841}],"group":1353,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":44776},"17589":{"orbit":2,"orbitIndex":23,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":36085},{"orbit":7,"id":64462}],"group":1337,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":17589},"38728":{"orbit":7,"orbitIndex":0,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 3% of Evasion Rating"],"connections":[{"orbit":5,"id":14539}],"group":1353,"name":"Deflection and Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":38728},"41645":{"orbit":3,"orbitIndex":20,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":6490},{"orbit":0,"id":10382}],"group":1137,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":41645},"52875":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1291,"connections":[],"stats":[],"skill":52875},"65091":{"orbit":7,"orbitIndex":20,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":6,"id":51707}],"group":1353,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":65091},"57069":{"orbit":0,"orbitIndex":0,"stats":["5% increased Lightning Damage","+3% to Lightning Resistance"],"connections":[{"orbit":0,"id":52257}],"group":1352,"name":"Lightning Damage and Resistance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":57069},"54725":{"orbit":7,"orbitIndex":0,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"connections":[{"orbit":0,"id":56336}],"group":1186,"name":"Curse Activation Speed and Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":54725},"1205":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","name":"Poison Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","group":1351,"connections":[],"stats":[],"skill":1205},"28623":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","name":"Spell Suppression Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","group":1217,"connections":[],"stats":[],"skill":28623},"17655":{"orbit":2,"orbitIndex":8,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","options":{"Druid":{"stats":["8% increased Damage"],"id":14942,"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","name":"Damage"}},"group":551,"isSwitchable":true,"stats":["Aura Skills have 5% increased Magnitudes"],"skill":17655},"1073":{"orbit":2,"orbitIndex":11,"stats":["6% increased Ignite Magnitude","6% increased Magnitude of Poison you inflict"],"connections":[{"orbit":0,"id":261}],"group":1351,"name":"Ignite Magnitude and Poison Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":1073},"33452":{"orbit":5,"orbitIndex":54,"stats":["5% increased Block chance"],"connections":[{"orbit":-6,"id":23192},{"orbit":9,"id":52796}],"group":174,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":33452},"8246":{"orbit":2,"orbitIndex":11,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":37548},{"orbit":0,"id":64462}],"group":1337,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":8246},"12940":{"orbit":4,"orbitIndex":0,"connections":[{"orbit":0,"id":20637}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Cower Before the First Ones","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":["30% increased Fire Damage","30% increased Cold Damage","30% increased Lightning Damage","30% increased Chaos Damage","30% increased Physical Damage"],"skill":12940},"52537":{"orbit":2,"orbitIndex":13,"stats":["10% increased Magnitude of Chill you inflict"],"connections":[],"group":1350,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":52537},"44560":{"orbit":2,"orbitIndex":0,"connections":[{"orbit":0,"id":12940}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":["20% increased Cold Damage"],"skill":44560},"39130":{"orbit":2,"orbitIndex":20,"stats":["12% increased Spell Damage with Spells that cost Life"],"connections":[{"orbit":-5,"id":14294}],"group":458,"name":"Life Spell Damage","icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":39130},"38215":{"orbit":2,"orbitIndex":4,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":-3,"id":61921}],"group":1245,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":38215},"20909":{"orbit":2,"orbitIndex":1,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":2147483647,"id":44891}],"group":1350,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":20909},"55835":{"orbit":2,"orbitIndex":19,"recipe":["Isolation","Fear","Paranoia"],"connections":[{"orbit":2147483647,"id":52537},{"orbit":-9,"id":20909},{"orbit":0,"id":7023}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Exposed to the Cosmos","group":1350,"isNotable":true,"stats":["Damage Penetrates 18% Cold Resistance","20% increased chance to inflict Ailments against Enemies with Exposure"],"skill":55835},"7294":{"orbit":2,"orbitIndex":16,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"connections":[{"orbit":0,"id":65498},{"orbit":0,"id":39307},{"orbit":0,"id":41017}],"group":1349,"name":"Armour Break and Physical Damage","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":7294},"65498":{"orbit":1,"orbitIndex":10,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":37026}],"group":1349,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":65498},"63585":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Thunderstruck","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1029,"isNotable":true,"stats":["50% increased Electrocute Buildup against Shocked Enemies","50% increased Shock Chance against Electrocuted Enemies"],"skill":63585},"34015":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":22927},{"orbit":0,"id":59083},{"orbit":0,"id":14882}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1348,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":34015},"4664":{"orbit":6,"orbitIndex":42,"stats":["6% increased Trap Throwing Speed"],"connections":[{"orbit":0,"id":43938}],"group":1347,"name":"Trap Throw Speed","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":4664},"39911":{"orbit":2,"orbitIndex":4,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Frantic Reach","group":1321,"isNotable":true,"stats":["20% reduced Accuracy Rating","18% increased Area of Effect for Attacks"],"skill":39911},"49657":{"orbit":6,"orbitIndex":33,"connections":[{"orbit":0,"id":54417},{"orbit":6,"id":63526},{"orbit":6,"id":43578},{"orbit":0,"id":58109}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":750,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":49657},"37688":{"orbit":6,"orbitIndex":36,"connections":[{"orbit":0,"id":37616}],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Devestating Devices","group":1347,"isNotable":true,"stats":["25% increased Trap Damage"],"skill":37688},"40325":{"orbit":3,"orbitIndex":21,"recipe":["Envy","Disgust","Envy"],"connections":[{"orbit":0,"id":7392},{"orbit":0,"id":48505}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Resolution","group":448,"isNotable":true,"stats":["25% increased Stun Threshold","10% increased Defences"],"skill":40325},"26236":{"orbit":7,"orbitIndex":20,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":-2,"id":38069}],"group":870,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":26236},"4663":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"","name":"Minion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":376,"connectionArt":"CharacterPlanned","stats":[],"skill":4663},"38479":{"orbit":2,"orbitIndex":20,"recipe":["Ire","Paranoia","Ire"],"connections":[{"orbit":-5,"id":17553}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Close Confines","group":875,"isNotable":true,"stats":["50% chance for Projectiles to Pierce Enemies within 3m distance of you"],"skill":38479},"37548":{"orbit":2,"orbitIndex":5,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":0,"id":37742},{"orbit":0,"id":17589}],"group":1337,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":37548},"64295":{"orbit":4,"orbitIndex":54,"stats":["10% increased Critical Hit Chance with Traps"],"connections":[],"group":1347,"name":"Trap Critical Chance","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":64295},"35966":{"orbit":7,"orbitIndex":4,"recipe":["Paranoia","Despair","Ire"],"connections":[{"orbit":0,"id":41105},{"orbit":0,"id":44316}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Heart Tissue","group":293,"isNotable":true,"stats":["8% of Damage taken Recouped as Life","Regenerate 0.5% of maximum Life per second if you have been Hit Recently"],"skill":35966},"43895":{"orbit":7,"orbitIndex":6,"stats":["15% increased Life Regeneration Rate while on Low Life"],"connections":[{"orbit":-5,"id":48670}],"group":572,"name":"Life Regeneration on Low Life","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":43895},"33964":{"orbit":4,"orbitIndex":49,"stats":["10% increased Critical Hit Chance with Traps"],"connections":[{"orbit":0,"id":64295}],"group":1347,"name":"Trap Critical Chance","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":33964},"8644":{"orbit":6,"orbitIndex":51,"stats":["10% increased Trap Damage"],"connections":[{"orbit":0,"id":62496},{"orbit":0,"id":27417}],"group":1347,"name":"Trap Damage","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":8644},"37616":{"orbit":5,"orbitIndex":45,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":1347,"connections":[],"stats":[],"skill":37616},"50626":{"orbit":2,"orbitIndex":7,"stats":["+10 to Armour","+5 to maximum Energy Shield"],"connections":[{"orbit":0,"id":32597}],"group":645,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":50626},"63600":{"orbit":0,"orbitIndex":0,"stats":["15% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":36364}],"group":1345,"name":"Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":63600},"52257":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Conductive Embrace","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1344,"isNotable":true,"stats":["+10% to Lightning Resistance","+2% to Maximum Lightning Resistance if you have at least 5 Green Support Gems Socketed"],"skill":52257},"54031":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Suffering","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds","name":"The Great Boar","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":1343,"isNotable":true,"stats":["+1 Life per 4 Dexterity","+1 to Stun Threshold per Dexterity","+5 to Strength"],"skill":54031},"16871":{"orbit":7,"orbitIndex":18,"stats":["+4 to Strength","+4 to Dexterity"],"connections":[{"orbit":2,"id":9532}],"group":1343,"name":"Strength and Dexterity","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","skill":16871},"10277":{"orbit":2,"orbitIndex":7,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":64064}],"group":1249,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":10277},"9532":{"orbit":7,"orbitIndex":22,"stats":["+4 to Strength","+4 to Dexterity"],"connections":[{"orbit":2,"id":59368}],"group":1343,"name":"Strength and Dexterity","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","skill":9532},"61215":{"orbit":7,"orbitIndex":8,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":3,"id":37242}],"group":1343,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","skill":61215},"25055":{"orbit":2,"orbitIndex":8,"stats":["2% increased Movement Speed","8% increased Attack Damage"],"connections":[{"orbit":3,"id":41580}],"group":1318,"name":"Attack Damage and Movement Speed","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":25055},"15814":{"orbit":0,"orbitIndex":0,"stats":["25% increased Evasion Rating while Sprinting"],"connections":[{"orbit":0,"id":12800}],"group":1313,"name":"Evasion while Sprinting","icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","skill":15814},"56847":{"orbit":7,"orbitIndex":22,"stats":["12% increased Damage while affected by a Herald"],"connections":[],"group":1381,"name":"Herald Damage","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":56847},"25857":{"orbit":3,"orbitIndex":12,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":1340,"connections":[],"stats":[],"skill":25857},"10472":{"orbit":4,"orbitIndex":32,"stats":["10% increased Mana Recovery from Flasks"],"connections":[{"orbit":2147483647,"id":17687},{"orbit":3,"id":27422}],"group":1340,"name":"Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":10472},"2021":{"orbit":7,"orbitIndex":0,"recipe":["Disgust","Greed","Guilt"],"connections":[{"orbit":0,"id":25857}],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Wellspring","group":1340,"isNotable":true,"stats":["30% increased Mana Recovery from Flasks","8% increased Attack and Cast Speed during Effect of any Mana Flask"],"skill":2021},"44902":{"orbit":7,"orbitIndex":2,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"connections":[{"orbit":3,"id":511}],"group":189,"name":"Attack and Spell Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":44902},"36085":{"orbit":3,"orbitIndex":0,"recipe":["Paranoia","Disgust","Greed"],"connections":[{"orbit":0,"id":37548},{"orbit":0,"id":15270}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Serrated Edges","group":1337,"isNotable":true,"stats":["10% increased Critical Hit Chance for Attacks","30% increased Attack Damage against Rare or Unique Enemies"],"skill":36085},"14110":{"orbit":3,"orbitIndex":22,"stats":["15% increased Totem Damage"],"connections":[{"orbit":-4,"id":22484},{"orbit":0,"id":35974}],"group":287,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":14110},"59083":{"orbit":7,"orbitIndex":4,"stats":["10% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":32364}],"group":1351,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":59083},"2334":{"orbit":0,"orbitIndex":0,"stats":["+8 to Dexterity"],"connections":[{"orbit":6,"id":65091},{"orbit":-6,"id":3209}],"group":1332,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":2334},"9323":{"orbit":2,"orbitIndex":23,"recipe":["Ire","Despair","Fear"],"connections":[{"orbit":0,"id":40395}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Craving Slaughter","group":106,"isNotable":true,"stats":["+8 maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds"],"skill":9323},"40990":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Exposed to the Storm","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1331,"isNotable":true,"stats":["Damage Penetrates 18% Lightning Resistance","15% increased Critical Hit Chance against enemies with Exposure"],"skill":40990},"20091":{"orbit":5,"orbitIndex":43,"stats":["10% increased Damage with Swords"],"connections":[{"orbit":0,"id":46565}],"group":548,"name":"Sword Damage","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":20091},"55118":{"orbit":2,"orbitIndex":18,"stats":["10% increased Charm Charges gained"],"connections":[{"orbit":0,"id":50420}],"group":1329,"name":"Charm Charges","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":55118},"3042":{"orbit":2,"orbitIndex":19,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":1218,"connections":[{"orbit":0,"id":51871}],"stats":[],"skill":3042},"51241":{"orbit":2,"orbitIndex":10,"stats":["10% increased Charm Charges gained"],"connections":[{"orbit":-2,"id":55118}],"group":1329,"name":"Charm Charges","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":51241},"44423":{"orbit":2,"orbitIndex":1,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1158,"connections":[{"orbit":0,"id":25971}],"stats":[],"skill":44423},"116":{"orbit":7,"orbitIndex":13,"recipe":["Guilt","Disgust","Fear"],"connections":[{"orbit":0,"id":44359}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Insightfulness","group":836,"isNotable":true,"stats":["18% increased maximum Energy Shield","12% increased Mana Regeneration Rate","6% increased Intelligence"],"skill":116},"58426":{"orbit":2,"orbitIndex":21,"recipe":["Paranoia","Guilt","Paranoia"],"connections":[{"orbit":0,"id":34401}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Pocket Sand","group":1328,"isNotable":true,"stats":["50% increased Blind Effect"],"skill":58426},"65161":{"orbit":2,"orbitIndex":0,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":3170}],"group":1327,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","skill":65161},"20820":{"orbit":2,"orbitIndex":20,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":40166}],"group":1106,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":20820},"43366":{"orbit":0,"orbitIndex":0,"stats":["Minions have 12% additional Physical Damage Reduction"],"connections":[{"orbit":0,"id":2606},{"orbit":0,"id":4407}],"group":568,"name":"Minion Physical Damage Reduction","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":43366},"15625":{"orbit":2,"orbitIndex":10,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":22811}],"group":1327,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","skill":15625},"46742":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds","name":"Elemental Equilibrium","group":479,"isKeystone":true,"stats":["Create Cold Infusion Remnants instead of Fire Infusion Remnants","Create Fire Infusion Remnants instead of Lightning Infusion Remnants","Create Lightning Infusion Remnants instead of Cold Infusion Remnants"],"skill":46742},"12232":{"orbit":2,"orbitIndex":21,"stats":["Channelling Skills deal 6% increased Damage","4% increased Global Defences while Channelling"],"connections":[{"orbit":0,"id":872},{"orbit":0,"id":11087}],"group":265,"name":"Channelling Damage and Defences","icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","skill":12232},"18970":{"orbit":7,"orbitIndex":16,"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"connections":[{"orbit":-3,"id":17366},{"orbit":0,"id":11938}],"group":878,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":18970},"64325":{"orbit":3,"orbitIndex":11,"stats":["10% increased Magnitude of Poison you inflict"],"connections":[{"orbit":-4,"id":45304}],"group":1326,"name":"Poison Damage","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":64325},"18846":{"orbit":3,"orbitIndex":8,"stats":["Spell Skills have 6% increased Area of Effect"],"connections":[],"group":380,"name":"Spell Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":18846},"51561":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":25312},{"orbit":0,"id":2491},{"orbit":0,"id":7716}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":315,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":51561},"46533":{"orbit":2,"orbitIndex":18,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"connections":[{"orbit":3,"id":28329}],"group":1215,"name":"Stun and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","skill":46533},"14082":{"orbit":7,"orbitIndex":8,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":43964}],"group":1137,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":14082},"9227":{"orbit":2,"orbitIndex":4,"recipe":["Fear","Ire","Greed"],"connections":[{"orbit":0,"id":36071}],"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","name":"Focused Thrust","group":1322,"isNotable":true,"stats":["75% increased Melee Damage with Spears while Surrounded","40% increased Projectile Damage with Spears while there are no Enemies within 3m"],"skill":9227},"14048":{"orbit":4,"orbitIndex":54,"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"connections":[{"orbit":7,"id":34717}],"group":1236,"name":"Mana Regeneration while not on Low Mana","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":14048},"49172":{"orbit":2,"orbitIndex":9,"stats":["3% increased Skill Speed with Channelling Skills"],"connections":[{"orbit":0,"id":33730}],"group":433,"name":"Channelling Speed","icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","skill":49172},"39131":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":11741},{"orbit":0,"id":55596}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":181,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":39131},"21871":{"orbit":7,"orbitIndex":8,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"connections":[{"orbit":0,"id":51847},{"orbit":0,"id":37872},{"orbit":0,"id":25213}],"group":800,"name":"Attack Damage with nearby Ally","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":21871},"9240":{"orbit":2,"orbitIndex":16,"stats":["10% increased Damage with Spears"],"connections":[{"orbit":0,"id":21225}],"group":1322,"name":"Spear Damage","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":9240},"21225":{"orbit":3,"orbitIndex":16,"stats":["10% increased Damage with Spears"],"connections":[{"orbit":0,"id":38369}],"group":1322,"name":"Spear Damage","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":21225},"28482":{"orbit":7,"orbitIndex":1,"recipe":["Guilt","Isolation","Suffering"],"connections":[{"orbit":0,"id":19846}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Total Incineration","group":346,"isNotable":true,"stats":["10% increased Ignite Duration on Enemies","25% increased Damage with Hits against Ignited Enemies"],"skill":28482},"51052":{"orbit":6,"orbitIndex":60,"connections":[{"orbit":0,"id":22558},{"orbit":-8,"id":761},{"orbit":0,"id":51183}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":455,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":51052},"61112":{"orbit":5,"orbitIndex":14,"recipe":["Guilt","Paranoia","Disgust"],"connections":[{"orbit":0,"id":36071},{"orbit":0,"id":20105}],"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","name":"Roll and Strike","group":1322,"isNotable":true,"stats":["25% increased Damage with Spears","10% increased Attack Speed with Spears"],"skill":61112},"36677":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with Spears"],"connections":[{"orbit":0,"id":9240},{"orbit":0,"id":36071},{"orbit":0,"id":9227}],"group":1322,"name":"Spear Damage","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":36677},"38369":{"orbit":4,"orbitIndex":48,"stats":["10% increased Critical Hit Chance with Spears"],"connections":[{"orbit":0,"id":18910}],"group":1322,"name":"Spear Critical Chance","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":38369},"62122":{"orbit":3,"orbitIndex":4,"stats":["4% of Damage is taken from Mana before Life"],"connections":[{"orbit":-3,"id":4295}],"group":522,"name":"Damage from Mana","icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","skill":62122},"44951":{"orbit":4,"orbitIndex":9,"connections":[{"orbit":0,"id":5777}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","options":{"Druid":{"stats":["12% increased Armour","12% increased maximum Energy Shield"],"id":48248,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield"}},"group":551,"isSwitchable":true,"stats":["Minions deal 10% increased Damage"],"skill":44951},"25361":{"orbit":2,"orbitIndex":10,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Resolute Reach","group":1321,"isNotable":true,"stats":["18% increased Area of Effect for Attacks","20% reduced Critical Hit Chance"],"skill":25361},"34912":{"orbit":6,"orbitIndex":45,"stats":["10% increased Trap Damage"],"connections":[{"orbit":0,"id":4664}],"group":1347,"name":"Trap Damage","icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","skill":34912},"25070":{"orbit":2,"orbitIndex":19,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":32903},{"orbit":0,"id":11252},{"orbit":0,"id":57821}],"group":1321,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":25070},"60404":{"orbit":2,"orbitIndex":16,"recipe":["Ire","Suffering","Suffering"],"connections":[{"orbit":0,"id":20691},{"orbit":0,"id":25011}],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Perfect Opportunity","group":552,"isNotable":true,"stats":["30% increased Stun Buildup","Damage with Hits is Lucky against Heavy Stunned Enemies"],"skill":60404},"36540":{"orbit":0,"orbitIndex":0,"stats":["+5% to Lightning Resistance"],"connections":[{"orbit":0,"id":56988}],"group":1320,"name":"Lightning Resistance","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":36540},"41298":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1318,"connections":[],"stats":[],"skill":41298},"14211":{"orbit":1,"orbitIndex":10,"recipe":["Despair","Despair","Envy"],"connections":[{"orbit":0,"id":44540}],"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","name":"Shredding Contraptions","group":1105,"isNotable":true,"stats":["Enemies affected by your Hazards Recently have 25% reduced Armour","Enemies affected by your Hazards Recently have 25% reduced Evasion Rating"],"skill":14211},"55250":{"orbit":4,"orbitIndex":30,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":-4,"id":56649},{"orbit":4,"id":41669}],"group":749,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":55250},"11433":{"orbit":7,"orbitIndex":0,"stats":["12% increased Fire Damage"],"connections":[{"orbit":-6,"id":24630},{"orbit":0,"id":44753}],"group":104,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":11433},"41580":{"orbit":7,"orbitIndex":2,"recipe":["Despair","Isolation","Ire"],"connections":[{"orbit":3,"id":13799},{"orbit":0,"id":41298}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Maiming Strike","group":1318,"isNotable":true,"stats":["25% increased Attack Damage","Attacks have 25% chance to Maim on Hit"],"skill":41580},"13799":{"orbit":2,"orbitIndex":20,"stats":["8% increased Attack Damage","Debuffs you inflict have 4% increased Slow Magnitude"],"connections":[{"orbit":-3,"id":36576}],"group":1318,"name":"Attack Damage and Slow Effect","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":13799},"53265":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Despair","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Nature's Bite","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1317,"isNotable":true,"stats":["20% increased Elemental Damage","15% increased chance to inflict Ailments"],"skill":53265},"28859":{"orbit":4,"orbitIndex":51,"stats":["10% increased Elemental Damage","6% increased chance to inflict Ailments"],"connections":[{"orbit":0,"id":45382}],"group":1317,"name":"Ailment Chance and Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":28859},"27491":{"orbit":4,"orbitIndex":24,"recipe":["Greed","Paranoia","Isolation"],"connections":[{"orbit":0,"id":3471}],"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Heavy Buffer","group":647,"isNotable":true,"stats":["40% increased maximum Energy Shield","5% of Damage taken bypasses Energy Shield"],"skill":27491},"31647":{"orbit":3,"orbitIndex":12,"stats":["+8 to Dexterity"],"connections":[{"orbit":0,"id":23305}],"group":1316,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":31647},"19338":{"orbit":3,"orbitIndex":0,"stats":["+8 to Dexterity"],"connections":[{"orbit":0,"id":60}],"group":1316,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":19338},"25971":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Tenfold Attacks","group":1158,"isNotable":true,"stats":["4% increased Attack Speed","6% increased Attack Speed if you've been Hit Recently","+10 to Strength"],"skill":25971},"6178":{"orbit":4,"orbitIndex":35,"recipe":["Paranoia","Isolation","Suffering"],"connections":[{"orbit":0,"id":33415}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Power Shots","group":874,"isNotable":true,"stats":["15% reduced Attack Speed with Crossbows","80% increased Critical Damage Bonus with Crossbows"],"skill":6178},"2606":{"orbit":1,"orbitIndex":6,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":47284},{"orbit":0,"id":20388},{"orbit":0,"id":15194},{"orbit":0,"id":3414}],"group":581,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":2606},"37813":{"orbit":0,"orbitIndex":0,"stats":["20% increased Shock Duration"],"connections":[{"orbit":0,"id":14724},{"orbit":0,"id":50701}],"group":1253,"name":"Shock Duration","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":37813},"7604":{"orbit":3,"orbitIndex":8,"recipe":["Ire","Fear","Fear"],"connections":[{"orbit":0,"id":35985},{"orbit":0,"id":19074}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Rapid Strike","group":1314,"isNotable":true,"stats":["+30 to Accuracy Rating","8% increased Melee Attack Speed"],"skill":7604},"48531":{"orbit":1,"orbitIndex":7,"stats":["3% increased Melee Attack Speed"],"connections":[{"orbit":0,"id":13987}],"group":1314,"name":"Melee Attack Speed","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":48531},"13987":{"orbit":2,"orbitIndex":8,"stats":["3% increased Melee Attack Speed"],"connections":[{"orbit":0,"id":7604}],"group":1314,"name":"Melee Attack Speed","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":13987},"56045":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":4,"id":24647},{"orbit":0,"id":11604}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1025,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":56045},"8560":{"orbit":1,"orbitIndex":11,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":31273}],"group":1314,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":8560},"19074":{"orbit":7,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1314,"connections":[],"stats":[],"skill":19074},"36231":{"orbit":2,"orbitIndex":1,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"connections":[{"orbit":0,"id":3336},{"orbit":0,"id":31765}],"group":1341,"name":"Critical Damage when consuming a Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":36231},"517":{"orbit":0,"orbitIndex":0,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":6,"id":39037},{"orbit":9,"id":61027}],"group":778,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":517},"46268":{"orbit":7,"orbitIndex":8,"stats":["20% increased Attack Damage while you have no Life Flask uses left"],"connections":[{"orbit":-5,"id":5324},{"orbit":0,"id":2397}],"group":642,"name":"Attack Damage while no remaining Life Flasks","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":46268},"50767":{"orbit":2,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","name":"Shapeshifting Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":112,"connections":[],"stats":[],"skill":50767},"35564":{"orbit":3,"orbitIndex":0,"recipe":["Fear","Fear","Despair"],"connections":[{"orbit":0,"id":18121},{"orbit":0,"id":65310}],"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Turn the Clock Back","group":1134,"isNotable":true,"stats":["15% increased Spell Damage","10% reduced Projectile Speed for Spell Skills"],"skill":35564},"18505":{"orbit":7,"orbitIndex":16,"recipe":["Envy","Suffering","Ire"],"connections":[{"orbit":0,"id":45090},{"orbit":0,"id":50616}],"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Crushing Verdict","group":249,"isNotable":true,"stats":["5% reduced Attack Speed","30% increased Stun Buildup","50% increased Attack Damage"],"skill":18505},"50403":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1311,"connections":[],"stats":[],"skill":50403},"20429":{"orbit":6,"orbitIndex":62,"stats":["3% increased Attack Speed with Daggers"],"connections":[{"orbit":0,"id":28797}],"group":1394,"name":"Dagger Speed","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":20429},"14926":{"orbit":3,"orbitIndex":20,"stats":["Regenerate 0.2% of maximum Life per second"],"connections":[{"orbit":0,"id":50609},{"orbit":-6,"id":56910}],"group":767,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":14926},"8734":{"orbit":2,"orbitIndex":14,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":52743}],"group":1309,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":8734},"58157":{"orbit":7,"orbitIndex":17,"stats":["20% increased Stun Recovery"],"connections":[{"orbit":0,"id":61149}],"group":1235,"name":"Stun Recovery","icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","skill":58157},"4017":{"orbit":2,"orbitIndex":12,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":10079}],"group":777,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":4017},"4378":{"orbit":7,"orbitIndex":9,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":6330},{"orbit":0,"id":59503}],"group":1260,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":4378},"63762":{"orbit":2,"orbitIndex":2,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":44522}],"group":1309,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":63762},"61601":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Disgust"],"connections":[{"orbit":0,"id":44420},{"orbit":0,"id":9586}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"True Strike","group":1142,"isNotable":true,"stats":["+10 to Dexterity","20% increased Critical Hit Chance"],"skill":61601},"52191":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Isolation","Guilt"],"connections":[{"orbit":-7,"id":57724}],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Event Horizon","group":1187,"isNotable":true,"stats":["53% increased Chaos Damage","Lose 3% of maximum Life and Energy Shield when you use a Chaos Skill"],"skill":52191},"61196":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":5,"id":56045},{"orbit":0,"id":13419}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1042,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":61196},"50228":{"orbit":3,"orbitIndex":10,"stats":["10% increased Fire Damage"],"connections":[{"orbit":0,"id":20511}],"group":222,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","skill":50228},"42035":{"orbit":2,"orbitIndex":15,"connections":[],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds","name":"Inevitability","ascendancyName":"Chronomancer","group":347,"isNotable":true,"stats":["Grants Skill: Inevitable Agony"],"skill":42035},"11463":{"orbit":2,"orbitIndex":1,"stats":["25% reduced Presence Area of Effect"],"connections":[],"group":1307,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","skill":11463},"34290":{"orbit":2,"orbitIndex":4,"stats":["10% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":57832}],"group":685,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":34290},"33348":{"orbit":2,"orbitIndex":7,"stats":["25% increased Presence Area of Effect"],"connections":[],"group":1307,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","skill":33348},"61973":{"orbit":6,"orbitIndex":44,"connections":[{"orbit":0,"id":40719}],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds","name":"Pitiless Killer","ascendancyName":"Witchhunter","group":271,"isNotable":true,"stats":["Culling Strike"],"skill":61973},"7809":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Fear","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Wild Storm","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1305,"isNotable":true,"stats":["Gain 4% of Damage as Extra Cold Damage","Gain 4% of Damage as Extra Lightning Damage","+10 to Dexterity"],"skill":7809},"1514":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1304,"connections":[{"orbit":0,"id":29527}],"stats":[],"skill":1514},"60560":{"orbit":0,"orbitIndex":0,"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"connections":[{"orbit":-3,"id":29527}],"group":1303,"name":"Damage vs Full Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":60560},"28371":{"orbit":7,"orbitIndex":16,"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"connections":[{"orbit":-3,"id":60560}],"group":1303,"name":"Damage vs Full Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":28371},"34908":{"orbit":3,"orbitIndex":8,"recipe":["Guilt","Despair","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Staunch Deflection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1302,"isNotable":true,"stats":["Deflected Hits cannot inflict Maim on you","Deflected Hits cannot inflict Bleeding on you"],"skill":34908},"37951":{"orbit":1,"orbitIndex":7,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":41020}],"group":1302,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":37951},"37876":{"orbit":4,"orbitIndex":45,"stats":["10% increased Spell Damage"],"connections":[{"orbit":3,"id":52615},{"orbit":-3,"id":25729}],"group":1300,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":37876},"25729":{"orbit":7,"orbitIndex":12,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":33093}],"group":1300,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":25729},"52615":{"orbit":7,"orbitIndex":18,"stats":["Spell Skills have 6% increased Area of Effect"],"connections":[],"group":1300,"name":"Spell Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":52615},"50104":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":47168},{"orbit":0,"id":37594},{"orbit":0,"id":7960},{"orbit":0,"id":46742}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":467,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":50104},"24656":{"orbit":0,"orbitIndex":0,"stats":["15% increased Evasion Rating while Sprinting","2% increased Movement Speed while Sprinting"],"connections":[{"orbit":0,"id":54152},{"orbit":0,"id":15814}],"group":1299,"name":"Evasion and Movement Speed while Sprinting","icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","skill":24656},"43633":{"orbit":7,"orbitIndex":17,"recipe":["Isolation","Paranoia","Envy"],"connections":[{"orbit":0,"id":10841}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Energising Archon","group":1051,"isNotable":true,"stats":["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"],"skill":43633},"43082":{"orbit":2,"orbitIndex":20,"recipe":["Fear","Envy","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Acceleration","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1297,"isNotable":true,"stats":["3% increased Movement Speed","10% increased Skill Speed"],"skill":43082},"36759":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1129,"connections":[],"stats":[],"skill":36759},"934":{"orbit":4,"orbitIndex":63,"recipe":["Greed","Suffering","Paranoia"],"connections":[{"orbit":-4,"id":12526}],"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Natural Immunity","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","group":729,"isNotable":true,"stats":["+4 to Ailment Threshold per Dexterity"],"skill":934},"35534":{"orbit":2,"orbitIndex":15,"stats":["Mark Skills have 10% increased Use Speed"],"connections":[{"orbit":-3,"id":44280}],"group":1296,"name":"Mark Use Speed","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":35534},"4579":{"orbit":2,"orbitIndex":4,"recipe":["Fear","Isolation","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Unbothering Cold","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":865,"isNotable":true,"stats":["+10% to Cold Resistance","+2% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed"],"skill":4579},"30082":{"orbit":0,"orbitIndex":0,"stats":["15% increased Crossbow Reload Speed"],"connections":[{"orbit":0,"id":43155}],"group":887,"name":"Crossbow Reload Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":30082},"11472":{"orbit":2,"orbitIndex":8,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"connections":[{"orbit":0,"id":19880},{"orbit":0,"id":40270}],"group":1145,"name":"Evasion if Consumed Frenzy Charge","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":11472},"51602":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Unsight","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","group":1296,"isNotable":true,"stats":["Enemies near Enemies you Mark are Blinded","Enemies you Mark cannot deal Critical Hits"],"skill":51602},"5797":{"orbit":2,"orbitIndex":2,"stats":["8% increased Cold Damage","8% increased Freeze Buildup"],"connections":[{"orbit":0,"id":59538}],"group":1295,"name":"Freeze Buildup and Cold Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":5797},"10774":{"orbit":2,"orbitIndex":0,"recipe":["Disgust","Envy","Disgust"],"connections":[{"orbit":0,"id":35863}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Unyielding","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":424,"isNotable":true,"stats":["15% increased Attack Speed if you've been Hit Recently","8% reduced Slowing Potency of Debuffs on You"],"skill":10774},"43338":{"orbit":2,"orbitIndex":10,"stats":["8% increased Lightning Damage","8% increased chance to Shock"],"connections":[{"orbit":0,"id":56767}],"group":1295,"name":"Shock Chance and Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":43338},"19461":{"orbit":3,"orbitIndex":16,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"connections":[{"orbit":0,"id":64415}],"group":1295,"name":"Lightning and Cold Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":19461},"11666":{"orbit":2,"orbitIndex":17,"connections":[{"orbit":2147483647,"id":60708}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Reduced Movement Penalty","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["6% reduced Movement Speed Penalty from using Skills while moving"],"skill":11666},"24070":{"orbit":0,"orbitIndex":0,"stats":["+8 to Dexterity"],"connections":[{"orbit":0,"id":58397}],"group":1294,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":24070},"17854":{"orbit":4,"orbitIndex":0,"recipe":["Greed","Disgust","Suffering"],"connections":[{"orbit":7,"id":55275}],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Escape Velocity","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1177,"isNotable":true,"stats":["3% increased Movement Speed","30% increased Evasion Rating"],"skill":17854},"39881":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Despair"],"connections":[{"orbit":0,"id":16013},{"orbit":0,"id":35173}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Staggering Palm","group":1293,"isNotable":true,"stats":["20% increased Critical Damage Bonus","20% increased Knockback Distance","20% increased Physical Damage"],"skill":39881},"50328":{"orbit":3,"orbitIndex":23,"stats":["10% increased Life and Mana Recovery from Flasks"],"connections":[{"orbit":0,"id":28992},{"orbit":0,"id":10053}],"group":922,"name":"Life and Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":50328},"1416":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1290,"connections":[],"stats":[],"skill":1416},"16140":{"orbit":2,"orbitIndex":10,"stats":["5% chance to Daze on Hit"],"connections":[{"orbit":0,"id":16013}],"group":1289,"name":"Daze on Hit","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":16140},"16013":{"orbit":7,"orbitIndex":6,"stats":["5% chance to Daze on Hit"],"connections":[{"orbit":0,"id":41811}],"group":1289,"name":"Daze on Hit","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":16013},"33254":{"orbit":2,"orbitIndex":1,"stats":["10% increased Spell Damage"],"connections":[],"group":726,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":33254},"64050":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Marathon Runner","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1287,"isNotable":true,"stats":["12% increased Movement Speed while Sprinting"],"skill":64050},"12239":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","name":"Physical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":1286,"connections":[{"orbit":0,"id":39881},{"orbit":0,"id":41811}],"stats":[],"skill":12239},"8827":{"orbit":7,"orbitIndex":11,"recipe":["Suffering","Isolation","Suffering"],"connections":[{"orbit":0,"id":16691},{"orbit":0,"id":28862}],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Fast Metabolism","group":422,"isNotable":true,"stats":["Life Leech effects are not removed when Unreserved Life is Filled"],"skill":8827},"13482":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Guilt","Greed"],"connections":[{"orbit":0,"id":30136},{"orbit":0,"id":15892}],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","name":"Punctured Lung","group":193,"isNotable":true,"stats":["Enemies you Fully Armour Break cannot Regenerate Life","Enemies you Fully Armour Break are Maimed"],"skill":13482},"44490":{"orbit":0,"orbitIndex":0,"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":43090}],"group":1285,"name":"Lightning Damage and Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":44490},"65265":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Envy","Greed"],"connections":[{"orbit":0,"id":17146},{"orbit":0,"id":31366}],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Swift Interruption","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","group":1284,"isNotable":true,"stats":["12% increased Attack Speed if you've successfully Parried Recently","6% increased Movement Speed if you've successfully Parried Recently"],"skill":65265},"16861":{"orbit":3,"orbitIndex":22,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":-5,"id":27303}],"group":327,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":16861},"14343":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Paranoia","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Deterioration","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","group":1035,"isNotable":true,"stats":["Damaging Ailments Cannot Be inflicted on you while you already have one","20% increased Magnitude of Damaging Ailments you inflict"],"skill":14343},"57518":{"orbit":2,"orbitIndex":23,"stats":["20% increased Parry Damage"],"connections":[{"orbit":4,"id":31366}],"group":1284,"name":"Parry Damage","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":57518},"18308":{"orbit":4,"orbitIndex":48,"recipe":["Despair","Suffering","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Out","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":716,"isNotable":true,"stats":["+250 to Accuracy against Bleeding Enemies","Bleeding you inflict deals Damage 10% faster"],"skill":18308},"41770":{"orbit":2,"orbitIndex":13,"stats":["6% increased Parried Debuff Magnitude","8% increased Parry Hit Area of Effect"],"connections":[{"orbit":0,"id":33080},{"orbit":0,"id":9441},{"orbit":0,"id":16484}],"group":996,"name":"Parry Area and Debuff Magnitude","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":41770},"17146":{"orbit":3,"orbitIndex":5,"stats":["20% increased Parry Damage"],"connections":[{"orbit":4,"id":57518},{"orbit":-4,"id":3843}],"group":1284,"name":"Parry Damage","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":17146},"49046":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":8569}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":897,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":49046},"11604":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":17088},{"orbit":0,"id":29408},{"orbit":0,"id":52765}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1075,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":11604},"16329":{"orbit":2,"orbitIndex":2,"stats":["5% reduced Flask Charges used"],"connections":[{"orbit":-2,"id":39607}],"group":1282,"name":"Flask Charges Used","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":16329},"2559":{"orbit":2,"orbitIndex":22,"stats":["10% increased Flask Charges gained"],"connections":[{"orbit":7,"id":62542}],"group":1282,"name":"Flask Charges Gained","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":2559},"43453":{"orbit":0,"orbitIndex":0,"stats":["3% increased Movement Speed while Sprinting"],"connections":[{"orbit":0,"id":64050}],"group":1281,"name":"Sprint Movement Speed","icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","skill":43453},"24889":{"orbit":7,"orbitIndex":2,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Companion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","group":1280,"connections":[],"stats":[],"skill":24889},"51683":{"orbit":2,"orbitIndex":22,"stats":["15% increased Totem Damage"],"connections":[],"group":363,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":51683},"34898":{"orbit":5,"orbitIndex":31,"stats":["Debuffs on you expire 10% faster"],"connections":[{"orbit":0,"id":38463}],"group":1159,"name":"Debuff Expiry","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":34898},"33585":{"orbit":3,"orbitIndex":7,"recipe":["Greed","Despair","Envy"],"connections":[{"orbit":0,"id":24889}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Unspoken Bond","group":1280,"isNotable":true,"stats":["Companions have +30% to Chaos Resistance","Companions have +30% to all Elemental Resistances"],"skill":33585},"41646":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":48670},{"orbit":0,"id":14091},{"orbit":0,"id":17867}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":639,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":41646},"31826":{"orbit":3,"orbitIndex":21,"recipe":["Guilt","Envy","Paranoia"],"connections":[{"orbit":0,"id":24889}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Long Distance Relationship","group":1280,"isNotable":true,"stats":["30% increased Presence Area of Effect","Minions have 15% increased Area of Effect"],"skill":31826},"63246":{"orbit":4,"orbitIndex":12,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"connections":[{"orbit":-7,"id":33585}],"group":1280,"name":"Ailment Threshold and Companion Resistance","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":63246},"23265":{"orbit":9,"orbitIndex":38,"connections":[{"orbit":8,"id":13289}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds","name":"Kelari's Deception","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":23265},"36976":{"orbit":3,"orbitIndex":9,"recipe":["Isolation","Suffering","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Marked for Death","group":1279,"isNotable":true,"stats":["Culling Strike against Enemies you Mark"],"skill":36976},"28258":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":36976},{"orbit":0,"id":59064},{"orbit":2,"id":36927}],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","group":1279,"stats":["10% increased Effect of your Mark Skills"],"skill":28258},"45602":{"orbit":7,"orbitIndex":7,"connections":[{"orbit":-9,"id":32705}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds","name":"Navira's Oasis","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":45602},"59064":{"orbit":3,"orbitIndex":21,"stats":["10% increased Effect of your Mark Skills"],"connections":[],"group":1279,"name":"Mark Effect","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":59064},"39659":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":37782}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Spell Damage","ascendancyName":"Oracle","group":14,"stats":["12% increased Spell Damage"],"skill":39659},"338":{"orbit":1,"orbitIndex":6,"recipe":["Isolation","Ire","Greed"],"connections":[{"orbit":0,"id":20140}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocated Limit","group":870,"isNotable":true,"stats":["Invocated skills have 30% increased Maximum Energy"],"skill":338},"60138":{"orbit":5,"orbitIndex":3,"recipe":["Greed","Paranoia","Suffering"],"connections":[{"orbit":0,"id":52695}],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Stylebender","group":1172,"isNotable":true,"stats":["Hits Break 30% increased Armour on targets with Ailments","+10 to Strength","25% increased Physical Damage"],"skill":60138},"8904":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Fear","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","name":"Death from Afar","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1278,"isNotable":true,"stats":["Projectiles have 25% increased Critical Hit Chance against Enemies further than 6m","Projectiles deal 25% increased Damage with Hits against Enemies further than 6m"],"skill":8904},"30736":{"orbit":2,"orbitIndex":13,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":-2,"id":52180}],"group":1398,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":30736},"46535":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds","name":"No Mercy","ascendancyName":"Witchhunter","group":273,"isNotable":true,"stats":["Deal up to 40% more Damage to Enemies based on their missing Concentration"],"skill":46535},"10648":{"orbit":4,"orbitIndex":54,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"connections":[{"orbit":0,"id":26400}],"group":1278,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":10648},"2408":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35696},{"orbit":0,"id":35534}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1276,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":2408},"63888":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35901},{"orbit":0,"id":61356},{"orbit":0,"id":26068}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1103,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":63888},"60014":{"orbit":7,"orbitIndex":16,"connections":[{"orbit":0,"id":38474}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Scent of Blood","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":515,"connectionArt":"CharacterPlanned","stats":["3% increased Movement Speed","20% increased Bleeding Duration","40% chance for Attack Hits to apply Incision"],"skill":60014},"31925":{"orbit":7,"orbitIndex":8,"recipe":["Fear","Suffering","Envy"],"connections":[{"orbit":5,"id":24767}],"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Warding Fetish","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":406,"isNotable":true,"stats":["30% increased Damage per Curse on you","30% reduced effect of Curses on you","60% increased Energy Shield from Equipped Focus"],"skill":31925},"30141":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":55190}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":120,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":30141},"11736":{"orbit":4,"orbitIndex":36,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":62677}],"group":827,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":11736},"39241":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-4,"id":58932}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Energy Shield","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":59609,"stats":["20% increased maximum Energy Shield"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Energy Shield"}},"group":1097,"isSwitchable":true,"stats":["20% increased maximum Energy Shield"],"skill":39241},"54099":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":8493},{"orbit":0,"id":2847},{"orbit":0,"id":55700}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":675,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54099},"25029":{"orbit":5,"orbitIndex":51,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","name":"Charms Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","group":1270,"connections":[],"stats":[],"skill":25029},"48462":{"orbit":7,"orbitIndex":15,"stats":["Charms applied to you have 10% increased Effect"],"connections":[{"orbit":5,"id":11094},{"orbit":5,"id":62803}],"group":1270,"name":"Charm Effect","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":48462},"31991":{"orbit":7,"orbitIndex":15,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":36070}],"group":1046,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":31991},"1104":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Guilt","Guilt"],"connections":[{"orbit":0,"id":56876}],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Lust for Power","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":312,"isNotable":true,"stats":["10% chance when you gain a Power Charge to gain an additional Power Charge","+1 to Maximum Power Charges"],"skill":1104},"4725":{"orbit":4,"orbitIndex":63,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":4140}],"group":257,"name":"Sentinels","icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":4725},"26107":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Isolation","Despair"],"connections":[{"orbit":7,"id":33713},{"orbit":0,"id":56023}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Kite Runner","group":1267,"isNotable":true,"stats":["3% increased Movement Speed","15% increased Projectile Speed","15% increased Projectile Damage"],"skill":26107},"13777":{"orbit":2,"orbitIndex":15,"stats":["10% increased Power Charge Duration","10% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"connections":[{"orbit":0,"id":38532}],"group":206,"name":"Power Charge Duration and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":13777},"40328":{"orbit":3,"orbitIndex":3,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":-5,"id":28564}],"group":190,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":40328},"33713":{"orbit":2,"orbitIndex":17,"stats":["8% increased Projectile Speed"],"connections":[{"orbit":-2,"id":57462}],"group":1267,"name":"Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":33713},"21081":{"orbit":5,"orbitIndex":42,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":5,"id":25745}],"group":610,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":21081},"53771":{"orbit":3,"orbitIndex":9,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":-2,"id":52361}],"group":1267,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":53771},"35426":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":6,"id":8406}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":580,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":35426},"16647":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":529,"connections":[],"stats":[],"skill":16647},"50277":{"orbit":0,"orbitIndex":0,"stats":["15% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":50701}],"group":1265,"name":"Shock Effect","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":50277},"56023":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1263,"connections":[],"stats":[],"skill":56023},"5501":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":48821}],"icon":"Art/2DArt/SkillIcons/passives/Annihilation.dds","name":"Critical Overload","group":744,"isNotable":true,"stats":["15% increased Critical Hit Chance for Spells","15% increased Spell Damage if you've dealt a Critical Hit Recently"],"skill":5501},"53266":{"orbit":0,"orbitIndex":0,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"connections":[{"orbit":0,"id":13576},{"orbit":0,"id":20387},{"orbit":0,"id":53560}],"group":911,"name":"Lightning Skill Speed","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":53266},"34497":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds","name":"Heartstopper","group":1262,"isKeystone":true,"stats":["Take 50% less Damage over Time if you've started taking Damage over Time in the past second","Take 50% more Damage over Time if you haven't started taking Damage over Time in the past second"],"skill":34497},"8305":{"orbit":6,"orbitIndex":0,"connections":[{"orbit":-8,"id":9843},{"orbit":-8,"id":56783},{"orbit":-9,"id":13289},{"orbit":0,"id":32705},{"orbit":9,"id":34207},{"orbit":8,"id":30265},{"orbit":8,"id":35880}],"nodeOverlay":{"path":"Disciple of VarashtaFrameSmallCanAllocate","alloc":"Disciple of VarashtaFrameSmallAllocated","unalloc":"Disciple of VarashtaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Disciple of Varashta","ascendancyName":"Disciple of Varashta","isAscendancyStart":true,"group":593,"stats":[],"skill":8305},"52351":{"orbit":2,"orbitIndex":12,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":0,"id":52260}],"group":1039,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":52351},"54228":{"orbit":2,"orbitIndex":2,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":64240}],"group":212,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":54228},"33556":{"orbit":7,"orbitIndex":2,"stats":["8% increased Melee Damage"],"connections":[{"orbit":0,"id":55473}],"group":614,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":33556},"38053":{"orbit":3,"orbitIndex":13,"recipe":["Disgust","Guilt","Paranoia"],"connections":[{"orbit":5,"id":28564},{"orbit":0,"id":8460},{"orbit":-2,"id":9528}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Deafening Cries","group":190,"isNotable":true,"stats":["25% increased Warcry Cooldown Recovery Rate","8% increased Damage for each time you've Warcried Recently"],"skill":38053},"3438":{"orbit":3,"orbitIndex":3,"stats":["Invocated Spells deal 15% increased Damage"],"connections":[{"orbit":0,"id":18856}],"group":870,"name":"Invocation Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":3438},"13715":{"orbit":5,"orbitIndex":44,"connections":[{"orbit":0,"id":59372}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Stun Buildup","ascendancyName":"Titan","group":77,"stats":["18% increased Stun Buildup"],"skill":13715},"24646":{"orbit":3,"orbitIndex":18,"stats":["+12 to Strength"],"connections":[{"orbit":0,"id":61409}],"group":213,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":24646},"13909":{"orbit":2,"orbitIndex":18,"stats":["Remnants can be collected from 20% further away"],"connections":[{"orbit":0,"id":31037},{"orbit":0,"id":62679}],"group":791,"name":"Remnant Pickup Range","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":13909},"26697":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds","name":"Sword Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern","group":535,"connections":[{"orbit":0,"id":59263},{"orbit":0,"id":27290},{"orbit":0,"id":46565}],"stats":[],"skill":26697},"6529":{"orbit":2,"orbitIndex":0,"stats":["15% increased Armour"],"connections":[{"orbit":-3,"id":32416}],"group":579,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":6529},"19722":{"orbit":7,"orbitIndex":10,"recipe":["Suffering","Ire","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Thin Ice","group":1193,"isNotable":true,"stats":["20% increased Freeze Buildup","50% increased Damage with Hits against Frozen Enemies"],"skill":19722},"35048":{"orbit":2,"orbitIndex":12,"stats":["10% increased Critical Hit Chance for Attacks"],"connections":[{"orbit":0,"id":43650}],"group":223,"name":"Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":35048},"57945":{"orbit":7,"orbitIndex":12,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":7412}],"group":1190,"name":"Life Flask Charge Generation","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":57945},"49291":{"orbit":7,"orbitIndex":9,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":57945}],"group":1190,"name":"Life Flask Charge Generation","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":49291},"51812":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":233,"connections":[],"stats":[],"skill":51812},"39640":{"orbit":5,"orbitIndex":70,"connections":[],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds","name":"Shaper of Storms","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["All Damage from Hits Contributes to Shock Chance"],"skill":39640},"34084":{"orbit":1,"orbitIndex":4,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","name":"Duration Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","group":604,"connections":[],"stats":[],"skill":34084},"48116":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":21112},{"orbit":0,"id":34015},{"orbit":0,"id":10472},{"orbit":0,"id":18624}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1359,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48116},"20782":{"orbit":3,"orbitIndex":8,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":-3,"id":52191},{"orbit":0,"id":42361}],"group":1206,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":20782},"49049":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds","name":"Apex of the Moment","ascendancyName":"Chronomancer","group":379,"isNotable":true,"stats":["Enemies in your Presence are Slowed by 20%"],"skill":49049},"51921":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":-4,"id":36629}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":607,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":51921},"64139":{"orbit":2,"orbitIndex":10,"connections":[{"orbit":-5,"id":22221},{"orbit":0,"id":15842}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Friend to Many","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"],"skill":64139},"31010":{"orbit":4,"orbitIndex":23,"stats":["15% faster start of Energy Shield Recharge while Shapeshifted"],"connections":[],"group":201,"name":"Shapeshifted Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":31010},"12005":{"orbit":2,"orbitIndex":23,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","name":"Shapeshifting Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":201,"connections":[],"stats":[],"skill":12005},"59881":{"orbit":6,"orbitIndex":16,"connections":[{"orbit":0,"id":54417},{"orbit":-5,"id":28556}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":771,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59881},"23005":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":10072}],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds","name":"Renly's Training","ascendancyName":"Warbringer","group":54,"isNotable":true,"stats":["Gain 35% Base Chance to Block from Equipped Shield instead of the Shield's value"],"skill":23005},"11330":{"orbit":3,"orbitIndex":6,"stats":["Debuffs on you expire 10% faster"],"connections":[{"orbit":0,"id":22185}],"group":590,"name":"Debuff Expiry Rate","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":11330},"15194":{"orbit":0,"orbitIndex":0,"stats":["Minions have +20% to Fire Resistance"],"connections":[{"orbit":0,"id":25303}],"group":569,"name":"Minion Fire Resistance","icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","skill":15194},"31388":{"orbit":3,"orbitIndex":7,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":51394}],"group":282,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":31388},"58789":{"orbit":4,"orbitIndex":20,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":13307}],"group":591,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":58789},"24855":{"orbit":4,"orbitIndex":58,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":208,"connections":[{"orbit":0,"id":39347},{"orbit":0,"id":48014}],"stats":[],"skill":24855},"49370":{"orbit":2,"orbitIndex":18,"connections":[{"orbit":0,"id":6502}],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Morning Star","group":169,"isNotable":true,"stats":["30% increased Critical Hit Chance with Flails","20% increased Critical Damage Bonus with Flails"],"skill":49370},"4547":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Isolation","Isolation"],"connections":[{"orbit":0,"id":2946}],"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","name":"Unnatural Resilience","group":238,"isNotable":true,"stats":["+3% to all Elemental Resistances","+2% to Maximum Fire Resistance if you have at least 5 Red Support Gems Socketed"],"skill":4547},"12000":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TitanFrameLargeCanAllocate","alloc":"TitanFrameLargeAllocated","unalloc":"TitanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds","name":"Mysterious Lineage","ascendancyName":"Titan","group":78,"isNotable":true,"stats":["15% more Maximum Life"],"skill":12000},"59425":{"orbit":7,"orbitIndex":16,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":23939}],"group":591,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":59425},"60269":{"orbit":7,"orbitIndex":19,"recipe":["Disgust","Greed","Ire"],"connections":[{"orbit":0,"id":6588}],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Roil","group":819,"isNotable":true,"stats":["10% reduced Spell Area Damage","Spell Skills have 25% increased Area of Effect"],"skill":60269},"8460":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":190,"connections":[],"stats":[],"skill":8460},"61863":{"orbit":3,"orbitIndex":6,"stats":["8% increased Energy Shield Recharge Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":42045}],"group":700,"name":"Cold Damage and Energy Shield Recharge Rate","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":61863},"48614":{"orbit":7,"orbitIndex":1,"stats":["20% increased Presence Area of Effect","3% reduced Area of Effect"],"connections":[{"orbit":2,"id":9018}],"group":525,"name":"Area and Presence","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":48614},"63713":{"orbit":9,"orbitIndex":43,"connections":[{"orbit":-4,"id":57181}],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds","name":"Sunder my Enemies...","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Critical Hits ignore non-negative Enemy Monster Elemental Resistances"],"skill":63713},"28745":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds","name":"Bringer of the Apocalypse","ascendancyName":"Shaman","group":72,"isNotable":true,"stats":["Grants Skill: Apocalypse"],"skill":28745},"57626":{"orbit":7,"orbitIndex":16,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"connections":[{"orbit":0,"id":36782}],"group":785,"name":"Cold and Fire Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":57626},"18397":{"orbit":3,"orbitIndex":5,"recipe":["Despair","Ire","Ire"],"connections":[{"orbit":0,"id":55063},{"orbit":0,"id":4139}],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Savoured Blood","group":137,"isNotable":true,"stats":["35% increased amount of Life Leeched","Leech Life 20% slower"],"skill":18397},"18448":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":30141},{"orbit":0,"id":6872},{"orbit":0,"id":30457},{"orbit":0,"id":59039}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":153,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":18448},"3628":{"orbit":2,"orbitIndex":19,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":64474},{"orbit":0,"id":3251}],"group":1101,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":3628},"40453":{"orbit":7,"orbitIndex":9,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":0,"id":25304}],"group":1174,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":40453},"10681":{"orbit":4,"orbitIndex":0,"recipe":["Disgust","Fear","Isolation"],"connections":[{"orbit":5,"id":27581},{"orbit":0,"id":58138}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Defensive Stance","group":117,"isNotable":true,"stats":["+4% to maximum Block chance"],"skill":10681},"45481":{"orbit":2,"orbitIndex":16,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":52765}],"group":1059,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":45481},"26300":{"orbit":5,"orbitIndex":33,"connections":[{"orbit":-4,"id":23436}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":243,"connectionArt":"CharacterPlanned","stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"skill":26300},"43090":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electrotherapy","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1310,"isNotable":true,"stats":["5% increased Skill Speed","30% increased Electrocute Buildup"],"skill":43090},"45576":{"orbit":7,"orbitIndex":3,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":790,"connections":[],"stats":[],"skill":45576},"19767":{"orbit":4,"orbitIndex":10,"stats":["3% increased Attack Speed with Spears"],"connections":[{"orbit":0,"id":35223},{"orbit":0,"id":13895}],"group":1322,"name":"Spear Attack Speed","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":19767},"43263":{"orbit":7,"orbitIndex":13,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"connections":[{"orbit":-2,"id":64492}],"group":1144,"name":"One Handed Attack Speed","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":43263},"21606":{"orbit":3,"orbitIndex":12,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":2606},{"orbit":0,"id":29148}],"group":581,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":21606},"29098":{"orbit":2,"orbitIndex":8,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"connections":[{"orbit":0,"id":43588},{"orbit":-2,"id":10727}],"group":165,"name":"Attack and Spell Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":29098},"36408":{"orbit":5,"orbitIndex":0,"connections":[{"orbit":0,"id":31757}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Deadly Thorns","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":177,"connectionArt":"CharacterPlanned","stats":["35% increased Physical Damage"],"skill":36408},"42177":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Ire"],"connections":[{"orbit":3,"id":11153}],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Blurred Motion","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":603,"isNotable":true,"stats":["5% increased Attack Speed","10% increased Accuracy Rating","5% increased Dexterity"],"skill":42177},"9417":{"orbit":0,"orbitIndex":0,"stats":["16% increased Totem Life"],"connections":[{"orbit":-6,"id":48121},{"orbit":5,"id":13171}],"group":447,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":9417},"49537":{"orbit":3,"orbitIndex":16,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"connections":[],"group":343,"name":"Speed with Elemental Skills","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":49537},"47591":{"orbit":2,"orbitIndex":16,"stats":["3% of Damage taken Recouped as Mana"],"connections":[{"orbit":-2,"id":9226}],"group":509,"name":"Mana Recoup","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":47591},"33053":{"orbit":7,"orbitIndex":22,"stats":["10% increased Projectile Damage"],"connections":[],"group":908,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":33053},"17330":{"orbit":2,"orbitIndex":23,"recipe":["Greed","Greed","Suffering"],"connections":[{"orbit":0,"id":61927}],"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Perforation","group":283,"isNotable":true,"stats":["20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground","40% increased Jagged Ground Duration"],"skill":17330},"44787":{"orbit":7,"orbitIndex":14,"stats":["20% increased Totem Placement speed"],"connections":[{"orbit":0,"id":14654},{"orbit":0,"id":49192},{"orbit":-4,"id":51683}],"group":363,"name":"Totem Placement Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":44787},"26176":{"orbit":2,"orbitIndex":8,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"connections":[{"orbit":0,"id":43650}],"group":223,"name":"Attack Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":26176},"17625":{"orbit":7,"orbitIndex":9,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":-5,"id":10873}],"group":313,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":17625},"18629":{"orbit":3,"orbitIndex":0,"stats":["5% increased Block chance"],"connections":[{"orbit":0,"id":64327}],"group":567,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":18629},"56284":{"orbit":0,"orbitIndex":0,"stats":["Minions have 5% increased Attack and Cast Speed"],"connections":[{"orbit":-2,"id":1928}],"group":508,"name":"Minion Attack and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":56284},"42059":{"orbit":4,"orbitIndex":60,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":3,"id":36333}],"group":222,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":42059},"17999":{"orbit":7,"orbitIndex":4,"stats":["8% increased Warcry Speed","6% increased Warcry Cooldown Recovery Rate"],"connections":[{"orbit":0,"id":51561},{"orbit":0,"id":42026},{"orbit":0,"id":63979}],"group":292,"name":"Warcry Cooldown and Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":17999},"30132":{"orbit":7,"orbitIndex":15,"recipe":["Greed","Suffering","Envy"],"connections":[{"orbit":2147483647,"id":58416},{"orbit":2147483647,"id":49130}],"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Wrapped Quiver","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":1252,"isNotable":true,"stats":["20% increased bonuses gained from Equipped Quiver"],"skill":30132},"42441":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds","name":"Surging Avatar","ascendancyName":"Amazon","group":1461,"isNotable":true,"stats":["When you Consume a Charge, Trigger Elemental Surge to gain 2 Fire Surges","When you Consume a Charge, Trigger Elemental Surge to gain 2 Cold Surges","Gain 1 fewer Lightning Surge from Triggering Elemental Surge"],"skill":42441},"50558":{"orbit":4,"orbitIndex":60,"connections":[{"orbit":0,"id":32194},{"orbit":0,"id":12462}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","options":{"Druid":{"stats":["8% increased Damage"],"id":36908,"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","name":"Damage"}},"group":551,"isSwitchable":true,"stats":["Aura Skills have 5% increased Magnitudes"],"skill":50558},"36358":{"orbit":3,"orbitIndex":4,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":0,"id":12367}],"group":678,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":36358},"6744":{"orbit":6,"orbitIndex":6,"connections":[{"orbit":0,"id":49357},{"orbit":0,"id":483}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":551,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":6744},"20496":{"orbit":3,"orbitIndex":6,"connections":[{"orbit":2147483647,"id":11984}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["15% increased Physical Damage"],"skill":20496},"59777":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":10362},{"orbit":0,"id":17791},{"orbit":0,"id":13937},{"orbit":0,"id":53719}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":148,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":59777},"29009":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":59362}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":739,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":29009},"38965":{"orbit":7,"orbitIndex":21,"recipe":["Greed","Isolation","Paranoia"],"connections":[{"orbit":0,"id":65226}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Infused Limits","group":427,"isNotable":true,"stats":["+1 to maximum number of Elemental Infusions"],"skill":38965},"10247":{"orbit":6,"orbitIndex":51,"connections":[{"orbit":0,"id":28370}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":751,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":10247},"20916":{"orbit":7,"orbitIndex":8,"recipe":["Envy","Fear","Envy"],"connections":[{"orbit":0,"id":59355}],"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Blinding Strike","group":1115,"isNotable":true,"stats":["24% increased Attack Damage","10% chance to Blind Enemies on Hit with Attacks"],"skill":20916},"49547":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds","name":"Scarred Faith","group":412,"isKeystone":true,"stats":["5% of Physical Damage prevented Recouped as Energy Shield per enemy Power","Energy Shield does not Recharge","You cannot Recover Energy Shield from Regeneration","You cannot Recover Energy Shield to above Armour"],"skill":49547},"27950":{"orbit":2,"orbitIndex":0,"recipe":["Paranoia","Guilt","Despair"],"connections":[{"orbit":0,"id":26324},{"orbit":0,"id":52462}],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Polished Iron","group":452,"isNotable":true,"stats":["25% increased Armour","Gain additional Stun Threshold equal to 30% of Item Armour on Equipped Armour Items"],"skill":27950},"20677":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Guilt"],"connections":[{"orbit":0,"id":9586},{"orbit":0,"id":535}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"For the Jugular","group":1109,"isNotable":true,"stats":["25% increased Critical Damage Bonus","+10 to Intelligence"],"skill":20677},"36746":{"orbit":3,"orbitIndex":16,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":-3,"id":40691}],"group":759,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":36746},"9324":{"orbit":3,"orbitIndex":21,"stats":["8% increased Ignite Duration on Enemies"],"connections":[],"group":175,"name":"Ignite Duration","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":9324},"872":{"orbit":2,"orbitIndex":17,"stats":["8% increased Global Defences while Channelling"],"connections":[{"orbit":0,"id":36556}],"group":265,"name":"Channelling Defences","icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","skill":872},"32660":{"orbit":2,"orbitIndex":21,"stats":["10% increased Critical Hit Chance if you have Killed Recently"],"connections":[],"group":545,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":32660},"1170":{"orbit":3,"orbitIndex":22,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":0,"id":58295}],"group":285,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":1170},"752":{"orbit":2,"orbitIndex":9,"stats":["Minions deal 6% increased Damage","6% increased Minion Duration"],"connections":[{"orbit":0,"id":47420}],"group":267,"name":"Minion Damage and Duration","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":752},"40166":{"orbit":2,"orbitIndex":12,"recipe":["Fear","Ire","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Deep Trance","group":1106,"isNotable":true,"stats":["8% increased Attack Speed","15% increased Cost Efficiency"],"skill":40166},"17316":{"orbit":4,"orbitIndex":51,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":-4,"id":40244},{"orbit":5,"id":62986}],"group":1144,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":17316},"34248":{"orbit":3,"orbitIndex":20,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":7,"id":37327}],"group":522,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":34248},"18910":{"orbit":5,"orbitIndex":48,"stats":["10% increased Critical Hit Chance with Spears"],"connections":[{"orbit":0,"id":10265}],"group":1322,"name":"Spear Critical Chance","icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","skill":18910},"42036":{"orbit":4,"orbitIndex":17,"recipe":["Greed","Fear","Suffering"],"connections":[{"orbit":0,"id":50146}],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Off-Balancing Retort","group":1368,"isNotable":true,"stats":["30% increased Parried Debuff Duration"],"skill":42036},"54288":{"orbit":7,"orbitIndex":20,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":21568}],"group":293,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":54288},"35265":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":31903},{"orbit":0,"id":48589},{"orbit":0,"id":18374},{"orbit":0,"id":6274}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":518,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":35265},"1459":{"orbit":7,"orbitIndex":12,"stats":["16% increased Mana Regeneration Rate while stationary"],"connections":[{"orbit":0,"id":47252}],"group":237,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":1459},"45329":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Disgust"],"connections":[{"orbit":0,"id":2128},{"orbit":0,"id":40626}],"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Delayed Danger","group":1170,"isNotable":true,"stats":["30% increased Hazard Duration","40% increased Hazard Damage"],"skill":45329},"62661":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":537,"connections":[],"stats":[],"skill":62661},"4873":{"orbit":7,"orbitIndex":0,"connections":[{"orbit":0,"id":12683}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":571,"connectionArt":"CharacterPlanned","stats":["Meta Skills gain 20% increased Energy"],"skill":4873},"30392":{"orbit":2,"orbitIndex":3,"recipe":["Disgust","Despair","Guilt"],"connections":[{"orbit":0,"id":28106},{"orbit":0,"id":41016}],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Succour","group":1095,"isNotable":true,"stats":["30% increased Life Regeneration rate during Effect of any Life Flask"],"skill":30392},"5571":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":8,"id":47190}],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds","name":"The Unseen Path","ascendancyName":"Oracle","group":11,"isNotable":true,"stats":["Walk the Paths Not Taken"],"skill":5571},"53187":{"orbit":2,"orbitIndex":22,"recipe":["Disgust","Fear","Fear"],"connections":[{"orbit":0,"id":35011},{"orbit":0,"id":57775}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Warlord Berserker","group":413,"isNotable":true,"stats":["40% reduced Presence Area of Effect","Allies in your Presence Regenerate 5 Rage per second if you have gained Rage Recently"],"skill":53187},"21142":{"orbit":7,"orbitIndex":5,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":7,"id":55829}],"group":1092,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":21142},"35058":{"orbit":2,"orbitIndex":18,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[{"orbit":0,"id":64650}],"group":1086,"name":"Stun Threshold if no recent Stun","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":35058},"38732":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-3,"id":17107}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":809,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38732},"6912":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","name":"Two Hand Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","group":1083,"connections":[],"stats":[],"skill":6912},"7720":{"orbit":4,"orbitIndex":61,"stats":["Gain 1 Rage when your Hit Ignites a target"],"connections":[{"orbit":0,"id":32932}],"group":487,"name":"Rage on Ignite","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":7720},"5703":{"orbit":7,"orbitIndex":4,"recipe":["Despair","Suffering","Ire"],"connections":[{"orbit":2,"id":16367}],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Echoing Thunder","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1022,"isNotable":true,"stats":["30% increased Elemental Damage if you've Shocked an Enemy Recently"],"skill":5703},"23797":{"orbit":2,"orbitIndex":20,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"connections":[{"orbit":2147483647,"id":31370}],"group":588,"name":"Armour and Applies to Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":23797},"48552":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":43036},{"orbit":0,"id":7960},{"orbit":0,"id":23825}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":418,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48552},"6161":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","name":"Bleeding Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":1081,"connections":[],"stats":[],"skill":6161},"54990":{"orbit":7,"orbitIndex":1,"recipe":["Fear","Suffering","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bloodletting","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":693,"isNotable":true,"stats":["10% chance to inflict Bleeding on Hit","15% increased Magnitude of Bleeding you inflict"],"skill":54990},"10260":{"orbit":2,"orbitIndex":1,"stats":["Channelling Skills deal 12% increased Damage"],"connections":[{"orbit":0,"id":33730}],"group":433,"name":"Channelling Damage","icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","skill":10260},"43854":{"orbit":7,"orbitIndex":7,"recipe":["Paranoia","Disgust","Suffering"],"connections":[{"orbit":0,"id":52038}],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"All For One","group":525,"isNotable":true,"stats":["20% reduced Presence Area of Effect","12% increased Area of Effect"],"skill":43854},"48618":{"orbit":3,"orbitIndex":12,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":7,"id":37327}],"group":522,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":48618},"50755":{"orbit":5,"orbitIndex":5,"stats":["+8 to Intelligence"],"connections":[{"orbit":9,"id":10131},{"orbit":0,"id":39567},{"orbit":8,"id":19355}],"group":954,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":50755},"30562":{"orbit":2,"orbitIndex":18,"recipe":["Envy","Greed","Isolation"],"connections":[{"orbit":0,"id":11032}],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Inner Faith","group":1064,"isNotable":true,"stats":["20% increased Evasion Rating","20% increased maximum Energy Shield","25% reduced effect of Curses on you"],"skill":30562},"53696":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":1062,"connections":[],"stats":[],"skill":53696},"55909":{"orbit":4,"orbitIndex":3,"connections":[{"orbit":0,"id":64046}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","options":{"Witch":{"stats":["10% increased Chaos Damage"],"id":10903,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage"}},"group":713,"isSwitchable":true,"stats":["12% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"skill":55909},"22484":{"orbit":7,"orbitIndex":18,"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"connections":[{"orbit":-4,"id":5398}],"group":287,"name":"Totem Cast Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":22484},"34927":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":685,"connections":[],"stats":[],"skill":34927},"53935":{"orbit":2,"orbitIndex":14,"recipe":["Guilt","Ire","Paranoia"],"connections":[{"orbit":2,"id":10677},{"orbit":0,"id":25281}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Briny Carapace","group":948,"isNotable":true,"stats":["100% increased Stun Threshold for each time you've been Stunned Recently"],"skill":53935},"61042":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":44344}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":615,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":61042},"55672":{"orbit":5,"orbitIndex":46,"stats":["10% increased Accuracy Rating while Shapeshifted"],"connections":[],"group":201,"name":"Shapeshifted Accuracy Rating","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":55672},"7642":{"orbit":7,"orbitIndex":8,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","name":"Physical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":449,"connections":[],"stats":[],"skill":7642},"52348":{"orbit":7,"orbitIndex":15,"recipe":["Suffering","Suffering","Ire"],"connections":[{"orbit":-5,"id":51206},{"orbit":0,"id":34487}],"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Carved Earth","group":511,"isNotable":true,"stats":["20% increased Totem Damage","6% increased Attack and Cast Speed if you've summoned a Totem Recently"],"skill":52348},"39431":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","name":"Crossbow Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":702,"connections":[],"stats":[],"skill":39431},"53396":{"orbit":6,"orbitIndex":12,"connections":[{"orbit":6,"id":10156}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":606,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":53396},"40200":{"orbit":2,"orbitIndex":0,"stats":["Minions deal 12% increased Damage"],"connections":[{"orbit":0,"id":33612},{"orbit":0,"id":61842}],"group":460,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":40200},"7392":{"orbit":3,"orbitIndex":19,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":0,"id":10571}],"group":448,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":7392},"53566":{"orbit":4,"orbitIndex":29,"recipe":["Suffering","Paranoia","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Run and Gun","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1053,"isNotable":true,"stats":["5% reduced Movement Speed Penalty from using Skills while moving","Projectile Attacks have a 12% chance to fire two additional Projectiles while moving"],"skill":53566},"41394":{"orbit":7,"orbitIndex":13,"recipe":["Envy","Isolation","Paranoia"],"connections":[{"orbit":0,"id":10841}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Invigorating Archon","group":1051,"isNotable":true,"stats":["Archon Buffs also grant +20% to all Elemental Resistances","Archon Buffs also grant 10% increased Movement Speed"],"skill":41394},"4844":{"orbit":7,"orbitIndex":1,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":33053}],"group":908,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":4844},"54437":{"orbit":7,"orbitIndex":20,"stats":["20% increased Attack Damage while on Low Life"],"connections":[{"orbit":-5,"id":16111},{"orbit":0,"id":2397},{"orbit":0,"id":8493}],"group":642,"name":"Attack Damage on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":54437},"41511":{"orbit":0,"orbitIndex":0,"stats":["Minions deal 15% increased Damage with Command Skills"],"connections":[{"orbit":0,"id":35560}],"group":536,"name":"Command Skill Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":41511},"41338":{"orbit":2,"orbitIndex":7,"stats":["+8% of Armour also applies to Elemental Damage while Shapeshifted"],"connections":[{"orbit":0,"id":31673}],"group":500,"name":"Shapeshifting Armour applies to Elemental Resistance","icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","skill":41338},"64240":{"orbit":2,"orbitIndex":6,"recipe":["Disgust","Guilt","Isolation"],"connections":[{"orbit":0,"id":52220}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Battle Fever","group":212,"isNotable":true,"stats":["5% increased Skill Speed","25% increased Physical Damage"],"skill":64240},"26739":{"orbit":3,"orbitIndex":8,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":43893}],"group":343,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":26739},"26762":{"orbit":0,"orbitIndex":0,"stats":["10% increased Withered Magnitude"],"connections":[{"orbit":-2,"id":35380}],"group":1238,"name":"Withered Effect","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":26762},"14666":{"orbit":3,"orbitIndex":18,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[],"group":782,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":14666},"47677":{"orbit":7,"orbitIndex":17,"stats":["8% increased Projectile Speed"],"connections":[{"orbit":0,"id":9472}],"group":1046,"name":"Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":47677},"55872":{"orbit":3,"orbitIndex":23,"stats":["Offering Skills have 15% increased Buff effect"],"connections":[],"group":1044,"name":"Offering Effect","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":55872},"19240":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":46358},{"orbit":5,"id":4847}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":622,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":19240},"1865":{"orbit":2,"orbitIndex":12,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"connections":[{"orbit":0,"id":54934}],"group":601,"name":"Fire Damage when consuming an Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":1865},"17955":{"orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Greed"],"connections":[{"orbit":0,"id":51708}],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Careful Consideration","group":1043,"isNotable":true,"stats":["30% reduced Evasion Rating if you have been Hit Recently","100% increased Evasion Rating if you haven't been Hit Recently"],"skill":17955},"8789":{"orbit":2,"orbitIndex":12,"stats":["Companions deal 12% increased Damage","Companions have 12% increased maximum Life"],"connections":[{"orbit":3,"id":63182}],"group":989,"name":"Companion Damage and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":8789},"5227":{"orbit":3,"orbitIndex":20,"recipe":["Despair","Paranoia","Despair"],"connections":[{"orbit":0,"id":51708}],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Escape Strategy","group":1043,"isNotable":true,"stats":["100% increased Evasion Rating if you have been Hit Recently","30% reduced Evasion Rating if you haven't been Hit Recently"],"skill":5227},"41031":{"orbit":4,"orbitIndex":27,"connections":[{"orbit":0,"id":54232}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":631,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":41031},"61976":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":7526},{"orbit":6,"id":36298},{"orbit":0,"id":2200}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1088,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":61976},"9782":{"orbit":0,"orbitIndex":0,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":20677}],"group":1116,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":9782},"28432":{"orbit":2,"orbitIndex":8,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"connections":[{"orbit":0,"id":20416},{"orbit":0,"id":23062}],"group":425,"name":"Armour if Consumed Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":28432},"49968":{"orbit":1,"orbitIndex":5,"stats":["18% increased Stun Buildup with Melee Damage"],"connections":[{"orbit":0,"id":20008}],"group":1112,"name":"Melee Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":49968},"55227":{"orbit":7,"orbitIndex":13,"stats":["10% increased amount of Mana Leeched"],"connections":[{"orbit":0,"id":29479},{"orbit":0,"id":15829}],"group":1037,"name":"Mana Leech","icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","skill":55227},"18489":{"orbit":7,"orbitIndex":19,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":7,"id":13356},{"orbit":-7,"id":12751},{"orbit":0,"id":37258}],"group":483,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":18489},"29652":{"orbit":2,"orbitIndex":11,"stats":["10% increased Spell Damage"],"connections":[{"orbit":0,"id":15180},{"orbit":0,"id":6008},{"orbit":0,"id":32194}],"group":482,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":29652},"36623":{"orbit":2,"orbitIndex":3,"recipe":["Disgust","Suffering","Greed"],"connections":[{"orbit":0,"id":10729},{"orbit":0,"id":31630}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Convalescence","group":1101,"isNotable":true,"stats":["15% reduced Energy Shield Recharge Rate","40% faster start of Energy Shield Recharge"],"skill":36623},"26638":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":9,"id":63002}],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds","name":"Footprints in the Sand","ascendancyName":"Chronomancer","group":332,"isNotable":true,"stats":["Grants Skill: Temporal Rift"],"skill":26638},"52125":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":2847},{"orbit":0,"id":21721}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":747,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":52125},"26614":{"orbit":4,"orbitIndex":40,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":44344},{"orbit":0,"id":46275}],"group":591,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":26614},"10671":{"orbit":2,"orbitIndex":1,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":5740},{"orbit":0,"id":23419},{"orbit":0,"id":51048}],"group":1007,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":10671},"62034":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","name":"Prism Guard","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern","group":143,"isNotable":true,"stats":["+30% of Armour also applies to Elemental Damage"],"skill":62034},"3218":{"orbit":4,"orbitIndex":17,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":48171}],"group":244,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":3218},"9141":{"orbit":4,"orbitIndex":12,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":-6,"id":13748},{"orbit":6,"id":35760},{"orbit":-2,"id":5703}],"group":1022,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":9141},"36450":{"orbit":3,"orbitIndex":0,"stats":["12% increased Spell Damage while on Full Energy Shield"],"connections":[{"orbit":-4,"id":11838}],"group":1021,"name":"Spell Damage on full Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":36450},"57079":{"orbit":5,"orbitIndex":12,"connections":[{"orbit":-3,"id":19966},{"orbit":0,"id":15842}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Known by All","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["Temporary Minion Skills have +2 to Limit of Minions summoned"],"skill":57079},"9163":{"orbit":7,"orbitIndex":8,"stats":["18% increased Armour"],"connections":[],"group":160,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":9163},"37414":{"orbit":2,"orbitIndex":16,"stats":["10% increased Accuracy Rating"],"connections":[{"orbit":0,"id":65193}],"group":444,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","skill":37414},"32951":{"orbit":3,"orbitIndex":17,"recipe":["Disgust","Suffering","Ire"],"connections":[{"orbit":0,"id":39280},{"orbit":0,"id":41522}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Preservation","group":1020,"isNotable":true,"stats":["25% increased Skill Effect Duration"],"skill":32951},"25620":{"orbit":7,"orbitIndex":14,"recipe":["Paranoia","Despair","Guilt"],"connections":[{"orbit":0,"id":9083}],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Meat Recycling","group":1015,"isNotable":true,"stats":["15% chance to not destroy Corpses when Consuming Corpses"],"skill":25620},"63861":{"orbit":2,"orbitIndex":13,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1013,"connections":[],"stats":[],"skill":63861},"29479":{"orbit":5,"orbitIndex":18,"connections":[{"orbit":0,"id":50469}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":976,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":29479},"10612":{"orbit":2,"orbitIndex":5,"recipe":["Paranoia","Isolation","Ire"],"connections":[{"orbit":0,"id":52003}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Embodiment of Frost","group":700,"isNotable":true,"stats":["Immune to Freeze and Chill while affected by an Archon Buff"],"skill":10612},"63182":{"orbit":7,"orbitIndex":6,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[{"orbit":3,"id":29930}],"group":989,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":63182},"51795":{"orbit":7,"orbitIndex":12,"stats":["8% increased Fire Damage","15% increased Flammability Magnitude"],"connections":[{"orbit":-2,"id":32271},{"orbit":7,"id":53632}],"group":346,"name":"Flammability Magnitude and Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":51795},"27274":{"orbit":1,"orbitIndex":2,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1012,"connections":[],"stats":[],"skill":27274},"24325":{"orbit":7,"orbitIndex":11,"stats":["5% increased Life Regeneration rate","10% increased Presence Area of Effect"],"connections":[{"orbit":7,"id":40006}],"group":440,"name":"Life Regeneration Rate and Presence","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":24325},"11504":{"orbit":2,"orbitIndex":19,"stats":["2% increased Attack Speed","+5 to Dexterity"],"connections":[{"orbit":7,"id":30839},{"orbit":0,"id":35696}],"group":1243,"name":"Attack Speed and Dexterity","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":11504},"28476":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Thorns Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","group":478,"connections":[],"stats":[],"skill":28476},"52298":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4527},{"orbit":0,"id":26725},{"orbit":0,"id":53308},{"orbit":0,"id":31805},{"orbit":0,"id":52126}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":252,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":52298},"64653":{"orbit":7,"orbitIndex":15,"stats":["Minions deal 16% increased Damage"],"connections":[{"orbit":7,"id":47420}],"group":267,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":64653},"46499":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Guts","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":204,"isNotable":true,"stats":["Recover 3% of maximum Life for each Endurance Charge consumed","+1 to Maximum Endurance Charges"],"skill":46499},"2511":{"orbit":3,"orbitIndex":20,"recipe":["Disgust","Paranoia","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Sundering","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":528,"isNotable":true,"stats":["25% increased Critical Damage Bonus for Attack Damage","+25% to Critical Damage Bonus against Stunned Enemies"],"skill":2511},"50884":{"orbit":7,"orbitIndex":14,"recipe":["Guilt","Fear","Ire"],"connections":[{"orbit":0,"id":53696}],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Primal Sundering","group":1062,"isNotable":true,"stats":["Damage Penetrates 12% Elemental Resistances","8% increased Area of Effect for Attacks"],"skill":50884},"30123":{"orbit":3,"orbitIndex":12,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":6923},{"orbit":0,"id":26092}],"group":389,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":30123},"1442":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":53108}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Attributes","ascendancyName":"Gemling Legionnaire","group":505,"stats":["3% increased Attributes"],"skill":1442},"7218":{"orbit":3,"orbitIndex":22,"stats":["+8 to Strength"],"connections":[{"orbit":0,"id":60203}],"group":796,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":7218},"23650":{"orbit":2,"orbitIndex":12,"stats":["15% increased Life Regeneration Rate while on Low Life"],"connections":[{"orbit":3,"id":43895}],"group":573,"name":"Life Regeneration on Low Life","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":23650},"59061":{"orbit":2,"orbitIndex":6,"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"connections":[{"orbit":0,"id":28267}],"group":214,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":59061},"31626":{"orbit":7,"orbitIndex":23,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":50516}],"group":961,"name":"Attack Area and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":31626},"8525":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds","name":"Leather Bindings","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":27,"isNotable":true,"stats":["Body Armour grants regenerate 3% of maximum Life per second"],"skill":8525},"40719":{"orbit":5,"orbitIndex":47,"connections":[{"orbit":0,"id":17646}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage vs Low Life Enemies","ascendancyName":"Witchhunter","group":271,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"skill":40719},"11667":{"orbit":1,"orbitIndex":10,"stats":["10% increased Immobilisation buildup against Constructs"],"connections":[{"orbit":0,"id":60085}],"group":854,"name":"Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":11667},"31890":{"orbit":3,"orbitIndex":5,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":7,"id":38827}],"group":610,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":31890},"39190":{"orbit":3,"orbitIndex":13,"stats":["15% increased Melee Damage with Hits at Close Range"],"connections":[{"orbit":0,"id":8800}],"group":134,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":39190},"1628":{"orbit":4,"orbitIndex":60,"connections":[{"orbit":2147483647,"id":49769},{"orbit":-7,"id":9554}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["17% increased Stun Threshold"],"skill":1628},"33397":{"orbit":2,"orbitIndex":21,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":39594}],"group":530,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":33397},"3601":{"orbit":4,"orbitIndex":62,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":47191}],"group":260,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":3601},"29941":{"orbit":3,"orbitIndex":17,"stats":["20% chance for Attack Hits to apply Incision"],"connections":[{"orbit":0,"id":60829},{"orbit":0,"id":57517}],"group":991,"name":"Incision Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":29941},"64239":{"orbit":2,"orbitIndex":17,"connections":[{"orbit":0,"id":2733}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Innate Rune","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":288,"connectionArt":"CharacterPlanned","stats":["Adds 1 to 37 Lightning damage to Attacks"],"skill":64239},"32600":{"orbit":2,"orbitIndex":12,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":6304},{"orbit":-7,"id":20303}],"group":369,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":32600},"26563":{"orbit":4,"orbitIndex":12,"recipe":["Fear","Despair","Fear"],"connections":[{"orbit":-4,"id":12778},{"orbit":0,"id":6161}],"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bone Chains","group":1080,"isNotable":true,"stats":["Physical Spell Critical Hits build Pin"],"skill":26563},"23724":{"orbit":7,"orbitIndex":22,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":7275}],"group":709,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":23724},"49380":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-7,"id":36659}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour Break","ascendancyName":"Warbringer","group":28,"stats":["Break 25% increased Armour"],"skill":49380},"19966":{"orbit":5,"orbitIndex":19,"connections":[{"orbit":2147483647,"id":829}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["25% increased Minion Duration"],"skill":19966},"29074":{"orbit":8,"orbitIndex":36,"connections":[],"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds","name":"Overwhelming Toxicity","ascendancyName":"Pathfinder","group":1438,"isNotable":true,"stats":["Double the number of your Poisons that targets can be affected by at the same time","35% less Poison Duration"],"skill":29074},"11861":{"orbit":7,"orbitIndex":1,"connections":[{"orbit":0,"id":59795}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":665,"connectionArt":"CharacterPlanned","stats":["10% increased Spell Damage","+10 to Strength"],"skill":11861},"64083":{"orbit":7,"orbitIndex":3,"connections":[{"orbit":0,"id":12940}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":["20% increased Lightning Damage"],"skill":64083},"47441":{"orbit":7,"orbitIndex":12,"recipe":["Disgust","Guilt","Fear"],"connections":[{"orbit":0,"id":61992}],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Stigmata","group":787,"isNotable":true,"stats":["Offerings have 30% increased Maximum Life","Recover 3% of maximum Life when you create an Offering"],"skill":47441},"61977":{"orbit":4,"orbitIndex":54,"connections":[{"orbit":0,"id":61471}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":354,"connectionArt":"CharacterPlanned","stats":["15% increased Damage","Minions deal 15% increased Damage"],"skill":61977},"62785":{"orbit":7,"orbitIndex":2,"stats":["Break 20% increased Armour"],"connections":[{"orbit":-7,"id":4948}],"group":370,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":62785},"30007":{"orbit":1,"orbitIndex":7,"stats":["16% increased Thorns damage"],"connections":[{"orbit":0,"id":3188}],"group":94,"name":"Thorns","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":30007},"46399":{"orbit":7,"orbitIndex":11,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":0,"id":589},{"orbit":0,"id":50820}],"group":106,"name":"Rage on Melee Hit","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":46399},"56063":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Disgust","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Lingering Horror","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":905,"isNotable":true,"stats":["23% increased Chaos Damage","15% increased Skill Effect Duration"],"skill":56063},"589":{"orbit":7,"orbitIndex":5,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":0,"id":14509}],"group":106,"name":"Rage on Melee Hit","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":589},"22784":{"orbit":2,"orbitIndex":6,"stats":["10% reduced effect of Shock on you"],"connections":[{"orbit":7,"id":17057},{"orbit":0,"id":13515}],"group":669,"name":"Shock Effect on You","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":22784},"38779":{"orbit":2,"orbitIndex":8,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":5,"id":44605},{"orbit":0,"id":44836}],"group":754,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":38779},"28223":{"orbit":4,"orbitIndex":35,"connections":[{"orbit":3,"id":6100}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":164,"connectionArt":"CharacterPlanned","stats":["20% increased Critical Damage Bonus"],"skill":28223},"49285":{"orbit":2,"orbitIndex":22,"stats":["+8 to Strength"],"connections":[{"orbit":9,"id":364}],"group":724,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":49285},"48121":{"orbit":0,"orbitIndex":0,"stats":["Totems gain +12% to all Elemental Resistances"],"connections":[{"orbit":-5,"id":24438}],"group":471,"name":"Totem Elemental Resistance","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":48121},"22541":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds","name":"Heat of the Forge","ascendancyName":"Smith of Kitava","group":5,"isNotable":true,"stats":["Grants Skill: Fire Spell on Melee Hit"],"skill":22541},"21245":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[],"group":503,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":21245},"55668":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":25557},{"orbit":0,"id":47754},{"orbit":0,"id":55420}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":981,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":55668},"28950":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":63469},{"orbit":0,"id":10156},{"orbit":9,"id":19873},{"orbit":0,"id":44948},{"orbit":-8,"id":41838}],"icon":"Art/2DArt/SkillIcons/passives/bodysoul.dds","name":"Devoted Protector","isSwitchable":true,"options":{"Druid":{"stats":["15% increased Armour","+15% of Armour also applies to Elemental Damage","15% faster start of Energy Shield Recharge","+5 to Strength and Intelligence"],"id":7130,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Bastion of the Forest"}},"group":619,"isNotable":true,"stats":["15% increased Armour","+15% of Armour also applies to Elemental Damage","15% faster start of Energy Shield Recharge","+5 to Strength and Intelligence"],"skill":28950},"50216":{"orbit":2,"orbitIndex":18,"stats":["2% increased Skill Speed","5% increased Mana Regeneration Rate"],"connections":[{"orbit":3,"id":44951},{"orbit":4,"id":17655}],"group":592,"name":"Mana Regeneration and Skill Speed","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":50216},"26663":{"orbit":0,"orbitIndex":0,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":0,"id":44765}],"group":788,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":26663},"20032":{"orbit":2,"orbitIndex":0,"recipe":["Despair","Greed","Guilt"],"connections":[{"orbit":0,"id":28680},{"orbit":0,"id":56762}],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Erraticism","group":401,"isNotable":true,"stats":["16% increased Cast Speed if you've dealt a Critical Hit Recently","10% reduced Critical Hit Chance"],"skill":20032},"34136":{"orbit":3,"orbitIndex":1,"connections":[{"orbit":-5,"id":29479}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":976,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":34136},"64312":{"orbit":7,"orbitIndex":2,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":-7,"id":23861},{"orbit":7,"id":54886}],"group":428,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":64312},"30395":{"orbit":1,"orbitIndex":2,"recipe":["Fear","Paranoia","Envy"],"connections":[{"orbit":0,"id":9221}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","name":"Howling Beast","group":263,"isNotable":true,"stats":["Warcries inflict 3 Critical Weakness on Enemies"],"skill":30395},"32818":{"orbit":7,"orbitIndex":6,"stats":["10% increased Charm Charges gained"],"connections":[{"orbit":4,"id":48135}],"group":968,"name":"Charm Charges","icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","skill":32818},"21404":{"orbit":2,"orbitIndex":18,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":42825}],"group":472,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":21404},"33045":{"orbit":4,"orbitIndex":65,"stats":["10% increased Elemental Ailment Threshold","5% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":-4,"id":62303}],"group":290,"name":"Ailment Threshold and Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":33045},"48773":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32763},{"orbit":0,"id":38493},{"orbit":0,"id":41873},{"orbit":0,"id":42226},{"orbit":0,"id":52800}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1386,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48773},"61992":{"orbit":1,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":787,"connections":[],"stats":[],"skill":61992},"49952":{"orbit":7,"orbitIndex":6,"stats":["12% increased Magnitude of Ailments you inflict"],"connections":[{"orbit":0,"id":13856}],"group":249,"name":"Ailment Effect","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":49952},"6006":{"orbit":4,"orbitIndex":62,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":38105}],"group":591,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":6006},"17025":{"orbit":2,"orbitIndex":18,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":13515}],"group":669,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":17025},"7960":{"orbit":1,"orbitIndex":2,"connections":[{"orbit":0,"id":35408}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":362,"stats":[],"skill":7960},"42302":{"orbit":4,"orbitIndex":54,"recipe":["Ire","Fear","Paranoia"],"connections":[{"orbit":4,"id":45331},{"orbit":-4,"id":31918}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Split Shot","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1233,"isNotable":true,"stats":["Projectiles have 75% chance for an additional Projectile when Forking"],"skill":42302},"40985":{"orbit":2,"orbitIndex":6,"recipe":["Guilt","Fear","Paranoia"],"connections":[{"orbit":0,"id":62679}],"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","name":"Empowering Remnants","group":791,"isNotable":true,"stats":["15% chance for Remnants you create to grant their effects twice"],"skill":40985},"56838":{"orbit":3,"orbitIndex":2,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-4,"id":42805},{"orbit":5,"id":62624}],"group":1257,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":56838},"48649":{"orbit":2,"orbitIndex":22,"recipe":["Guilt","Greed","Suffering"],"connections":[{"orbit":0,"id":51485}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Insulating Hide","group":500,"isNotable":true,"stats":["20% faster start of Energy Shield Recharge while Shapeshifted","+20% of Armour also applies to Elemental Damage while Shapeshifted"],"skill":48649},"33240":{"orbit":5,"orbitIndex":71,"recipe":["Isolation","Isolation","Ire"],"connections":[{"orbit":0,"id":14505}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Lord of Horrors","group":460,"isNotable":true,"stats":["12% increased Reservation Efficiency of Minion Skills"],"skill":33240},"59136":{"orbit":7,"orbitIndex":21,"connections":[{"orbit":0,"id":17729}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":589,"connectionArt":"CharacterPlanned","stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"skill":59136},"4113":{"orbit":7,"orbitIndex":4,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":4627}],"group":784,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":4113},"7668":{"orbit":2,"orbitIndex":3,"recipe":["Guilt","Despair","Paranoia"],"connections":[{"orbit":0,"id":62015}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Internal Bleeding","group":355,"isNotable":true,"stats":["20% chance to Aggravate Bleeding on targets you Hit with Empowered Attacks","Empowered Attacks deal 30% increased Damage"],"skill":7668},"52215":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance with Daggers"],"connections":[{"orbit":0,"id":56366}],"group":1393,"name":"Dagger Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","skill":52215},"17867":{"orbit":7,"orbitIndex":10,"stats":["Debuffs you inflict have 7% increased Slow Magnitude","7% increased Exposure Effect"],"connections":[{"orbit":0,"id":37092}],"group":641,"name":"Exposure Effect and Slow Effect","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":17867},"46380":{"orbit":2,"orbitIndex":22,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"connections":[{"orbit":0,"id":21327}],"group":312,"name":"Energy Shield if Consumed Power Charge","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":46380},"54453":{"orbit":2,"orbitIndex":12,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"connections":[{"orbit":0,"id":19006},{"orbit":0,"id":61042}],"group":617,"name":"Minion Damage and Life","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":54453},"33180":{"orbit":7,"orbitIndex":15,"stats":["Spell Skills have 6% increased Area of Effect"],"connections":[{"orbit":0,"id":46989},{"orbit":0,"id":60269}],"group":819,"name":"Spell Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":33180},"26034":{"orbit":3,"orbitIndex":10,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":-5,"id":45631}],"group":1257,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":26034},"4970":{"orbit":2,"orbitIndex":7,"stats":["10% increased Life Regeneration rate","10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":23195}],"group":323,"name":"Life and Mana Regeneration Rate","icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","skill":4970},"18651":{"orbit":0,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":11736},{"orbit":0,"id":63863}],"group":816,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":18651},"9185":{"orbit":2,"orbitIndex":5,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":60107}],"group":880,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":9185},"21413":{"orbit":7,"orbitIndex":19,"stats":["Inherent Rage loss starts 1 second later"],"connections":[{"orbit":0,"id":28408}],"group":176,"name":"Later Rage Loss Start ","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":21413},"46157":{"orbit":0,"orbitIndex":0,"stats":["20% chance for Lightning Skills to Chain an additional time"],"connections":[{"orbit":0,"id":37806}],"group":960,"name":"Lightning Skill Chain Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":46157},"8850":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance while Shapeshifted"],"connections":[],"group":108,"name":"Shapeshifted Critical Chance","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":8850},"3446":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":61938},{"orbit":0,"id":58088}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":229,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":3446},"4828":{"orbit":2,"orbitIndex":12,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":19044}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":4828},"63259":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds","name":"Motoric Implants","ascendancyName":"Gemling Legionnaire","group":371,"isMultipleChoiceOption":true,"stats":["+2 to Level of all Skills with a Dexterity requirement"],"skill":63259},"12125":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":369,"connections":[],"stats":[],"skill":12125},"47856":{"orbit":2,"orbitIndex":15,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":32561}],"group":720,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":47856},"39567":{"orbit":5,"orbitIndex":0,"recipe":["Ire","Isolation","Suffering"],"connections":[{"orbit":0,"id":53188}],"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Ingenuity","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":954,"isNotable":true,"stats":["+25 to Intelligence"],"skill":39567},"46522":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":44746}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Pin Buildup","ascendancyName":"Tactician","group":340,"stats":["20% increased Pin Buildup"],"skill":46522},"22393":{"orbit":3,"orbitIndex":12,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":28458}],"group":461,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":22393},"32976":{"orbit":4,"orbitIndex":48,"recipe":["Isolation","Greed","Suffering"],"connections":[{"orbit":0,"id":14428},{"orbit":0,"id":38776},{"orbit":0,"id":34202}],"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Gem Enthusiast","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":724,"isNotable":true,"stats":["5% increased Maximum Life if you have at least 10 Red Support Gems Socketed","5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed","5% increased Movement Speed if you have at least 10 Green Support Gems Socketed"],"skill":32976},"52743":{"orbit":2,"orbitIndex":10,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":34541}],"group":1309,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":52743},"24062":{"orbit":5,"orbitIndex":21,"recipe":["Envy","Suffering","Fear"],"connections":[{"orbit":0,"id":54351}],"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Immortal Infamy","group":1172,"isNotable":true,"stats":["10% increased Energy Shield Recharge Rate","Recover 2% of maximum Life on Kill","+10 to Intelligence"],"skill":24062},"2074":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Armour and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","group":405,"connections":[],"stats":[],"skill":2074},"28800":{"orbit":0,"orbitIndex":0,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":55308}],"group":404,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","skill":28800},"15275":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":52374}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Totem Cast and Attack Speed","ascendancyName":"Oracle","group":7,"stats":["Spells Cast by Totems have 5% increased Cast Speed","Attacks used by Totems have 5% increased Attack Speed"],"skill":15275},"13474":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":0,"id":16084}],"group":385,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":13474},"58930":{"orbit":7,"orbitIndex":9,"stats":["3% increased Cast Speed"],"connections":[{"orbit":7,"id":14934}],"group":610,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":58930},"2508":{"orbit":7,"orbitIndex":18,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":47168},{"orbit":0,"id":59425}],"group":591,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":2508},"5108":{"orbit":2,"orbitIndex":21,"stats":["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"],"connections":[],"group":769,"name":"One Handed Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":5108},"1579":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-9,"id":10987}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cooldown Recovery Rate","ascendancyName":"Chronomancer","group":391,"stats":["6% increased Cooldown Recovery Rate"],"skill":1579},"32319":{"orbit":7,"orbitIndex":20,"stats":["+10% Surpassing chance to fire an additional Arrow"],"connections":[{"orbit":0,"id":33542}],"group":1417,"name":"Surpassing Arrow Chance","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":32319},"53131":{"orbit":7,"orbitIndex":16,"recipe":["Isolation","Paranoia","Greed"],"connections":[{"orbit":0,"id":7060},{"orbit":0,"id":46665}],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Tukohama's Brew","group":250,"isNotable":true,"stats":["50% of Skill Mana costs Converted to Life Costs during any Life Flask Effect"],"skill":53131},"62498":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3446},{"orbit":0,"id":51561},{"orbit":0,"id":21390},{"orbit":0,"id":41363},{"orbit":0,"id":12255}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":278,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":62498},"6304":{"orbit":2,"orbitIndex":4,"recipe":["Greed","Paranoia","Guilt"],"connections":[{"orbit":0,"id":12125}],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Stand Ground","group":369,"isNotable":true,"stats":["Regenerate 1% of maximum Life per second while affected by any Damaging Ailment","Regenerate 1% of maximum Life per second while stationary"],"skill":6304},"16786":{"orbit":7,"orbitIndex":14,"stats":["15% increased Immobilisation buildup"],"connections":[{"orbit":0,"id":20467}],"group":1084,"name":"Immobilisation Buildup","icon":"Art/2DArt/SkillIcons/passives/executioner.dds","skill":16786},"20499":{"orbit":7,"orbitIndex":13,"stats":["15% increased effect of Arcane Surge on you"],"connections":[{"orbit":0,"id":34327},{"orbit":-2,"id":2336}],"group":390,"name":"Arcane Surge Effect","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":20499},"4681":{"orbit":2,"orbitIndex":20,"connections":[{"orbit":2147483647,"id":48828},{"orbit":0,"id":26228}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":466,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"skill":4681},"23259":{"orbit":2,"orbitIndex":21,"stats":["10% increased Critical Hit Chance for Attacks"],"connections":[{"orbit":0,"id":22864}],"group":987,"name":"Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":23259},"25618":{"orbit":8,"orbitIndex":18,"connections":[{"orbit":0,"id":38578}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Spell Critical Chance","ascendancyName":"Stormweaver","group":502,"stats":["12% increased Critical Hit Chance for Spells"],"skill":25618},"16084":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":0,"id":57552}],"group":384,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":16084},"19955":{"orbit":4,"orbitIndex":6,"recipe":["Isolation","Suffering","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Endless Blizzard","group":749,"isNotable":true,"stats":["+1 to Level of all Cold Skills"],"skill":19955},"59466":{"orbit":7,"orbitIndex":0,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":-7,"id":37226}],"group":383,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":59466},"12925":{"orbit":4,"orbitIndex":2,"stats":["15% increased chance to Shock"],"connections":[{"orbit":5,"id":61196}],"group":934,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":12925},"48305":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":37629}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":560,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48305},"35896":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":55668},{"orbit":0,"id":53266},{"orbit":0,"id":17672}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":928,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":35896},"65154":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":168,"connections":[],"stats":[],"skill":65154},"44850":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Recovery Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","group":789,"connections":[],"stats":[],"skill":44850},"10029":{"orbit":2,"orbitIndex":4,"recipe":["Disgust","Paranoia","Despair"],"connections":[{"orbit":0,"id":19277}],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Repulsion","group":380,"isNotable":true,"stats":["Area Skills have 20% chance to Knock Enemies Back on Hit","20% increased Spell Area Damage"],"skill":10029},"61991":{"orbit":9,"orbitIndex":96,"connections":[],"nodeOverlay":{"path":"PathfinderFrameLargeCanAllocate","alloc":"PathfinderFrameLargeAllocated","unalloc":"PathfinderFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds","name":"Running Assault","ascendancyName":"Pathfinder","group":1438,"isNotable":true,"stats":["Cannot be Heavy Stunned while Sprinting","50% less Movement Speed Penalty from using Skills while moving"],"skill":61991},"21077":{"orbit":3,"orbitIndex":12,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"connections":[{"orbit":0,"id":354}],"group":702,"name":"Grenade Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":21077},"45609":{"orbit":3,"orbitIndex":20,"stats":["15% increased Critical Damage Bonus"],"connections":[],"group":1131,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":45609},"60273":{"orbit":0,"orbitIndex":0,"recipe":["Disgust","Guilt","Despair"],"connections":[{"orbit":0,"id":28199},{"orbit":0,"id":40626}],"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hindering Obstacles","group":1213,"isNotable":true,"stats":["Debuffs inflicted by Hazards have 30% increased Slow Magnitude","30% increased Hazard Immobilisation buildup"],"skill":60273},"8107":{"orbit":7,"orbitIndex":10,"connections":[{"orbit":0,"id":18081}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":276,"connectionArt":"CharacterPlanned","stats":["20% increased Glory generation"],"skill":8107},"14934":{"orbit":2,"orbitIndex":4,"recipe":["Ire","Envy","Suffering"],"connections":[{"orbit":0,"id":32523}],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Spiral into Mania","group":610,"isNotable":true,"stats":["10% increased Cast Speed","+13% to Chaos Resistance"],"skill":14934},"64489":{"orbit":2,"orbitIndex":14,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":6952},{"orbit":0,"id":25162}],"group":100,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":64489},"3543":{"orbit":7,"orbitIndex":23,"stats":["12% increased Attack Cold Damage"],"connections":[{"orbit":2147483647,"id":31825}],"group":1384,"name":"Attack Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":3543},"762":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":1988}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Minion Damage","ascendancyName":"Tactician","group":378,"stats":["Minions deal 20% increased Damage"],"skill":762},"47252":{"orbit":7,"orbitIndex":16,"stats":["16% increased Mana Regeneration Rate while stationary"],"connections":[],"group":237,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":47252},"7716":{"orbit":2,"orbitIndex":23,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"connections":[],"group":320,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":7716},"55596":{"orbit":3,"orbitIndex":16,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":8509}],"group":214,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":55596},"41372":{"orbit":7,"orbitIndex":21,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":48030}],"group":836,"name":"Energy Shield and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":41372},"27733":{"orbit":4,"orbitIndex":30,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":266,"connections":[{"orbit":0,"id":44005},{"orbit":0,"id":2999}],"stats":[],"skill":27733},"3567":{"orbit":3,"orbitIndex":16,"recipe":["Suffering","Ire","Isolation"],"connections":[{"orbit":0,"id":53188},{"orbit":0,"id":10159}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Raw Mana","group":954,"isNotable":true,"stats":["8% increased maximum Mana","10% increased Mana Cost of Skills"],"skill":3567},"59480":{"orbit":4,"orbitIndex":69,"stats":["10% increased Attack Area Damage"],"connections":[{"orbit":0,"id":3999}],"group":655,"name":"Area Damage","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":59480},"33848":{"orbit":4,"orbitIndex":51,"stats":["8% increased Projectile Speed"],"connections":[{"orbit":0,"id":47677}],"group":1046,"name":"Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":33848},"34090":{"orbit":7,"orbitIndex":0,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"connections":[{"orbit":7,"id":14655},{"orbit":-7,"id":64870}],"group":356,"name":"Armour and Applies to Fire Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":34090},"51821":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":46857},{"orbit":0,"id":20115},{"orbit":0,"id":25014},{"orbit":0,"id":39102}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":241,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":51821},"21885":{"orbit":7,"orbitIndex":14,"stats":["10% increased Stun Threshold","+5 to Strength"],"connections":[{"orbit":0,"id":1352}],"group":253,"name":"Stun Threshold and Strength","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":21885},"7449":{"orbit":7,"orbitIndex":18,"recipe":["Envy","Paranoia","Despair"],"connections":[{"orbit":0,"id":53696}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Splinters","group":1062,"isNotable":true,"stats":["30% increased Stun Buildup","Hits Break 50% increased Armour on targets with Ailments"],"skill":7449},"27096":{"orbit":7,"orbitIndex":16,"connections":[{"orbit":2147483647,"id":33423},{"orbit":0,"id":13691}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Rustle of the Leaves","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["40% increased Totem Placement speed","Spells Cast by Totems have 6% increased Cast Speed","Attacks used by Totems have 6% increased Attack Speed"],"skill":27096},"38068":{"orbit":4,"orbitIndex":60,"stats":["24% increased Flammability Magnitude","12% increased Freeze Buildup","12% increased chance to Shock"],"connections":[],"group":705,"name":"Elemental Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":38068},"22909":{"orbit":3,"orbitIndex":14,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":21415}],"group":350,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":22909},"47722":{"orbit":3,"orbitIndex":4,"stats":["16% increased Damage with Warcries"],"connections":[{"orbit":0,"id":6514}],"group":184,"name":"Warcry Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":47722},"44659":{"orbit":5,"orbitIndex":27,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":567,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":44659},"44092":{"orbit":2,"orbitIndex":0,"stats":["12% increased Ignite Magnitude"],"connections":[{"orbit":0,"id":54911}],"group":586,"name":"Ignite Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":44092},"40721":{"orbit":9,"orbitIndex":0,"connections":[{"orbit":-6,"id":64789},{"orbit":6,"id":65413},{"orbit":-4,"id":49759},{"orbit":4,"id":13673},{"orbit":0,"id":12488},{"orbit":0,"id":44484}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Stormweaver","ascendancyName":"Stormweaver","isAscendancyStart":true,"group":502,"stats":[],"skill":40721},"55241":{"orbit":1,"orbitIndex":4,"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"connections":[{"orbit":0,"id":38614}],"group":962,"name":"Additional Spell Projectiles","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":55241},"13980":{"orbit":4,"orbitIndex":33,"recipe":["Isolation","Paranoia","Disgust"],"connections":[{"orbit":0,"id":14832},{"orbit":0,"id":14693}],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Split the Earth","group":126,"isNotable":true,"stats":["10% chance for Mace Slam Skills you use yourself to cause an additional Aftershock","Strike Skills you use yourself with Maces have 10% chance to deal Splash Damage"],"skill":13980},"26490":{"orbit":2,"orbitIndex":9,"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"connections":[{"orbit":0,"id":12751}],"group":483,"name":"One Handed Critical Chance","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":26490},"51129":{"orbit":7,"orbitIndex":16,"recipe":["Isolation","Ire","Ire"],"connections":[{"orbit":0,"id":15892},{"orbit":0,"id":48717}],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","name":"Pile On","group":179,"isNotable":true,"stats":["30% increased effect of Fully Broken Armour"],"skill":51129},"56564":{"orbit":2,"orbitIndex":15,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":8349}],"group":679,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":56564},"41512":{"orbit":7,"orbitIndex":13,"recipe":["Paranoia","Disgust","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Heavy Weaponry","group":839,"isNotable":true,"stats":["15% increased Melee Damage","15% increased Stun Buildup with Melee Damage","+15 to Strength"],"skill":41512},"49593":{"orbit":7,"orbitIndex":21,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":4725}],"group":257,"name":"Sentinels","icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":49593},"6689":{"orbit":4,"orbitIndex":39,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"connections":[{"orbit":0,"id":51735}],"group":677,"name":"Shield Damage","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":6689},"31644":{"orbit":2,"orbitIndex":23,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":14739},{"orbit":0,"id":34058}],"group":679,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":31644},"18245":{"orbit":7,"orbitIndex":16,"stats":["Minions have 8% increased maximum Life","Minions have 8% additional Physical Damage Reduction"],"connections":[{"orbit":0,"id":30554},{"orbit":0,"id":21164}],"group":149,"name":"Minion Life and Physical Damage Reduction","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":18245},"43746":{"orbit":3,"orbitIndex":6,"connections":[{"orbit":0,"id":16460},{"orbit":0,"id":38143}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":899,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":43746},"33445":{"orbit":7,"orbitIndex":3,"stats":["5% increased Block chance"],"connections":[{"orbit":-2,"id":30143}],"group":1140,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":33445},"38368":{"orbit":0,"orbitIndex":0,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":-2,"id":35966},{"orbit":2,"id":54288}],"group":293,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":38368},"62464":{"orbit":3,"orbitIndex":22,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":7,"id":17854}],"group":1177,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":62464},"12419":{"orbit":2,"orbitIndex":4,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"connections":[{"orbit":-1,"id":56063}],"group":905,"name":"Chaos Damage and Duration","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":12419},"6923":{"orbit":3,"orbitIndex":10,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":1087}],"group":389,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":6923},"57552":{"orbit":4,"orbitIndex":0,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":0,"id":24871},{"orbit":0,"id":46696}],"group":386,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":57552},"3245":{"orbit":2,"orbitIndex":7,"stats":["4% increased Block chance","10% increased Thorns damage"],"connections":[{"orbit":0,"id":7395}],"group":94,"name":"Thorns and Block","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":3245},"17587":{"orbit":1,"orbitIndex":9,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":164,"connectionArt":"CharacterPlanned","stats":[],"skill":17587},"53354":{"orbit":0,"orbitIndex":0,"stats":["10% increased amount of Life Leeched while Shapeshifted"],"connections":[{"orbit":4,"id":36250},{"orbit":5,"id":33408},{"orbit":0,"id":20289}],"group":118,"name":"Shapeshifted Life Leech","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":53354},"47190":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":32905}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Passive Point","ascendancyName":"Oracle","group":38,"stats":["Grants 1 Passive Skill Point"],"skill":47190},"35028":{"orbit":2,"orbitIndex":17,"recipe":["Disgust","Despair","Greed"],"connections":[{"orbit":0,"id":51974}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"In the Thick of It","group":717,"isNotable":true,"stats":["Regenerate 2.5% of maximum Life per second while Surrounded"],"skill":35028},"38596":{"orbit":4,"orbitIndex":14,"stats":["15% reduced effect of Curses on you"],"connections":[{"orbit":5,"id":31925}],"group":406,"name":"Curse Effect on Self","icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":38596},"48635":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":63526},{"orbit":4,"id":28361},{"orbit":-4,"id":43444}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":755,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48635},"56783":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameSmallCanAllocate","alloc":"Disciple of VarashtaFrameSmallAllocated","unalloc":"Disciple of VarashtaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Area of Effect","ascendancyName":"Disciple of Varashta","group":624,"stats":["8% increased Area of Effect"],"skill":56783},"26725":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57703}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":281,"stats":[],"skill":26725},"526":{"orbit":4,"orbitIndex":4,"stats":["18% increased Stun Buildup with Maces"],"connections":[{"orbit":0,"id":2645}],"group":126,"name":"Mace Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":526},"17057":{"orbit":1,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":2,"id":17025}],"group":669,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":17057},"32885":{"orbit":4,"orbitIndex":33,"stats":["5% increased Block chance"],"connections":[{"orbit":0,"id":6689}],"group":677,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":32885},"35085":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":214,"connections":[],"stats":[],"skill":35085},"46665":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":248,"connections":[],"stats":[],"skill":46665},"44255":{"orbit":7,"orbitIndex":12,"stats":["Minions Revive 5% faster"],"connections":[{"orbit":-3,"id":28573}],"group":893,"name":"Minion Revive Speed","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":44255},"42578":{"orbit":3,"orbitIndex":11,"stats":["5% increased Block chance"],"connections":[{"orbit":-6,"id":23192}],"group":174,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":42578},"23307":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":10100},{"orbit":0,"id":59945},{"orbit":0,"id":59886}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":186,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":23307},"6789":{"orbit":2,"orbitIndex":1,"connections":[{"orbit":0,"id":4313}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","options":{"Huntress":{"stats":["8% increased Attack Damage"],"id":22193,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Attack Damage"}},"group":882,"isSwitchable":true,"stats":["8% increased Projectile Damage"],"skill":6789},"35234":{"orbit":7,"orbitIndex":19,"connections":[{"orbit":0,"id":35660},{"orbit":0,"id":6789},{"orbit":0,"id":56651}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","options":{"Huntress":{"stats":["10% increased Attack Damage"],"id":14623,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Attack Damage"}},"group":882,"isSwitchable":true,"stats":["10% increased Projectile Damage"],"skill":35234},"23861":{"orbit":7,"orbitIndex":8,"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"connections":[],"group":428,"name":"Two Handed Damage and Stun","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":23861},"2888":{"orbit":7,"orbitIndex":15,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":0,"id":8827}],"group":422,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":2888},"61063":{"orbit":3,"orbitIndex":0,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"connections":[],"group":343,"name":"Elemental Penetration","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":61063},"16121":{"orbit":7,"orbitIndex":1,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":7,"id":56334}],"group":1366,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":16121},"17294":{"orbit":2,"orbitIndex":16,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":-5,"id":19330},{"orbit":4,"id":27501}],"group":662,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":17294},"27740":{"orbit":2,"orbitIndex":6,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":0,"id":35792}],"group":279,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":27740},"32054":{"orbit":3,"orbitIndex":15,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":0,"id":62153}],"group":1013,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":32054},"62378":{"orbit":2,"orbitIndex":20,"connections":[{"orbit":0,"id":47633}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":464,"connectionArt":"CharacterPlanned","stats":["20% increased Thorns damage"],"skill":62378},"55152":{"orbit":3,"orbitIndex":1,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","name":"Totem Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":147,"connections":[{"orbit":0,"id":5580}],"stats":[],"skill":55152},"28613":{"orbit":2,"orbitIndex":2,"recipe":["Suffering","Despair","Greed"],"connections":[{"orbit":0,"id":39598},{"orbit":0,"id":30553}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Roaring Cries","group":140,"isNotable":true,"stats":["Warcries have a minimum of 10 Power"],"skill":28613},"10561":{"orbit":7,"orbitIndex":17,"connections":[{"orbit":9,"id":32705}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds","name":"Navira's Fracturing","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":10561},"25711":{"orbit":2,"orbitIndex":5,"recipe":["Guilt","Suffering","Ire"],"connections":[{"orbit":-7,"id":58038}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Thrill of Battle","group":717,"isNotable":true,"stats":["20% increased Attack Speed while Surrounded"],"skill":25711},"16090":{"orbit":3,"orbitIndex":8,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"connections":[{"orbit":0,"id":50302}],"group":396,"name":"Life Costs","icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":16090},"65":{"orbit":2,"orbitIndex":7,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":15698}],"group":93,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":65},"29611":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":41768},{"orbit":0,"id":61393},{"orbit":0,"id":28201}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":130,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":29611},"33866":{"orbit":2,"orbitIndex":4,"stats":["8% increased Attack Damage"],"connections":[{"orbit":0,"id":49220}],"group":871,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":33866},"9568":{"orbit":2,"orbitIndex":1,"stats":["16% increased Totem Life"],"connections":[{"orbit":0,"id":5580}],"group":147,"name":"Totem Life","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":9568},"24491":{"orbit":4,"orbitIndex":0,"recipe":["Guilt","Greed","Isolation"],"connections":[{"orbit":0,"id":20140}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocated Echoes","group":870,"isNotable":true,"stats":["Invocated Spells have 40% chance to consume half as much Energy"],"skill":24491},"62518":{"orbit":3,"orbitIndex":7,"stats":["+5% to Fire Resistance"],"connections":[{"orbit":4,"id":41414}],"group":238,"name":"Fire Resistance","icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","skill":62518},"378":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":55135}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Critical Hit Chance","ascendancyName":"Oracle","group":35,"stats":["12% increased Critical Hit Chance"],"skill":378},"32561":{"orbit":3,"orbitIndex":15,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":51825}],"group":720,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":32561},"6660":{"orbit":2,"orbitIndex":12,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"connections":[{"orbit":-7,"id":39050}],"group":1165,"name":"Damage against Ailments","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":6660},"62310":{"orbit":7,"orbitIndex":22,"recipe":["Isolation","Disgust","Guilt"],"connections":[{"orbit":2,"id":36325},{"orbit":0,"id":56934}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Incendiary","group":542,"isNotable":true,"stats":["60% increased Flammability Magnitude","30% increased Damage with Hits against Burning Enemies"],"skill":62310},"53524":{"orbit":7,"orbitIndex":19,"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"connections":[{"orbit":0,"id":32727}],"group":654,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":53524},"38069":{"orbit":2,"orbitIndex":0,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":0,"id":338}],"group":870,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":38069},"56368":{"orbit":0,"orbitIndex":0,"stats":["15% increased Life Regeneration rate while Shapeshifted"],"connections":[{"orbit":-4,"id":61393}],"group":124,"name":"Shapeshifted Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":56368},"45990":{"orbit":3,"orbitIndex":23,"stats":["4% increased Attack Speed with Axes"],"connections":[{"orbit":0,"id":39448}],"group":172,"name":"Axe Attack Speed","icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":45990},"64492":{"orbit":7,"orbitIndex":9,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"connections":[{"orbit":7,"id":46688}],"group":1144,"name":"One Handed Attack Speed","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":64492},"45331":{"orbit":7,"orbitIndex":21,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"connections":[{"orbit":7,"id":23221},{"orbit":9,"id":60323}],"group":1233,"name":"Chaining Projectiles","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":45331},"4377":{"orbit":2,"orbitIndex":15,"stats":["10% increased Accuracy Rating while Dual Wielding"],"connections":[{"orbit":0,"id":50273}],"group":795,"name":"Dual Wielding Accuracy","icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":4377},"8872":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds","name":"Dual Wielding Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern","group":794,"connections":[{"orbit":0,"id":2394},{"orbit":0,"id":45488}],"stats":[],"skill":8872},"40596":{"orbit":5,"orbitIndex":36,"stats":["12% increased Stun Threshold"],"connections":[],"group":300,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":40596},"35171":{"orbit":3,"orbitIndex":2,"stats":["Spell Skills have 6% increased Area of Effect"],"connections":[{"orbit":0,"id":18846}],"group":380,"name":"Spell Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":35171},"60809":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","name":"Channelling Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","group":433,"connections":[],"stats":[],"skill":60809},"33570":{"orbit":9,"orbitIndex":20,"connections":[{"orbit":5,"id":36696}],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds","name":"Soulless Form","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"ascendancyName":"Abyssal Lich"}},"group":1120,"isNotable":true,"stats":["10% of Damage taken bypasses Energy Shield","No inherent Mana Regeneration","Regenerate Mana equal to 6% of maximum Life per second"],"skill":33570},"829":{"orbit":5,"orbitIndex":25,"connections":[{"orbit":2147483647,"id":36025}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":88,"connectionArt":"CharacterPlanned","stats":["25% increased Minion Duration"],"skill":829},"65042":{"orbit":1,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","name":"Rage Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","group":176,"connections":[],"stats":[],"skill":65042},"59214":{"orbit":7,"orbitIndex":18,"recipe":["Disgust","Isolation","Despair"],"connections":[{"orbit":0,"id":26268},{"orbit":0,"id":6570}],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Fated End","group":1207,"isNotable":true,"stats":["30% increased Curse Duration","Targets Cursed by you have 50% reduced Life Regeneration Rate","Enemies you Curse cannot Recharge Energy Shield"],"skill":59214},"20289":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Ire"],"connections":[{"orbit":0,"id":61896},{"orbit":0,"id":50767}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","name":"Frozen Claw","group":112,"isNotable":true,"stats":["Gain 8% of Damage as Extra Cold Damage while Shapeshifted"],"skill":20289},"38888":{"orbit":7,"orbitIndex":12,"recipe":["Greed","Disgust","Ire"],"connections":[{"orbit":0,"id":39116}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Unerring Impact","group":848,"isNotable":true,"stats":["16% increased Accuracy Rating with One Handed Melee Weapons","16% increased Accuracy Rating with Two Handed Melee Weapons","+2 to Melee Strike Range"],"skill":38888},"7204":{"orbit":0,"orbitIndex":0,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":53527},{"orbit":0,"id":4985},{"orbit":0,"id":64525}],"group":236,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":7204},"48505":{"orbit":2,"orbitIndex":18,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":448,"connections":[],"stats":[],"skill":48505},"44330":{"orbit":3,"orbitIndex":2,"recipe":["Fear","Greed","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"Coated Arms","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":769,"isNotable":true,"stats":["25% increased Damage with One Handed Weapons","Attacks with One-Handed Weapons have 20% increased Chance to inflict Ailments"],"skill":44330},"8821":{"orbit":3,"orbitIndex":0,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":63863}],"group":827,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":8821},"45075":{"orbit":7,"orbitIndex":8,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"connections":[{"orbit":0,"id":43507},{"orbit":0,"id":27439}],"group":295,"name":"Attack Damage and Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":45075},"63170":{"orbit":3,"orbitIndex":9,"connections":[{"orbit":2147483647,"id":6999}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed and Elemental Resistance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["Totems gain +1% to all Maximum Elemental Resistances","Spells Cast by Totems have 2% increased Cast Speed","Attacks used by Totems have 2% increased Attack Speed"],"skill":63170},"35696":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":24070},{"orbit":0,"id":64064},{"orbit":0,"id":1020}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1275,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":35696},"34501":{"orbit":5,"orbitIndex":25,"connections":[{"orbit":0,"id":6935}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Armour and Evasion","ascendancyName":"Witchhunter","group":271,"stats":["15% increased Armour and Evasion Rating"],"skill":34501},"2978":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":853,"connections":[],"stats":[],"skill":2978},"53822":{"orbit":7,"orbitIndex":14,"stats":["Gain 2 Rage when Hit by an Enemy"],"connections":[],"group":132,"name":"Rage when Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":53822},"25927":{"orbit":0,"orbitIndex":0,"stats":["Minions deal 20% increased Damage with Command Skills"],"connections":[{"orbit":-2,"id":32847}],"group":520,"name":"Command Skill Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":25927},"7972":{"orbit":2,"orbitIndex":4,"stats":["20% increased Endurance Charge Duration"],"connections":[{"orbit":0,"id":25229},{"orbit":0,"id":5663}],"group":277,"name":"Endurance Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":7972},"32560":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":16249}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Presence Area","ascendancyName":"Tactician","group":296,"stats":["20% increased Presence Area of Effect"],"skill":32560},"11984":{"orbit":4,"orbitIndex":7,"connections":[{"orbit":2147483647,"id":42762}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["15% increased Physical Damage"],"skill":11984},"1207":{"orbit":4,"orbitIndex":69,"connections":[{"orbit":0,"id":38323}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":614,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":1207},"36596":{"orbit":3,"orbitIndex":4,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[{"orbit":-3,"id":45013}],"group":846,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":36596},"10909":{"orbit":3,"orbitIndex":8,"connections":[{"orbit":9,"id":16489},{"orbit":3,"id":33053}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":842,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":10909},"56818":{"orbit":3,"orbitIndex":18,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":-3,"id":43423},{"orbit":-6,"id":62510}],"group":1010,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":56818},"64119":{"orbit":7,"orbitIndex":20,"recipe":["Fear","Guilt","Suffering"],"connections":[{"orbit":0,"id":33596}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Rapid Reload","group":838,"isNotable":true,"stats":["40% increased Crossbow Reload Speed"],"skill":64119},"479":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2,"id":29126}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Hidden Forms","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":326,"connectionArt":"CharacterPlanned","stats":["Gain 8% of Damage as Extra Damage of a random Element while Shapeshifted"],"skill":479},"44069":{"orbit":3,"orbitIndex":4,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":-7,"id":29358}],"group":150,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":44069},"16725":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":27373},{"orbit":-6,"id":36629},{"orbit":0,"id":54811},{"orbit":0,"id":36163}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":465,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":16725},"45586":{"orbit":2,"orbitIndex":10,"stats":["Allies in your Presence deal 16% increased Damage"],"connections":[{"orbit":0,"id":14761}],"group":413,"name":"Ally Attack Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":45586},"28542":{"orbit":1,"orbitIndex":5,"recipe":["Guilt","Suffering","Greed"],"connections":[{"orbit":7,"id":62785}],"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"The Molten One's Gift","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":370,"isNotable":true,"stats":["+10% to Fire Resistance","15% increased effect of Fully Broken Armour","Fully Broken Armour you inflict also increases Fire Damage Taken from Hits"],"skill":28542},"18897":{"orbit":2,"orbitIndex":4,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":5,"id":53185}],"group":1375,"name":"Evasion Rating","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","skill":18897},"7201":{"orbit":7,"orbitIndex":21,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"connections":[{"orbit":3,"id":516}],"group":688,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":7201},"22188":{"orbit":7,"orbitIndex":0,"stats":["6% increased Reservation Efficiency of Herald Skills"],"connections":[{"orbit":-4,"id":38763},{"orbit":0,"id":21274}],"group":824,"name":"Herald Reservation","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":22188},"48774":{"orbit":7,"orbitIndex":22,"recipe":["Disgust","Ire","Paranoia"],"connections":[{"orbit":0,"id":44850}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Taut Flesh","group":789,"isNotable":true,"stats":["20% of Physical Damage taken Recouped as Life"],"skill":48774},"54814":{"orbit":2,"orbitIndex":14,"recipe":["Guilt","Isolation","Isolation"],"connections":[{"orbit":0,"id":16114}],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Profane Commander","group":430,"isNotable":true,"stats":["30% increased Presence Area of Effect","4% increased Spirit"],"skill":54814},"26363":{"orbit":7,"orbitIndex":3,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":49291},{"orbit":0,"id":52803}],"group":1189,"name":"Life Flask Charge Generation","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":26363},"49759":{"orbit":8,"orbitIndex":71,"connections":[{"orbit":6,"id":2857}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Shock Chance","ascendancyName":"Stormweaver","group":502,"stats":["20% increased chance to Shock"],"skill":49759},"17548":{"orbit":7,"orbitIndex":2,"recipe":["Ire","Suffering","Disgust"],"connections":[{"orbit":0,"id":630},{"orbit":0,"id":31039}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Moment of Truth","group":1006,"isNotable":true,"stats":["25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently","15% increased Critical Hit Chance"],"skill":17548},"13352":{"orbit":7,"orbitIndex":19,"stats":["5% increased Attack Damage","8% increased Glory generation"],"connections":[{"orbit":2147483647,"id":59180},{"orbit":0,"id":38010}],"group":493,"name":"Glory Generation and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":13352},"65160":{"orbit":3,"orbitIndex":7,"recipe":["Despair","Paranoia","Guilt"],"connections":[{"orbit":0,"id":44069}],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Titanic","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":150,"isNotable":true,"stats":["30% increased Stun Buildup","30% increased Stun Threshold","5% increased Strength"],"skill":65160},"45874":{"orbit":5,"orbitIndex":48,"recipe":["Suffering","Ire","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Proliferating Weeds","group":307,"isNotable":true,"stats":["Fissure Skills have +1 to Limit"],"skill":45874},"53261":{"orbit":7,"orbitIndex":11,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"connections":[{"orbit":-2,"id":30780}],"group":122,"name":"Ancestral Boosted Area and Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":53261},"37806":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Branching Bolts","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":963,"isNotable":true,"stats":["60% chance for Lightning Skills to Chain an additional time"],"skill":37806},"33974":{"orbit":4,"orbitIndex":18,"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":31189}],"group":800,"name":"Attack Damage and Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":33974},"34305":{"orbit":7,"orbitIndex":6,"stats":["5% increased Attack Damage","8% increased Glory generation"],"connections":[{"orbit":0,"id":31545}],"group":211,"name":"Glory Generation and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":34305},"14509":{"orbit":3,"orbitIndex":1,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":0,"id":9323}],"group":106,"name":"Rage on Melee Hit","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":14509},"45226":{"orbit":4,"orbitIndex":24,"connections":[{"orbit":0,"id":21218}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["16% increased Damage with Bows"],"skill":45226},"46051":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Thorns Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","group":94,"connections":[],"stats":[],"skill":46051},"23195":{"orbit":2,"orbitIndex":1,"stats":["10% increased Life Regeneration rate","10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":55375}],"group":323,"name":"Life and Mana Regeneration Rate","icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","skill":23195},"14739":{"orbit":2,"orbitIndex":3,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":49235}],"group":679,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":14739},"65226":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Infusion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","group":434,"connections":[],"stats":[],"skill":65226},"28863":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":800,"connections":[],"stats":[],"skill":28863},"4959":{"orbit":7,"orbitIndex":2,"recipe":["Despair","Fear","Paranoia"],"connections":[{"orbit":0,"id":12166}],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Heavy Frost","group":1193,"isNotable":true,"stats":["20% increased Freeze Buildup","Hits ignore non-negative Elemental Resistances of Frozen Enemies"],"skill":4959},"48530":{"orbit":2,"orbitIndex":0,"stats":["6% increased Spell Damage with Spells that cost Life","8% of Spell Mana Cost Converted to Life Cost"],"connections":[{"orbit":0,"id":39130},{"orbit":0,"id":4623}],"group":458,"name":"Life Spell Damage and Costs","icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":48530},"8854":{"orbit":8,"orbitIndex":54,"connections":[{"orbit":0,"id":46644}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","ascendancyName":"Infernalist","group":725,"stats":["3% increased maximum Life"],"skill":8854},"51847":{"orbit":4,"orbitIndex":24,"stats":["6% increased Attack Damage","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":33974}],"group":800,"name":"Attack Damage and Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":51847},"57810":{"orbit":0,"orbitIndex":0,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":40073}],"group":900,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":57810},"65424":{"orbit":3,"orbitIndex":3,"stats":["12% increased Attack Damage while Dual Wielding"],"connections":[{"orbit":0,"id":58109}],"group":795,"name":"Dual Wielding Damage","icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":65424},"49258":{"orbit":4,"orbitIndex":66,"connections":[{"orbit":0,"id":49769}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"skill":49258},"6792":{"orbit":7,"orbitIndex":6,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":33245},{"orbit":0,"id":2408}],"group":1233,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":6792},"48828":{"orbit":2,"orbitIndex":4,"connections":[{"orbit":0,"id":34840}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":466,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"skill":48828},"56174":{"orbit":3,"orbitIndex":5,"connections":[{"orbit":0,"id":1887}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["30% increased Armour while stationary"],"skill":56174},"19223":{"orbit":7,"orbitIndex":18,"stats":["10% increased Attack Damage"],"connections":[{"orbit":0,"id":21755},{"orbit":0,"id":53166}],"group":800,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":19223},"42026":{"orbit":7,"orbitIndex":0,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":0,"id":63813}],"group":292,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":42026},"12817":{"orbit":7,"orbitIndex":4,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":-7,"id":22967}],"group":306,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":12817},"13515":{"orbit":7,"orbitIndex":12,"recipe":["Suffering","Greed","Fear"],"connections":[{"orbit":0,"id":14601}],"icon":"Art/2DArt/SkillIcons/passives/stormborn.dds","name":"Stormwalker","group":669,"isNotable":true,"stats":["Gain 15% of Damage as Extra Lightning Damage while on Shocked Ground","40% reduced effect of Shock on you"],"skill":13515},"63037":{"orbit":4,"orbitIndex":70,"recipe":["Suffering","Guilt","Ire"],"connections":[{"orbit":0,"id":24430},{"orbit":0,"id":44298}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Sigil of Fire","group":260,"isNotable":true,"stats":["30% increased Damage with Hits against Ignited Enemies"],"skill":63037},"31855":{"orbit":7,"orbitIndex":7,"stats":["10% increased Life Recovery from Flasks"],"connections":[],"group":1031,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":31855},"42959":{"orbit":7,"orbitIndex":12,"recipe":["Suffering","Greed","Isolation"],"connections":[{"orbit":-2,"id":32896},{"orbit":0,"id":28903}],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Low Tolerance","group":1222,"isNotable":true,"stats":["60% increased Effect of Poison you inflict on targets that are not Poisoned"],"skill":42959},"26437":{"orbit":3,"orbitIndex":19,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":51129}],"group":179,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":26437},"22795":{"orbit":7,"orbitIndex":21,"connections":[{"orbit":0,"id":28992},{"orbit":0,"id":42781}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","options":{"Huntress":{"stats":["10% increased Melee Damage","10% increased Projectile Damage"],"id":29915,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Melee and Projectile Damage"}},"group":966,"isSwitchable":true,"stats":["10% increased Projectile Damage"],"skill":22795},"45824":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with Swords"],"connections":[{"orbit":0,"id":61441},{"orbit":0,"id":8493}],"group":583,"name":"Sword Damage","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":45824},"34626":{"orbit":2,"orbitIndex":6,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"connections":[{"orbit":0,"id":61142},{"orbit":0,"id":4527}],"group":204,"name":"Recover Life on consuming Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":34626},"47316":{"orbit":7,"orbitIndex":19,"recipe":["Ire","Isolation","Isolation"],"connections":[{"orbit":0,"id":2888},{"orbit":0,"id":28862}],"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Goring","group":422,"isNotable":true,"stats":["3% reduced maximum Life","30% increased amount of Life Leeched","40% increased Physical Damage"],"skill":47316},"30071":{"orbit":6,"orbitIndex":4,"connections":[{"orbit":-9,"id":27667}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Curse Effect","ascendancyName":"Blood Mage","group":910,"stats":["6% increased Curse Magnitudes"],"skill":30071},"25570":{"orbit":3,"orbitIndex":12,"connections":[{"orbit":0,"id":44560},{"orbit":0,"id":21549},{"orbit":0,"id":37694},{"orbit":0,"id":64083},{"orbit":0,"id":27572}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":["12% increased Damage"],"skill":25570},"10047":{"orbit":2,"orbitIndex":10,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":62757}],"group":233,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":10047},"42290":{"orbit":7,"orbitIndex":10,"stats":["6% increased Curse Magnitudes"],"connections":[{"orbit":-8,"id":38732}],"group":811,"name":"Curse Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":42290},"472":{"orbit":7,"orbitIndex":20,"stats":["+8 to Dexterity"],"connections":[{"orbit":0,"id":3744}],"group":796,"name":"Dexterity","icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","skill":472},"12786":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","name":"Aura Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","group":540,"connections":[{"orbit":0,"id":5777},{"orbit":0,"id":18465},{"orbit":0,"id":64299}],"stats":[],"skill":12786},"37279":{"orbit":3,"orbitIndex":15,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":41159}],"group":799,"name":"Lightning Damage and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":37279},"9085":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds","name":"Crimson Assault","group":1052,"isKeystone":true,"stats":["Bleeding you inflict is Aggravated","Base Bleeding Duration is 1 second","50% more Magnitude of Bleeding you inflict"],"skill":9085},"6999":{"orbit":3,"orbitIndex":7,"connections":[{"orbit":2147483647,"id":15672}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["Totems gain +2% to all Maximum Elemental Resistances"],"skill":6999},"51903":{"orbit":3,"orbitIndex":17,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":55058},{"orbit":0,"id":39347}],"group":208,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":51903},"50485":{"orbit":2,"orbitIndex":18,"recipe":["Isolation","Isolation","Envy"],"connections":[{"orbit":0,"id":22959}],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Zone of Control","group":916,"isNotable":true,"stats":["20% increased Area of Effect of Curses","10% increased Curse Magnitudes","Enemies you Curse are Hindered, with 15% reduced Movement Speed"],"skill":50485},"55843":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Armour and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","group":420,"connections":[],"stats":[],"skill":55843},"7390":{"orbit":3,"orbitIndex":4,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":7,"id":17150}],"group":676,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":7390},"58215":{"orbit":4,"orbitIndex":8,"recipe":["Paranoia","Suffering","Isolation"],"connections":[{"orbit":0,"id":292}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Sanguimantic Rituals","group":440,"isNotable":true,"stats":["Regenerate 1% of maximum Life per second","Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate"],"skill":58215},"8660":{"orbit":3,"orbitIndex":14,"recipe":["Paranoia","Guilt","Fear"],"connections":[{"orbit":0,"id":18846}],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Reverberation","group":380,"isNotable":true,"stats":["Spell Skills have 15% increased Area of Effect"],"skill":8660},"25446":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":390,"connections":[],"stats":[],"skill":25446},"54984":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":34015},{"orbit":-4,"id":34702},{"orbit":0,"id":55118}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1306,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54984},"7651":{"orbit":6,"orbitIndex":21,"recipe":["Despair","Isolation","Paranoia"],"connections":[{"orbit":0,"id":21788}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Pierce the Heart","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":1387,"isNotable":true,"stats":["Arrows Pierce an additional Target"],"skill":7651},"30459":{"orbit":1,"orbitIndex":3,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":779,"connections":[],"stats":[],"skill":30459},"54138":{"orbit":2,"orbitIndex":12,"stats":["3% increased Attack Speed with Swords"],"connections":[{"orbit":0,"id":38564},{"orbit":0,"id":37963}],"group":546,"name":"Sword Speed","icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","skill":54138},"37543":{"orbit":2,"orbitIndex":16,"recipe":["Despair","Envy","Guilt"],"connections":[{"orbit":0,"id":16647}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Full Recovery","group":529,"isNotable":true,"stats":["15% increased Life Regeneration rate","15% increased Mana Regeneration Rate","12% increased Cast Speed while on Full Mana"],"skill":37543},"4447":{"orbit":7,"orbitIndex":12,"recipe":["Greed","Despair","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin their Motivation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":939,"isNotable":true,"stats":["20% increased Pin duration","Pinned Enemies cannot deal Critical Hits"],"skill":4447},"10927":{"orbit":3,"orbitIndex":3,"stats":["10% increased Pin duration"],"connections":[{"orbit":0,"id":9272},{"orbit":0,"id":42250}],"group":939,"name":"Pin Duration","icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","skill":10927},"27296":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":59777},{"orbit":-9,"id":11275},{"orbit":0,"id":18684},{"orbit":0,"id":21670}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":135,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":27296},"4624":{"orbit":7,"orbitIndex":7,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":3,"id":49550}],"group":533,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":4624},"1913":{"orbit":7,"orbitIndex":3,"stats":["+20 to Armour"],"connections":[{"orbit":0,"id":38646},{"orbit":0,"id":36709}],"group":631,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":1913},"24843":{"orbit":7,"orbitIndex":20,"stats":["25% increased Evasion Rating while Parrying"],"connections":[{"orbit":-7,"id":1680},{"orbit":0,"id":56860}],"group":1155,"name":"Evasion during Parry","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":24843},"29762":{"orbit":3,"orbitIndex":1,"recipe":["Paranoia","Ire","Disgust"],"connections":[{"orbit":0,"id":8460},{"orbit":-2,"id":40328}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Guttural Roar","group":190,"isNotable":true,"stats":["25% increased Warcry Speed","Warcries Debilitate Enemies","Warcry Skills have 25% increased Area of Effect"],"skill":29762},"36782":{"orbit":7,"orbitIndex":12,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":0,"id":1151}],"group":784,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":36782},"7333":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":696,"connections":[],"stats":[],"skill":7333},"29402":{"orbit":7,"orbitIndex":3,"stats":["15% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":4046},{"orbit":0,"id":54282},{"orbit":0,"id":38270}],"group":709,"name":"Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":29402},"33562":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage while Shapeshifted"],"connections":[{"orbit":0,"id":27216},{"orbit":0,"id":27611}],"group":201,"name":"Shapeshifted Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":33562},"14508":{"orbit":8,"orbitIndex":29,"connections":[{"orbit":0,"id":29074}],"nodeOverlay":{"path":"PathfinderFrameSmallCanAllocate","alloc":"PathfinderFrameSmallAllocated","unalloc":"PathfinderFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Poison Effect","ascendancyName":"Pathfinder","group":1438,"stats":["12% increased Magnitude of Poison you inflict"],"skill":14508},"12918":{"orbit":2,"orbitIndex":8,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":4017}],"group":777,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":12918},"6133":{"orbit":4,"orbitIndex":48,"recipe":["Paranoia","Greed","Fear"],"connections":[{"orbit":0,"id":33402},{"orbit":0,"id":58138}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Core of the Guardian","group":117,"isNotable":true,"stats":["100% increased Defences from Equipped Shield"],"skill":6133},"6891":{"orbit":2,"orbitIndex":22,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":56265}],"group":1377,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":6891},"13950":{"orbit":2,"orbitIndex":5,"connections":[{"orbit":2147483647,"id":11666}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Reduced Movement Penalty","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":86,"connectionArt":"CharacterPlanned","stats":["6% reduced Movement Speed Penalty from using Skills while moving"],"skill":13950},"6078":{"orbit":3,"orbitIndex":1,"stats":["8% chance to Poison on Hit"],"connections":[{"orbit":4,"id":61119}],"group":1326,"name":"Poison Chance","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":6078},"46386":{"orbit":0,"orbitIndex":0,"stats":["Companions deal 12% increased Damage"],"connections":[{"orbit":0,"id":39986}],"group":1411,"name":"Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":46386},"51416":{"orbit":6,"orbitIndex":54,"stats":["3% increased Cast Speed"],"connections":[{"orbit":-6,"id":32016}],"group":1172,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":51416},"44540":{"orbit":1,"orbitIndex":4,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":1105,"connections":[],"stats":[],"skill":44540},"9040":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","name":"Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","group":246,"connections":[{"orbit":0,"id":45751}],"stats":[],"skill":9040},"57230":{"orbit":6,"orbitIndex":6,"stats":["10% increased Physical Damage"],"connections":[{"orbit":-4,"id":25851},{"orbit":-6,"id":36270}],"group":1172,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":57230},"9217":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with One Handed Weapons"],"connections":[{"orbit":0,"id":5108},{"orbit":0,"id":16538},{"orbit":0,"id":47733}],"group":769,"name":"One Handed Damage","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":9217},"25100":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds","name":"Oasis","group":1014,"isKeystone":true,"stats":["Cannot use Charms","30% more Recovery from Flasks"],"skill":25100},"35558":{"orbit":3,"orbitIndex":3,"stats":["Minions Revive 5% faster"],"connections":[{"orbit":0,"id":46726}],"group":594,"name":"Minion Revive Speed","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":35558},"30657":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38463},{"orbit":0,"id":6842},{"orbit":0,"id":59064},{"orbit":0,"id":58848},{"orbit":0,"id":32891}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1239,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":30657},"38066":{"orbit":7,"orbitIndex":12,"stats":["10% increased Armour","Break 15% increased Armour"],"connections":[{"orbit":0,"id":25300}],"group":205,"name":"Armour Break and Armour","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":38066},"10484":{"orbit":2,"orbitIndex":14,"stats":["+2 to Maximum Rage"],"connections":[{"orbit":0,"id":42660}],"group":221,"name":"Maximum Rage","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":10484},"52":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":39131}],"icon":"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds","name":"Zealot's Oath","group":180,"isKeystone":true,"stats":["Excess Life Recovery from Regeneration is applied to Energy Shield","Energy Shield does not Recharge"],"skill":52},"53893":{"orbit":2,"orbitIndex":14,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":0,"id":21784}],"group":198,"name":"Damage and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":53893},"32507":{"orbit":0,"orbitIndex":0,"recipe":["Despair","Envy","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Cut to the Bone","group":654,"isNotable":true,"stats":["Break Armour on Critical Hit with Spells equal to 10% of Physical Damage dealt","20% increased Magnitude of Impales inflicted with Spells","20% increased Physical Damage"],"skill":32507},"64357":{"orbit":2,"orbitIndex":8,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":50062},{"orbit":0,"id":506}],"group":268,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":64357},"38459":{"orbit":2,"orbitIndex":16,"recipe":["Disgust","Paranoia","Disgust"],"connections":[{"orbit":0,"id":38568}],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Disorientation","group":1033,"isNotable":true,"stats":["25% increased Blind duration","25% increased Damage with Hits against Blinded Enemies"],"skill":38459},"47733":{"orbit":2,"orbitIndex":7,"stats":["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"],"connections":[],"group":769,"name":"One Handed Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","skill":47733},"4492":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Attributes Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":761,"connections":[],"stats":[],"skill":4492},"13748":{"orbit":3,"orbitIndex":0,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":-6,"id":38338},{"orbit":9,"id":41029}],"group":1022,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":13748},"17349":{"orbit":7,"orbitIndex":0,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":-3,"id":23940},{"orbit":0,"id":58138}],"group":117,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":17349},"13942":{"orbit":3,"orbitIndex":3,"stats":["15% increased Armour"],"connections":[{"orbit":0,"id":65023}],"group":649,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":13942},"51169":{"orbit":7,"orbitIndex":21,"recipe":["Despair","Ire","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Soul Bloom","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":759,"isNotable":true,"stats":["20% increased Energy Shield Recovery rate"],"skill":51169},"52068":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds","name":"Turtle Charm","ascendancyName":"Warbringer","group":60,"isNotable":true,"stats":["You take 20% of damage from Blocked Hits","Maximum Block chance is 75%"],"skill":52068},"14254":{"orbit":2,"orbitIndex":4,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":97}],"group":753,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":14254},"52442":{"orbit":2,"orbitIndex":20,"stats":["3% increased Attack Speed"],"connections":[],"group":753,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":52442},"21684":{"orbit":2,"orbitIndex":6,"stats":["4% increased Block chance","15% increased Defences from Equipped Shield"],"connections":[{"orbit":5,"id":1214}],"group":174,"name":"Block and Shield Defences","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":21684},"47443":{"orbit":0,"orbitIndex":0,"stats":["8% increased Reservation Efficiency of Companion Skills"],"connections":[{"orbit":0,"id":60992}],"group":1419,"name":"Companion Reservation","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":47443},"13468":{"orbit":3,"orbitIndex":22,"connections":[{"orbit":0,"id":51454}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Give Up Your Essence","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":["Allies in your Presence Regenerate 2% of your Maximum Life per second","30% increased Life Cost of Skills"],"skill":13468},"1878":{"orbit":7,"orbitIndex":23,"stats":["12% increased maximum Energy Shield","+5% of Armour also applies to Elemental Damage"],"connections":[{"orbit":0,"id":14328}],"group":420,"name":"Energy Shield and Armour applies to Elemental Resistance","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":1878},"51944":{"orbit":3,"orbitIndex":15,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":49406},{"orbit":0,"id":51728},{"orbit":0,"id":47683}],"group":790,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":51944},"19953":{"orbit":7,"orbitIndex":2,"connections":[{"orbit":2147483647,"id":50142}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["15% increased Lightning Damage"],"skill":19953},"22290":{"orbit":3,"orbitIndex":12,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[{"orbit":-6,"id":48821},{"orbit":0,"id":36302}],"group":744,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":22290},"29930":{"orbit":2,"orbitIndex":0,"stats":["Companions deal 12% increased Damage","Companions have 12% increased maximum Life"],"connections":[{"orbit":3,"id":16938},{"orbit":0,"id":47088}],"group":989,"name":"Companion Damage and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":29930},"9212":{"orbit":1,"orbitIndex":3,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":291,"connectionArt":"CharacterPlanned","stats":[],"skill":9212},"43486":{"orbit":2,"orbitIndex":11,"connections":[{"orbit":0,"id":54289},{"orbit":2147483647,"id":39102}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":226,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"skill":43486},"56703":{"orbit":2,"orbitIndex":8,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":15782},{"orbit":0,"id":28839}],"group":401,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":56703},"31650":{"orbit":5,"orbitIndex":0,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":16051},{"orbit":0,"id":31017}],"group":314,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":31650},"35031":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Isolation","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Chakra of Life","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":1404,"isNotable":true,"stats":["3% increased maximum Life","10% increased Life Recovery rate"],"skill":35031},"29328":{"orbit":4,"orbitIndex":61,"stats":["10% increased chance to inflict Ailments"],"connections":[{"orbit":0,"id":43201}],"group":732,"name":"Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":29328},"31326":{"orbit":2,"orbitIndex":18,"recipe":["Guilt","Suffering","Paranoia"],"connections":[{"orbit":0,"id":44092},{"orbit":0,"id":11505}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Slow Burn","group":586,"isNotable":true,"stats":["20% increased Ignite Magnitude","20% increased Ignite Duration on Enemies"],"skill":31326},"21349":{"orbit":2,"orbitIndex":4,"recipe":["Isolation","Despair","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds","name":"The Cunning Fox","group":1107,"isNotable":true,"stats":["+5% to Quality of all Skills"],"skill":21349},"32705":{"orbit":3,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds","name":"Barya of Navira","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Navira, the Last Mirage"],"skill":32705},"23587":{"orbit":5,"orbitIndex":9,"connections":[{"orbit":7,"id":25434},{"orbit":0,"id":29133}],"nodeOverlay":{"path":"InvokerFrameLargeCanAllocate","alloc":"InvokerFrameLargeAllocated","unalloc":"InvokerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds","name":"I am the Blizzard...","ascendancyName":"Invoker","group":1430,"isNotable":true,"stats":["Gain 10% of Damage as Extra Cold Damage","On Freezing Enemies create Chilled Ground"],"skill":23587},"48588":{"orbit":5,"orbitIndex":14,"stats":["8% increased Projectile Damage"],"connections":[{"orbit":0,"id":2455},{"orbit":0,"id":13081}],"group":730,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":48588},"54985":{"orbit":7,"orbitIndex":7,"stats":["8% increased Bolt Speed"],"connections":[{"orbit":0,"id":14602}],"group":553,"name":"Bolt Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":54985},"4806":{"orbit":2,"orbitIndex":10,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":-4,"id":32183}],"group":1245,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":4806},"61938":{"orbit":3,"orbitIndex":14,"stats":["15% increased Magnitude of Jagged Ground you create"],"connections":[{"orbit":0,"id":14515}],"group":283,"name":"Jagged Ground Effect","icon":"Art/2DArt/SkillIcons/icongroundslam.dds","skill":61938},"58939":{"orbit":2,"orbitIndex":8,"recipe":["Envy","Envy","Paranoia"],"connections":[{"orbit":0,"id":44608}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Dispatch Foes","group":861,"isNotable":true,"stats":["40% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"skill":58939},"49734":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":46741},{"orbit":0,"id":9414},{"orbit":0,"id":32768},{"orbit":0,"id":33203}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":224,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":49734},"14997":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":47856},{"orbit":0,"id":28370}],"group":722,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":14997},"49691":{"orbit":7,"orbitIndex":21,"stats":["+16 to Evasion Rating"],"connections":[{"orbit":0,"id":13828},{"orbit":0,"id":31409},{"orbit":0,"id":61106}],"group":863,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":49691},"2841":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":894,"connections":[],"stats":[],"skill":2841},"61409":{"orbit":7,"orbitIndex":22,"stats":["+12 to Strength"],"connections":[{"orbit":0,"id":13075}],"group":213,"name":"Strength","icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","skill":61409},"53194":{"orbit":2,"orbitIndex":16,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[{"orbit":3,"id":38130}],"group":333,"name":"Warcry Cooldown Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":53194},"36474":{"orbit":2,"orbitIndex":4,"stats":["15% reduced effect of Curses on you"],"connections":[{"orbit":4,"id":38596}],"group":406,"name":"Curse Effect on Self","icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":36474},"23880":{"orbit":8,"orbitIndex":0,"connections":[{"orbit":3,"id":13174}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Mana","ascendancyName":"Infernalist","group":725,"stats":["3% increased maximum Mana"],"skill":23880},"49769":{"orbit":2,"orbitIndex":21,"connections":[{"orbit":0,"id":21374}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Corruption Endures","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["7% chance to Avoid Death from Hits"],"skill":49769},"57386":{"orbit":3,"orbitIndex":13,"connections":[{"orbit":-6,"id":4621}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Elemental Threshold","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["17% increased Elemental Ailment Threshold"],"skill":57386},"27186":{"orbit":2,"orbitIndex":0,"stats":["10% reduced Magnitude of Ignite on you"],"connections":[{"orbit":0,"id":62963}],"group":653,"name":"Ignite Effect on You","icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","skill":27186},"34818":{"orbit":1,"orbitIndex":1,"stats":["+5% to Fire Resistance"],"connections":[{"orbit":2,"id":43250}],"group":144,"name":"Fire Resistance","icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","skill":34818},"52860":{"orbit":7,"orbitIndex":12,"stats":["15% increased Ballista damage"],"connections":[{"orbit":0,"id":45494},{"orbit":0,"id":40975}],"group":585,"name":"Ballista Damage","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":52860},"59603":{"orbit":0,"orbitIndex":0,"stats":["3% of Damage taken Recouped as Life"],"connections":[],"group":898,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":59603},"22532":{"orbit":2,"orbitIndex":1,"recipe":["Disgust","Fear","Ire"],"connections":[{"orbit":0,"id":60488}],"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Fearful Paralysis","group":818,"isNotable":true,"stats":["Enemies are Intimidated for 4 seconds when you Immobilise them"],"skill":22532},"7465":{"orbit":3,"orbitIndex":16,"stats":["12% increased Critical Hit Chance against Enemies that have entered your Presence Recently"],"connections":[{"orbit":0,"id":11509}],"group":1307,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":7465},"62313":{"orbit":5,"orbitIndex":52,"stats":["+15% of Armour also applies to Fire Damage"],"connections":[],"group":143,"name":"Armour Applies to Fire Damage Hits","icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","skill":62313},"24993":{"orbit":3,"orbitIndex":5,"connections":[{"orbit":6,"id":54297}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"skill":24993},"21549":{"orbit":4,"orbitIndex":58,"connections":[{"orbit":2147483647,"id":12940}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":521,"connectionArt":"CharacterPlanned","stats":["20% increased Physical Damage"],"skill":21549},"5186":{"orbit":0,"orbitIndex":0,"stats":["11% increased Chaos Damage"],"connections":[{"orbit":3,"id":6800}],"group":1261,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":5186},"4245":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54838}],"nodeOverlay":{"path":"TacticianFrameSmallCanAllocate","alloc":"TacticianFrameSmallAllocated","unalloc":"TacticianFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Pin Buildup","ascendancyName":"Tactician","group":330,"stats":["20% increased Pin Buildup"],"skill":4245},"7023":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1350,"connections":[],"stats":[],"skill":7023},"31373":{"orbit":4,"orbitIndex":63,"recipe":["Isolation","Isolation","Despair"],"connections":[{"orbit":0,"id":50561},{"orbit":0,"id":47173}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Vocal Empowerment","group":184,"isNotable":true,"stats":["Warcries Empower an additional Attack"],"skill":31373},"56935":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":57710},{"orbit":0,"id":34058}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":714,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":56935},"20558":{"orbit":2,"orbitIndex":16,"recipe":["Suffering","Greed","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Among the Hordes","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":225,"isNotable":true,"stats":["3% increased Movement Speed","15% increased Attack Damage","Minions have 10% increased Movement Speed"],"skill":20558},"5695":{"orbit":7,"orbitIndex":20,"stats":["15% increased Archon Buff duration"],"connections":[{"orbit":7,"id":32309},{"orbit":5,"id":50104}],"group":534,"name":"Archon Duration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":5695},"9988":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":20195},{"orbit":0,"id":16276},{"orbit":0,"id":60913},{"orbit":0,"id":25438},{"orbit":0,"id":9997},{"orbit":0,"id":8525},{"orbit":0,"id":13772},{"orbit":0,"id":22908},{"orbit":0,"id":110},{"orbit":0,"id":49340},{"orbit":0,"id":61039},{"orbit":0,"id":64962}],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds","name":"Smith's Masterwork","ascendancyName":"Smith of Kitava","isFreeAllocate":true,"group":47,"isNotable":true,"stats":["Can only use a Normal Body Armour","+200 to Armour for each Connected Notable Passive Skill Allocated"],"skill":9988},"45090":{"orbit":7,"orbitIndex":19,"stats":["12% increased Attack Damage"],"connections":[{"orbit":0,"id":36027}],"group":249,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":45090},"7060":{"orbit":2,"orbitIndex":20,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":24339}],"group":250,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":7060},"38670":{"orbit":2,"orbitIndex":21,"stats":["20% increased Armour if you have been Hit Recently"],"connections":[{"orbit":0,"id":28589}],"group":94,"name":"Armour if Hit","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":38670},"58022":{"orbit":0,"orbitIndex":0,"stats":["11% increased Chaos Damage"],"connections":[{"orbit":3,"id":5186},{"orbit":-7,"id":26762}],"group":1254,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":58022},"8875":{"orbit":1,"orbitIndex":8,"stats":["15% increased Electrocute Buildup"],"connections":[{"orbit":0,"id":50687}],"group":709,"name":"Electrocute Buildup","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":8875},"52106":{"orbit":6,"orbitIndex":34,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":44005},{"orbit":0,"id":10295}],"group":266,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":52106},"58817":{"orbit":4,"orbitIndex":15,"recipe":["Suffering","Suffering","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Artillery Strike","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","group":585,"isNotable":true,"stats":["Attack Skills have +1 to maximum number of Summoned Ballista Totems","15% increased Area of Effect while you have a Totem"],"skill":58817},"39752":{"orbit":4,"orbitIndex":48,"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"connections":[{"orbit":0,"id":5936},{"orbit":0,"id":38068}],"group":705,"name":"Elemental Ailment Duration","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":39752},"10731":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ChronomancerFrameLargeCanAllocate","alloc":"ChronomancerFrameLargeAllocated","unalloc":"ChronomancerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds","name":"Quicksand Hourglass","ascendancyName":"Chronomancer","group":318,"isNotable":true,"stats":["Grants Sands of Time"],"skill":10731},"46325":{"orbit":7,"orbitIndex":5,"stats":["10% increased Melee Damage"],"connections":[{"orbit":0,"id":3936},{"orbit":0,"id":33556}],"group":614,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":46325},"38532":{"orbit":2,"orbitIndex":20,"recipe":["Envy","Ire","Despair"],"connections":[{"orbit":0,"id":31779}],"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Thirst for Power","group":206,"isNotable":true,"stats":["25% chance when you gain a Power Charge to gain an additional Power Charge"],"skill":38532},"63828":{"orbit":7,"orbitIndex":18,"stats":["6% increased Ballista Critical Damage Bonus","10% increased Ballista Critical Hit Chance"],"connections":[],"group":886,"name":"Ballista Critical Strike and Damage","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":63828},"58674":{"orbit":7,"orbitIndex":1,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":641,"connections":[],"stats":[],"skill":58674},"47442":{"orbit":5,"orbitIndex":2,"connections":[{"orbit":0,"id":65518}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life Flasks","ascendancyName":"Blood Mage","group":910,"stats":["15% increased Life Flask Charges gained"],"skill":47442},"17378":{"orbit":3,"orbitIndex":22,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":0,"id":40894}],"group":461,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":17378},"5681":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","name":"Fortify Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","group":437,"connections":[],"stats":[],"skill":5681},"30136":{"orbit":3,"orbitIndex":7,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"connections":[{"orbit":0,"id":22626}],"group":194,"name":"Damage vs Armour Broken Enemies","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":30136},"21184":{"orbit":7,"orbitIndex":3,"stats":["6% increased Area of Effect"],"connections":[{"orbit":0,"id":20251}],"group":114,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":21184},"26228":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Prize of the Hunt","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":466,"connectionArt":"CharacterPlanned","stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","+1 to Maximum Frenzy Charges"],"skill":26228},"19162":{"orbit":5,"orbitIndex":60,"connections":[{"orbit":0,"id":34143},{"orbit":5,"id":31554},{"orbit":2147483647,"id":15141}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":177,"connectionArt":"CharacterPlanned","stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"skill":19162},"42127":{"orbit":2,"orbitIndex":10,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":0,"id":4456},{"orbit":0,"id":41573}],"group":696,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":42127},"50483":{"orbit":3,"orbitIndex":22,"stats":["Minions have 8% increased Area of Effect"],"connections":[{"orbit":0,"id":61842}],"group":460,"name":"Minion Area","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":50483},"18086":{"orbit":4,"orbitIndex":54,"recipe":["Suffering","Disgust","Suffering"],"connections":[{"orbit":0,"id":62844},{"orbit":0,"id":7333}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Breath of Ice","group":696,"isNotable":true,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"skill":18086},"65149":{"orbit":2,"orbitIndex":20,"stats":["10% increased effect of Fully Broken Armour"],"connections":[],"group":943,"name":"Armour Break Effect","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":65149},"56956":{"orbit":2,"orbitIndex":20,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"connections":[{"orbit":-4,"id":15885},{"orbit":0,"id":54632}],"group":678,"name":"Minion Life and Chaos Resistance","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":56956},"55231":{"orbit":7,"orbitIndex":13,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":37361},{"orbit":0,"id":9857}],"group":693,"name":"Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":55231},"34367":{"orbit":7,"orbitIndex":14,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":7,"id":58090},{"orbit":0,"id":57710}],"group":789,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":34367},"54982":{"orbit":1,"orbitIndex":7,"stats":["+5% to Fire Resistance"],"connections":[{"orbit":-9,"id":34818}],"group":144,"name":"Fire Resistance","icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","skill":54982},"17254":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Isolation"],"connections":[{"orbit":0,"id":14272},{"orbit":0,"id":26596}],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Spell Haste","group":1124,"isNotable":true,"stats":["15% increased Evasion Rating","8% increased Cast Speed"],"skill":17254},"41363":{"orbit":4,"orbitIndex":9,"stats":["+5% to Lightning Resistance"],"connections":[{"orbit":-5,"id":62518}],"group":238,"name":"Lightning Resistance","icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","skill":41363},"35849":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Thickened Arteries","group":242,"isNotable":true,"stats":["Regenerate 0.5% of maximum Life per second","40% increased Life Regeneration Rate while stationary"],"skill":35849},"44014":{"orbit":2,"orbitIndex":8,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":11855}],"group":924,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":44014},"11366":{"orbit":5,"orbitIndex":2,"recipe":["Suffering","Isolation","Paranoia"],"connections":[{"orbit":0,"id":34927},{"orbit":6,"id":558}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Volcanic Skin","group":685,"isNotable":true,"stats":["Gain 8% of Damage as Extra Fire Damage","+20% to Fire Resistance"],"skill":11366},"64488":{"orbit":7,"orbitIndex":3,"stats":["Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m"],"connections":[{"orbit":7,"id":7201}],"group":688,"name":"Projectile Critical Chance","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":64488},"3109":{"orbit":3,"orbitIndex":6,"stats":["10% increased Grenade Area of Effect"],"connections":[{"orbit":0,"id":29514}],"group":702,"name":"Grenade Area","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":3109},"63814":{"orbit":0,"orbitIndex":0,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":33216}],"group":686,"name":"Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":63814},"22331":{"orbit":1,"orbitIndex":3,"stats":["Minions have +8% to all Elemental Resistances"],"connections":[{"orbit":0,"id":8983},{"orbit":0,"id":40200}],"group":460,"name":"Minion Resistances","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":22331},"58814":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":55802},{"orbit":0,"id":244},{"orbit":0,"id":12465},{"orbit":0,"id":26830},{"orbit":0,"id":26952}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":921,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":58814},"31159":{"orbit":7,"orbitIndex":20,"stats":["15% increased Life Regeneration Rate while stationary"],"connections":[{"orbit":0,"id":46017}],"group":242,"name":"Life Regeneration while Stationary","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":31159},"46124":{"orbit":7,"orbitIndex":17,"recipe":["Despair","Guilt","Envy"],"connections":[{"orbit":0,"id":37593}],"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","name":"Arcane Remnants","group":802,"isNotable":true,"stats":["Recover 3% of Maximum Mana when you collect a Remnant"],"skill":46124},"65413":{"orbit":8,"orbitIndex":4,"connections":[{"orbit":0,"id":12882}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Spell Critical Chance","ascendancyName":"Stormweaver","group":502,"stats":["12% increased Critical Hit Chance for Spells"],"skill":65413},"11335":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":5571}],"nodeOverlay":{"path":"OracleFrameSmallCanAllocate","alloc":"OracleFrameSmallAllocated","unalloc":"OracleFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Passive Point","ascendancyName":"Oracle","group":4,"stats":["Grants 1 Passive Skill Point"],"skill":11335},"9745":{"orbit":7,"orbitIndex":12,"stats":["2% increased Movement Speed"],"connections":[{"orbit":2147483647,"id":58513}],"group":1232,"name":"Movement Speed","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","skill":9745},"2810":{"orbit":3,"orbitIndex":20,"connections":[{"orbit":-3,"id":9843}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds","name":"Varashta's Intuition","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["100% of Elemental Damage is taken from Mana before Life"],"skill":2810},"19104":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":29582}],"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","name":"Eagle Eye","isSwitchable":true,"options":{"Huntress":{"stats":["30% increased Parry Damage","30% increased Evasion Rating while Parrying"],"id":39628,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Reflex Action"}},"group":940,"isNotable":true,"stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"],"skill":19104},"54964":{"orbit":2,"orbitIndex":16,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":23078}],"group":257,"name":"Sentinels","icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":54964},"59208":{"orbit":2,"orbitIndex":16,"recipe":["Ire","Guilt","Suffering"],"connections":[{"orbit":0,"id":5681}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Frantic Fighter","group":439,"isNotable":true,"stats":["30% reduced Accuracy Rating while Surrounded","100% increased Attack Damage while Surrounded"],"skill":59208},"19426":{"orbit":2,"orbitIndex":4,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":15443}],"group":1001,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":19426},"12189":{"orbit":4,"orbitIndex":17,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":-4,"id":32859}],"group":449,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":12189},"58013":{"orbit":7,"orbitIndex":4,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":4844}],"group":908,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":58013},"6544":{"orbit":4,"orbitIndex":53,"recipe":["Envy","Disgust","Isolation"],"connections":[{"orbit":6,"id":56061},{"orbit":0,"id":42604}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Burning Strikes","group":409,"isNotable":true,"stats":["Gain 12% of Physical Damage as Extra Fire Damage"],"skill":6544},"13081":{"orbit":5,"orbitIndex":17,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":-5,"id":14254}],"group":730,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":13081},"52373":{"orbit":2,"orbitIndex":20,"stats":["+2 to Maximum Rage"],"connections":[{"orbit":-2,"id":37276},{"orbit":7,"id":56342}],"group":364,"name":"Maximum Rage","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":52373},"32777":{"orbit":2,"orbitIndex":15,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","name":"Shapeshifting Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":313,"connections":[],"stats":[],"skill":32777},"5852":{"orbit":9,"orbitIndex":96,"connections":[{"orbit":0,"id":20895},{"orbit":0,"id":47236},{"orbit":0,"id":5386},{"orbit":0,"id":14960},{"orbit":0,"id":9988}],"nodeOverlay":{"path":"Smith of KitavaFrameSmallCanAllocate","alloc":"Smith of KitavaFrameSmallAllocated","unalloc":"Smith of KitavaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Smith of Kitava","ascendancyName":"Smith of Kitava","isAscendancyStart":true,"group":41,"stats":[],"skill":5852},"2461":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","name":"Accuracy Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":773,"connections":[{"orbit":0,"id":44605}],"stats":[],"skill":2461},"40043":{"orbit":1,"orbitIndex":0,"stats":["10% increased Magnitude of Bleeding you inflict"],"connections":[{"orbit":0,"id":54990}],"group":693,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":40043},"17584":{"orbit":2,"orbitIndex":17,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","options":{"Druid":{"stats":["8% increased Spell Damage","8% increased Attack Damage"],"id":53526,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Spell and Attack Damage"}},"group":626,"isSwitchable":true,"stats":["6% increased Area of Effect for Attacks"],"skill":17584},"22439":{"orbit":3,"orbitIndex":12,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":5936}],"group":705,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":22439},"37266":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Guilt"],"connections":[{"orbit":0,"id":29930}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Nourishing Ally","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","group":989,"isNotable":true,"stats":["Companions have 20% increased maximum Life","20% increased Life Recovery Rate while your Companion is in your Presence"],"skill":37266},"50084":{"orbit":0,"orbitIndex":0,"stats":["10% increased Spell Damage","10% increased Attack Damage"],"connections":[{"orbit":0,"id":61525}],"group":663,"name":"Spell and Attack Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":50084},"17903":{"orbit":7,"orbitIndex":8,"stats":["16% increased Thorns damage"],"connections":[{"orbit":-7,"id":40117}],"group":259,"name":"Thorns","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":17903},"39365":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":39411}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Totem Life","ascendancyName":"Warbringer","group":46,"stats":["20% increased Totem Life"],"skill":39365},"27493":{"orbit":4,"orbitIndex":24,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":17118}],"group":875,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":27493},"35560":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"At your Command","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":562,"isNotable":true,"stats":["Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"],"skill":35560},"14601":{"orbit":7,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":669,"connections":[],"stats":[],"skill":14601},"48418":{"orbit":2,"orbitIndex":6,"recipe":["Ire","Disgust","Suffering"],"connections":[{"orbit":0,"id":38235}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Hefty Unit","group":555,"isNotable":true,"stats":["+3 to Stun Threshold per Strength"],"skill":48418},"57596":{"orbit":4,"orbitIndex":71,"connections":[{"orbit":0,"id":13468}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":["8% of Skill Mana Costs Converted to Life Costs"],"skill":57596},"21540":{"orbit":7,"orbitIndex":10,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":34367},{"orbit":0,"id":40783}],"group":789,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":21540},"9652":{"orbit":2,"orbitIndex":18,"recipe":["Despair","Envy","Fear"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Mending Deflection","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1237,"isNotable":true,"stats":["15% of Damage taken from Deflected Hits Recouped as Life"],"skill":9652},"17906":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":1369,"connections":[],"stats":[],"skill":17906},"27108":{"orbit":4,"orbitIndex":36,"recipe":["Disgust","Disgust","Envy"],"connections":[{"orbit":0,"id":47796}],"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Mass Hysteria","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":662,"isNotable":true,"stats":["Allies in your Presence have 6% increased Attack Speed","6% increased Attack Speed"],"skill":27108},"9009":{"orbit":5,"orbitIndex":1,"recipe":["Fear","Guilt","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Return to Nature","group":307,"isNotable":true,"stats":["Overgrown Plant Skills Break 50% increased Armour"],"skill":9009},"59342":{"orbit":6,"orbitIndex":68,"connections":[{"orbit":9,"id":23416}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life Leech","ascendancyName":"Blood Mage","group":910,"stats":["12% increased amount of Life Leeched"],"skill":59342},"31449":{"orbit":5,"orbitIndex":40,"stats":["10% increased Critical Hit Chance with Quarterstaves"],"connections":[{"orbit":0,"id":9444}],"group":1388,"name":"Quarterstaff Critical Chance","icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","skill":31449},"34210":{"orbit":0,"orbitIndex":0,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":54811},{"orbit":0,"id":64939}],"group":388,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":34210},"43877":{"orbit":1,"orbitIndex":7,"stats":["3% increased Attack Speed"],"connections":[{"orbit":-2,"id":51522},{"orbit":-2,"id":47895}],"group":1110,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":43877},"4331":{"orbit":3,"orbitIndex":19,"recipe":["Fear","Envy","Envy"],"connections":[{"orbit":0,"id":33590}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Guided Hand","group":122,"isNotable":true,"stats":["Ancestrally Boosted Attacks deal 30% increased Damage","On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted"],"skill":4331},"63360":{"orbit":7,"orbitIndex":14,"stats":["20% increased Glory generation for Banner Skills"],"connections":[{"orbit":2147483647,"id":62258}],"group":656,"name":"Banner Glory Gained","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":63360},"30457":{"orbit":7,"orbitIndex":12,"stats":["15% increased Armour"],"connections":[{"orbit":4,"id":54416}],"group":152,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":30457},"40975":{"orbit":0,"orbitIndex":0,"stats":["15% increased Ballista damage"],"connections":[{"orbit":0,"id":24368}],"group":585,"name":"Ballista Damage","icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","skill":40975},"45599":{"orbit":7,"orbitIndex":12,"recipe":["Fear","Envy","Fear"],"connections":[{"orbit":0,"id":6689},{"orbit":0,"id":32885}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Lay Siege","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","group":677,"isNotable":true,"stats":["1% increased Damage per 1% Chance to Block"],"skill":45599},"6100":{"orbit":7,"orbitIndex":11,"connections":[{"orbit":4,"id":20963}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":164,"connectionArt":"CharacterPlanned","stats":["20% increased Critical Damage Bonus"],"skill":6100},"10738":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":1227,"connections":[],"stats":[],"skill":10738},"9737":{"orbit":4,"orbitIndex":51,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":36522},{"orbit":4,"id":24813},{"orbit":0,"id":59480},{"orbit":0,"id":15590}],"group":655,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":9737},"55048":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds","name":"Pain Attunement","group":197,"isKeystone":true,"stats":["30% less Critical Damage Bonus when on Full Life","30% more Critical Damage Bonus when on Low Life"],"skill":55048},"32448":{"orbit":2,"orbitIndex":14,"recipe":["Disgust","Greed","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Shockproof","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":588,"isNotable":true,"stats":["+30% of Armour also applies to Lightning Damage","30% reduced effect of Shock on you"],"skill":32448},"61985":{"orbit":6,"orbitIndex":6,"connections":[{"orbit":0,"id":29398}],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds","name":"Heavy Snows","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["Targets can be affected by two of your Chills at the same time","Your Chills can Slow targets by up to a maximum of 35%","25% less Magnitude of Chill you inflict"],"skill":61985},"5088":{"orbit":3,"orbitIndex":18,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"connections":[{"orbit":0,"id":49537}],"group":343,"name":"Elemental","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":5088},"31779":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","name":"Power Charge Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":206,"connections":[],"stats":[],"skill":31779},"25172":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":3704}],"nodeOverlay":{"path":"WitchhunterFrameSmallCanAllocate","alloc":"WitchhunterFrameSmallAllocated","unalloc":"WitchhunterFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","ascendancyName":"Witchhunter","group":272,"stats":["6% increased Cooldown Recovery Rate"],"skill":25172},"40395":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":106,"connections":[],"stats":[],"skill":40395},"13505":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4956}],"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Resilient Soul","group":563,"isNotable":true,"stats":["20% increased Life Regeneration rate","5% of Damage taken Recouped as Life"],"skill":13505},"8791":{"orbit":3,"orbitIndex":7,"recipe":["Fear","Greed","Despair"],"connections":[{"orbit":0,"id":32096}],"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","name":"Sturdy Ally","group":1032,"isNotable":true,"stats":["Companions gain your Strength","+15 to Strength"],"skill":8791},"35033":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":55796}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Skill Speed","ascendancyName":"Amazon","group":1472,"stats":["4% increased Skill Speed"],"skill":35033},"33838":{"orbit":7,"orbitIndex":15,"stats":["6% increased chance to inflict Ailments","6% increased Duration of Damaging Ailments on Enemies"],"connections":[{"orbit":-4,"id":46182}],"group":1082,"name":"Ailment Chance and Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":33838},"17791":{"orbit":7,"orbitIndex":3,"stats":["18% increased Stun Buildup with Maces"],"connections":[{"orbit":0,"id":526}],"group":126,"name":"Mace Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":17791},"32354":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Ire"],"connections":[{"orbit":-2,"id":6626}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Defiance","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","group":649,"isNotable":true,"stats":["120% increased Armour and Evasion Rating when on Low Life"],"skill":32354},"10474":{"orbit":3,"orbitIndex":12,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":64443},{"orbit":0,"id":53785}],"group":285,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":10474},"43939":{"orbit":3,"orbitIndex":6,"recipe":["Fear","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":48267},{"orbit":0,"id":56214}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Melting Flames","group":175,"isNotable":true,"stats":["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%"],"skill":43939},"63031":{"orbit":4,"orbitIndex":54,"recipe":["Paranoia","Despair","Despair"],"connections":[{"orbit":0,"id":41821}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glorious Anticipation","group":211,"isNotable":true,"stats":["Skills gain 1 Glory every 2 seconds for each Rare or Unique monster in your Presence"],"skill":63031},"44017":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":4527}],"icon":"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds","name":"Resolute Technique","group":227,"isKeystone":true,"stats":["Accuracy Rating is Doubled","Never deal Critical Hits"],"skill":44017},"53089":{"orbit":2,"orbitIndex":12,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":9918},{"orbit":0,"id":10474}],"group":285,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":53089},"28021":{"orbit":0,"orbitIndex":0,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":9782}],"group":1127,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":28021},"29871":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":24226}],"nodeOverlay":{"path":"DeadeyeFrameSmallCanAllocate","alloc":"DeadeyeFrameSmallAllocated","unalloc":"DeadeyeFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Mark Effect","ascendancyName":"Deadeye","group":1429,"stats":["12% increased Effect of your Mark Skills"],"skill":29871},"15114":{"orbit":0,"orbitIndex":0,"recipe":["Fear","Paranoia","Greed"],"connections":[{"orbit":5,"id":6356},{"orbit":-5,"id":71},{"orbit":0,"id":7642}],"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Boundless Growth","group":449,"isNotable":true,"stats":["Plants have a 20% chance to immediately Overgrow"],"skill":15114},"56162":{"orbit":8,"orbitIndex":13,"connections":[{"orbit":-9,"id":50192}],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds","name":"Grasping Wounds","ascendancyName":"Blood Mage","group":910,"isNotable":true,"stats":["25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"],"skill":56162},"22783":{"orbit":7,"orbitIndex":10,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":18160},{"orbit":0,"id":17501}],"group":644,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","skill":22783},"34769":{"orbit":2,"orbitIndex":18,"connections":[{"orbit":0,"id":52115}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration Rate","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":477,"connectionArt":"CharacterPlanned","stats":["25% increased Life Regeneration rate"],"skill":34769},"61942":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/DruidAnimism.dds","name":"Lord of the Wilds","group":158,"isKeystone":true,"stats":["You can equip a non-Unique Sceptre while wielding a Talisman","50% less Spirit","Non-Minion Skills have 50% less Reservation Efficiency"],"skill":61942},"34490":{"orbit":3,"orbitIndex":0,"connections":[{"orbit":0,"id":18972}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Aftershock Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":154,"connectionArt":"CharacterPlanned","stats":["10% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"],"skill":34490},"4364":{"orbit":4,"orbitIndex":42,"stats":["8% increased Attack Damage while moving","2% reduced Movement Speed Penalty from using Skills while moving"],"connections":[{"orbit":0,"id":23736}],"group":1053,"name":"Reduced Movement Penalty and Attack Damage while Moving","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":4364},"26148":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","name":"Accuracy Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":303,"connections":[],"stats":[],"skill":26148},"54708":{"orbit":2,"orbitIndex":11,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":13855},{"orbit":0,"id":3918}],"group":645,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":54708},"31977":{"orbit":5,"orbitIndex":36,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":4828},{"orbit":6,"id":10314}],"group":954,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":31977},"34782":{"orbit":7,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","name":"Shapeshifting Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":154,"connections":[],"stats":[],"skill":34782},"61796":{"orbit":7,"orbitIndex":20,"stats":["20% increased Armour Break Duration"],"connections":[{"orbit":-4,"id":8260}],"group":205,"name":"Armour Break Duration","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":61796},"16249":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds","name":"Watch How I Do It","ascendancyName":"Tactician","group":289,"isNotable":true,"stats":["Allies in your Presence gain added Attack Damage equal","to 25% of your main hand Weapon's Damage"],"skill":16249},"44669":{"orbit":3,"orbitIndex":9,"stats":["10% increased Skill Effect Duration"],"connections":[],"group":1020,"name":"Increased Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":44669},"61768":{"orbit":0,"orbitIndex":0,"stats":["Minions have +20% to Cold Resistance","Minions have +3% to Maximum Cold Resistances"],"connections":[],"group":891,"name":"Minion Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","skill":61768},"55789":{"orbit":4,"orbitIndex":3,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":-2,"id":41665}],"group":327,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":55789},"19027":{"orbit":7,"orbitIndex":12,"stats":["15% increased Endurance, Frenzy and Power Charge Duration"],"connections":[{"orbit":-2,"id":21156},{"orbit":0,"id":7847}],"group":1362,"name":"Charge Duration","icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","skill":19027},"2174":{"orbit":4,"orbitIndex":70,"stats":["15% increased Totem Damage"],"connections":[{"orbit":4,"id":19249}],"group":363,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":2174},"16385":{"orbit":2,"orbitIndex":14,"stats":["20% increased Glory generation for Banner Skills"],"connections":[{"orbit":2147483647,"id":53320}],"group":643,"name":"Banner Glory Gained","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":16385},"23786":{"orbit":2,"orbitIndex":9,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"connections":[{"orbit":0,"id":33391}],"group":1076,"name":"Critical Bleeding Effect","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":23786},"5098":{"orbit":2,"orbitIndex":10,"stats":["Banner Skills have 15% increased Area of Effect"],"connections":[{"orbit":-9,"id":16385},{"orbit":2147483647,"id":41651}],"group":643,"name":"Banner Area","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":5098},"38601":{"orbit":6,"orbitIndex":28,"connections":[{"orbit":0,"id":34501}],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds","name":"Obsessive Rituals","ascendancyName":"Witchhunter","group":271,"isNotable":true,"stats":["35% less Armour and Evasion Rating","Grants Skill: Sorcery Ward"],"skill":38601},"20119":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":644,"connections":[],"stats":[],"skill":20119},"26945":{"orbit":2,"orbitIndex":17,"stats":["Minions have 20% increased Critical Hit Chance"],"connections":[],"group":644,"name":"Minion Critical Chance","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":26945},"14439":{"orbit":7,"orbitIndex":8,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":3,"id":5728}],"group":117,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":14439},"25700":{"orbit":4,"orbitIndex":42,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"connections":[{"orbit":4,"id":41096}],"group":1143,"name":"Elemental Damage and Shock Chance","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":25700},"8248":{"orbit":2,"orbitIndex":4,"connections":[{"orbit":0,"id":48079}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":515,"connectionArt":"CharacterPlanned","stats":["10% increased Bleeding Duration","20% chance for Attack Hits to apply Incision"],"skill":8248},"20547":{"orbit":7,"orbitIndex":11,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":33340},{"orbit":-2,"id":34412}],"group":410,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":20547},"12777":{"orbit":2,"orbitIndex":23,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":-8,"id":28950}],"group":645,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":12777},"33402":{"orbit":4,"orbitIndex":54,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":0,"id":58125}],"group":117,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":33402},"37974":{"orbit":6,"orbitIndex":68,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":62230}],"group":953,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":37974},"55635":{"orbit":7,"orbitIndex":21,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":0,"id":52440},{"orbit":0,"id":51807},{"orbit":0,"id":33722}],"group":198,"name":"Damage and Companion Damage","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":55635},"29432":{"orbit":4,"orbitIndex":48,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":4061}],"group":647,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":29432},"58416":{"orbit":2,"orbitIndex":11,"stats":["10% increased Projectile Speed"],"connections":[],"group":1252,"name":"Projectile Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":58416},"54521":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":5,"id":13537},{"orbit":0,"id":58789},{"orbit":4,"id":22185}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":628,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":54521},"25312":{"orbit":5,"orbitIndex":36,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":24259},{"orbit":0,"id":64405}],"group":314,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":25312},"22141":{"orbit":7,"orbitIndex":6,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":54521},{"orbit":0,"id":51797}],"group":591,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":22141},"30334":{"orbit":3,"orbitIndex":0,"stats":["8% increased Ignite Duration on Enemies"],"connections":[{"orbit":0,"id":9324}],"group":175,"name":"Ignite Duration","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":30334},"19820":{"orbit":2,"orbitIndex":18,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"connections":[{"orbit":0,"id":5686}],"group":199,"name":"Armour and Applies to Cold Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":19820},"10079":{"orbit":2,"orbitIndex":16,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":5314}],"group":777,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":10079},"30896":{"orbit":2,"orbitIndex":13,"stats":["3% increased Skill Speed with Channelling Skills"],"connections":[{"orbit":0,"id":49172}],"group":433,"name":"Channelling Speed","icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","skill":30896},"14602":{"orbit":7,"orbitIndex":3,"recipe":["Guilt","Guilt","Suffering"],"connections":[{"orbit":0,"id":42737}],"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Specialised Shots","group":553,"isNotable":true,"stats":["15% increased Bolt Speed","20% increased Damage with Crossbows"],"skill":14602},"39515":{"orbit":3,"orbitIndex":8,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":23450}],"group":685,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":39515},"27418":{"orbit":4,"orbitIndex":48,"connections":[{"orbit":0,"id":30115}],"nodeOverlay":{"path":"TitanFrameSmallCanAllocate","alloc":"TitanFrameSmallAllocated","unalloc":"TitanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Strength","ascendancyName":"Titan","group":77,"stats":["4% increased Strength"],"skill":27418},"1546":{"orbit":2,"orbitIndex":20,"recipe":["Envy","Despair","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Spiral into Depression","group":610,"isNotable":true,"stats":["3% increased Movement Speed","25% increased Armour","25% increased maximum Energy Shield"],"skill":1546},"32241":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":1156,"connections":[],"stats":[],"skill":32241},"26568":{"orbit":2,"orbitIndex":12,"stats":["2% increased Attack Speed","4% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":59367},{"orbit":0,"id":37258}],"group":424,"name":"Slow Effect on You and Attack Speed","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":26568},"65023":{"orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Ire"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Impenetrable Shell","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":649,"isNotable":true,"stats":["Defend with 150% of Armour against Hits from Enemies that are further than 6m away"],"skill":65023},"37795":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","name":"Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","group":1140,"connections":[],"stats":[],"skill":37795},"6356":{"orbit":7,"orbitIndex":21,"stats":["4% increased Skill Effect Duration","8% increased Physical Damage"],"connections":[{"orbit":0,"id":27900}],"group":449,"name":"Physical Damage and Increased Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":6356},"53853":{"orbit":7,"orbitIndex":19,"recipe":["Greed","Greed","Ire"],"connections":[{"orbit":0,"id":57320}],"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Backup Plan","group":667,"isNotable":true,"stats":["50% increased Evasion Rating if you have been Hit Recently","50% increased Armour if you haven't been Hit Recently"],"skill":53853},"20397":{"orbit":7,"orbitIndex":11,"recipe":["Greed","Envy","Suffering"],"connections":[{"orbit":3,"id":4577},{"orbit":0,"id":8556}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Authority","group":655,"isNotable":true,"stats":["15% increased Area of Effect for Attacks","10% increased Cooldown Recovery Rate"],"skill":20397},"15494":{"orbit":2,"orbitIndex":20,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"connections":[{"orbit":0,"id":1865},{"orbit":0,"id":43584}],"group":601,"name":"Fire Damage when consuming an Endurance Charge","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":15494},"50219":{"orbit":2,"orbitIndex":21,"connections":[{"orbit":0,"id":42035}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Curse Delay","ascendancyName":"Chronomancer","group":347,"stats":["Curse zones erupt after 10% reduced delay"],"skill":50219},"18801":{"orbit":7,"orbitIndex":10,"stats":["Banner Skills have 20% increased Duration"],"connections":[{"orbit":2147483647,"id":11752},{"orbit":0,"id":63360}],"group":656,"name":"Banner Duration","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":18801},"39517":{"orbit":3,"orbitIndex":18,"stats":["5% increased Block chance"],"connections":[],"group":567,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","skill":39517},"8397":{"orbit":7,"orbitIndex":0,"recipe":["Envy","Ire","Fear"],"connections":[{"orbit":0,"id":41130},{"orbit":0,"id":1220}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Empowering Remains","group":660,"isNotable":true,"stats":["40% increased Spell Damage if one of your Minions has died Recently"],"skill":8397},"49633":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":777,"connections":[],"stats":[],"skill":49633},"37782":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds","name":"Fateful Vision","ascendancyName":"Oracle","group":37,"isNotable":true,"stats":["Grants Skill: Align Fate"],"skill":37782},"8194":{"orbit":7,"orbitIndex":10,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[],"group":1231,"name":"Stun Threshold if no recent Stun","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":8194},"19330":{"orbit":4,"orbitIndex":52,"stats":["10% increased Life Regeneration rate"],"connections":[],"group":662,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":19330},"30523":{"orbit":5,"orbitIndex":61,"recipe":["Despair","Fear","Ire"],"connections":[{"orbit":0,"id":35492}],"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Dead can Dance","group":735,"isNotable":true,"stats":["Minions have 25% increased maximum Life","Minions have 25% increased Evasion Rating"],"skill":30523},"53386":{"orbit":7,"orbitIndex":0,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"connections":[{"orbit":0,"id":57388}],"group":223,"name":"Attack Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":53386},"28770":{"orbit":7,"orbitIndex":2,"connections":[{"orbit":-7,"id":479}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":326,"connectionArt":"CharacterPlanned","stats":["12% increased Elemental Damage while Shapeshifted"],"skill":28770},"3281":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35720}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Powerful Casting","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":665,"connectionArt":"CharacterPlanned","stats":["2% increased Spell Damage per 10 Strength"],"skill":3281},"28022":{"orbit":8,"orbitIndex":33,"connections":[{"orbit":8,"id":62523}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Damage","ascendancyName":"Shaman","group":65,"stats":["12% increased Elemental Damage"],"skill":28022},"55308":{"orbit":7,"orbitIndex":12,"recipe":["Envy","Ire","Suffering"],"connections":[{"orbit":0,"id":38313},{"orbit":0,"id":30701}],"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds","name":"Sling Shots","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":404,"isNotable":true,"stats":["20% increased Projectile Damage","20% increased chance to inflict Ailments with Projectiles"],"skill":55308},"14540":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":31903}],"icon":"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds","name":"Unwavering Stance","group":445,"isKeystone":true,"stats":["Cannot be Light Stunned","Cannot Dodge Roll or Sprint"],"skill":14540},"65287":{"orbit":2,"orbitIndex":6,"stats":["15% increased Totem Damage"],"connections":[{"orbit":0,"id":5580}],"group":147,"name":"Totem Damage","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":65287},"21415":{"orbit":3,"orbitIndex":16,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"connections":[{"orbit":0,"id":61493}],"group":350,"name":"Stun and Ailment Threshold from Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":21415},"32183":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":4,"id":28371}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1273,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":32183},"44082":{"orbit":2,"orbitIndex":6,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":4931}],"group":472,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":44082},"44280":{"orbit":2,"orbitIndex":9,"stats":["8% increased Effect of your Mark Skills","5% chance to Blind Enemies on Hit with Attacks"],"connections":[{"orbit":-3,"id":23305}],"group":1296,"name":"Mark Effect and Blind Chance","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":44280},"58838":{"orbit":5,"orbitIndex":60,"stats":["12% increased Stun Threshold"],"connections":[{"orbit":6,"id":26725}],"group":300,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":58838},"53647":{"orbit":3,"orbitIndex":12,"stats":["12% increased Armour and Evasion Rating"],"connections":[],"group":676,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":53647},"41905":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Disgust"],"connections":[{"orbit":0,"id":56926},{"orbit":7,"id":44255}],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Gravedigger","group":893,"isNotable":true,"stats":["Minions Revive 15% faster","Recover 2% of maximum Life when one of your Minions is Revived"],"skill":41905},"38323":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-6,"id":6015},{"orbit":-5,"id":22928}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":559,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38323},"8349":{"orbit":2,"orbitIndex":19,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":0,"id":31644}],"group":679,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":8349},"61534":{"orbit":7,"orbitIndex":18,"stats":["Regenerate 0.2% of maximum Life per second"],"connections":[{"orbit":0,"id":4665}],"group":631,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":61534},"21537":{"orbit":2,"orbitIndex":16,"recipe":["Fear","Guilt","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Fervour","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":1400,"isNotable":true,"stats":["+2 to Maximum Frenzy Charges"],"skill":21537},"13542":{"orbit":7,"orbitIndex":2,"recipe":["Ire","Fear","Greed"],"connections":[{"orbit":7,"id":27658},{"orbit":0,"id":44850}],"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Loose Flesh","group":789,"isNotable":true,"stats":["20% of Elemental Damage taken Recouped as Life"],"skill":13542},"36880":{"orbit":4,"orbitIndex":57,"stats":["15% increased effect of Arcane Surge on you"],"connections":[{"orbit":3,"id":43036}],"group":419,"name":"Arcane Surge Effect","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":36880},"22208":{"orbit":7,"orbitIndex":18,"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":15207}],"group":1260,"name":"Accuracy and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":22208},"47307":{"orbit":2,"orbitIndex":4,"stats":["3% increased Cast Speed"],"connections":[{"orbit":5,"id":2254}],"group":745,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":47307},"372":{"orbit":7,"orbitIndex":6,"recipe":["Disgust","Disgust","Greed"],"connections":[{"orbit":0,"id":54340}],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Heatproof","group":356,"isNotable":true,"stats":["+30% of Armour also applies to Fire Damage","30% reduced Magnitude of Ignite on you"],"skill":372},"35324":{"orbit":3,"orbitIndex":0,"recipe":["Isolation","Greed","Paranoia"],"connections":[{"orbit":0,"id":34927},{"orbit":4,"id":34290}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Burnout","group":685,"isNotable":true,"stats":["Ignites you inflict deal Damage 15% faster"],"skill":35324},"20391":{"orbit":3,"orbitIndex":15,"connections":[{"orbit":0,"id":16947}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Chance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":91,"connectionArt":"CharacterPlanned","stats":["8% increased Block chance"],"skill":20391},"8357":{"orbit":3,"orbitIndex":6,"stats":["Minions have 3% increased Attack and Cast Speed"],"connections":[{"orbit":0,"id":10742}],"group":461,"name":"Minion Attack and Cast Speed","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":8357},"58539":{"orbit":7,"orbitIndex":2,"stats":["3% reduced Movement Speed Penalty from using Skills while moving"],"connections":[{"orbit":0,"id":60899}],"group":1358,"name":"Reduced Movement Penalty","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":58539},"53123":{"orbit":7,"orbitIndex":18,"stats":["+3% to all Elemental Resistances"],"connections":[{"orbit":-2,"id":8421},{"orbit":-2,"id":54982},{"orbit":-2,"id":5862}],"group":144,"name":"Shaman","icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","skill":53123},"44932":{"orbit":3,"orbitIndex":4,"stats":["15% increased Magnitude of Shock you inflict"],"connections":[{"orbit":0,"id":54984}],"group":1266,"name":"Shock Effect","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":44932},"7878":{"orbit":2,"orbitIndex":16,"stats":["5% increased Block chance"],"connections":[{"orbit":7,"id":53901}],"group":446,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":7878},"29408":{"orbit":2,"orbitIndex":8,"stats":["8% increased Mana Cost Efficiency"],"connections":[{"orbit":0,"id":31888}],"group":1059,"name":"Mana Cost Efficiency","icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":29408},"6490":{"orbit":2,"orbitIndex":12,"stats":["10% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":14082}],"group":1137,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":6490},"46654":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":61983}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Resistances","ascendancyName":"Shaman","group":71,"stats":["+3% to all Elemental Resistances"],"skill":46654},"24655":{"orbit":4,"orbitIndex":30,"recipe":["Fear","Ire","Isolation"],"connections":[{"orbit":0,"id":7333}],"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Breath of Fire","group":696,"isNotable":true,"stats":["Damage Penetrates 15% Fire Resistance","+10 to Strength"],"skill":24655},"56567":{"orbit":7,"orbitIndex":11,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":151}],"group":570,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":56567},"9187":{"orbit":2,"orbitIndex":8,"recipe":["Isolation","Greed","Guilt"],"connections":[{"orbit":0,"id":20015}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Escalation","group":383,"isNotable":true,"stats":["25% increased Warcry Speed","20% increased Damage for each different Warcry you've used Recently"],"skill":9187},"61338":{"orbit":4,"orbitIndex":6,"recipe":["Disgust","Paranoia","Isolation"],"connections":[{"orbit":0,"id":7333}],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Breath of Lightning","group":696,"isNotable":true,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"skill":61338},"38463":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":46882},{"orbit":-6,"id":21111},{"orbit":5,"id":43522},{"orbit":0,"id":22329}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1200,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38463},"37532":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","name":"Lightning Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1166,"connections":[],"stats":[],"skill":37532},"28981":{"orbit":2,"orbitIndex":18,"stats":["Gain 2 Rage when Hit by an Enemy"],"connections":[{"orbit":-2,"id":34871}],"group":182,"name":"Rage when Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":28981},"58714":{"orbit":4,"orbitIndex":60,"recipe":["Paranoia","Fear","Isolation"],"connections":[{"orbit":0,"id":39431}],"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenadier","group":702,"isNotable":true,"stats":["Grenade Skills have +1 Cooldown Use"],"skill":58714},"26104":{"orbit":4,"orbitIndex":51,"recipe":["Ire","Suffering","Greed"],"connections":[{"orbit":5,"id":43282},{"orbit":4,"id":55672},{"orbit":0,"id":32186},{"orbit":0,"id":27611},{"orbit":0,"id":12005}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","name":"Spirit of the Wyvern","group":201,"isNotable":true,"stats":["20% increased Accuracy Rating while Shapeshifted","25% increased Elemental Damage while Shapeshifted"],"skill":26104},"49256":{"orbit":3,"orbitIndex":12,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":4,"id":14439}],"group":117,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":49256},"54849":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":221,"connections":[],"stats":[],"skill":54849},"61983":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"ShamanFrameLargeCanAllocate","alloc":"ShamanFrameLargeAllocated","unalloc":"ShamanFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds","name":"Avatar of Evolution","ascendancyName":"Shaman","group":70,"isNotable":true,"stats":["5% of Physical Damage taken as Cold Damage","5% of Physical Damage taken as Fire Damage","5% of Physical Damage taken as Lightning Damage","Adaptations have a duration of 5 seconds","Double Adaptation Effect"],"skill":61983},"21801":{"orbit":1,"orbitIndex":10,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","name":"Chaos Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","group":1168,"connections":[],"stats":[],"skill":21801},"31778":{"orbit":2,"orbitIndex":10,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":-2,"id":2344}],"group":255,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":31778},"37408":{"orbit":2,"orbitIndex":13,"recipe":["Envy","Despair","Disgust"],"connections":[{"orbit":7,"id":31855},{"orbit":0,"id":46761}],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Staunching","group":1031,"isNotable":true,"stats":["Life Flasks gain 0.1 charges per Second","+10 to Strength"],"skill":37408},"37629":{"orbit":6,"orbitIndex":42,"connections":[{"orbit":0,"id":55933},{"orbit":-7,"id":41338},{"orbit":0,"id":8248}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":551,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":37629},"47895":{"orbit":2,"orbitIndex":6,"stats":["20% increased Evasion Rating if you have Hit an Enemy Recently"],"connections":[{"orbit":-2,"id":56493}],"group":1110,"name":"Evasion Rating on Hit Recently","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":47895},"10273":{"orbit":7,"orbitIndex":2,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":45272}],"group":761,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":10273},"3652":{"orbit":2,"orbitIndex":7,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"connections":[{"orbit":3,"id":56714}],"group":468,"name":"Projectile Speed and Physical Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":3652},"59596":{"orbit":3,"orbitIndex":16,"recipe":["Paranoia","Despair","Greed"],"connections":[{"orbit":0,"id":37641}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Covering Ward","group":268,"isNotable":true,"stats":["25% increased Energy Shield Recharge Rate","Gain 20 Energy Shield when you Block"],"skill":59596},"24256":{"orbit":2,"orbitIndex":15,"stats":["15% increased Evasion Rating"],"connections":[{"orbit":0,"id":63541}],"group":774,"name":"Evasion","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":24256},"21286":{"orbit":3,"orbitIndex":14,"stats":["15% increased Armour"],"connections":[{"orbit":4,"id":4128},{"orbit":0,"id":45992}],"group":453,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":21286},"22314":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":51184},{"orbit":5,"id":51968}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"id":53140,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage"}},"group":711,"isSwitchable":true,"stats":["8% increased Elemental Damage"],"skill":22314},"34375":{"orbit":2,"orbitIndex":8,"stats":["25% increased Defences from Equipped Shield"],"connections":[{"orbit":-2,"id":48745}],"group":446,"name":"Shield Defences","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":34375},"51968":{"orbit":3,"orbitIndex":18,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Elemental Ailment Chance","options":{"Witch":{"stats":["10% increased Physical Damage"],"id":18040,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage"}},"group":713,"isSwitchable":true,"stats":["20% increased Flammability Magnitude","10% increased Freeze Buildup","10% increased chance to Shock"],"skill":51968},"10242":{"orbit":2,"orbitIndex":8,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":38111}],"group":1156,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":10242},"21721":{"orbit":3,"orbitIndex":4,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":15899},{"orbit":0,"id":55066},{"orbit":2147483647,"id":62194}],"group":716,"name":"Bleeding Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":21721},"21627":{"orbit":2,"orbitIndex":12,"stats":["10% increased Magnitude of Bleeding you inflict"],"connections":[{"orbit":0,"id":19796}],"group":716,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":21627},"52807":{"orbit":2,"orbitIndex":10,"stats":["15% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":60551},{"orbit":0,"id":61836}],"group":304,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":52807},"16790":{"orbit":7,"orbitIndex":0,"recipe":["Greed","Paranoia","Envy"],"connections":[{"orbit":0,"id":27234}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Efficient Casting","group":862,"isNotable":true,"stats":["15% increased Mana Regeneration Rate","20% increased Mana Cost Efficiency"],"skill":16790},"14655":{"orbit":3,"orbitIndex":3,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"connections":[{"orbit":7,"id":372}],"group":356,"name":"Armour and Applies to Fire Damage","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":14655},"1922":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":723,"connections":[{"orbit":0,"id":51184}],"stats":[],"skill":1922},"1755":{"orbit":2,"orbitIndex":17,"connections":[{"orbit":-4,"id":18845}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"id":31707,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage"}},"group":723,"isSwitchable":true,"stats":["8% increased Spell Damage"],"skill":1755},"33244":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","name":"Rage Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","group":364,"connections":[],"stats":[],"skill":33244},"28086":{"orbit":2,"orbitIndex":14,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":-6,"id":57088},{"orbit":0,"id":144}],"group":1188,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":28086},"33730":{"orbit":7,"orbitIndex":5,"recipe":["Despair","Despair","Fear"],"connections":[{"orbit":0,"id":60809}],"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Focused Channel","group":433,"isNotable":true,"stats":["Channelling Skills deal 25% increased Damage","50% increased Stun Threshold while Channelling"],"skill":33730},"36602":{"orbit":4,"orbitIndex":39,"connections":[{"orbit":0,"id":18465}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","options":{"Druid":{"stats":["3% increased Skill Speed while Shapeshifted"],"id":16160,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Skill Speed while Shapeshifted"}},"group":551,"isSwitchable":true,"stats":["15% increased Critical Damage Bonus"],"skill":36602},"17754":{"orbit":8,"orbitIndex":7,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds","name":"Loyal Hellhound","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["Grants Skill: Summon Infernal Hound"],"skill":17754},"48387":{"orbit":5,"orbitIndex":56,"stats":["12% increased Physical Damage"],"connections":[{"orbit":-4,"id":34415}],"group":407,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":48387},"770":{"orbit":6,"orbitIndex":7,"connections":[{"orbit":-7,"id":10694}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Mana","ascendancyName":"Infernalist","group":725,"stats":["3% increased maximum Mana"],"skill":770},"43102":{"orbit":7,"orbitIndex":6,"stats":["12% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":0,"id":30197},{"orbit":-9,"id":42998}],"group":1230,"name":"Damage with Companion in Presence","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":43102},"7793":{"orbit":9,"orbitIndex":130,"connections":[{"orbit":6,"id":18348}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","ascendancyName":"Infernalist","group":725,"stats":["3% increased maximum Life"],"skill":7793},"28982":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":31295},{"orbit":0,"id":55190},{"orbit":0,"id":32845},{"orbit":0,"id":45226}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":99,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":28982},"36478":{"orbit":2,"orbitIndex":4,"stats":["10% increased Attack Damage"],"connections":[{"orbit":2147483647,"id":43014},{"orbit":2147483647,"id":48714}],"group":444,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","skill":36478},"17380":{"orbit":1,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":749,"connections":[{"orbit":0,"id":41972},{"orbit":0,"id":23427},{"orbit":0,"id":47270},{"orbit":0,"id":19955}],"stats":[],"skill":17380},"56729":{"orbit":2,"orbitIndex":16,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":26308},{"orbit":0,"id":34201}],"group":1107,"name":"Reduced Attribute Requirements and All Attributes","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","skill":56729},"61842":{"orbit":3,"orbitIndex":0,"stats":["Minions deal 12% increased Damage"],"connections":[{"orbit":0,"id":33240},{"orbit":0,"id":14712}],"group":460,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":61842},"38270":{"orbit":3,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":23724}],"group":709,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":38270},"1599":{"orbit":2,"orbitIndex":18,"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"connections":[{"orbit":0,"id":31286}],"group":1289,"name":"Physical Damage and Critical Chance","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":1599},"42350":{"orbit":6,"orbitIndex":67,"connections":[{"orbit":0,"id":61438}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":727,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":42350},"23915":{"orbit":0,"orbitIndex":0,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":-1,"id":41529}],"group":1160,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":23915},"35369":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Envy"],"connections":[{"orbit":0,"id":1459}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Investing Energies","group":237,"isNotable":true,"stats":["35% increased Mana Regeneration Rate while stationary"],"skill":35369},"42825":{"orbit":2,"orbitIndex":14,"stats":["15% faster start of Energy Shield Recharge"],"connections":[{"orbit":0,"id":31238}],"group":472,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":42825},"27095":{"orbit":7,"orbitIndex":7,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":-4,"id":14890},{"orbit":0,"id":48658}],"group":1038,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":27095},"30258":{"orbit":2,"orbitIndex":0,"stats":["3% increased Attack Speed","Minions have 3% increased Attack Speed"],"connections":[{"orbit":0,"id":40105}],"group":225,"name":"Attack Speed and Minion Attack Speed","icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","skill":30258},"61718":{"orbit":2,"orbitIndex":16,"stats":["15% increased Damage against Dazed Enemies"],"connections":[{"orbit":0,"id":38342}],"group":1376,"name":"Damage vs Dazed Enemies","icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","skill":61718},"53527":{"orbit":7,"orbitIndex":0,"recipe":["Fear","Guilt","Guilt"],"connections":[{"orbit":0,"id":58855}],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Shattering Blow","group":236,"isNotable":true,"stats":["Break 50% of Armour on Heavy Stunning an Enemy"],"skill":53527},"38130":{"orbit":3,"orbitIndex":12,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[],"group":333,"name":"Warcry Cooldown Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":38130},"41768":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":28982},{"orbit":0,"id":53123},{"orbit":0,"id":46399},{"orbit":0,"id":37484}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":115,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":41768},"44871":{"orbit":3,"orbitIndex":2,"stats":["+10 to maximum Energy Shield"],"connections":[{"orbit":0,"id":54447},{"orbit":0,"id":56216}],"group":736,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":44871},"57710":{"orbit":6,"orbitIndex":0,"connections":[{"orbit":0,"id":39037},{"orbit":0,"id":40783},{"orbit":0,"id":53975}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":743,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":57710},"30985":{"orbit":2,"orbitIndex":10,"stats":["5% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"connections":[{"orbit":0,"id":12324}],"group":427,"name":"Infusion Chance","icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","skill":30985},"55377":{"orbit":2,"orbitIndex":0,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"connections":[{"orbit":0,"id":26211},{"orbit":0,"id":33463}],"group":1259,"name":"Attack Area and Combo","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":55377},"31918":{"orbit":7,"orbitIndex":15,"stats":["15% chance to Pierce an Enemy"],"connections":[{"orbit":-3,"id":4534},{"orbit":-9,"id":60323}],"group":1233,"name":"Pierce Chance","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":31918},"55582":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":60287}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","ascendancyName":"Gemling Legionnaire","group":372,"stats":["+2% to Quality of all Skills"],"skill":55582},"34313":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":-8,"id":378}],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds","name":"The Lesser Harm","ascendancyName":"Oracle","group":12,"isNotable":true,"stats":["Enemy Critical Hit Chance against you is Unlucky","Damage of Enemies Hitting you is Unlucky"],"skill":34313},"47270":{"orbit":4,"orbitIndex":66,"recipe":["Ire","Paranoia","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Inescapable Cold","group":749,"isNotable":true,"stats":["40% increased Freeze Buildup","20% increased Freeze Duration on Enemies"],"skill":47270},"47191":{"orbit":4,"orbitIndex":58,"stats":["12% increased Fire Damage"],"connections":[],"group":260,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":47191},"62914":{"orbit":3,"orbitIndex":20,"stats":["12% increased Cold Damage"],"connections":[{"orbit":5,"id":47270},{"orbit":0,"id":44455}],"group":749,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":62914},"31419":{"orbit":7,"orbitIndex":9,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":3,"id":35787},{"orbit":4,"id":53405}],"group":431,"name":"Increased Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":31419},"41972":{"orbit":4,"orbitIndex":18,"recipe":["Paranoia","Guilt","Isolation"],"connections":[{"orbit":4,"id":56649},{"orbit":-4,"id":60515}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Glaciation","group":749,"isNotable":true,"stats":["Damage Penetrates 18% Cold Resistance","Gain 6% of Elemental Damage as Extra Cold Damage"],"skill":41972},"37276":{"orbit":2,"orbitIndex":14,"recipe":["Isolation","Disgust","Fear"],"connections":[{"orbit":0,"id":33244}],"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Battle Trance","group":364,"isNotable":true,"stats":["+8 to Maximum Rage"],"skill":37276},"27417":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":0,"id":64295},{"orbit":0,"id":37616}],"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Destructive Apparatus","group":1347,"isNotable":true,"stats":["25% increased Trap Damage"],"skill":27417},"14176":{"orbit":2,"orbitIndex":0,"stats":["Inherent Rage loss starts 1 second later"],"connections":[{"orbit":0,"id":18004}],"group":286,"name":"Later Rage Loss Start","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":14176},"15991":{"orbit":2,"orbitIndex":19,"recipe":["Isolation","Paranoia","Ire"],"connections":[{"orbit":0,"id":15984}],"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Embodiment of Lightning","group":799,"isNotable":true,"stats":["Immune to Shock while affected by an Archon Buff"],"skill":15991},"21716":{"orbit":4,"orbitIndex":9,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":-5,"id":9583}],"group":422,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":21716},"43444":{"orbit":7,"orbitIndex":8,"stats":["8% increased Knockback Distance"],"connections":[],"group":757,"name":"Knockback","icon":"Art/2DArt/SkillIcons/passives/knockback.dds","skill":43444},"40691":{"orbit":4,"orbitIndex":62,"stats":["15% increased Energy Shield Recharge Rate"],"connections":[{"orbit":7,"id":25893}],"group":759,"name":"Energy Shield Recharge","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":40691},"35284":{"orbit":7,"orbitIndex":3,"stats":["6% increased Reservation Efficiency of Herald Skills"],"connections":[{"orbit":-2,"id":31898},{"orbit":-7,"id":64471}],"group":539,"name":"Herald Reservation","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":35284},"35492":{"orbit":7,"orbitIndex":21,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":735,"connections":[],"stats":[],"skill":35492},"49696":{"orbit":5,"orbitIndex":12,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":10273}],"group":761,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":49696},"33242":{"orbit":5,"orbitIndex":2,"stats":["10% increased chance to inflict Ailments"],"connections":[{"orbit":0,"id":15838}],"group":635,"name":"Ailment Chance","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","skill":33242},"24511":{"orbit":7,"orbitIndex":6,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":49696}],"group":761,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":24511},"4921":{"orbit":7,"orbitIndex":11,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":13524}],"group":493,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":4921},"22329":{"orbit":7,"orbitIndex":11,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":-2,"id":58526}],"group":1201,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":22329},"41210":{"orbit":4,"orbitIndex":21,"connections":[{"orbit":0,"id":1477},{"orbit":0,"id":43578}],"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","name":"Ricochet","group":766,"isNotable":true,"stats":["15% increased Projectile Damage","Projectiles have 10% chance to Chain an additional time from terrain"],"skill":41210},"12322":{"orbit":7,"orbitIndex":8,"stats":["8% increased Flask and Charm Charges gained"],"connections":[{"orbit":0,"id":53196}],"group":927,"name":"Flask and Charm Charges Gained","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":12322},"9583":{"orbit":7,"orbitIndex":0,"stats":["10% increased amount of Life Leeched","10% increased Physical Damage"],"connections":[{"orbit":0,"id":47316}],"group":422,"name":"Life Leech and Physical Damage","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":9583},"14096":{"orbit":2,"orbitIndex":14,"stats":["3% increased Cast Speed"],"connections":[{"orbit":7,"id":44293}],"group":636,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":14096},"60916":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","name":"Endurance Charge Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","group":219,"connections":[],"stats":[],"skill":60916},"45202":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":59093}],"icon":"Art/2DArt/SkillIcons/passives/totemmax.dds","name":"Ancestral Bond","group":254,"isKeystone":true,"stats":["Unlimited number of Summoned Totems","Totems reserve 75 Spirit each"],"skill":45202},"17706":{"orbit":2,"orbitIndex":20,"stats":["10% increased Energy Shield Recharge Rate","10% increased Mana Recovery from Flasks"],"connections":[{"orbit":-2,"id":46972}],"group":849,"name":"Energy Shield Recharge and Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":17706},"27290":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38564}],"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Heavy Blade","group":513,"isNotable":true,"stats":["25% increased Damage with Swords"],"skill":27290},"62510":{"orbit":4,"orbitIndex":69,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":4,"id":8697},{"orbit":6,"id":17118}],"group":1010,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":62510},"22538":{"orbit":3,"orbitIndex":18,"stats":["8% reduced Slowing Potency of Debuffs on You"],"connections":[{"orbit":0,"id":64659}],"group":590,"name":"Slow Effect on You","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":22538},"15408":{"orbit":2,"orbitIndex":23,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":4,"id":2254},{"orbit":0,"id":6338}],"group":775,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":15408},"29695":{"orbit":2,"orbitIndex":7,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","options":{"Witch":{"stats":["10% increased Mana Regeneration Rate"],"id":31204,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration"}},"group":775,"isSwitchable":true,"stats":["15% faster start of Energy Shield Recharge"],"skill":29695},"43736":{"orbit":2,"orbitIndex":3,"connections":[{"orbit":4,"id":29695}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","options":{"Witch":{"stats":["10% increased Mana Regeneration Rate"],"id":38659,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration"}},"group":775,"isSwitchable":true,"stats":["15% faster start of Energy Shield Recharge"],"skill":43736},"44406":{"orbit":6,"orbitIndex":0,"stats":["15% increased Stun Buildup"],"connections":[],"group":395,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":44406},"40915":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WarbringerFrameLargeCanAllocate","alloc":"WarbringerFrameLargeAllocated","unalloc":"WarbringerFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds","name":"Wooden Wall","ascendancyName":"Warbringer","group":40,"isNotable":true,"stats":["20% of Damage from Hits is taken from your nearest Totem's Life before you"],"skill":40915},"27992":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","name":"Crossbow Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","group":612,"connections":[],"stats":[],"skill":27992},"56841":{"orbit":2,"orbitIndex":20,"stats":["20% increased Frenzy Charge Duration"],"connections":[{"orbit":0,"id":18451}],"group":952,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","skill":56841},"31805":{"orbit":3,"orbitIndex":15,"stats":["10% increased Skill Effect Duration"],"connections":[{"orbit":-3,"id":44461}],"group":282,"name":"Increased Duration","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":31805},"17924":{"orbit":3,"orbitIndex":20,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[{"orbit":-7,"id":51867}],"group":374,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":17924},"21274":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":39298}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":823,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":21274},"2254":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":60685},{"orbit":5,"id":43736},{"orbit":6,"id":14666}],"icon":"Art/2DArt/SkillIcons/passives/deepwisdom.dds","name":"Pure Energy","group":783,"isNotable":true,"stats":["30% increased maximum Energy Shield","+10 to Intelligence"],"skill":2254},"968":{"orbit":3,"orbitIndex":2,"stats":["6% increased Fire Damage","5% increased Area of Effect"],"connections":[{"orbit":0,"id":6752}],"group":586,"name":"Fire Damage and Area","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":968},"23227":{"orbit":4,"orbitIndex":0,"recipe":["Greed","Ire","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Initiative","group":596,"isNotable":true,"stats":["30% increased Melee Damage when on Full Life","16% increased Attack Speed if you haven't Attacked Recently"],"skill":23227},"45343":{"orbit":7,"orbitIndex":19,"stats":["Minions have 8% increased Area of Effect"],"connections":[{"orbit":0,"id":50483},{"orbit":0,"id":14505}],"group":460,"name":"Minion Area","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":45343},"36479":{"orbit":4,"orbitIndex":66,"connections":[{"orbit":0,"id":12925}],"icon":"Art/2DArt/SkillIcons/passives/Storm Weaver.dds","name":"Essence of the Storm","group":934,"isNotable":true,"stats":["Gain 5% of Damage as Extra Lightning Damage","30% increased chance to Shock"],"skill":36479},"16123":{"orbit":3,"orbitIndex":22,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":938,"connections":[],"stats":[],"skill":16123},"22271":{"orbit":0,"orbitIndex":0,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":15083}],"group":807,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":22271},"10271":{"orbit":3,"orbitIndex":7,"stats":["25% increased Attack Damage while Surrounded"],"connections":[{"orbit":0,"id":58038}],"group":717,"name":"Attack Damage while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":10271},"1855":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":2147483647,"id":16204}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Flask Recovery","ascendancyName":"Shaman","group":65,"stats":["12% increased Life and Mana Recovery from Flasks"],"skill":1855},"34030":{"orbit":0,"orbitIndex":0,"stats":["Offerings have 15% increased Maximum Life"],"connections":[{"orbit":0,"id":47441},{"orbit":0,"id":13634},{"orbit":0,"id":42614}],"group":787,"name":"Offering Life","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":34030},"59915":{"orbit":0,"orbitIndex":0,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":-6,"id":7741},{"orbit":-6,"id":97},{"orbit":-6,"id":2455}],"group":765,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":59915},"44765":{"orbit":3,"orbitIndex":21,"recipe":["Envy","Guilt","Suffering"],"connections":[{"orbit":0,"id":32233}],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Distracting Presence","group":788,"isNotable":true,"stats":["10% increased Cooldown Recovery Rate","Enemies in your Presence have 10% reduced Cooldown Recovery Rate"],"skill":44765},"53367":{"orbit":3,"orbitIndex":0,"recipe":["Despair","Ire","Greed"],"connections":[{"orbit":0,"id":12821},{"orbit":0,"id":65353}],"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","name":"Symbol of Defiance","group":491,"isNotable":true,"stats":["Banner Skills have 30% increased Area of Effect","Banner Skills have 30% increased Duration"],"skill":53367},"58090":{"orbit":7,"orbitIndex":18,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":7,"id":48774}],"group":789,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":58090},"61056":{"orbit":7,"orbitIndex":1,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":-4,"id":40399}],"group":1174,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":61056},"27658":{"orbit":7,"orbitIndex":6,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":7,"id":21540}],"group":789,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":27658},"35688":{"orbit":7,"orbitIndex":10,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"connections":[{"orbit":0,"id":16618}],"group":761,"name":"Reduced Attribute Requirements","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":35688},"34493":{"orbit":2,"orbitIndex":9,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":65328},{"orbit":0,"id":54964},{"orbit":0,"id":49593}],"group":257,"name":"Sentinels","icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":34493},"14654":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":22616},{"orbit":0,"id":14459},{"orbit":0,"id":21017},{"orbit":0,"id":52807},{"orbit":0,"id":58295},{"orbit":0,"id":6222}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":328,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":14654},"55060":{"orbit":5,"orbitIndex":9,"recipe":["Guilt","Guilt","Disgust"],"connections":[{"orbit":0,"id":33037},{"orbit":0,"id":45576}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Shrapnel","group":790,"isNotable":true,"stats":["30% chance to Pierce an Enemy","Projectiles have 10% chance to Chain an additional time from terrain"],"skill":55060},"43155":{"orbit":4,"orbitIndex":23,"stats":["10% increased Critical Hit Chance with Crossbows"],"connections":[{"orbit":0,"id":7062}],"group":874,"name":"Crossbow Critical Chance","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":43155},"10576":{"orbit":0,"orbitIndex":0,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"connections":[{"orbit":0,"id":58644}],"group":1240,"name":"Bleeding Damage","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":10576},"34866":{"orbit":2,"orbitIndex":2,"stats":["Remnants have 10% increased effect"],"connections":[{"orbit":0,"id":40985}],"group":791,"name":"Remnant Effect","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":34866},"51825":{"orbit":4,"orbitIndex":45,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":47363},{"orbit":0,"id":9164},{"orbit":0,"id":13708}],"group":720,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":51825},"45488":{"orbit":3,"orbitIndex":15,"recipe":["Guilt","Greed","Envy"],"connections":[{"orbit":0,"id":4377}],"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Cross Strike","group":795,"isNotable":true,"stats":["20% increased Accuracy Rating while Dual Wielding","3% increased Movement Speed while Dual Wielding"],"skill":45488},"35831":{"orbit":7,"orbitIndex":9,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":0,"id":904}],"group":280,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":35831},"47893":{"orbit":2,"orbitIndex":21,"stats":["3% increased Attack Speed while Dual Wielding"],"connections":[{"orbit":0,"id":57774}],"group":795,"name":"Dual Wielding Speed","icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","skill":47893},"3348":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Suffering"],"connections":[{"orbit":0,"id":50767}],"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","name":"Spirit of the Wolf","group":101,"isNotable":true,"stats":["20% increased Critical Hit Chance while Shapeshifted","8% increased Skill Speed while Shapeshifted"],"skill":3348},"44005":{"orbit":6,"orbitIndex":38,"recipe":["Fear","Greed","Isolation"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Casting Cascade","group":266,"isNotable":true,"stats":["15% reduced Spell Damage","6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently"],"skill":44005},"5332":{"orbit":2,"orbitIndex":8,"recipe":["Isolation","Isolation","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Crystallised Immunities","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","group":796,"isNotable":true,"stats":["Immune to Chill if a majority of your Socketed Support Gems are Blue","Immune to Ignite if a majority of your Socketed Support Gems are Red","Immune to Shock if a majority of your Socketed Support Gems are Green"],"skill":5332},"11873":{"orbit":3,"orbitIndex":9,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":62677},{"orbit":0,"id":50150}],"group":799,"name":"Lightning Damage and Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":11873},"61722":{"orbit":6,"orbitIndex":36,"connections":[{"orbit":6,"id":58646}],"nodeOverlay":{"path":"ShamanFrameSmallCanAllocate","alloc":"ShamanFrameSmallAllocated","unalloc":"ShamanFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Resistances","ascendancyName":"Shaman","group":65,"stats":["+3% to all Elemental Resistances"],"skill":61722},"30662":{"orbit":4,"orbitIndex":32,"stats":["12% increased Lightning Damage"],"connections":[{"orbit":0,"id":26291}],"group":269,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":30662},"25170":{"orbit":2,"orbitIndex":22,"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"connections":[{"orbit":3,"id":30820}],"group":985,"name":"Attack Damage and Skill Duration","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":25170},"55235":{"orbit":1,"orbitIndex":4,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MarkMastery.dds","name":"Mark Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","group":1279,"connections":[{"orbit":0,"id":63830},{"orbit":0,"id":44756},{"orbit":0,"id":36976}],"stats":[],"skill":55235},"4442":{"orbit":3,"orbitIndex":10,"stats":["+15% of Armour also applies to Lightning Damage"],"connections":[{"orbit":0,"id":62034}],"group":143,"name":"Armour Applies to Lightning Damage Hits","icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","skill":4442},"26830":{"orbit":5,"orbitIndex":42,"stats":["10% increased effect of Fully Broken Armour"],"connections":[],"group":943,"name":"Armour Break Effect","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":26830},"29993":{"orbit":1,"orbitIndex":8,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","name":"Duration Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","group":282,"connections":[],"stats":[],"skill":29993},"1215":{"orbit":1,"orbitIndex":5,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Evasion and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","group":878,"connections":[],"stats":[],"skill":1215},"36564":{"orbit":9,"orbitIndex":100,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds","name":"Beidat's Gaze","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["Reserves 25% of Life","+1 to Maximum Mana per 6 Maximum Life"],"skill":36564},"61444":{"orbit":3,"orbitIndex":2,"recipe":["Fear","Envy","Despair"],"connections":[{"orbit":0,"id":17411},{"orbit":0,"id":34096}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Wasting Casts","group":482,"isNotable":true,"stats":["25% increased Damage with Hits against Hindered Enemies","15% chance to Hinder Enemies on Hit with Spells"],"skill":61444},"37593":{"orbit":0,"orbitIndex":0,"stats":["Remnants can be collected from 20% further away"],"connections":[],"group":802,"name":"Remnant Pickup Range","icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","skill":37593},"22185":{"orbit":3,"orbitIndex":9,"stats":["Debuffs on you expire 10% faster"],"connections":[{"orbit":5,"id":17796}],"group":590,"name":"Debuff Expiry Rate","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":22185},"43562":{"orbit":3,"orbitIndex":2,"stats":["8% chance to Blind Enemies on Hit with Attacks"],"connections":[{"orbit":0,"id":3660}],"group":804,"name":"Blind Chance","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":43562},"58295":{"orbit":2,"orbitIndex":4,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":256,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":58295},"11037":{"orbit":3,"orbitIndex":6,"connections":[{"orbit":0,"id":57039}],"icon":"Art/2DArt/SkillIcons/ExplosiveGrenade.dds","name":"Volatile Catalyst","group":731,"isNotable":true,"stats":["8% increased Area of Effect","10% increased Cooldown Recovery Rate"],"skill":11037},"28680":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":401,"connections":[],"stats":[],"skill":28680},"50616":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":247,"connections":[],"stats":[],"skill":50616},"10041":{"orbit":7,"orbitIndex":22,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"connections":[{"orbit":0,"id":32799}],"group":1032,"name":"Ailment Threshold and Companion Resistance","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":10041},"55190":{"orbit":1,"orbitIndex":0,"connections":[],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":95,"stats":[],"skill":55190},"60287":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":37397},{"orbit":0,"id":32952},{"orbit":0,"id":63259}],"isMultipleChoice":true,"nodeOverlay":{"path":"Gemling LegionnaireFrameLargeCanAllocate","alloc":"Gemling LegionnaireFrameLargeAllocated","unalloc":"Gemling LegionnaireFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds","name":"Implanted Gems","ascendancyName":"Gemling Legionnaire","group":361,"isNotable":true,"stats":[],"skill":60287},"62388":{"orbit":5,"orbitIndex":70,"connections":[{"orbit":0,"id":26282}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Bleed on Critical Chance","ascendancyName":"Blood Mage","group":910,"stats":["15% chance to inflict Bleeding on Critical Hit"],"skill":62388},"9572":{"orbit":2,"orbitIndex":14,"stats":["15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"],"connections":[{"orbit":0,"id":12822}],"group":1005,"name":"Melee Damage if Projectile Hit","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":9572},"11825":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":8194},{"orbit":4,"id":42794},{"orbit":0,"id":54984},{"orbit":0,"id":47374},{"orbit":0,"id":10648}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1225,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":11825},"55554":{"orbit":0,"orbitIndex":0,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":8821},{"orbit":0,"id":22271}],"group":817,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":55554},"43088":{"orbit":3,"orbitIndex":8,"recipe":["Disgust","Suffering","Isolation"],"connections":[{"orbit":0,"id":28835},{"orbit":0,"id":178},{"orbit":0,"id":6988}],"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Agonising Calamity","group":1381,"isNotable":true,"stats":["40% increased Chaos Damage while affected by Herald of Plague","40% increased Physical Damage while affected by Herald of Blood"],"skill":43088},"11788":{"orbit":7,"orbitIndex":0,"stats":["10% increased Spell Area Damage"],"connections":[{"orbit":0,"id":14355}],"group":819,"name":"Spell Area Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":11788},"54194":{"orbit":2,"orbitIndex":3,"connections":[{"orbit":0,"id":28153}],"nodeOverlay":{"path":"ChronomancerFrameSmallCanAllocate","alloc":"ChronomancerFrameSmallAllocated","unalloc":"ChronomancerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Life Recoup","ascendancyName":"Chronomancer","group":347,"stats":["4% of Damage taken Recouped as Life"],"skill":54194},"50757":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":290,"connections":[],"stats":[],"skill":50757},"8483":{"orbit":7,"orbitIndex":7,"recipe":["Greed","Despair","Suffering"],"connections":[{"orbit":0,"id":6588}],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Ruin","group":819,"isNotable":true,"stats":["35% increased Spell Area Damage","Spell Skills have 10% reduced Area of Effect"],"skill":8483},"33781":{"orbit":7,"orbitIndex":13,"stats":["15% reduced Presence Area of Effect","6% increased Area of Effect"],"connections":[{"orbit":2,"id":65493}],"group":525,"name":"Area and Presence","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":33781},"64747":{"orbit":4,"orbitIndex":39,"stats":["6% increased chance to inflict Ailments","6% increased Duration of Damaging Ailments on Enemies"],"connections":[{"orbit":-5,"id":33838}],"group":1082,"name":"Ailment Chance and Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","skill":64747},"34882":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":2147483647,"id":11641}],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","ascendancyName":"Gemling Legionnaire","group":415,"stats":["+2% to Quality of all Skills"],"skill":34882},"55802":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":2847},{"orbit":0,"id":3717}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":820,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":55802},"3717":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage with Crossbows"],"connections":[{"orbit":0,"id":19998},{"orbit":0,"id":35653}],"group":821,"name":"Crossbow Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":3717},"33612":{"orbit":1,"orbitIndex":8,"stats":["Minions deal 12% increased Damage"],"connections":[{"orbit":0,"id":8983}],"group":460,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":33612},"13610":{"orbit":3,"orbitIndex":11,"stats":["15% increased Flammability Magnitude","Ignites you inflict deal Damage 4% faster"],"connections":[{"orbit":0,"id":41447}],"group":961,"name":"Faster Ignites and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":13610},"30265":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Disciple of VarashtaFrameSmallCanAllocate","alloc":"Disciple of VarashtaFrameSmallAllocated","unalloc":"Disciple of VarashtaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Energy Shield","ascendancyName":"Disciple of Varashta","group":565,"stats":["20% increased maximum Energy Shield"],"skill":30265},"61179":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[{"orbit":0,"id":21245}],"group":490,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":61179},"1087":{"orbit":3,"orbitIndex":7,"recipe":["Greed","Paranoia","Ire"],"connections":[{"orbit":0,"id":25934}],"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Shockwaves","group":389,"isNotable":true,"stats":["25% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"],"skill":1087},"58016":{"orbit":4,"orbitIndex":42,"recipe":["Fear","Fear","Greed"],"connections":[{"orbit":7,"id":49537},{"orbit":0,"id":42205}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"All Natural","group":343,"isNotable":true,"stats":["+5% to all Elemental Resistances","30% increased Elemental Damage"],"skill":58016},"36293":{"orbit":0,"orbitIndex":0,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":27785},{"orbit":0,"id":55708}],"group":834,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":36293},"59213":{"orbit":2,"orbitIndex":15,"stats":["20% increased Stun Recovery"],"connections":[{"orbit":3,"id":48240}],"group":448,"name":"Stun Recovery","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":59213},"39598":{"orbit":2,"orbitIndex":6,"stats":["Empowered Attacks deal 8% increased Damage","5% increased total Power counted by Warcries"],"connections":[{"orbit":0,"id":3949}],"group":140,"name":"Empowered Attack Damage and Power Counted","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":39598},"60685":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":1826}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":815,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":60685},"17505":{"orbit":6,"orbitIndex":30,"stats":["3% increased Cast Speed"],"connections":[{"orbit":0,"id":52106},{"orbit":0,"id":28774},{"orbit":0,"id":23382}],"group":266,"name":"Cast Speed","icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","skill":17505},"63566":{"orbit":6,"orbitIndex":36,"connections":[{"orbit":0,"id":42658},{"orbit":0,"id":62350},{"orbit":0,"id":30871}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1177,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":63566},"48856":{"orbit":7,"orbitIndex":4,"stats":["12% increased Grenade Damage"],"connections":[{"orbit":0,"id":17882}],"group":838,"name":"Grenade Damage","icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","skill":48856},"51807":{"orbit":2,"orbitIndex":0,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[{"orbit":0,"id":57089}],"group":198,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":51807},"19998":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage with Crossbows"],"connections":[{"orbit":0,"id":44430}],"group":844,"name":"Crossbow Damage","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":19998},"56118":{"orbit":4,"orbitIndex":30,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"connections":[{"orbit":-5,"id":19341},{"orbit":0,"id":42250}],"group":846,"name":"Damage against Enemies on Low Life","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":56118},"55375":{"orbit":2,"orbitIndex":21,"recipe":["Fear","Disgust","Ire"],"connections":[{"orbit":0,"id":62748}],"icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","name":"Licking Wounds","group":323,"isNotable":true,"stats":["Minions have 15% increased maximum Life","5% increased Life and Mana Regeneration Rate for each Minion in your Presence, up to a maximum of 40%"],"skill":55375},"35689":{"orbit":2,"orbitIndex":14,"stats":["10% increased Damage"],"connections":[{"orbit":2,"id":34543}],"group":1121,"name":"Damage","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","skill":35689},"48401":{"orbit":6,"orbitIndex":30,"connections":[{"orbit":0,"id":35987},{"orbit":0,"id":61312},{"orbit":5,"id":10909}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":847,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48401},"15507":{"orbit":3,"orbitIndex":10,"connections":[{"orbit":0,"id":48401}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":847,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":15507},"39116":{"orbit":3,"orbitIndex":14,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","name":"Physical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":848,"connections":[],"stats":[],"skill":39116},"47184":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds","name":"Living Weapon","ascendancyName":"Smith of Kitava","group":17,"isNotable":true,"stats":["Grants Skill: Manifest Weapon"],"skill":47184},"9750":{"orbit":7,"orbitIndex":12,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[{"orbit":0,"id":1169}],"group":292,"name":"Warcry Cooldown","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":9750},"16721":{"orbit":0,"orbitIndex":0,"stats":["12% increased Damage with Plant Skills"],"connections":[{"orbit":4,"id":32239},{"orbit":6,"id":34187},{"orbit":6,"id":18270}],"group":307,"name":"Plant Skill Damage","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":16721},"4673":{"orbit":2,"orbitIndex":16,"recipe":["Disgust","Guilt","Guilt"],"connections":[{"orbit":0,"id":10047},{"orbit":0,"id":51812}],"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Hulking Smash","group":233,"isNotable":true,"stats":["30% increased Stun Buildup","+15 to Strength"],"skill":4673},"44484":{"orbit":9,"orbitIndex":136,"connections":[{"orbit":0,"id":42522}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Remnant Range","ascendancyName":"Stormweaver","group":502,"stats":["Remnants can be collected from 25% further away"],"skill":44484},"26565":{"orbit":3,"orbitIndex":2,"stats":["10% increased Poison Duration"],"connections":[{"orbit":-2,"id":40024}],"group":1176,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":26565},"57703":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54811},{"orbit":0,"id":54485},{"orbit":0,"id":38130},{"orbit":0,"id":19674}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":334,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":57703},"18374":{"orbit":2,"orbitIndex":7,"stats":["8% increased amount of Life Leeched","12% increased Thorns damage"],"connections":[],"group":478,"name":"Thorns and Leech","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":18374},"63830":{"orbit":3,"orbitIndex":3,"recipe":["Guilt","Disgust","Isolation"],"connections":[{"orbit":-5,"id":13624},{"orbit":5,"id":45390}],"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Marked for Sickness","group":1279,"isNotable":true,"stats":["Enemies you Mark have 10% reduced Accuracy Rating","Enemies you Mark take 10% increased Damage"],"skill":63830},"48617":{"orbit":7,"orbitIndex":3,"recipe":["Fear","Guilt","Disgust"],"connections":[{"orbit":0,"id":1915},{"orbit":0,"id":11667},{"orbit":0,"id":15839},{"orbit":0,"id":6266},{"orbit":0,"id":2978}],"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Hunter","group":854,"isNotable":true,"stats":["50% increased Damage against Demons","50% increased Duration of Ailments on Beasts","50% increased Critical Hit Chance against Humanoids","50% increased Immobilisation buildup against Constructs"],"skill":48617},"30117":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":5,"id":26383},{"orbit":-5,"id":8415}],"nodeOverlay":{"path":"Blood MageFrameSmallCanAllocate","alloc":"Blood MageFrameSmallAllocated","unalloc":"Blood MageFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Spell Critical Chance","ascendancyName":"Blood Mage","group":855,"stats":["12% increased Critical Hit Chance for Spells"],"skill":30117},"4623":{"orbit":2,"orbitIndex":4,"stats":["15% of Spell Mana Cost Converted to Life Cost"],"connections":[{"orbit":4,"id":48524}],"group":458,"name":"Life Spell Costs","icon":"Art/2DArt/SkillIcons/passives/manastr.dds","skill":4623},"17447":{"orbit":2,"orbitIndex":14,"stats":["20% increased Stun Threshold while Parrying"],"connections":[{"orbit":-7,"id":24843},{"orbit":7,"id":29320}],"group":1155,"name":"Stun Threshold during Parry","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":17447},"19355":{"orbit":6,"orbitIndex":4,"stats":["15% increased maximum Energy Shield"],"connections":[],"group":953,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":19355},"22967":{"orbit":3,"orbitIndex":1,"recipe":["Guilt","Envy","Guilt"],"connections":[{"orbit":-7,"id":49198},{"orbit":0,"id":38921}],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Vigilance","group":306,"isNotable":true,"stats":["12% increased Block chance","10 Life gained when you Block","+2% to maximum Block chance"],"skill":22967},"58932":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"LichFrameLargeCanAllocate","alloc":"LichFrameLargeAllocated","unalloc":"LichFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds","name":"Eldritch Empowerment","isSwitchable":true,"ascendancyName":"Lich","options":{"Abyssal Lich":{"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"ascendancyName":"Abyssal Lich"}},"group":1069,"isNotable":true,"stats":["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 5% more Damage"],"skill":58932},"65393":{"orbit":2,"orbitIndex":16,"stats":["8% increased Mana Cost Efficiency"],"connections":[{"orbit":-2,"id":2732},{"orbit":0,"id":11672}],"group":862,"name":"Mana Cost Efficiency","icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":65393},"58115":{"orbit":2,"orbitIndex":12,"stats":["Recover 1% of maximum Mana on Kill"],"connections":[{"orbit":2,"id":52241},{"orbit":0,"id":11672}],"group":862,"name":"Mana on Kill","icon":"Art/2DArt/SkillIcons/passives/mana.dds","skill":58115},"53921":{"orbit":5,"orbitIndex":48,"recipe":["Paranoia","Envy","Paranoia"],"connections":[{"orbit":0,"id":58838},{"orbit":0,"id":40596}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Unbreaking","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","group":300,"isNotable":true,"stats":["30% increased Stun Threshold","30% increased Elemental Ailment Threshold"],"skill":53921},"26061":{"orbit":2,"orbitIndex":22,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"connections":[{"orbit":2,"id":4579}],"group":865,"name":"Energy Shield as Freeze Threshold","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":26061},"41105":{"orbit":7,"orbitIndex":12,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":54288}],"group":293,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":41105},"28061":{"orbit":7,"orbitIndex":8,"stats":["12% increased Elemental Damage with Attacks"],"connections":[{"orbit":0,"id":35878}],"group":1062,"name":"Elemental Attack Damage","icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","skill":28061},"8493":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":64471},{"orbit":0,"id":52860}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":602,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":8493},"41493":{"orbit":0,"orbitIndex":0,"stats":["8% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"connections":[{"orbit":9,"id":50253}],"group":324,"name":"Attack Area Damage and Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":41493},"10727":{"orbit":3,"orbitIndex":11,"recipe":["Greed","Disgust","Disgust"],"connections":[{"orbit":0,"id":1825}],"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Emboldening Casts","group":165,"isNotable":true,"stats":["12% increased Attack Damage for each different Non-Instant Spell you've used in the past 8 seconds"],"skill":10727},"13711":{"orbit":7,"orbitIndex":22,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":4,"id":30562}],"group":1064,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":13711},"6752":{"orbit":3,"orbitIndex":23,"stats":["12% increased Fire Damage"],"connections":[{"orbit":0,"id":7378},{"orbit":4,"id":29148}],"group":586,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":6752},"20140":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":869,"connections":[],"stats":[],"skill":20140},"20861":{"orbit":7,"orbitIndex":12,"stats":["Invocated Spells deal 15% increased Damage"],"connections":[{"orbit":0,"id":8522},{"orbit":0,"id":45350},{"orbit":0,"id":17672}],"group":870,"name":"Invocation Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":20861},"6077":{"orbit":0,"orbitIndex":0,"stats":["Minions have 20% increased Cooldown Recovery Rate for Command Skills"],"connections":[{"orbit":-2,"id":35645}],"group":514,"name":"Command Skill Cooldown","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":6077},"21809":{"orbit":5,"orbitIndex":54,"connections":[{"orbit":-6,"id":19162}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":177,"connectionArt":"CharacterPlanned","stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"skill":21809},"62376":{"orbit":7,"orbitIndex":9,"stats":["4% reduced Skill Effect Duration","8% increased Physical Damage"],"connections":[{"orbit":-5,"id":54640}],"group":407,"name":"Physical Damage and Reduced Duration","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","skill":62376},"36217":{"orbit":1,"orbitIndex":11,"stats":["15% increased Volatility Explosion delay"],"connections":[],"group":1360,"name":"Volatility Detonation Time","icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","skill":36217},"62640":{"orbit":4,"orbitIndex":32,"stats":["3% increased Attack Speed"],"connections":[{"orbit":-7,"id":24880}],"group":662,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":62640},"44948":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","name":"Mana Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":646,"connections":[],"stats":[],"skill":44948},"42280":{"orbit":7,"orbitIndex":22,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":21205}],"group":761,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","skill":42280},"63114":{"orbit":3,"orbitIndex":4,"connections":[{"orbit":0,"id":26725},{"orbit":0,"id":21387},{"orbit":0,"id":26176},{"orbit":0,"id":35048}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":217,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":63114},"50881":{"orbit":2,"orbitIndex":20,"stats":["15% reduced effect of Curses on you"],"connections":[{"orbit":0,"id":55420}],"group":982,"name":"Curse Effect on Self","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":50881},"14572":{"orbit":3,"orbitIndex":8,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":-6,"id":49657},{"orbit":0,"id":11037}],"group":731,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":14572},"10429":{"orbit":1,"orbitIndex":11,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","name":"Trap Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","group":871,"connections":[],"stats":[],"skill":10429},"1420":{"orbit":7,"orbitIndex":20,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Dizzying Sweep","group":1092,"isNotable":true,"stats":["15% increased Attack Area Damage","10% increased Area of Effect for Attacks","5% chance to Daze on Hit"],"skill":1420},"61471":{"orbit":4,"orbitIndex":60,"connections":[{"orbit":0,"id":49153}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":354,"connectionArt":"CharacterPlanned","stats":["15% increased Damage","Minions deal 15% increased Damage"],"skill":61471},"30463":{"orbit":2,"orbitIndex":3,"stats":["15% increased Elemental Ailment Threshold"],"connections":[{"orbit":-7,"id":58971},{"orbit":-6,"id":9968}],"group":1217,"name":"Ailment Threshold","icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","skill":30463},"1019":{"orbit":0,"orbitIndex":0,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":0,"id":45037}],"group":873,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":1019},"33059":{"orbit":2,"orbitIndex":12,"recipe":["Ire","Guilt","Greed"],"connections":[{"orbit":0,"id":2841}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Back in Action","group":894,"isNotable":true,"stats":["80% increased Stun Recovery"],"skill":33059},"51728":{"orbit":2,"orbitIndex":7,"stats":["15% chance to Pierce an Enemy"],"connections":[{"orbit":0,"id":6505}],"group":790,"name":"Pierce Chance","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":51728},"47976":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":14446},{"orbit":0,"id":37876}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1269,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":47976},"33415":{"orbit":4,"orbitIndex":31,"stats":["10% increased Critical Hit Chance with Crossbows"],"connections":[{"orbit":0,"id":31763}],"group":874,"name":"Crossbow Critical Chance","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":33415},"17711":{"orbit":0,"orbitIndex":0,"stats":["Spell Skills have 6% increased Area of Effect"],"connections":[{"orbit":3,"id":46989}],"group":813,"name":"Spell Area of Effect","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":17711},"6015":{"orbit":3,"orbitIndex":15,"connections":[{"orbit":6,"id":35426}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":580,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":6015},"50629":{"orbit":0,"orbitIndex":0,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":3218},{"orbit":0,"id":23930},{"orbit":0,"id":24430}],"group":261,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":50629},"63445":{"orbit":3,"orbitIndex":6,"stats":["3% increased Attack Speed"],"connections":[{"orbit":0,"id":43562}],"group":804,"name":"Attack Speed","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":63445},"52060":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":1209,"connections":[],"stats":[],"skill":52060},"29361":{"orbit":7,"orbitIndex":7,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[],"group":878,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":29361},"48198":{"orbit":4,"orbitIndex":12,"connections":[{"orbit":3,"id":29361},{"orbit":-5,"id":65437},{"orbit":-6,"id":40068},{"orbit":0,"id":1215},{"orbit":6,"id":13411}],"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","name":"Step Like Mist","group":878,"isNotable":true,"stats":["4% increased Movement Speed","15% increased Mana Regeneration Rate","+5 to Dexterity and Intelligence"],"skill":48198},"19779":{"orbit":2,"orbitIndex":22,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":2,"id":63891}],"group":881,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":19779},"48240":{"orbit":3,"orbitIndex":15,"recipe":["Despair","Suffering","Greed"],"connections":[{"orbit":0,"id":48505}],"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Quick Recovery","group":448,"isNotable":true,"stats":["40% increased Stun Recovery","Regenerate 5% of maximum Life over 1 second when Stunned"],"skill":48240},"61847":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance with Flails"],"connections":[{"orbit":-4,"id":43443}],"group":163,"name":"Flail Critical Chance","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":61847},"44188":{"orbit":2,"orbitIndex":7,"stats":["8% increased Power Charge Duration","8% increased Elemental Infusion duration"],"connections":[{"orbit":0,"id":64427}],"group":885,"name":"Infusion and Power Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","skill":44188},"65328":{"orbit":2,"orbitIndex":2,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"connections":[{"orbit":0,"id":48565}],"group":257,"name":"Sentinels","icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","skill":65328},"61067":{"orbit":2,"orbitIndex":21,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","options":{"Druid":{"stats":["Regenerate 0.2% of maximum Life per second"],"id":50065,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration"}},"group":626,"isSwitchable":true,"stats":["15% increased Critical Spell Damage Bonus"],"skill":61067},"21279":{"orbit":2,"orbitIndex":21,"stats":["8% increased Effect of your Mark Skills","10% increased Blind Effect"],"connections":[{"orbit":-3,"id":35534}],"group":1296,"name":"Mark Effect and Blind Effect","icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","skill":21279},"56926":{"orbit":2,"orbitIndex":3,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","name":"Minion Defence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","group":893,"connections":[],"stats":[],"skill":56926},"46782":{"orbit":7,"orbitIndex":16,"stats":["10% increased Attack Damage"],"connections":[{"orbit":3,"id":53698}],"group":1115,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/damage.dds","skill":46782},"14548":{"orbit":7,"orbitIndex":0,"stats":["Minions have 10% increased maximum Life"],"connections":[{"orbit":7,"id":59541}],"group":893,"name":"Minion Life","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":14548},"55101":{"orbit":3,"orbitIndex":12,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":7,"id":58016}],"group":343,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":55101},"61318":{"orbit":3,"orbitIndex":13,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":0,"id":61396}],"group":873,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":61318},"14342":{"orbit":7,"orbitIndex":16,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"connections":[{"orbit":4,"id":49256}],"group":117,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":14342},"13233":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Radial Force","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":577,"isNotable":true,"stats":["10% increased Area of Effect","12% increased Immobilisation buildup"],"skill":13233},"750":{"orbit":2,"orbitIndex":22,"recipe":["Isolation","Ire","Isolation"],"connections":[{"orbit":0,"id":6952}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Tribal Fury","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":100,"isNotable":true,"stats":["Strikes deal Splash Damage"],"skill":750},"62235":{"orbit":2,"orbitIndex":12,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","name":"Armour and Evasion Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","group":873,"connections":[],"stats":[],"skill":62235},"61935":{"orbit":0,"orbitIndex":0,"stats":["Gain 1 Rage on Melee Hit"],"connections":[{"orbit":7,"id":4624}],"group":533,"name":"Rage on Hit","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":61935},"52703":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds","name":"Gore Spike","ascendancyName":"Blood Mage","group":895,"isNotable":true,"stats":["1% increased Critical Damage Bonus per 50 current Life"],"skill":52703},"48568":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":16489}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":896,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48568},"54311":{"orbit":2,"orbitIndex":18,"stats":["30% increased Flammability Magnitude"],"connections":[{"orbit":7,"id":28482}],"group":346,"name":"Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","skill":54311},"40313":{"orbit":0,"orbitIndex":0,"stats":["8% increased Archon Buff duration","5% increased effect of Archon Buffs on you"],"connections":[{"orbit":2,"id":58363},{"orbit":-2,"id":56844},{"orbit":0,"id":3251}],"group":1051,"name":"Archon Effect and Duration","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":40313},"48137":{"orbit":4,"orbitIndex":11,"stats":["15% increased Crossbow Reload Speed"],"connections":[{"orbit":0,"id":33887}],"group":874,"name":"Crossbow Reload Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":48137},"5642":{"orbit":2,"orbitIndex":8,"recipe":["Fear","Isolation","Greed"],"connections":[{"orbit":0,"id":57405}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Behemoth","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":234,"isNotable":true,"stats":["3% increased maximum Life","8% increased Area of Effect for Attacks","5% chance for Slam Skills you use yourself to cause an additional Aftershock"],"skill":5642},"1825":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":165,"connections":[],"stats":[],"skill":1825},"10305":{"orbit":2,"orbitIndex":14,"stats":["Allies in your Presence deal 8% increased Damage","8% increased Attack Damage while you have an Ally in your Presence"],"connections":[{"orbit":0,"id":45586},{"orbit":0,"id":61490}],"group":413,"name":"Attack Damage with Ally","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":10305},"33037":{"orbit":3,"orbitIndex":2,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"connections":[{"orbit":0,"id":47683}],"group":790,"name":"Chaining Projectiles","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":33037},"28038":{"orbit":7,"orbitIndex":12,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":56488}],"group":907,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":28038},"35859":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","name":"Leech Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","group":851,"connections":[],"stats":[],"skill":35859},"558":{"orbit":3,"orbitIndex":4,"stats":["12% increased Fire Damage"],"connections":[],"group":685,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","skill":558},"3660":{"orbit":3,"orbitIndex":18,"stats":["8% chance to Blind Enemies on Hit with Attacks"],"connections":[{"orbit":-7,"id":25619},{"orbit":0,"id":57196}],"group":804,"name":"Blind Chance","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":3660},"11153":{"orbit":7,"orbitIndex":12,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"connections":[{"orbit":0,"id":5049}],"group":603,"name":"Attack Speed and Accuracy","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":11153},"54998":{"orbit":2,"orbitIndex":5,"recipe":["Despair","Disgust","Guilt"],"connections":[{"orbit":0,"id":29993}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Protraction","group":282,"isNotable":true,"stats":["20% increased Skill Effect Duration","15% increased Duration of Damaging Ailments on Enemies"],"skill":54998},"52464":{"orbit":6,"orbitIndex":24,"stats":["Recover 1% of maximum Life on Kill"],"connections":[],"group":1172,"name":"Life on Kill","icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","skill":52464},"31908":{"orbit":2,"orbitIndex":8,"stats":["6% increased Curse Magnitudes"],"connections":[{"orbit":0,"id":5594}],"group":982,"name":"Curse Effect","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":31908},"26895":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","name":"Duration Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","group":481,"connections":[],"stats":[],"skill":26895},"1603":{"orbit":2,"orbitIndex":18,"recipe":["Ire","Ire","Isolation"],"connections":[{"orbit":0,"id":32040}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Storm Driven","group":1090,"isNotable":true,"stats":["15% of Elemental Damage taken Recouped as Energy Shield"],"skill":1603},"2857":{"orbit":6,"orbitIndex":66,"connections":[{"orbit":0,"id":7998}],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds","name":"Strike Twice","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["Targets can be affected by two of your Shocks at the same time","25% less Magnitude of Shock you inflict"],"skill":2857},"59600":{"orbit":7,"orbitIndex":21,"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"connections":[{"orbit":0,"id":9411}],"group":1148,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":59600},"42813":{"orbit":7,"orbitIndex":19,"recipe":["Paranoia","Suffering","Fear"],"connections":[{"orbit":0,"id":55491}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Tides of Change","group":431,"isNotable":true,"stats":["25% increased Skill Effect Duration"],"skill":42813},"27667":{"orbit":6,"orbitIndex":8,"connections":[],"nodeOverlay":{"path":"Blood MageFrameLargeCanAllocate","alloc":"Blood MageFrameLargeAllocated","unalloc":"Blood MageFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds","name":"Whispers of the Flesh","ascendancyName":"Blood Mage","group":910,"isNotable":true,"stats":["Targets Cursed by you have 100% reduced Life Regeneration Rate","Targets Cursed by you have at least 15% of Life Reserved"],"skill":27667},"24045":{"orbit":2,"orbitIndex":9,"stats":["10% increased Mana Recovery from Flasks"],"connections":[],"group":912,"name":"Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":24045},"18882":{"orbit":5,"orbitIndex":6,"connections":[{"orbit":-2,"id":24045},{"orbit":0,"id":26786},{"orbit":0,"id":30047},{"orbit":0,"id":29941}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":913,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":18882},"58138":{"orbit":1,"orbitIndex":6,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Armour and Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","group":117,"connections":[],"stats":[],"skill":58138},"58038":{"orbit":3,"orbitIndex":3,"stats":["25% increased Attack Damage while Surrounded"],"connections":[{"orbit":0,"id":31566}],"group":717,"name":"Attack Damage while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":58038},"8540":{"orbit":2,"orbitIndex":10,"stats":["10% increased Area of Effect of Curses"],"connections":[{"orbit":0,"id":45230}],"group":916,"name":"Curse Area","icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","skill":8540},"51797":{"orbit":7,"orbitIndex":8,"stats":["3% of Damage taken Recouped as Life"],"connections":[{"orbit":0,"id":23939}],"group":591,"name":"Life Recoup","icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","skill":51797},"38814":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":19288},{"orbit":0,"id":62341},{"orbit":0,"id":11980}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":918,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38814},"53539":{"orbit":3,"orbitIndex":6,"stats":["15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"],"connections":[{"orbit":0,"id":46705},{"orbit":0,"id":13379}],"group":1005,"name":"Projectile Damage if Melee Hit","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":53539},"43647":{"orbit":2,"orbitIndex":17,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","name":"Minion Offence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","group":654,"connections":[{"orbit":0,"id":32507}],"stats":[],"skill":43647},"15030":{"orbit":7,"orbitIndex":5,"recipe":["Guilt","Greed","Ire"],"connections":[{"orbit":0,"id":45693},{"orbit":0,"id":21324}],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Consistent Intake","group":1056,"isNotable":true,"stats":["15% increased Parried Debuff Magnitude","Cannot be Critically Hit while Parrying"],"skill":15030},"43923":{"orbit":2,"orbitIndex":2,"connections":[{"orbit":0,"id":19104}],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","options":{"Huntress":{"stats":["20% increased Stun Threshold while Parrying"],"id":34062,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry"}},"group":922,"isSwitchable":true,"stats":["8% increased Accuracy Rating"],"skill":43923},"24135":{"orbit":9,"orbitIndex":6,"connections":[{"orbit":0,"id":34419}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Critical Chance","ascendancyName":"Infernalist","group":725,"stats":["12% increased Critical Hit Chance"],"skill":24135},"48103":{"orbit":2,"orbitIndex":8,"recipe":["Greed","Paranoia","Paranoia"],"connections":[{"orbit":0,"id":52875}],"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Forcewave","group":1291,"isNotable":true,"stats":["20% increased Stun Buildup","20% increased Knockback Distance","20% increased Physical Damage"],"skill":48103},"9458":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","name":"Flask Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","group":922,"connections":[],"stats":[],"skill":9458},"45177":{"orbit":2,"orbitIndex":4,"recipe":["Paranoia","Envy","Envy"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Strike True","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","group":574,"isNotable":true,"stats":["20% increased Accuracy Rating","+10 to Dexterity"],"skill":45177},"7947":{"orbit":2,"orbitIndex":16,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"connections":[{"orbit":2,"id":26061}],"group":865,"name":"Energy Shield as Freeze Threshold","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":7947},"26432":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":12890},{"orbit":0,"id":60735}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1212,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":26432},"45086":{"orbit":2,"orbitIndex":21,"stats":["Gain 3% of Physical Damage as extra Chaos Damage"],"connections":[{"orbit":0,"id":34520}],"group":925,"name":"Physical as Extra Chaos Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":45086},"51142":{"orbit":9,"orbitIndex":135,"connections":[{"orbit":-4,"id":26085}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Mana","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":15373,"stats":["6% increased Reservation Efficiency of Minion Skills"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Minion Reservation Efficiency"}},"group":1120,"isSwitchable":true,"stats":["3% increased maximum Mana"],"skill":51142},"11329":{"orbit":2,"orbitIndex":22,"stats":["10% increased Life Regeneration rate"],"connections":[{"orbit":0,"id":54676}],"group":541,"name":"Life Regeneration","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":11329},"17118":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38814},{"orbit":0,"id":20049},{"orbit":4,"id":8789}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":967,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":17118},"2138":{"orbit":2,"orbitIndex":12,"recipe":["Greed","Isolation","Envy"],"connections":[{"orbit":0,"id":32523}],"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Spiral into Insanity","group":610,"isNotable":true,"stats":["29% increased Chaos Damage","20% increased Defences"],"skill":2138},"23331":{"orbit":1,"orbitIndex":3,"stats":["Damage Penetrates 6% Fire Resistance"],"connections":[{"orbit":-2,"id":2344}],"group":255,"name":"Fire Penetration","icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","skill":23331},"32135":{"orbit":4,"orbitIndex":12,"stats":["10% increased Flask Charges gained"],"connections":[{"orbit":5,"id":12322},{"orbit":-9,"id":16484}],"group":927,"name":"Flask Charges Gained","icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","skill":32135},"46692":{"orbit":7,"orbitIndex":16,"recipe":["Fear","Ire","Guilt"],"connections":[{"orbit":0,"id":9393}],"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Efficient Alchemy","group":927,"isNotable":true,"stats":["20% increased Flask and Charm Charges gained","40% increased Life and Mana Recovery from Flasks while you have an active Charm"],"skill":46692},"25763":{"orbit":2,"orbitIndex":12,"stats":["10% increased Fire Damage"],"connections":[{"orbit":7,"id":61170},{"orbit":0,"id":62963}],"group":653,"name":"Fire Damage","icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","skill":25763},"37397":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Gemling LegionnaireFrameSmallCanAllocate","alloc":"Gemling LegionnaireFrameSmallAllocated","unalloc":"Gemling LegionnaireFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds","name":"Neurological Implants","ascendancyName":"Gemling Legionnaire","group":360,"isMultipleChoiceOption":true,"stats":["+2 to Level of all Skills with an Intelligence requirement"],"skill":37397},"34317":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":255,"connections":[],"stats":[],"skill":34317},"4157":{"orbit":7,"orbitIndex":18,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":-6,"id":49220}],"group":932,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","skill":4157},"9221":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":263,"connections":[],"stats":[],"skill":9221},"4776":{"orbit":2,"orbitIndex":2,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":14363}],"group":696,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":4776},"29843":{"orbit":7,"orbitIndex":19,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"connections":[{"orbit":0,"id":35987}],"group":935,"name":"Evasion and Reduced Movement Penalty","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":29843},"9020":{"orbit":1,"orbitIndex":11,"recipe":["Despair","Isolation","Despair"],"connections":[{"orbit":0,"id":35118}],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Giantslayer","group":936,"isNotable":true,"stats":["25% increased Damage with Hits against Rare and Unique Enemies","20% increased Accuracy Rating against Rare or Unique Enemies","20% increased chance to inflict Ailments against Rare or Unique Enemies"],"skill":9020},"11311":{"orbit":5,"orbitIndex":61,"stats":["+10 to Armour","+8 to Evasion Rating"],"connections":[{"orbit":0,"id":38057}],"group":768,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":11311},"38878":{"orbit":4,"orbitIndex":35,"stats":["Debuffs on you expire 10% faster"],"connections":[{"orbit":-7,"id":34898}],"group":1159,"name":"Debuff Expiry","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":38878},"36341":{"orbit":2,"orbitIndex":10,"recipe":["Despair","Guilt","Suffering"],"connections":[{"orbit":0,"id":35118}],"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Cull the Hordes","group":936,"isNotable":true,"stats":["40% increased Culling Strike Threshold against Rare or Unique Enemies"],"skill":36341},"30634":{"orbit":2,"orbitIndex":6,"stats":["15% faster start of Energy Shield Recharge"],"connections":[],"group":970,"name":"Energy Shield Delay","icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","skill":30634},"1994":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":47097}],"nodeOverlay":{"path":"WarbringerFrameSmallCanAllocate","alloc":"WarbringerFrameSmallAllocated","unalloc":"WarbringerFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Warcry Speed","ascendancyName":"Warbringer","group":42,"stats":["20% increased Warcry Speed"],"skill":1994},"53216":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":253,"connections":[],"stats":[],"skill":53216},"33829":{"orbit":7,"orbitIndex":2,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":18737}],"group":263,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":33829},"48631":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":35426},{"orbit":-4,"id":59006}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":457,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":48631},"56219":{"orbit":7,"orbitIndex":2,"stats":["Inherent loss of Rage is 15% slower"],"connections":[{"orbit":-2,"id":52764}],"group":182,"name":"Rage Decay","icon":"Art/2DArt/SkillIcons/passives/Rage.dds","skill":56219},"8800":{"orbit":3,"orbitIndex":15,"stats":["15% increased Melee Damage with Hits at Close Range"],"connections":[{"orbit":0,"id":28982}],"group":134,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":8800},"33922":{"orbit":2,"orbitIndex":6,"recipe":["Disgust","Isolation","Disgust"],"connections":[{"orbit":0,"id":6950}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Stripped Defences","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":841,"isNotable":true,"stats":["Exposure you inflict lowers Resistances by an additional 5%"],"skill":33922},"57617":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Guilt","Disgust"],"connections":[{"orbit":-2,"id":14996},{"orbit":-2,"id":16506},{"orbit":-2,"id":37509},{"orbit":0,"id":23879}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Shifted Strikes","group":344,"isNotable":true,"stats":["30% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"skill":57617},"36504":{"orbit":2,"orbitIndex":11,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":2147483647,"id":65}],"group":93,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":36504},"12906":{"orbit":7,"orbitIndex":20,"recipe":["Despair","Despair","Guilt"],"connections":[{"orbit":0,"id":3234}],"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Sitting Duck","group":939,"isNotable":true,"stats":["35% increased Critical Hit Chance against Immobilised enemies","Your Hits cannot be Evaded by Pinned Enemies"],"skill":12906},"25281":{"orbit":1,"orbitIndex":10,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","name":"Life Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","group":948,"connections":[],"stats":[],"skill":25281},"10677":{"orbit":2,"orbitIndex":20,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[{"orbit":3,"id":56638}],"group":948,"name":"Stun Threshold if not Stunned recently","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":10677},"56638":{"orbit":2,"orbitIndex":2,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"connections":[],"group":948,"name":"Stun Threshold if not Stunned recently","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":56638},"55135":{"orbit":6,"orbitIndex":16,"connections":[],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds","name":"Forced Outcome","ascendancyName":"Oracle","group":23,"isNotable":true,"stats":["Inevitable Critical Hits"],"skill":55135},"44293":{"orbit":2,"orbitIndex":9,"recipe":["Paranoia","Greed","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Hastening Barrier","group":636,"isNotable":true,"stats":["5% increased Cast Speed","10% increased Cast Speed when on Full Life"],"skill":44293},"23078":{"orbit":3,"orbitIndex":16,"recipe":["Disgust","Despair","Suffering"],"connections":[{"orbit":0,"id":47242}],"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Holy Protector","group":257,"isNotable":true,"stats":["Minions have 25% increased maximum Life","10% increased Block chance"],"skill":23078},"38856":{"orbit":6,"orbitIndex":54,"connections":[{"orbit":0,"id":49357},{"orbit":0,"id":2071},{"orbit":5,"id":21081},{"orbit":0,"id":56090}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":618,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":38856},"63431":{"orbit":1,"orbitIndex":3,"recipe":["Greed","Suffering","Suffering"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Leeching Toxins","group":1326,"isNotable":true,"stats":["30% increased Magnitude of Poison you inflict","Recover 2% of maximum Life on Killing a Poisoned Enemy"],"skill":63431},"36994":{"orbit":4,"orbitIndex":12,"stats":["15% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":27491}],"group":647,"name":"Energy Shield","icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","skill":36994},"57088":{"orbit":2,"orbitIndex":20,"stats":["Damage Penetrates 6% Cold Resistance"],"connections":[{"orbit":-5,"id":54557}],"group":1188,"name":"Cold Penetration","icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","skill":57088},"33400":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","name":"Reverberating Parry","group":996,"isNotable":true,"stats":["15% increased Parried Debuff Magnitude","20% increased Parry Hit Area of Effect"],"skill":33400},"21096":{"orbit":4,"orbitIndex":69,"stats":["Banner Skills have 15% increased Area of Effect"],"connections":[{"orbit":0,"id":56388}],"group":656,"name":"Banner Area","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":21096},"5862":{"orbit":7,"orbitIndex":14,"stats":["+5% to Lightning Resistance"],"connections":[{"orbit":-2,"id":22697}],"group":144,"name":"Lightning Resistance","icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","skill":5862},"15975":{"orbit":2,"orbitIndex":13,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"connections":[{"orbit":5,"id":48198}],"group":955,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":15975},"39884":{"orbit":7,"orbitIndex":1,"recipe":["Despair","Suffering","Disgust"],"connections":[{"orbit":0,"id":40271}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Searing Heat","group":957,"isNotable":true,"stats":["100% increased Flammability Magnitude","8% reduced Skill Effect Duration"],"skill":39884},"45992":{"orbit":3,"orbitIndex":12,"stats":["15% increased Armour"],"connections":[{"orbit":0,"id":41657}],"group":453,"name":"Armour","icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","skill":45992},"25653":{"orbit":8,"orbitIndex":19,"connections":[{"orbit":0,"id":13289}],"nodeOverlay":{"path":"Disciple of VarashtaFrameLargeCanAllocate","alloc":"Disciple of VarashtaFrameLargeAllocated","unalloc":"Disciple of VarashtaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds","name":"Kelari's Judgment","ascendancyName":"Disciple of Varashta","group":593,"isNotable":true,"stats":["Grants Skill: Command: {0} "],"skill":25653},"33601":{"orbit":2,"orbitIndex":20,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":-2,"id":35708},{"orbit":0,"id":2863}],"group":524,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","skill":33601},"32436":{"orbit":2,"orbitIndex":14,"stats":["+8 to Intelligence"],"connections":[{"orbit":2147483647,"id":5332}],"group":796,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":32436},"50879":{"orbit":7,"orbitIndex":4,"stats":["16% increased Hazard Damage"],"connections":[{"orbit":7,"id":14211}],"group":1105,"name":"Hazard Damage","icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","skill":50879},"54447":{"orbit":0,"orbitIndex":0,"classesStart":["Witch","Sorceress"],"connections":[{"orbit":0,"id":23710},{"orbit":0,"id":59822},{"orbit":0,"id":32699},{"orbit":0,"id":40721},{"orbit":0,"id":22147},{"orbit":0,"id":8305},{"orbit":0,"id":4739}],"icon":"Art/2DArt/SkillIcons/passives/blankInt.dds","name":"WITCH","group":746,"stats":[],"skill":54447},"9554":{"orbit":6,"orbitIndex":62,"connections":[{"orbit":9,"id":8723}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"skill":9554},"37258":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":31903}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":423,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":37258},"27687":{"orbit":3,"orbitIndex":4,"recipe":["Suffering","Fear","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Greatest Defence","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","group":174,"isNotable":true,"stats":["4% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield"],"skill":27687},"8785":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","name":"Curse Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","group":983,"connections":[],"stats":[],"skill":8785},"12245":{"orbit":3,"orbitIndex":14,"recipe":["Isolation","Greed","Despair"],"connections":[{"orbit":0,"id":13610},{"orbit":0,"id":19749}],"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Arsonist","group":961,"isNotable":true,"stats":["Ignites you inflict deal Damage 18% faster"],"skill":12245},"45422":{"orbit":7,"orbitIndex":2,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Anger Management","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":408,"connectionArt":"CharacterPlanned","stats":["+15 to Maximum Rage","200% faster start of inherent Rage loss"],"skill":45422},"30372":{"orbit":2,"orbitIndex":23,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":42065}],"group":1166,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":30372},"47173":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","name":"Warcry Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","group":184,"connections":[],"stats":[],"skill":47173},"17646":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"WitchhunterFrameLargeCanAllocate","alloc":"WitchhunterFrameLargeAllocated","unalloc":"WitchhunterFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds","name":"Judge, Jury, and Executioner","ascendancyName":"Witchhunter","group":240,"isNotable":true,"stats":["Decimating Strike"],"skill":17646},"46644":{"orbit":8,"orbitIndex":48,"connections":[],"nodeOverlay":{"path":"InfernalistFrameLargeCanAllocate","alloc":"InfernalistFrameLargeAllocated","unalloc":"InfernalistFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds","name":"Beidat's Will","ascendancyName":"Infernalist","group":725,"isNotable":true,"stats":["Reserves 25% of Life","+1 to Maximum Spirit per 25 Maximum Life"],"skill":46644},"26682":{"orbit":7,"orbitIndex":6,"stats":["15% increased Critical Spell Damage Bonus"],"connections":[{"orbit":0,"id":46819},{"orbit":-3,"id":56640}],"group":699,"name":"Spell Critical Damage","icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","skill":26682},"42781":{"orbit":2,"orbitIndex":2,"connections":[{"orbit":0,"id":55429},{"orbit":0,"id":56472}],"icon":"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds","name":"Clean Shot","isSwitchable":true,"options":{"Huntress":{"stats":["30% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds","30% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"],"id":42895,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Stalk and Leap"}},"group":966,"isNotable":true,"stats":["15% chance to Pierce an Enemy","15% increased Projectile Damage"],"skill":42781},"31189":{"orbit":4,"orbitIndex":12,"recipe":["Despair","Greed","Isolation"],"connections":[{"orbit":0,"id":28863}],"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Unexpected Finesse","group":800,"isNotable":true,"stats":["10% increased Attack Damage","30% increased Accuracy Rating while moving"],"skill":31189},"45327":{"orbit":3,"orbitIndex":16,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":10251}],"group":236,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":45327},"34233":{"orbit":2,"orbitIndex":22,"connections":[{"orbit":0,"id":16123},{"orbit":0,"id":32545}],"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Flow State","group":938,"isNotable":true,"stats":["5% increased Skill Speed","15% increased Mana Regeneration Rate"],"skill":34233},"54413":{"orbit":3,"orbitIndex":10,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","name":"Spell Suppression Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","group":970,"connections":[],"stats":[],"skill":54413},"53149":{"orbit":4,"orbitIndex":22,"stats":["15% increased Freeze Buildup"],"connections":[{"orbit":-5,"id":24647}],"group":972,"name":"Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":53149},"8723":{"orbit":6,"orbitIndex":56,"connections":[{"orbit":-5,"id":3681},{"orbit":0,"id":21374}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Flesh Withstands","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":228,"connectionArt":"CharacterPlanned","stats":["30% increased Mana Regeneration Rate while Shocked","+500 to Armour while Frozen","21% increased Stun Threshold","21% increased Elemental Ailment Threshold","30% increased Life Regeneration rate while Ignited"],"skill":8723},"27009":{"orbit":7,"orbitIndex":6,"recipe":["Disgust","Suffering","Paranoia"],"connections":[{"orbit":0,"id":30459}],"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Lust for Sacrifice","group":779,"isNotable":true,"stats":["50% increased Minion Damage while you have at least two different active Offerings"],"skill":27009},"52993":{"orbit":7,"orbitIndex":4,"connections":[{"orbit":0,"id":9414}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":276,"connectionArt":"CharacterPlanned","stats":["16% increased Elemental Damage"],"skill":52993},"51934":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Envy","Paranoia"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocated Efficiency","group":1174,"isNotable":true,"stats":["10% increased Mana Cost Efficiency","Triggered Spells deal 40% increased Spell Damage"],"skill":51934},"40271":{"orbit":7,"orbitIndex":2,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":957,"connections":[],"stats":[],"skill":40271},"60515":{"orbit":3,"orbitIndex":4,"stats":["12% increased Cold Damage"],"connections":[{"orbit":-4,"id":19955}],"group":749,"name":"Cold Damage","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":60515},"38329":{"orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Guilt"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Biting Frost","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1251,"isNotable":true,"stats":["20% reduced Freeze Duration on Enemies","Enemies Frozen by you take 20% increased Cold Damage"],"skill":38329},"52220":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","name":"Physical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","group":212,"connections":[],"stats":[],"skill":52220},"34621":{"orbit":0,"orbitIndex":0,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":38541}],"group":1128,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":34621},"9941":{"orbit":7,"orbitIndex":15,"stats":["8% increased Accuracy Rating with One Handed Melee Weapons","8% increased Accuracy Rating with Two Handed Melee Weapons"],"connections":[{"orbit":0,"id":38888}],"group":848,"name":"Melee Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":9941},"5800":{"orbit":7,"orbitIndex":0,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"connections":[{"orbit":0,"id":43149},{"orbit":0,"id":22975}],"group":295,"name":"Attack Damage and Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":5800},"57227":{"orbit":2,"orbitIndex":5,"stats":["10% increased Critical Hit Chance for Attacks"],"connections":[{"orbit":-5,"id":23259}],"group":987,"name":"Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":57227},"26291":{"orbit":4,"orbitIndex":28,"recipe":["Envy","Greed","Paranoia"],"connections":[{"orbit":0,"id":48935}],"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electrifying Nature","group":269,"isNotable":true,"stats":["25% increased Lightning Damage","15% increased Shock Duration"],"skill":26291},"21280":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":28050},{"orbit":0,"id":61312},{"orbit":0,"id":40630}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":995,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":21280},"22368":{"orbit":4,"orbitIndex":5,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[{"orbit":0,"id":63182},{"orbit":0,"id":29930},{"orbit":0,"id":16484}],"group":989,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":22368},"65016":{"orbit":3,"orbitIndex":16,"recipe":["Guilt","Suffering","Fear"],"connections":[{"orbit":0,"id":11505}],"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Intense Flames","group":586,"isNotable":true,"stats":["35% increased Damage with Hits against Burning Enemies"],"skill":65016},"51267":{"orbit":7,"orbitIndex":19,"stats":["15% increased Stun Buildup"],"connections":[{"orbit":0,"id":11886}],"group":410,"name":"Stun Buildup","icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","skill":51267},"26648":{"orbit":2,"orbitIndex":21,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":24256},{"orbit":0,"id":52125}],"group":774,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":26648},"54975":{"orbit":5,"orbitIndex":66,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"connections":[{"orbit":-9,"id":7526}],"group":1159,"name":"Slow Effect","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":54975},"17107":{"orbit":0,"orbitIndex":0,"stats":["10% increased Spell Area Damage"],"connections":[{"orbit":3,"id":11788}],"group":810,"name":"Spell Area Damage","icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","skill":17107},"3823":{"orbit":1,"orbitIndex":0,"connections":[{"orbit":0,"id":5726}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Force","isSwitchable":true,"options":{"Witch":{"stats":["Minions deal 20% increased Damage","Minions have 4% increased Attack and Cast Speed"],"id":17324,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Power of the Dead"}},"group":713,"isNotable":true,"stats":["+3% to all Elemental Resistances","20% increased Elemental Damage"],"skill":3823},"57616":{"orbit":4,"orbitIndex":3,"stats":["Banner Skills have 20% increased Duration"],"connections":[{"orbit":0,"id":56388}],"group":656,"name":"Banner Duration","icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","skill":57616},"20195":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"Smith of KitavaFrameLargeCanAllocate","alloc":"Smith of KitavaFrameLargeAllocated","unalloc":"Smith of KitavaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds","name":"Spiked Plates","ascendancyName":"Smith of Kitava","applyToArmour":true,"group":56,"isNotable":true,"stats":["Body Armour grants 100% increased Thorns damage"],"skill":20195},"7353":{"orbit":2,"orbitIndex":5,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":3,"id":9046}],"group":1131,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":7353},"20387":{"orbit":0,"orbitIndex":0,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":57810}],"group":919,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":20387},"16499":{"orbit":7,"orbitIndex":12,"recipe":["Isolation","Despair","Envy"],"connections":[{"orbit":0,"id":36814}],"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Lingering Whispers","group":814,"isNotable":true,"stats":["40% increased Curse Duration","10% increased Curse Magnitudes"],"skill":16499},"16256":{"orbit":3,"orbitIndex":8,"recipe":["Envy","Greed","Envy"],"connections":[{"orbit":0,"id":53188}],"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Ether Flow","group":954,"isNotable":true,"stats":["25% reduced Mana Regeneration Rate while stationary","50% increased Mana Regeneration Rate while moving","5% reduced Movement Speed Penalty from using Skills while moving"],"skill":16256},"4739":{"orbit":3,"orbitIndex":22,"connections":[{"orbit":0,"id":18845}],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","options":{"Witch":{"stats":["8% increased Spell Damage","Minions deal 8% increased Damage"],"id":17306,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage"}},"group":764,"isSwitchable":true,"stats":["10% increased Spell Damage"],"skill":4739},"5961":{"orbit":0,"orbitIndex":0,"stats":["10% increased Lightning Damage"],"connections":[{"orbit":0,"id":54675},{"orbit":0,"id":11315}],"group":901,"name":"Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":5961},"630":{"orbit":1,"orbitIndex":4,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":13419}],"group":1006,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":630},"2446":{"orbit":3,"orbitIndex":18,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":37164}],"group":1118,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","skill":2446},"52462":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","name":"Armour Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":452,"connections":[],"stats":[],"skill":52462},"62505":{"orbit":3,"orbitIndex":18,"stats":["+8 to Intelligence"],"connections":[{"orbit":0,"id":32436}],"group":796,"name":"Intelligence","icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","skill":62505},"25300":{"orbit":0,"orbitIndex":0,"stats":["Break 20% increased Armour"],"connections":[{"orbit":0,"id":61796}],"group":196,"name":"Armour Break","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":25300},"21164":{"orbit":7,"orbitIndex":10,"recipe":["Isolation","Greed","Fear"],"connections":[{"orbit":0,"id":62670}],"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Fleshcrafting","group":149,"isNotable":true,"stats":["4% of Maximum Life Converted to Energy Shield","Minions gain 15% of their maximum Life as Extra maximum Energy Shield"],"skill":21164},"3443":{"orbit":7,"orbitIndex":12,"stats":["Minions deal 10% increased Damage"],"connections":[{"orbit":-4,"id":14548},{"orbit":-3,"id":63545},{"orbit":7,"id":55180}],"group":868,"name":"Minion Damage","icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","skill":3443},"34327":{"orbit":7,"orbitIndex":17,"stats":["15% increased Spell Damage while you have Arcane Surge"],"connections":[{"orbit":0,"id":32078}],"group":390,"name":"Arcane Surge Spell Damage","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":34327},"57089":{"orbit":2,"orbitIndex":4,"stats":["Companions have 12% increased maximum Life","10% increased Defences while your Companion is in your Presence"],"connections":[],"group":198,"name":"Defences and Companion Life","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":57089},"24259":{"orbit":5,"orbitIndex":32,"stats":["Attacks used by Totems have 4% increased Attack Speed"],"connections":[{"orbit":0,"id":62609}],"group":314,"name":"Totem Attack Speed","icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","skill":24259},"64223":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":6,"id":56857}],"nodeOverlay":{"path":"Disciple of VarashtaFrameSmallCanAllocate","alloc":"Disciple of VarashtaFrameSmallAllocated","unalloc":"Disciple of VarashtaFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Energy Shield","ascendancyName":"Disciple of Varashta","group":547,"stats":["20% increased maximum Energy Shield"],"skill":64223},"48660":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","name":"Elemental Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":1010,"connections":[],"stats":[],"skill":48660},"27373":{"orbit":5,"orbitIndex":51,"connections":[{"orbit":-6,"id":53405},{"orbit":-6,"id":51369}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":512,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":27373},"49740":{"orbit":7,"orbitIndex":0,"recipe":["Suffering","Fear","Ire"],"connections":[{"orbit":0,"id":27274}],"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Shattered Crystal","group":1012,"isNotable":true,"stats":["60% reduced Ice Crystal Life"],"skill":49740},"57880":{"orbit":3,"orbitIndex":3,"stats":["12% increased Damage with Axes"],"connections":[{"orbit":0,"id":27082},{"orbit":0,"id":6269}],"group":172,"name":"Axe Damage","icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","skill":57880},"1091":{"orbit":2,"orbitIndex":0,"stats":["10% reduced Effect of Chill on you"],"connections":[{"orbit":7,"id":13333},{"orbit":0,"id":48699}],"group":689,"name":"Chill Effect on You","icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","skill":1091},"11027":{"orbit":2,"orbitIndex":1,"stats":["10% increased Endurance Charge Duration","10% increased Armour if you've consumed an Endurance Charge Recently"],"connections":[{"orbit":0,"id":59433}],"group":219,"name":"Endurance Charge Duration and Armour","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":11027},"13673":{"orbit":8,"orbitIndex":1,"connections":[{"orbit":-8,"id":61985}],"nodeOverlay":{"path":"StormweaverFrameSmallCanAllocate","alloc":"StormweaverFrameSmallAllocated","unalloc":"StormweaverFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Chill Duration","ascendancyName":"Stormweaver","group":502,"stats":["25% increased Chill Duration on Enemies"],"skill":13673},"61836":{"orbit":2,"orbitIndex":4,"stats":["Aura Skills have 5% increased Magnitudes"],"connections":[{"orbit":0,"id":65243}],"group":304,"name":"Aura Effect","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":61836},"14340":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":26786},{"orbit":0,"id":26319}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":860,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":14340},"55405":{"orbit":1,"orbitIndex":10,"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"connections":[{"orbit":0,"id":25620}],"group":1015,"name":"Corpses","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":55405},"5826":{"orbit":2,"orbitIndex":22,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":1018,"connections":[],"stats":[],"skill":5826},"11826":{"orbit":7,"orbitIndex":8,"recipe":["Guilt","Greed","Greed"],"connections":[{"orbit":0,"id":17726}],"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Heavy Ammunition","group":883,"isNotable":true,"stats":["5% reduced Attack Speed","40% increased Projectile Damage","40% increased Projectile Stun Buildup"],"skill":11826},"7741":{"orbit":6,"orbitIndex":5,"connections":[{"orbit":0,"id":42500}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":771,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":7741},"10881":{"orbit":0,"orbitIndex":0,"stats":["40% increased Energy Shield from Equipped Focus"],"connections":[{"orbit":3,"id":36450}],"group":1021,"name":"Focus Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","skill":10881},"38578":{"orbit":8,"orbitIndex":24,"connections":[],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds","name":"Multiplying Squalls","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["+2 to Limit for Elemental Skills"],"skill":38578},"10011":{"orbit":3,"orbitIndex":13,"stats":["15% increased Damage with Hits against Blinded Enemies"],"connections":[],"group":1184,"name":"Damage vs Blinded","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":10011},"12750":{"orbit":0,"orbitIndex":0,"recipe":["Greed","Disgust","Despair"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","name":"Vale Shelter","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","group":968,"isNotable":true,"stats":["Charms gain 0.15 charges per Second"],"skill":12750},"18240":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","name":"Energy Shield Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","group":350,"connections":[],"stats":[],"skill":18240},"45885":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":54521},{"orbit":0,"id":59362},{"orbit":4,"id":45497},{"orbit":9,"id":13359}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":692,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":45885},"26969":{"orbit":4,"orbitIndex":69,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":2,"id":16861}],"group":327,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":26969},"22533":{"orbit":7,"orbitIndex":23,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":-2,"id":26663},{"orbit":0,"id":21274}],"group":788,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":22533},"46224":{"orbit":2,"orbitIndex":2,"recipe":["Envy","Greed","Greed"],"connections":[{"orbit":0,"id":24045},{"orbit":0,"id":45019}],"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Arcane Alchemy","group":912,"isNotable":true,"stats":["Mana Flasks gain 0.1 charges per Second","+10 to Intelligence"],"skill":46224},"37226":{"orbit":3,"orbitIndex":4,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":2,"id":4015},{"orbit":-6,"id":9187}],"group":383,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":37226},"31943":{"orbit":3,"orbitIndex":12,"stats":["8% increased Energy Shield Recharge Rate","8% increased Elemental Damage"],"connections":[{"orbit":0,"id":8382}],"group":700,"name":"Cold Damage and Energy Shield Recharge Rate","icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","skill":31943},"37523":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":24696}],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds","name":"Cannons, Ready!","ascendancyName":"Tactician","group":417,"isNotable":true,"stats":["+1 to maximum number of Summoned Totems","Skills used by Totems have 30% more Skill Speed","Totems only use Skills when you fire an Attack Projectile"],"skill":37523},"9018":{"orbit":3,"orbitIndex":22,"stats":["20% increased Presence Area of Effect","3% reduced Area of Effect"],"connections":[{"orbit":2,"id":35918}],"group":525,"name":"Area and Presence","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":9018},"25374":{"orbit":6,"orbitIndex":42,"connections":[{"orbit":6,"id":45969}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":662,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":25374},"20024":{"orbit":7,"orbitIndex":22,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":44223}],"group":871,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":20024},"5920":{"orbit":2,"orbitIndex":16,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"connections":[{"orbit":-3,"id":52574},{"orbit":5,"id":51921}],"group":608,"name":"Attack Area Damage and Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":5920},"33751":{"orbit":7,"orbitIndex":18,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":7,"id":12451}],"group":1034,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":33751},"8810":{"orbit":1,"orbitIndex":4,"recipe":["Paranoia","Disgust","Fear"],"connections":[{"orbit":2,"id":33751}],"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Multitasking","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","group":1034,"isNotable":true,"stats":["15% increased Skill Effect Duration","12% increased Cooldown Recovery Rate"],"skill":8810},"26416":{"orbit":2,"orbitIndex":16,"stats":["15% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":35792}],"group":279,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":26416},"42410":{"orbit":7,"orbitIndex":20,"stats":["Break 10% increased Armour","6% increased Attack Area Damage"],"connections":[{"orbit":4,"id":9737}],"group":655,"name":"Area Damage and Armour Break","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":42410},"11764":{"orbit":7,"orbitIndex":11,"stats":["Debuffs on you expire 10% faster"],"connections":[{"orbit":7,"id":38878}],"group":1159,"name":"Debuff Expiry","icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","skill":11764},"30197":{"orbit":2,"orbitIndex":2,"stats":["4% increased Attack Speed while your Companion is in your Presence"],"connections":[{"orbit":0,"id":52415}],"group":1230,"name":"Attack Speed with Companion in Presence","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":30197},"47312":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"AmazonFrameLargeCanAllocate","alloc":"AmazonFrameLargeAllocated","unalloc":"AmazonFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds","name":"Azmeri Brew","ascendancyName":"Amazon","group":1480,"isNotable":true,"stats":["Life Flasks also recover Mana","Mana Flasks also recover Life"],"skill":47312},"22219":{"orbit":7,"orbitIndex":16,"stats":["Triggered Spells deal 14% increased Spell Damage"],"connections":[{"orbit":-7,"id":52351}],"group":1039,"name":"Triggered Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":22219},"35581":{"orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Paranoia"],"connections":[{"orbit":0,"id":26895}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Near at Hand","group":499,"isNotable":true,"stats":["16% reduced Skill Effect Duration","10% reduced Slowing Potency of Debuffs on You"],"skill":35581},"11066":{"orbit":7,"orbitIndex":19,"stats":["5% increased Cooldown Recovery Rate"],"connections":[{"orbit":2,"id":26663}],"group":788,"name":"Cooldown Recovery Rate","icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","skill":11066},"53785":{"orbit":3,"orbitIndex":18,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":1170},{"orbit":0,"id":23307}],"group":285,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":53785},"59651":{"orbit":2,"orbitIndex":11,"stats":["Offering Skills have 20% increased Duration"],"connections":[{"orbit":2147483647,"id":41654},{"orbit":4,"id":47821},{"orbit":0,"id":25557}],"group":1044,"name":"Offering Duration","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":59651},"47821":{"orbit":2,"orbitIndex":17,"stats":["Offering Skills have 15% increased Buff effect"],"connections":[{"orbit":9,"id":41033}],"group":1044,"name":"Offering Effect","icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","skill":47821},"59589":{"orbit":3,"orbitIndex":23,"recipe":["Despair","Fear","Greed"],"connections":[{"orbit":0,"id":52659}],"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Heavy Armour","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","group":160,"isNotable":true,"stats":["150% of Strength Requirements from Boots, Gloves and Helmets also added to Armour"],"skill":59589},"55104":{"orbit":7,"orbitIndex":22,"stats":["10% increased Spell Damage"],"connections":[{"orbit":-7,"id":33254},{"orbit":7,"id":19125}],"group":726,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":55104},"12882":{"orbit":8,"orbitIndex":12,"connections":[{"orbit":0,"id":25618}],"nodeOverlay":{"path":"StormweaverFrameLargeCanAllocate","alloc":"StormweaverFrameLargeAllocated","unalloc":"StormweaverFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds","name":"Tempest Caller","ascendancyName":"Stormweaver","group":502,"isNotable":true,"stats":["Trigger Elemental Storm on Critical Hit with Spells","Grants Skill: Elemental Storm"],"skill":12882},"62628":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","name":"Projectile Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","group":882,"connections":[],"stats":[],"skill":62628},"59767":{"orbit":3,"orbitIndex":11,"connections":[{"orbit":0,"id":31292},{"orbit":0,"id":20645}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Reverberating Impact","group":512,"isNotable":true,"stats":["Break 25% increased Armour","12% increased Area of Effect for Attacks"],"skill":59767},"52199":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Isolation","Greed"],"connections":[{"orbit":0,"id":44498}],"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Overexposure","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","group":705,"isNotable":true,"stats":["30% increased Exposure Effect"],"skill":52199},"10452":{"orbit":2,"orbitIndex":2,"stats":["10% increased Armour","10% increased maximum Energy Shield"],"connections":[{"orbit":0,"id":44213},{"orbit":0,"id":1878}],"group":420,"name":"Armour and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","skill":10452},"56325":{"orbit":0,"orbitIndex":0,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"connections":[{"orbit":0,"id":21280}],"group":973,"name":"Evasion and Reduced Movement Penalty","icon":"Art/2DArt/SkillIcons/passives/evade.dds","skill":56325},"2733":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","name":"Lightning Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":288,"connectionArt":"CharacterPlanned","stats":[],"skill":2733},"12851":{"orbit":7,"orbitIndex":5,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":32507},{"orbit":0,"id":32727}],"group":654,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":12851},"42857":{"orbit":7,"orbitIndex":16,"stats":["4% increased Skill Speed"],"connections":[{"orbit":3,"id":20024},{"orbit":0,"id":7576}],"group":871,"name":"Skill Speed","icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","skill":42857},"51463":{"orbit":7,"orbitIndex":14,"stats":["12% increased Attack Damage while moving"],"connections":[{"orbit":0,"id":4364}],"group":1053,"name":"Attack Damage while Moving","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":51463},"30990":{"orbit":2,"orbitIndex":16,"stats":["10% increased Critical Hit Chance"],"connections":[{"orbit":0,"id":58939}],"group":861,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":30990},"17077":{"orbit":0,"orbitIndex":0,"stats":["12% increased Attack Damage while moving"],"connections":[{"orbit":0,"id":51463},{"orbit":0,"id":36114}],"group":1053,"name":"Attack Damage while Moving","icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","skill":17077},"37187":{"orbit":0,"orbitIndex":0,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"connections":[{"orbit":-4,"id":14026},{"orbit":5,"id":63085}],"group":146,"name":"Shapeshifted Damage against Immobilised","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","skill":37187},"49545":{"orbit":7,"orbitIndex":13,"stats":["20% increased Parry Damage"],"connections":[{"orbit":2,"id":64851}],"group":1056,"name":"Parry Damage","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":49545},"39658":{"orbit":7,"orbitIndex":1,"stats":["5% increased Block chance"],"connections":[{"orbit":7,"id":18831},{"orbit":-2,"id":15030}],"group":1056,"name":"Block","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":39658},"24647":{"orbit":6,"orbitIndex":42,"connections":[{"orbit":4,"id":5702},{"orbit":0,"id":43691},{"orbit":4,"id":30634}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1042,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":24647},"35987":{"orbit":4,"orbitIndex":27,"connections":[{"orbit":0,"id":32274},{"orbit":0,"id":19470},{"orbit":0,"id":55397}],"icon":"Art/2DArt/SkillIcons/passives/finesse.dds","name":"Blur","group":863,"isNotable":true,"stats":["4% increased Movement Speed","20% increased Evasion Rating","+10 to Dexterity"],"skill":35987},"26092":{"orbit":3,"orbitIndex":14,"stats":["10% increased Damage with Two Handed Weapons"],"connections":[{"orbit":0,"id":52392}],"group":389,"name":"Two Handed Damage","icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","skill":26092},"13937":{"orbit":7,"orbitIndex":7,"stats":["14% increased Damage with Maces"],"connections":[{"orbit":0,"id":17791}],"group":126,"name":"Mace Damage","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":13937},"24178":{"orbit":2,"orbitIndex":15,"stats":["12% increased Damage while your Companion is in your Presence"],"connections":[{"orbit":-9,"id":32655}],"group":1230,"name":"Damage with Companion in Presence","icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","skill":24178},"54701":{"orbit":7,"orbitIndex":16,"stats":["16% increased Thorns damage"],"connections":[{"orbit":2,"id":21089},{"orbit":-7,"id":1286}],"group":259,"name":"Thorns","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":54701},"27422":{"orbit":0,"orbitIndex":0,"stats":["10% increased Mana Recovery from Flasks"],"connections":[{"orbit":0,"id":2021}],"group":1340,"name":"Mana Flask Recovery","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":27422},"9226":{"orbit":1,"orbitIndex":0,"recipe":["Ire","Disgust","Greed"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Mental Perseverance","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":509,"isNotable":true,"stats":["10% of Damage is taken from Mana before Life","+15 to Intelligence"],"skill":9226},"41497":{"orbit":7,"orbitIndex":6,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"connections":[{"orbit":0,"id":21164}],"group":149,"name":"Minion Life and Chaos Resistance","icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","skill":41497},"43507":{"orbit":2,"orbitIndex":12,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"connections":[{"orbit":0,"id":40292}],"group":295,"name":"Attack Damage and Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","skill":43507},"61835":{"orbit":2,"orbitIndex":20,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"connections":[{"orbit":0,"id":32549},{"orbit":-2,"id":56237}],"group":165,"name":"Attack and Spell Damage","icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","skill":61835},"56928":{"orbit":3,"orbitIndex":15,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"connections":[{"orbit":7,"id":62350}],"group":1173,"name":"Attack Speed and Flask Duration","icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","skill":56928},"55931":{"orbit":3,"orbitIndex":18,"stats":["+15% of Armour also applies to Fire Damage"],"connections":[{"orbit":0,"id":62034},{"orbit":0,"id":62313}],"group":143,"name":"Armour Applies to Fire Damage Hits","icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","skill":55931},"33979":{"orbit":0,"orbitIndex":0,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds","name":"Conduit","group":1074,"isKeystone":true,"stats":["If you would gain a Charge, Allies in your Presence gain that Charge instead"],"skill":33979},"56330":{"orbit":7,"orbitIndex":22,"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"connections":[{"orbit":2147483647,"id":39570}],"group":1076,"name":"Bleeding Chance on Critical","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":56330},"4627":{"orbit":7,"orbitIndex":0,"recipe":["Greed","Isolation","Despair"],"connections":[{"orbit":0,"id":44179},{"orbit":0,"id":55572}],"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Climate Change","group":785,"isNotable":true,"stats":["20% increased Freeze Buildup","Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies"],"skill":4627},"25229":{"orbit":2,"orbitIndex":20,"stats":["20% increased Endurance Charge Duration"],"connections":[{"orbit":0,"id":21390}],"group":277,"name":"Endurance Charge Duration","icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","skill":25229},"37260":{"orbit":2,"orbitIndex":13,"stats":["16% increased Warcry Speed"],"connections":[{"orbit":2,"id":30395}],"group":263,"name":"Warcry Speed","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","skill":37260},"61905":{"orbit":3,"orbitIndex":12,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":12778},{"orbit":0,"id":8938},{"orbit":-4,"id":3251}],"group":1080,"name":"Bleed Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":61905},"12778":{"orbit":3,"orbitIndex":8,"stats":["10% increased Critical Hit Chance for Spells"],"connections":[],"group":1080,"name":"Spell Critical Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":12778},"35011":{"orbit":2,"orbitIndex":18,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"connections":[{"orbit":0,"id":10305}],"group":413,"name":"Attack Damage with Ally","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":35011},"22270":{"orbit":2,"orbitIndex":13,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":1144},{"orbit":0,"id":12471}],"group":303,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":22270},"36709":{"orbit":7,"orbitIndex":6,"stats":["12% increased Stun Threshold"],"connections":[],"group":631,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":36709},"47175":{"orbit":0,"orbitIndex":0,"classesStart":["Marauder","Warrior"],"connections":[{"orbit":0,"id":16732},{"orbit":0,"id":51916},{"orbit":0,"id":54579},{"orbit":0,"id":5852},{"orbit":0,"id":33812},{"orbit":0,"id":32534},{"orbit":0,"id":3936},{"orbit":0,"id":38646}],"icon":"Art/2DArt/SkillIcons/passives/blankStr.dds","name":"MARAUDER","group":683,"stats":[],"skill":47175},"9528":{"orbit":3,"orbitIndex":15,"stats":["10% increased Warcry Cooldown Recovery Rate"],"connections":[{"orbit":-4,"id":62200}],"group":190,"name":"Warcry Cooldown Speed","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":9528},"62216":{"orbit":2,"orbitIndex":8,"stats":["Empowered Attacks deal 16% increased Damage"],"connections":[{"orbit":3,"id":26070},{"orbit":-3,"id":38130}],"group":333,"name":"Empowered Attack Damage","icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","skill":62216},"375":{"orbit":7,"orbitIndex":17,"stats":["15% increased Damage with Maces"],"connections":[{"orbit":0,"id":12276}],"group":126,"name":"Mace Damage","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":375},"2702":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":7,"id":3065}],"nodeOverlay":{"path":"AmazonFrameSmallCanAllocate","alloc":"AmazonFrameSmallAllocated","unalloc":"AmazonFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Life Leech","ascendancyName":"Amazon","group":1475,"stats":["12% increased amount of Life Leeched"],"skill":2702},"45244":{"orbit":2,"orbitIndex":16,"recipe":["Greed","Ire","Isolation"],"connections":[{"orbit":0,"id":23343},{"orbit":0,"id":41016}],"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Refills","group":1095,"isNotable":true,"stats":["Life Flasks gain 0.15 charges per Second"],"skill":45244},"24120":{"orbit":0,"orbitIndex":0,"recipe":["Envy","Fear","Greed"],"connections":[{"orbit":0,"id":10495}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mental Toughness","group":1236,"isNotable":true,"stats":["18% increased Mana Regeneration Rate","25% increased Mana Cost Efficiency while on Low Mana"],"skill":24120},"8535":{"orbit":2,"orbitIndex":10,"connections":[],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Spiked Whip","group":169,"isNotable":true,"stats":["25% increased Damage with Flails"],"skill":8535},"12253":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":32183},{"orbit":0,"id":41017},{"orbit":0,"id":35696},{"orbit":0,"id":34497},{"orbit":0,"id":16401},{"orbit":0,"id":24656}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":1274,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":12253},"9586":{"orbit":4,"orbitIndex":10,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","name":"Critical Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","group":1099,"connections":[],"stats":[],"skill":9586},"61356":{"orbit":7,"orbitIndex":12,"stats":["6% increased bonuses gained from Equipped Quiver"],"connections":[{"orbit":0,"id":12498}],"group":1102,"name":"Quiver Effect","icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","skill":61356},"34747":{"orbit":7,"orbitIndex":23,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":6274}],"group":570,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":34747},"15628":{"orbit":5,"orbitIndex":59,"stats":["15% increased effect of Arcane Surge on you"],"connections":[{"orbit":3,"id":36880}],"group":419,"name":"Arcane Surge Effect","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":15628},"8421":{"orbit":2,"orbitIndex":22,"stats":["+5% to Cold Resistance"],"connections":[{"orbit":2,"id":35404}],"group":144,"name":"Cold Resistance","icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","skill":8421},"17973":{"orbit":7,"orbitIndex":3,"connections":[{"orbit":4,"id":4748},{"orbit":-6,"id":22691}],"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Rapid Recharge","isSwitchable":true,"options":{"Witch":{"stats":["Minions have 15% increased maximum Life","Minions Revive 15% faster"],"id":48926,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Living Death"}},"group":782,"isNotable":true,"stats":["25% increased Energy Shield Recharge Rate","25% faster start of Energy Shield Recharge"],"skill":17973},"15672":{"orbit":7,"orbitIndex":5,"connections":[{"orbit":2147483647,"id":45400}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":107,"connectionArt":"CharacterPlanned","stats":["Totems gain +2% to all Maximum Elemental Resistances"],"skill":15672},"46760":{"orbit":0,"orbitIndex":0,"stats":["16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"connections":[{"orbit":0,"id":51534},{"orbit":0,"id":8631}],"group":545,"name":"Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":46760},"27017":{"orbit":2,"orbitIndex":22,"stats":["+3 to all Attributes"],"connections":[{"orbit":0,"id":21349}],"group":1107,"name":"All Attributes","icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","skill":27017},"32699":{"orbit":9,"orbitIndex":0,"connections":[{"orbit":0,"id":7793},{"orbit":0,"id":23880},{"orbit":0,"id":24135},{"orbit":4,"id":39470},{"orbit":-9,"id":64379},{"orbit":-9,"id":63484}],"nodeOverlay":{"path":"InfernalistFrameSmallCanAllocate","alloc":"InfernalistFrameSmallAllocated","unalloc":"InfernalistFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Infernalist","ascendancyName":"Infernalist","isAscendancyStart":true,"group":725,"stats":[],"skill":32699},"18826":{"orbit":9,"orbitIndex":8,"connections":[{"orbit":0,"id":47344}],"nodeOverlay":{"path":"Acolyte of ChayulaFrameLargeCanAllocate","alloc":"Acolyte of ChayulaFrameLargeAllocated","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds","name":"Inner Turmoil","ascendancyName":"Acolyte of Chayula","group":1458,"isNotable":true,"stats":["Gain 1 Volatility on inflicting an Elemental Ailment","Take no Damage from Volatility"],"skill":18826},"11428":{"orbit":2,"orbitIndex":7,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","name":"Exhaust All Power","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":243,"connectionArt":"CharacterPlanned","stats":["Archon recovery period expires 30% slower","Archon Buffs also grant +50% Critical Damage Bonus","Archon Buffs also grant +30% Critical Hit Chance"],"skill":11428},"32509":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","name":"Caster Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":1039,"connections":[],"stats":[],"skill":32509},"35151":{"orbit":7,"orbitIndex":23,"stats":["15% increased Stun Threshold"],"connections":[{"orbit":0,"id":44453}],"group":1235,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","skill":35151},"26356":{"orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Disgust"],"connections":[{"orbit":0,"id":8556}],"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Primed to Explode","group":655,"isNotable":true,"stats":["Detonator skills have 40% increased Area of Effect","Detonator skills have 80% reduced damage"],"skill":26356},"59446":{"orbit":2,"orbitIndex":5,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":4544}],"group":1113,"name":"Life Flask Charges","icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","skill":59446},"64213":{"orbit":7,"orbitIndex":8,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"connections":[{"orbit":-3,"id":12611},{"orbit":3,"id":61246}],"group":1143,"name":"Elemental Damage and Freeze Buildup","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":64213},"29800":{"orbit":7,"orbitIndex":15,"recipe":["Paranoia","Envy","Fear"],"connections":[{"orbit":0,"id":50383}],"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","name":"Shocking Limit","group":719,"isNotable":true,"stats":["+1 to maximum Lightning Infusions"],"skill":29800},"3025":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":38732},{"orbit":0,"id":36782},{"orbit":0,"id":25594}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":786,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":3025},"535":{"orbit":0,"orbitIndex":0,"stats":["15% increased Critical Damage Bonus"],"connections":[{"orbit":0,"id":34621}],"group":1117,"name":"Critical Damage","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":535},"50268":{"orbit":2,"orbitIndex":20,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"connections":[{"orbit":0,"id":2446}],"group":1118,"name":"Cold and Lightning Damage","icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","skill":50268},"53166":{"orbit":7,"orbitIndex":21,"stats":["20% increased Presence Area of Effect"],"connections":[{"orbit":0,"id":26194}],"group":800,"name":"Presence Area","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":53166},"50342":{"orbit":2,"orbitIndex":17,"connections":[{"orbit":0,"id":5227}],"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","group":1043,"stats":["15% increased Evasion Rating"],"skill":50342},"63668":{"orbit":3,"orbitIndex":4,"stats":["Triggered Spells deal 14% increased Spell Damage"],"connections":[{"orbit":0,"id":9069},{"orbit":0,"id":4328}],"group":1119,"name":"Triggered Spell Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":63668},"28361":{"orbit":7,"orbitIndex":16,"stats":["12% increased Stun Threshold"],"connections":[],"group":758,"name":"Stun Threshold","icon":"Art/2DArt/SkillIcons/passives/life1.dds","skill":28361},"18913":{"orbit":7,"orbitIndex":22,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"connections":[{"orbit":-2,"id":12419}],"group":905,"name":"Chaos Damage and Duration","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":18913},"20772":{"orbit":9,"orbitIndex":114,"connections":[{"orbit":-4,"id":2877}],"nodeOverlay":{"path":"LichFrameSmallCanAllocate","alloc":"LichFrameSmallAllocated","unalloc":"LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","name":"Mana","ascendancyName":"Lich","options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","id":15028,"stats":["15% increased Minion Duration"],"nodeOverlay":{"path":"Abyssal LichFrameSmallCanAllocate","alloc":"Abyssal LichFrameSmallAllocated","unalloc":"Abyssal LichFrameSmallNormal"},"icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","name":"Minion Duration"}},"group":1120,"isSwitchable":true,"stats":["3% increased maximum Mana"],"skill":20772},"54887":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":322,"connections":[],"stats":[],"skill":54887},"24210":{"orbit":7,"orbitIndex":0,"stats":["20% increased Frenzy Charge Duration"],"connections":[{"orbit":-7,"id":26932}],"group":1121,"name":"Frenzy Charge Duration","icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","skill":24210},"58002":{"orbit":3,"orbitIndex":3,"stats":["10% increased Physical Damage"],"connections":[{"orbit":0,"id":45086},{"orbit":0,"id":55668}],"group":925,"name":"Physical Damage","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":58002},"9414":{"orbit":2,"orbitIndex":21,"connections":[],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":276,"connectionArt":"CharacterPlanned","stats":["16% increased Elemental Damage"],"skill":9414},"41620":{"orbit":3,"orbitIndex":5,"recipe":["Paranoia","Envy","Greed"],"connections":[{"orbit":0,"id":23879}],"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","name":"Bear's Roar","group":344,"isNotable":true,"stats":["40% increased Stun buildup if you have Shapeshifted to an Animal form Recently"],"skill":41620},"2645":{"orbit":4,"orbitIndex":69,"recipe":["Ire","Isolation","Ire"],"connections":[{"orbit":0,"id":14832},{"orbit":0,"id":52829}],"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Skullcrusher","group":126,"isNotable":true,"stats":["20% more Damage against Heavy Stunned Enemies with Maces"],"skill":2645},"56934":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","name":"Fire Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","group":542,"connections":[],"stats":[],"skill":56934},"45585":{"orbit":3,"orbitIndex":23,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"connections":[{"orbit":0,"id":55617},{"orbit":5,"id":37258}],"group":439,"name":"Armour and Evasion while Surrounded","icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","skill":45585},"24035":{"orbit":2,"orbitIndex":18,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":0,"id":60741}],"group":841,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":24035},"52980":{"orbit":4,"orbitIndex":48,"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"connections":[{"orbit":0,"id":18970},{"orbit":-4,"id":44343}],"group":878,"name":"Evasion and Energy Shield","icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","skill":52980},"36997":{"orbit":0,"orbitIndex":0,"stats":["20% increased Stun Threshold while Parrying"],"connections":[{"orbit":0,"id":27761}],"group":1004,"name":"Stun Threshold during Parry","icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","skill":36997},"29065":{"orbit":1,"orbitIndex":7,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","name":"Bleeding Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","group":1240,"connections":[],"stats":[],"skill":29065},"34096":{"orbit":3,"orbitIndex":23,"stats":["12% increased Spell Damage"],"connections":[{"orbit":0,"id":58096}],"group":482,"name":"Spell Damage","icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","skill":34096},"61834":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":17088},{"orbit":0,"id":24958}],"isJewelSocket":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","name":"Jewel Socket","group":1172,"stats":[],"skill":61834},"51006":{"orbit":3,"orbitIndex":1,"stats":["4% reduced Flask Charges used from Mana Flasks"],"connections":[{"orbit":0,"id":41877}],"group":1227,"name":"Mana Flask Charges Used","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":51006},"24009":{"orbit":4,"orbitIndex":27,"stats":["12% increased Armour and Evasion Rating"],"connections":[{"orbit":-4,"id":34433},{"orbit":0,"id":21755}],"group":649,"name":"Armour and Evasion","icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","skill":24009},"54176":{"orbit":0,"orbitIndex":0,"stats":["15% increased chance to Shock"],"connections":[{"orbit":0,"id":55463},{"orbit":0,"id":26598}],"group":1138,"name":"Shock Chance","icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","skill":54176},"19125":{"orbit":1,"orbitIndex":8,"recipe":["Paranoia","Paranoia","Disgust"],"connections":[],"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Potent Incantation","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","group":726,"isNotable":true,"stats":["30% increased Spell Damage","5% reduced Cast Speed"],"skill":19125},"9083":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","name":"Minion Defence Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","group":1015,"connections":[],"stats":[],"skill":9083},"31848":{"orbit":7,"orbitIndex":0,"stats":["Thorns Damage has 25% chance to ignore Enemy Armour"],"connections":[{"orbit":7,"id":40117}],"group":259,"name":"Thorns Ignore Armour","icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","skill":31848},"8522":{"orbit":7,"orbitIndex":16,"stats":["Meta Skills gain 8% increased Energy"],"connections":[{"orbit":0,"id":26236}],"group":870,"name":"Energy","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":8522},"9352":{"orbit":3,"orbitIndex":23,"stats":["6% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":32071}],"group":134,"name":"Attack Area","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":9352},"48160":{"orbit":3,"orbitIndex":15,"connections":[{"orbit":2147483647,"id":37778}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Ally Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":188,"connectionArt":"CharacterPlanned","stats":["Allies in your Presence deal 20% increased Damage","10% reduced Damage"],"skill":48160},"28214":{"orbit":2,"orbitIndex":4,"stats":["10% increased Mana Recovery from Flasks"],"connections":[{"orbit":0,"id":1973},{"orbit":0,"id":58295}],"group":250,"name":"Mana Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","skill":28214},"49466":{"orbit":7,"orbitIndex":12,"stats":["10% increased Life Recovery from Flasks"],"connections":[{"orbit":0,"id":30871}],"group":1149,"name":"Life Flasks","icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","skill":49466},"20963":{"orbit":2,"orbitIndex":18,"connections":[{"orbit":0,"id":17587}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Calculated Hunter","isNotable":true,"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":164,"connectionArt":"CharacterPlanned","stats":["5% reduced Skill Speed","50% increased Critical Hit Chance"],"skill":20963},"54962":{"orbit":7,"orbitIndex":4,"stats":["15% increased Life Regeneration Rate while stationary"],"connections":[{"orbit":0,"id":35849}],"group":242,"name":"Life Regeneration while Stationary","icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","skill":54962},"55193":{"orbit":1,"orbitIndex":4,"recipe":["Ire","Suffering","Paranoia"],"connections":[{"orbit":-2,"id":10944}],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Subterfuge Mask","group":1157,"isNotable":true,"stats":["+2 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet"],"skill":55193},"60241":{"orbit":0,"orbitIndex":0,"stats":["5% chance to inflict Bleeding on Hit"],"connections":[{"orbit":0,"id":57178}],"group":476,"name":"Bleed Chance","icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","skill":60241},"17372":{"orbit":3,"orbitIndex":4,"recipe":["Isolation","Paranoia","Guilt"],"connections":[{"orbit":0,"id":35985},{"orbit":0,"id":19074}],"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Reaching Strike","group":1314,"isNotable":true,"stats":["25% increased Melee Damage","+2 to Melee Strike Range"],"skill":17372},"15839":{"orbit":1,"orbitIndex":5,"stats":["10% increased Duration of Ailments on Beasts"],"connections":[{"orbit":0,"id":60085}],"group":854,"name":"Ailment Duration","icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","skill":15839},"50516":{"orbit":7,"orbitIndex":2,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"connections":[{"orbit":0,"id":2814}],"group":961,"name":"Attack Area and Flammability Magnitude","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":50516},"15892":{"orbit":3,"orbitIndex":13,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"connections":[],"group":179,"name":"Damage vs Armour Broken Enemies","icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","skill":15892},"33946":{"orbit":7,"orbitIndex":9,"stats":["10% increased Critical Hit Chance for Attacks"],"connections":[{"orbit":0,"id":34074},{"orbit":0,"id":57227}],"group":987,"name":"Attack Critical Chance","icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","skill":33946},"19156":{"orbit":2,"orbitIndex":12,"recipe":["Ire","Disgust","Envy"],"connections":[{"orbit":-7,"id":12249},{"orbit":0,"id":17283}],"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Immaterial","group":1058,"isNotable":true,"stats":["50% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds","30% increased Evasion Rating while you have Energy Shield"],"skill":19156},"54838":{"orbit":0,"orbitIndex":0,"connections":[],"nodeOverlay":{"path":"TacticianFrameLargeCanAllocate","alloc":"TacticianFrameLargeAllocated","unalloc":"TacticianFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds","name":"Right Where We Want Them","ascendancyName":"Tactician","group":329,"isNotable":true,"stats":["Projectile Damage builds Pin","Pinned enemies cannot perform actions"],"skill":54838},"49406":{"orbit":4,"orbitIndex":45,"stats":["10% increased Projectile Damage"],"connections":[{"orbit":0,"id":52125}],"group":790,"name":"Projectile Damage","icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","skill":49406},"33815":{"orbit":2,"orbitIndex":5,"stats":["10% increased Poison Duration"],"connections":[{"orbit":6,"id":35644}],"group":1073,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":33815},"31345":{"orbit":2,"orbitIndex":11,"stats":["Damage Penetrates 6% Lightning Resistance"],"connections":[{"orbit":0,"id":55400}],"group":1166,"name":"Lightning Penetration","icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","skill":31345},"25827":{"orbit":3,"orbitIndex":8,"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"connections":[{"orbit":0,"id":55241}],"group":962,"name":"Additional Spell Projectiles","icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","skill":25827},"61974":{"orbit":7,"orbitIndex":2,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","name":"Invocation Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":571,"connectionArt":"CharacterPlanned","stats":[],"skill":61974},"53505":{"orbit":2,"orbitIndex":18,"stats":["10% increased amount of Life Leeched"],"connections":[{"orbit":6,"id":21468}],"group":632,"name":"Life Leech","icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","skill":53505},"4552":{"orbit":2,"orbitIndex":15,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":2,"id":50817}],"group":1171,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","skill":4552},"17248":{"orbit":5,"orbitIndex":0,"connections":[{"orbit":-5,"id":53960}],"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","name":"Attribute","options":[{"stats":["+5 to Strength"],"id":26297,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength"},{"stats":["+5 to Dexterity"],"id":14927,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity"},{"stats":["+5 to Intelligence"],"id":57022,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence"}],"group":871,"isAttribute":true,"stats":["+5 to any Attribute"],"skill":17248},"50588":{"orbit":2,"orbitIndex":2,"stats":["8% increased Accuracy Rating"],"connections":[{"orbit":0,"id":6010}],"group":1100,"name":"Accuracy","icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","skill":50588},"44179":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":784,"connections":[],"stats":[],"skill":44179},"4295":{"orbit":0,"orbitIndex":0,"recipe":["Ire","Paranoia","Disgust"],"connections":[{"orbit":-3,"id":34248}],"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Adverse Growth","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","group":522,"isNotable":true,"stats":["20% reduced Life Regeneration rate","20% of Damage taken Recouped as Mana"],"skill":4295},"41821":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","name":"Attack Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","group":210,"connections":[],"stats":[],"skill":41821},"3544":{"orbit":7,"orbitIndex":8,"connections":[{"orbit":2147483647,"id":19953}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["15% increased Lightning Damage"],"skill":3544},"51394":{"orbit":3,"orbitIndex":2,"recipe":["Isolation","Envy","Isolation"],"connections":[{"orbit":0,"id":29993}],"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Unimpeded","group":282,"isNotable":true,"stats":["24% reduced Slowing Potency of Debuffs on You"],"skill":51394},"3723":{"orbit":2,"orbitIndex":22,"stats":["8% increased Attack Damage","Minions deal 8% increased Damage"],"connections":[{"orbit":0,"id":16413},{"orbit":0,"id":17092}],"group":221,"name":"Attack and Minion Damage","icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","skill":3723},"1169":{"orbit":7,"orbitIndex":16,"recipe":["Fear","Isolation","Suffering"],"connections":[{"orbit":0,"id":25031}],"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Urgent Call","group":292,"isNotable":true,"stats":["Recover 2% of maximum Life and Mana when you use a Warcry","24% increased Warcry Speed","18% increased Warcry Cooldown Recovery Rate"],"skill":1169},"30780":{"orbit":2,"orbitIndex":15,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"connections":[{"orbit":-2,"id":17112},{"orbit":-2,"id":5410}],"group":122,"name":"Ancestral Boosted Area and Damage","icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","skill":30780},"24401":{"orbit":3,"orbitIndex":22,"stats":["10% increased Poison Duration"],"connections":[{"orbit":0,"id":63759}],"group":1176,"name":"Poison Duration","icon":"Art/2DArt/SkillIcons/passives/Poison.dds","skill":24401},"60829":{"orbit":2,"orbitIndex":22,"stats":["20% chance for Attack Hits to apply Incision"],"connections":[{"orbit":2147483647,"id":36630}],"group":991,"name":"Incision Chance","icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","skill":60829},"17994":{"orbit":2,"orbitIndex":5,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":22565}],"group":774,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":17994},"58387":{"orbit":4,"orbitIndex":6,"stats":["7% increased Chaos Damage"],"connections":[{"orbit":4,"id":52454}],"group":610,"name":"Chaos Damage","icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","skill":58387},"59180":{"orbit":7,"orbitIndex":15,"stats":["10% increased Attack Damage"],"connections":[{"orbit":2147483647,"id":50023}],"group":493,"name":"Attack Damage","icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","skill":59180},"44522":{"orbit":2,"orbitIndex":22,"stats":["Gain Deflection Rating equal to 6% of Evasion Rating"],"connections":[{"orbit":0,"id":47831}],"group":1309,"name":"Deflection","icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","skill":44522},"55507":{"orbit":3,"orbitIndex":16,"stats":["10% increased Elemental Damage"],"connections":[{"orbit":-6,"id":22359},{"orbit":6,"id":38338}],"group":1022,"name":"Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","skill":55507},"27611":{"orbit":7,"orbitIndex":18,"stats":["12% increased Elemental Damage while Shapeshifted"],"connections":[{"orbit":7,"id":30546},{"orbit":8,"id":28489}],"group":201,"name":"Shapeshifted Elemental Damage","icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","skill":27611},"37665":{"orbit":7,"orbitIndex":2,"stats":["Break 10% increased Armour","6% increased Attack Area Damage"],"connections":[{"orbit":3,"id":35739}],"group":655,"name":"Area Damage and Armour Break","icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","skill":37665},"33221":{"orbit":0,"orbitIndex":0,"isOnlyImage":true,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","name":"Cold Mastery","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","group":1192,"connections":[{"orbit":0,"id":26331},{"orbit":0,"id":19722},{"orbit":0,"id":4959}],"stats":[],"skill":33221},"41747":{"orbit":0,"orbitIndex":0,"stats":["10% increased Critical Hit Chance with Flails"],"connections":[{"orbit":3,"id":61847}],"group":171,"name":"Flail Critical Chance","icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","skill":41747},"27875":{"orbit":0,"orbitIndex":0,"recipe":["Isolation","Suffering","Greed"],"connections":[{"orbit":0,"id":32123}],"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"General Electric","activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","group":1163,"isNotable":true,"stats":["40% increased chance to Shock","5% increased Attack and Cast Speed with Lightning Skills"],"skill":27875},"55897":{"orbit":0,"orbitIndex":0,"connections":[{"orbit":0,"id":14432}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Mana Regeneration","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":111,"connectionArt":"CharacterPlanned","stats":["20% increased Mana Regeneration Rate while Shapeshifted"],"skill":55897},"49023":{"orbit":1,"orbitIndex":6,"stats":["5% increased Block chance"],"connections":[{"orbit":3,"id":12817},{"orbit":0,"id":22975}],"group":306,"name":"Shield Block","icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","skill":49023},"31055":{"orbit":2,"orbitIndex":19,"stats":["3% increased Attack Speed with Bows"],"connections":[{"orbit":0,"id":18969}],"group":1387,"name":"Bow Speed","icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","skill":31055},"16024":{"orbit":2,"orbitIndex":22,"stats":["Invocation Spells have 20% increased Critical Damage Bonus"],"connections":[{"orbit":2,"id":29288}],"group":1119,"name":"Invocation Critical Damage","icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","skill":16024},"22864":{"orbit":3,"orbitIndex":21,"recipe":["Ire","Despair","Greed"],"connections":[{"orbit":0,"id":57966}],"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Tainted Strike","group":987,"isNotable":true,"stats":["20% increased Critical Hit Chance for Attacks","30% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"skill":22864},"50142":{"orbit":4,"orbitIndex":58,"connections":[{"orbit":0,"id":58197}],"nodeOverlay":{"path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]},"group":89,"connectionArt":"CharacterPlanned","stats":["15% increased Lightning Damage"],"skill":50142},"8157":{"orbit":2,"orbitIndex":16,"stats":["8% increased Reservation Efficiency of Herald Skills"],"connections":[],"group":1381,"name":"Herald Reservation","icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","skill":8157},"52053":{"orbit":3,"orbitIndex":16,"stats":["10% increased Mana Regeneration Rate"],"connections":[{"orbit":3,"id":14048},{"orbit":-4,"id":24120}],"group":1236,"name":"Mana Regeneration","icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","skill":52053},"32905":{"orbit":6,"orbitIndex":20,"connections":[],"nodeOverlay":{"path":"OracleFrameLargeCanAllocate","alloc":"OracleFrameLargeAllocated","unalloc":"OracleFrameLargeNormal"},"icon":"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds","name":"Entwined Realities","ascendancyName":"Oracle","group":23,"isNotable":true,"stats":["Non-Keystone Passive Skills in Medium Radius of allocated Keystone Passive Skills can be allocated without being connected to your tree"],"skill":32905}}} \ No newline at end of file diff --git a/src/TreeData/0_4/tree.lua b/src/TreeData/0_4/tree.lua new file mode 100644 index 0000000000..62fa607aeb --- /dev/null +++ b/src/TreeData/0_4/tree.lua @@ -0,0 +1,126476 @@ +return { + assets={ + AbyssLichAscendancyLineConnectorActive={ + [1]="AbyssLichAscendancy_orbit_intermediateactive0.png" + }, + AbyssLichAscendancyLineConnectorIntermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate0.png" + }, + AbyssLichAscendancyLineConnectorNormal={ + [1]="AbyssLichAscendancy_orbit_normal0.png" + }, + AbyssLichAscendancyOrbit1Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive9.png" + }, + AbyssLichAscendancyOrbit1Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate9.png" + }, + AbyssLichAscendancyOrbit1Normal={ + [1]="AbyssLichAscendancy_orbit_normal9.png" + }, + AbyssLichAscendancyOrbit2Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive8.png" + }, + AbyssLichAscendancyOrbit2Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate8.png" + }, + AbyssLichAscendancyOrbit2Normal={ + [1]="AbyssLichAscendancy_orbit_normal8.png" + }, + AbyssLichAscendancyOrbit3Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive6.png" + }, + AbyssLichAscendancyOrbit3Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate6.png" + }, + AbyssLichAscendancyOrbit3Normal={ + [1]="AbyssLichAscendancy_orbit_normal6.png" + }, + AbyssLichAscendancyOrbit4Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive5.png" + }, + AbyssLichAscendancyOrbit4Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate5.png" + }, + AbyssLichAscendancyOrbit4Normal={ + [1]="AbyssLichAscendancy_orbit_normal5.png" + }, + AbyssLichAscendancyOrbit5Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive4.png" + }, + AbyssLichAscendancyOrbit5Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate4.png" + }, + AbyssLichAscendancyOrbit5Normal={ + [1]="AbyssLichAscendancy_orbit_normal4.png" + }, + AbyssLichAscendancyOrbit6Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive3.png" + }, + AbyssLichAscendancyOrbit6Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate3.png" + }, + AbyssLichAscendancyOrbit6Normal={ + [1]="AbyssLichAscendancy_orbit_normal3.png" + }, + AbyssLichAscendancyOrbit7Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive7.png" + }, + AbyssLichAscendancyOrbit7Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate7.png" + }, + AbyssLichAscendancyOrbit7Normal={ + [1]="AbyssLichAscendancy_orbit_normal7.png" + }, + AbyssLichAscendancyOrbit8Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive2.png" + }, + AbyssLichAscendancyOrbit8Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate2.png" + }, + AbyssLichAscendancyOrbit8Normal={ + [1]="AbyssLichAscendancy_orbit_normal2.png" + }, + AbyssLichAscendancyOrbit9Active={ + [1]="AbyssLichAscendancy_orbit_intermediateactive1.png" + }, + AbyssLichAscendancyOrbit9Intermediate={ + [1]="AbyssLichAscendancy_orbit_intermediate1.png" + }, + AbyssLichAscendancyOrbit9Normal={ + [1]="AbyssLichAscendancy_orbit_normal1.png" + }, + 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="ClassesDeadeye", + section="AscendancyBackground", + width=1500, + x=15197.414580302, + y=3229.498566027 + }, + id="Deadeye", + internalId="Ranger1", + name="Deadeye" + }, + [2]={ + background={ + height=1500, + image="ClassesPathfinder", + section="AscendancyBackground", + width=1500, + x=14193.864101724, + y=6318.6464353817 + }, + id="Pathfinder", + internalId="Ranger3", + name="Pathfinder" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesRanger", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=15, + ["base_int"]=7, + ["base_str"]=7, + name="Ranger" + }, + [2]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="ClassesAmazon", + section="AscendancyBackground", + width=1500, + x=12569.973652183, + y=9131.6391352807 + }, + id="Amazon", + internalId="Huntress1", + name="Amazon" + }, + [2]={ + background={ + height=1500, + image="ClassesRitualist", + section="AscendancyBackground", + width=1500, + x=10396.715036616, + y=11545.535386502 + }, + id="Ritualist", + internalId="Huntress3", + name="Ritualist" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesHuntress", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=15, + ["base_int"]=7, + ["base_str"]=7, + name="Huntress" + }, + [3]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="ClassesTitan", + section="AscendancyBackground", + width=1500, + x=-11551.107884827, + y=10390.523449116 + }, + id="Titan", + internalId="Warrior1", + name="Titan" + }, + [2]={ + background={ + height=1500, + image="ClassesWarbringer", + section="AscendancyBackground", + width=1500, + x=-13458.999762149, + y=7761.8552109686 + }, + id="Warbringer", + internalId="Warrior2", + name="Warbringer" + }, + [3]={ + background={ + height=1500, + image="ClassesSmith of Kitava", + section="AscendancyBackground", + width=1500, + x=-14778.668766418, + y=4793.956654588 + }, + id="Smith of Kitava", + internalId="Warrior3", + name="Smith of Kitava" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesWarrior", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=7, + ["base_str"]=15, + name="Warrior" + }, + [4]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="ClassesTactician", + section="AscendancyBackground", + width=1500, + x=3250.4343344123, + y=15192.950587402 + }, + id="Tactician", + internalId="Mercenary1", + name="Tactician" + }, + [2]={ + background={ + height=1500, + image="ClassesWitchhunter", + section="AscendancyBackground", + width=1500, + x=20.612500410808, + y=15536.751463494 + }, + id="Witchhunter", + internalId="Mercenary2", + name="Witchhunter" + }, + [3]={ + background={ + height=1500, + image="ClassesGemling Legionnaire", + section="AscendancyBackground", + width=1500, + x=-3210.1101987684, + y=15201.521747027 + }, + id="Gemling Legionnaire", + internalId="Mercenary3", + name="Gemling Legionnaire" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesMercenary", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=11, + ["base_int"]=7, + ["base_str"]=11, + name="Mercenary" + }, + [5]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="ClassesOracle", + section="AscendancyBackground", + width=1500, + x=-14155.374312805, + y=-6404.4085580119 + }, + id="Oracle", + internalId="Druid1", + name="Oracle" + }, + [2]={ + background={ + height=1500, + image="ClassesShaman", + section="AscendancyBackground", + width=1500, + x=-12514.494009575, + y=-9207.524672672 + }, + id="Shaman", + internalId="Druid2", + name="Shaman" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesDruid", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=11, + ["base_str"]=11, + name="Druid" + }, + [6]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="ClassesInfernalist", + section="AscendancyBackground", + width=1500, + x=-9132.2814156951, + y=-12569.507033218 + }, + id="Infernalist", + internalId="Witch1", + name="Infernalist" + }, + [2]={ + background={ + height=1500, + image="ClassesBlood Mage", + section="AscendancyBackground", + width=1500, + x=-6319.3716959661, + y=-14193.541217109 + }, + id="Blood Mage", + internalId="Witch2", + name="Blood Mage" + }, + [3]={ + background={ + height=1500, + image="ClassesLich", + section="AscendancyBackground", + width=1500, + x=-3230.2751094136, + y=-15197.249541646 + }, + id="Lich", + internalId="Witch3", + name="Lich", + replaceBy="Abyssal Lich" + }, + [4]={ + background={ + height=1500, + image="ClassesAbyssal Lich", + section="AscendancyBackground", + width=1500, + x=-3230.2751094136, + y=-15197.249541646 + }, + id="Abyssal Lich", + internalId="Witch3b", + name="Abyssal Lich", + replace="Lich" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesWitch", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=15, + ["base_str"]=7, + name="Witch" + }, + [7]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="ClassesStormweaver", + section="AscendancyBackground", + width=1500, + x=9.5135248468934e-13, + y=-15536.765136719 + }, + id="Stormweaver", + internalId="Sorceress1", + name="Stormweaver" + }, + [2]={ + background={ + height=1500, + image="ClassesChronomancer", + section="AscendancyBackground", + width=1500, + x=3230.2751094136, + y=-15197.249541646 + }, + id="Chronomancer", + internalId="Sorceress2", + name="Chronomancer" + }, + [3]={ + background={ + height=1500, + image="ClassesDisciple of Varashta", + section="AscendancyBackground", + width=1500, + x=6319.3716959661, + y=-14193.541217109 + }, + id="Disciple of Varashta", + internalId="Sorceress3", + name="Disciple of Varashta" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesSorceress", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=7, + ["base_int"]=15, + ["base_str"]=7, + name="Sorceress" + }, + [8]={ + ascendancies={ + [1]={ + background={ + height=1500, + image="ClassesInvoker", + section="AscendancyBackground", + width=1500, + x=12594.531392424, + y=-9097.7387255743 + }, + id="Invoker", + internalId="Monk2", + name="Invoker" + }, + [2]={ + background={ + height=1500, + image="ClassesAcolyte of Chayula", + section="AscendancyBackground", + width=1500, + x=14210.836904918, + y=-6280.3809896674 + }, + id="Acolyte of Chayula", + internalId="Monk3", + name="Acolyte of Chayula" + } + }, + background={ + active={ + height=2000, + width=2000 + }, + bg={ + height=2000, + width=2000 + }, + height=1500, + image="ClassesMonk", + section="AscendancyBackground", + width=1500, + x=0, + y=0 + }, + ["base_dex"]=11, + ["base_int"]=11, + ["base_str"]=7, + name="Monk" + } + }, + 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={ + ["ascendancy-background_1500_1500_BC7.dds.zst"]={ + ["ClassesAbyssal Lich"]=18, + ["ClassesAcolyte of Chayula"]=23, + ClassesAmazon=12, + ["ClassesBlood Mage"]=26, + ClassesChronomancer=3, + ClassesDeadeye=31, + ["ClassesDisciple of Varashta"]=8, + ClassesDruid=20, + ClassesDuelist=19, + ["ClassesGemling Legionnaire"]=10, + ClassesHuntress=11, + ClassesInfernalist=9, + ClassesInvoker=21, + ClassesLich=14, + ClassesMarauder=29, + ClassesMercenary=30, + ClassesMonk=25, + ClassesOracle=22, + ClassesPathfinder=6, + ClassesRanger=27, + ClassesRitualist=17, + ClassesShadow=13, + ClassesShaman=1, + ["ClassesSmith of Kitava"]=15, + ClassesSorceress=24, + ClassesStormweaver=28, + ClassesTactician=32, + ClassesTemplar=16, + ClassesTitan=4, + ClassesWarbringer=33, + ClassesWarrior=2, + ClassesWitch=7, + ClassesWitchhunter=5 + }, + ["ascendancy-background_4000_4000_BC7.dds.zst"]={ + BGTree=1, + BGTreeActive=2 + }, + ["background_1024_1024_BC7.dds.zst"]={ + Background2=1 + }, + ["group-background_104_104_BC7.dds.zst"]={ + PSSkillFrame=4, + PSSkillFrameActive=5, + PSSkillFrameHighlighted=6, + ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds"]=3, + ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds"]=1, + ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"]=2 + }, + ["group-background_152_156_BC7.dds.zst"]={ + JewelFrameAllocated=2, + JewelFrameCanAllocate=15, + JewelFrameUnallocated=14, + NotableFrameAllocated=3, + NotableFrameCanAllocate=1, + NotableFrameUnallocated=11, + ["art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds"]=12, + ["art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds"]=10, + ["art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds"]=13, + ["art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds"]=6, + ["art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds"]=5, + ["art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds"]=4, + ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds"]=7, + ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds"]=8, + ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"]=9 + }, + ["group-background_160_164_BC7.dds.zst"]={ + ["Abyssal LichFrameSmallAllocated"]=4, + ["Abyssal LichFrameSmallCanAllocate"]=6, + ["Abyssal LichFrameSmallNormal"]=5, + ["Acolyte of ChayulaFrameSmallAllocated"]=1, + ["Acolyte of ChayulaFrameSmallCanAllocate"]=3, + ["Acolyte of ChayulaFrameSmallNormal"]=2, + AmazonFrameSmallAllocated=1, + AmazonFrameSmallCanAllocate=3, + AmazonFrameSmallNormal=2, + ["Blood MageFrameSmallAllocated"]=1, + ["Blood MageFrameSmallCanAllocate"]=3, + ["Blood MageFrameSmallNormal"]=2, + ChronomancerFrameSmallAllocated=1, + ChronomancerFrameSmallCanAllocate=3, + ChronomancerFrameSmallNormal=2, + DeadeyeFrameSmallAllocated=1, + DeadeyeFrameSmallCanAllocate=3, + DeadeyeFrameSmallNormal=2, + ["Disciple of VarashtaFrameSmallAllocated"]=1, + ["Disciple of VarashtaFrameSmallCanAllocate"]=3, + ["Disciple of VarashtaFrameSmallNormal"]=2, + ["Gemling LegionnaireFrameSmallAllocated"]=1, + ["Gemling LegionnaireFrameSmallCanAllocate"]=3, + ["Gemling LegionnaireFrameSmallNormal"]=2, + InfernalistFrameSmallAllocated=1, + InfernalistFrameSmallCanAllocate=3, + InfernalistFrameSmallNormal=2, + InvokerFrameSmallAllocated=1, + InvokerFrameSmallCanAllocate=3, + InvokerFrameSmallNormal=2, + LichFrameSmallAllocated=1, + LichFrameSmallCanAllocate=3, + LichFrameSmallNormal=2, + OracleFrameSmallAllocated=1, + OracleFrameSmallCanAllocate=3, + OracleFrameSmallNormal=2, + PathfinderFrameSmallAllocated=1, + PathfinderFrameSmallCanAllocate=3, + PathfinderFrameSmallNormal=2, + RitualistFrameSmallAllocated=1, + RitualistFrameSmallCanAllocate=3, + RitualistFrameSmallNormal=2, + ShamanFrameSmallAllocated=1, + ShamanFrameSmallCanAllocate=3, + ShamanFrameSmallNormal=2, + ["Smith of KitavaFrameSmallAllocated"]=1, + ["Smith of KitavaFrameSmallCanAllocate"]=3, + ["Smith of KitavaFrameSmallNormal"]=2, + StormweaverFrameSmallAllocated=1, + StormweaverFrameSmallCanAllocate=3, + StormweaverFrameSmallNormal=2, + TacticianFrameSmallAllocated=1, + TacticianFrameSmallCanAllocate=3, + TacticianFrameSmallNormal=2, + TitanFrameSmallAllocated=1, + TitanFrameSmallCanAllocate=3, + TitanFrameSmallNormal=2, + WarbringerFrameSmallAllocated=1, + WarbringerFrameSmallCanAllocate=3, + WarbringerFrameSmallNormal=2, + WitchhunterFrameSmallAllocated=1, + WitchhunterFrameSmallCanAllocate=3, + WitchhunterFrameSmallNormal=2 + }, + ["group-background_208_208_BC7.dds.zst"]={ + ["Abyssal LichFrameLargeAllocated"]=6, + ["Abyssal LichFrameLargeCanAllocate"]=3, + ["Abyssal LichFrameLargeNormal"]=5, + ["Acolyte of ChayulaFrameLargeAllocated"]=4, + ["Acolyte of ChayulaFrameLargeCanAllocate"]=2, + ["Acolyte of ChayulaFrameLargeNormal"]=1, + AmazonFrameLargeAllocated=4, + AmazonFrameLargeCanAllocate=2, + AmazonFrameLargeNormal=1, + ["Blood MageFrameLargeAllocated"]=4, + ["Blood MageFrameLargeCanAllocate"]=2, + ["Blood MageFrameLargeNormal"]=1, + ChronomancerFrameLargeAllocated=4, + ChronomancerFrameLargeCanAllocate=2, + ChronomancerFrameLargeNormal=1, + DeadeyeFrameLargeAllocated=4, + DeadeyeFrameLargeCanAllocate=2, + DeadeyeFrameLargeNormal=1, + ["Disciple of VarashtaFrameLargeAllocated"]=4, + ["Disciple of VarashtaFrameLargeCanAllocate"]=2, + ["Disciple of VarashtaFrameLargeNormal"]=1, + ["Gemling LegionnaireFrameLargeAllocated"]=4, + ["Gemling LegionnaireFrameLargeCanAllocate"]=2, + ["Gemling LegionnaireFrameLargeNormal"]=1, + InfernalistFrameLargeAllocated=4, + InfernalistFrameLargeCanAllocate=2, + InfernalistFrameLargeNormal=1, + InvokerFrameLargeAllocated=4, + InvokerFrameLargeCanAllocate=2, + InvokerFrameLargeNormal=1, + LichFrameLargeAllocated=4, + LichFrameLargeCanAllocate=2, + LichFrameLargeNormal=1, + OracleFrameLargeAllocated=4, + OracleFrameLargeCanAllocate=2, + OracleFrameLargeNormal=1, + PathfinderFrameLargeAllocated=4, + PathfinderFrameLargeCanAllocate=2, + PathfinderFrameLargeNormal=1, + RitualistFrameLargeAllocated=4, + RitualistFrameLargeCanAllocate=2, + RitualistFrameLargeNormal=1, + ShamanFrameLargeAllocated=4, + ShamanFrameLargeCanAllocate=2, + ShamanFrameLargeNormal=1, + ["Smith of KitavaFrameLargeAllocated"]=4, + ["Smith of KitavaFrameLargeCanAllocate"]=2, + ["Smith of KitavaFrameLargeNormal"]=1, + StormweaverFrameLargeAllocated=4, + StormweaverFrameLargeCanAllocate=2, + StormweaverFrameLargeNormal=1, + TacticianFrameLargeAllocated=4, + TacticianFrameLargeCanAllocate=2, + TacticianFrameLargeNormal=1, + TitanFrameLargeAllocated=4, + TitanFrameLargeCanAllocate=2, + TitanFrameLargeNormal=1, + WarbringerFrameLargeAllocated=4, + WarbringerFrameLargeCanAllocate=2, + WarbringerFrameLargeNormal=1, + WitchhunterFrameLargeAllocated=4, + WitchhunterFrameLargeCanAllocate=2, + WitchhunterFrameLargeNormal=1 + }, + ["group-background_220_224_BC7.dds.zst"]={ + KeystoneFrameAllocated=3, + KeystoneFrameCanAllocate=2, + KeystoneFrameUnallocated=1 + }, + ["group-background_360_360_BC7.dds.zst"]={ + PSGroupBackground1=1, + PSGroupBackgroundSmallBlank=1 + }, + ["group-background_468_468_BC7.dds.zst"]={ + PSGroupBackground2=1, + PSGroupBackgroundMediumBlank=1 + }, + ["group-background_528_528_BC7.dds.zst"]={ + PSStartNodeBackgroundInactive=1 + }, + ["group-background_740_376_BC7.dds.zst"]={ + PSGroupBackground3=1, + PSGroupBackgroundLargeBlank=1 + }, + ["group-background_92_92_BC7.dds.zst"]={ + AscendancyMiddle=1 + }, + ["jewel-sockets_152_156_BC7.dds.zst"]={ + ["Against the Darkness"]=14, + ["Controlled Metamorphosis"]=5, + Diamond=14, + Emerald=11, + ["Flesh Crucible"]=1, + ["From Nothing"]=10, + ["Heart of the Well"]=3, + ["Heroic Tragedy"]=6, + Megalomaniac=16, + ["Prism of Belief"]=13, + Ruby=2, + Sapphire=8, + ["The Adorned"]=4, + ["Time-Lost Diamond"]=14, + ["Time-Lost Emerald"]=12, + ["Time-Lost Ruby"]=7, + ["Time-Lost Sapphire"]=15, + ["Timeless Jewel"]=14, + ["Undying Hate"]=9 + }, + ["legion_1024_1024_BC7.dds.zst"]={ + ["art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysspassiveskillscreenjewelcircle1.dds"]=1 + }, + ["legion_128_128_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds"]=30, + ["Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds"]=32, + ["Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds"]=31, + ["Art/2DArt/SkillIcons/passives/AmanamusDefiance.dds"]=10, + ["Art/2DArt/SkillIcons/passives/CorruptedDefences.dds"]=14, + ["Art/2DArt/SkillIcons/passives/DevotionNotable.dds"]=36, + ["Art/2DArt/SkillIcons/passives/DivineFlesh.dds"]=11, + ["Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds"]=3, + ["Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds"]=2, + ["Art/2DArt/SkillIcons/passives/EternalYouth.dds"]=12, + ["Art/2DArt/SkillIcons/passives/FocusedRage.dds"]=20, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.dds"]=19, + ["Art/2DArt/SkillIcons/passives/InnerConviction.dds"]=34, + ["Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds"]=5, + ["Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds"]=8, + ["Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds"]=6, + ["Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds"]=9, + ["Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds"]=4, + ["Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds"]=7, + ["Art/2DArt/SkillIcons/passives/KulemaksSovereignty.dds"]=26, + ["Art/2DArt/SkillIcons/passives/KurgasAmbition.dds"]=27, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.dds"]=25, + ["Art/2DArt/SkillIcons/passives/OasisKeystone.dds"]=22, + ["Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds"]=35, + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.dds"]=23, + ["Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds"]=13, + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds"]=17, + ["Art/2DArt/SkillIcons/passives/SupremeDecadence.dds"]=37, + ["Art/2DArt/SkillIcons/passives/SupremeEgo.dds"]=39, + ["Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds"]=38, + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.dds"]=1, + ["Art/2DArt/SkillIcons/passives/TecrodsBrutality.dds"]=28, + ["Art/2DArt/SkillIcons/passives/TemperedByWar.dds"]=18, + ["Art/2DArt/SkillIcons/passives/TheBlindMonk.dds"]=24, + ["Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds"]=33, + ["Art/2DArt/SkillIcons/passives/UlamansVision.dds"]=29, + ["Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds"]=16, + ["Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds"]=15, + ["Art/2DArt/SkillIcons/passives/WindDancer.dds"]=21 + }, + ["legion_564_564_BC7.dds.zst"]={ + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle1.dds"]=7, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle2.dds"]=11, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle1.dds"]=10, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle2.dds"]=9, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle1.dds"]=8, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle2.dds"]=12, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle1.dds"]=6, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle2.dds"]=5, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle1.dds"]=1, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle2.dds"]=4, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle1.dds"]=2, + ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle2.dds"]=3 + }, + ["legion_64_64_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/AbyssJewelNode.dds"]=4, + ["Art/2DArt/SkillIcons/passives/DevotionNode.dds"]=5, + ["Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds"]=1, + ["Art/2DArt/SkillIcons/passives/VaalDefensive.dds"]=3, + ["Art/2DArt/SkillIcons/passives/VaalOffensive.dds"]=2 + }, + ["mastery-active-effect_776_768_BC7.dds.zst"]={ + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern"]=60, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern"]=5, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern"]=10, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern"]=14, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern"]=18, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern"]=21, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern"]=26, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern"]=31, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern"]=36, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern"]=41, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern"]=46, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern"]=51, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern"]=56, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern"]=1, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern"]=6, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern"]=11, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern"]=15, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern"]=19, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern"]=53, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern"]=32, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern"]=37, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern"]=30, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern"]=40, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern"]=50, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern"]=22, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern"]=27, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern"]=55, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern"]=35, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern"]=42, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern"]=47, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern"]=52, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern"]=57, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern"]=2, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern"]=7, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern"]=45, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern"]=23, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern"]=28, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern"]=33, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern"]=38, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern"]=43, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern"]=48, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern"]=58, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern"]=3, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern"]=8, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern"]=12, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern"]=16, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern"]=20, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern"]=24, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern"]=29, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern"]=34, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern"]=39, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern"]=44, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern"]=49, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern"]=54, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern"]=59, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern"]=4, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern"]=9, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern"]=13, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern"]=17, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern"]=25 + }, + ["monster-categories_36_36_BC7.dds.zst"]={ + Beast=2, + Construct=6, + Demon=4, + Eldritch=1, + Humanoid=5, + Undead=3 + }, + ["oils_108_108_RGBA.dds.zst"]={ + Despair=4, + Disgust=3, + Envy=10, + Fear=5, + Greed=7, + Guilt=2, + Ire=1, + Isolation=9, + Paranoia=6, + Suffering=8 + }, + ["skills-disabled_128_128_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds"]=60, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds"]=71, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds"]=173, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds"]=73, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds"]=50, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds"]=168, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds"]=248, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds"]=138, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds"]=67, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds"]=217, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds"]=66, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds"]=129, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds"]=263, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds"]=38, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds"]=58, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds"]=46, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds"]=210, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds"]=41, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds"]=293, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds"]=48, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds"]=79, + ["Art/2DArt/SkillIcons/passives/Annihilation.dds"]=24, + ["Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds"]=304, + ["Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds"]=318, + ["Art/2DArt/SkillIcons/passives/AuraNotable.dds"]=202, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds"]=219, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds"]=76, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds"]=325, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds"]=277, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds"]=243, + ["Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds"]=147, + ["Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds"]=137, + ["Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds"]=178, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds"]=238, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds"]=274, + ["Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds"]=209, + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds"]=286, + ["Art/2DArt/SkillIcons/passives/BattleRouse.dds"]=326, + ["Art/2DArt/SkillIcons/passives/Blood2.dds"]=303, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds"]=241, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds"]=234, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds"]=309, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds"]=289, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds"]=239, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds"]=283, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds"]=316, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds"]=232, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds"]=235, + ["Art/2DArt/SkillIcons/passives/BowDamage.dds"]=130, + ["Art/2DArt/SkillIcons/passives/BucklersNotable1.dds"]=214, + ["Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds"]=323, + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds"]=253, + ["Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds"]=63, + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.dds"]=144, + ["Art/2DArt/SkillIcons/passives/CharmNotable1.dds"]=81, + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds"]=211, + ["Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds"]=127, + ["Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds"]=327, + ["Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds"]=300, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds"]=225, + ["Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds"]=146, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds"]=109, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds"]=88, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds"]=104, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds"]=53, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds"]=307, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds"]=103, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds"]=94, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds"]=100, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds"]=314, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds"]=3, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds"]=236, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds"]=176, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds"]=226, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds"]=216, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds"]=221, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds"]=242, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds"]=228, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds"]=206, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds"]=203, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds"]=199, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds"]=268, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds"]=261, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds"]=278, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds"]=249, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds"]=182, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds"]=197, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds"]=155, + ["Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds"]=142, + ["Art/2DArt/SkillIcons/passives/DruidAnimism.dds"]=141, + ["Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds"]=166, + ["Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds"]=105, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds"]=22, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds"]=254, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds"]=205, + ["Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds"]=231, + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds"]=133, + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.dds"]=298, + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.dds"]=89, + ["Art/2DArt/SkillIcons/passives/EternalYouth.dds"]=151, + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds"]=5, + ["Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds"]=224, + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds"]=157, + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds"]=6, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds"]=276, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds"]=4, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds"]=207, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds"]=34, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds"]=80, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds"]=284, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds"]=322, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds"]=9, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds"]=200, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds"]=131, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds"]=180, + ["Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds"]=306, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.dds"]=16, + ["Art/2DArt/SkillIcons/passives/Harrier.dds"]=244, + ["Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds"]=152, + ["Art/2DArt/SkillIcons/passives/Hearty.dds"]=25, + ["Art/2DArt/SkillIcons/passives/HiredKiller2.dds"]=313, + ["Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds"]=184, + ["Art/2DArt/SkillIcons/passives/Hunter.dds"]=153, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds"]=222, + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds"]=62, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds"]=269, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds"]=258, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds"]=27, + ["Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds"]=188, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds"]=266, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds"]=265, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds"]=124, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds"]=44, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds"]=257, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds"]=162, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds"]=262, + ["Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds"]=150, + ["Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds"]=191, + ["Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds"]=92, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds"]=114, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds"]=112, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds"]=110, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds"]=117, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds"]=116, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds"]=111, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds"]=115, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds"]=113, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds"]=39, + ["Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds"]=68, + ["Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds"]=77, + ["Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds"]=169, + ["Art/2DArt/SkillIcons/passives/KeystoneConduit.dds"]=35, + ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds"]=163, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds"]=75, + ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds"]=90, + ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds"]=56, + ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds"]=317, + ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds"]=247, + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds"]=59, + ["Art/2DArt/SkillIcons/passives/LethalAssault.dds"]=160, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds"]=174, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds"]=185, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds"]=285, + ["Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds"]=83, + ["Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds"]=187, + ["Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds"]=161, + ["Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds"]=154, + ["Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds"]=292, + ["Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds"]=2, + ["Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds"]=175, + ["Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds"]=186, + ["Art/2DArt/SkillIcons/passives/LifeandMana.dds"]=194, + ["Art/2DArt/SkillIcons/passives/Meleerange.dds"]=51, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds"]=159, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.dds"]=18, + ["Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds"]=123, + ["Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds"]=189, + ["Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds"]=84, + ["Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds"]=121, + ["Art/2DArt/SkillIcons/passives/MonkManaChakra.dds"]=1, + ["Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds"]=171, + ["Art/2DArt/SkillIcons/passives/MonkStunChakra.dds"]=158, + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds"]=139, + ["Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds"]=273, + ["Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds"]=315, + ["Art/2DArt/SkillIcons/passives/OasisKeystone2.dds"]=204, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds"]=82, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds"]=87, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds"]=208, + ["Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds"]=220, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds"]=227, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds"]=212, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds"]=233, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds"]=198, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds"]=85, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds"]=120, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds"]=106, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds"]=101, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds"]=98, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds"]=99, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds"]=135, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds"]=102, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds"]=74, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds"]=177, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds"]=97, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds"]=108, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds"]=91, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds"]=172, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds"]=93, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds"]=301, + ["Art/2DArt/SkillIcons/passives/Poison.dds"]=295, + ["Art/2DArt/SkillIcons/passives/PressurePoints.dds"]=190, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds"]=11, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds"]=312, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds"]=42, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds"]=31, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds"]=30, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds"]=36, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds"]=29, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds"]=165, + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds"]=55, + ["Art/2DArt/SkillIcons/passives/RageNotable.dds"]=118, + ["Art/2DArt/SkillIcons/passives/RemnantNotable.dds"]=251, + ["Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds"]=40, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds"]=20, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds"]=252, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds"]=181, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds"]=32, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds"]=57, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds"]=125, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds"]=13, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds"]=267, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds"]=54, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds"]=255, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds"]=70, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds"]=201, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds"]=237, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds"]=288, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds"]=134, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds"]=126, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds"]=61, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds"]=294, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds"]=287, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds"]=328, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds"]=270, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds"]=230, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds"]=245, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds"]=305, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds"]=271, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds"]=43, + ["Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds"]=69, + ["Art/2DArt/SkillIcons/passives/SpearsNotable1.dds"]=95, + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds"]=72, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds"]=47, + ["Art/2DArt/SkillIcons/passives/Storm Weaver.dds"]=218, + ["Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds"]=179, + ["Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds"]=164, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds"]=170, + ["Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds"]=240, + ["Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds"]=143, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds"]=250, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds"]=149, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds"]=156, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds"]=246, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds"]=183, + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds"]=8, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds"]=299, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds"]=148, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds"]=324, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds"]=282, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds"]=28, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds"]=17, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds"]=320, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds"]=86, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds"]=122, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds"]=256, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds"]=23, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds"]=296, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds"]=223, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds"]=19, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds"]=321, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds"]=167, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds"]=145, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds"]=65, + ["Art/2DArt/SkillIcons/passives/ThornsNotable1.dds"]=308, + ["Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds"]=297, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds"]=302, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds"]=329, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds"]=290, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds"]=192, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds"]=119, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds"]=272, + ["Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds"]=213, + ["Art/2DArt/SkillIcons/passives/Trap.dds"]=196, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds"]=279, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds"]=259, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds"]=311, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds"]=37, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds"]=275, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds"]=264, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds"]=280, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds"]=78, + ["Art/2DArt/SkillIcons/passives/Warrior.dds"]=132, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds"]=10, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds"]=7, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds"]=26, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds"]=33, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds"]=128, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds"]=96, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds"]=64, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds"]=14, + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds"]=136, + ["Art/2DArt/SkillIcons/passives/bodysoul.dds"]=21, + ["Art/2DArt/SkillIcons/passives/deepwisdom.dds"]=260, + ["Art/2DArt/SkillIcons/passives/eagleeye.dds"]=215, + ["Art/2DArt/SkillIcons/passives/executioner.dds"]=229, + ["Art/2DArt/SkillIcons/passives/finesse.dds"]=49, + ["Art/2DArt/SkillIcons/passives/flameborn.dds"]=310, + ["Art/2DArt/SkillIcons/passives/frostborn.dds"]=140, + ["Art/2DArt/SkillIcons/passives/heroicspirit.dds"]=281, + ["Art/2DArt/SkillIcons/passives/legstrength.dds"]=45, + ["Art/2DArt/SkillIcons/passives/lifeleech.dds"]=12, + ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds"]=291, + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.dds"]=52, + ["Art/2DArt/SkillIcons/passives/steelspan.dds"]=15, + ["Art/2DArt/SkillIcons/passives/stormborn.dds"]=193, + ["Art/2DArt/SkillIcons/passives/strongarm.dds"]=319, + ["Art/2DArt/SkillIcons/passives/totemmax.dds"]=107, + ["Art/2DArt/SkillIcons/passives/vaalpact.dds"]=195 + }, + ["skills-disabled_172_172_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/MasteryBlank.dds"]=1 + }, + ["skills-disabled_176_176_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds"]=1 + }, + ["skills-disabled_64_64_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/ExplosiveGrenade.dds"]=75, + ["Art/2DArt/SkillIcons/WitchBoneStorm.dds"]=11, + ["Art/2DArt/SkillIcons/icongroundslam.dds"]=23, + ["Art/2DArt/SkillIcons/passives/2handeddamage.dds"]=38, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds"]=84, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds"]=109, + ["Art/2DArt/SkillIcons/passives/ArchonGeneric.dds"]=144, + ["Art/2DArt/SkillIcons/passives/AreaDmgNode.dds"]=108, + ["Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds"]=70, + ["Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds"]=74, + ["Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds"]=164, + ["Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds"]=161, + ["Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds"]=135, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds"]=60, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds"]=63, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds"]=156, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds"]=123, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds"]=107, + ["Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds"]=16, + ["Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds"]=129, + ["Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds"]=78, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds"]=162, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds"]=115, + ["Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds"]=82, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds"]=19, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds"]=110, + ["Art/2DArt/SkillIcons/passives/BucklerNode1.dds"]=104, + ["Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds"]=34, + ["Art/2DArt/SkillIcons/passives/ChannellingDamage.dds"]=88, + ["Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds"]=8, + ["Art/2DArt/SkillIcons/passives/ChaosDamage.dds"]=131, + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds"]=64, + ["Art/2DArt/SkillIcons/passives/CharmNode1.dds"]=100, + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.dds"]=36, + ["Art/2DArt/SkillIcons/passives/ColdResistNode.dds"]=153, + ["Art/2DArt/SkillIcons/passives/CompanionsNode1.dds"]=134, + ["Art/2DArt/SkillIcons/passives/CorpseDamage.dds"]=98, + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.dds"]=111, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds"]=113, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds"]=56, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds"]=117, + ["Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds"]=114, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds"]=20, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds"]=118, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds"]=97, + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds"]=127, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds"]=87, + ["Art/2DArt/SkillIcons/passives/EvasionNode.dds"]=139, + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds"]=86, + ["Art/2DArt/SkillIcons/passives/FireDamagenode.dds"]=128, + ["Art/2DArt/SkillIcons/passives/FireResistNode.dds"]=150, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds"]=45, + ["Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds"]=40, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds"]=71, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds"]=106, + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds"]=125, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds"]=95, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds"]=41, + ["Art/2DArt/SkillIcons/passives/InstillationsNode1.dds"]=48, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds"]=52, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds"]=92, + ["Art/2DArt/SkillIcons/passives/Lich/LichNode.dds"]=93, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds"]=18, + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.dds"]=14, + ["Art/2DArt/SkillIcons/passives/LightningResistNode.dds"]=146, + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds"]=99, + ["Art/2DArt/SkillIcons/passives/MarkNode.dds"]=77, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.dds"]=13, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds"]=130, + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds"]=165, + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds"]=102, + ["Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds"]=68, + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds"]=112, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds"]=6, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds"]=43, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds"]=154, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds"]=136, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds"]=61, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds"]=25, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds"]=137, + ["Art/2DArt/SkillIcons/passives/Rage.dds"]=147, + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds"]=94, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds"]=1, + ["Art/2DArt/SkillIcons/passives/Remnant.dds"]=85, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds"]=9, + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds"]=57, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds"]=160, + ["Art/2DArt/SkillIcons/passives/SpearsNode1.dds"]=42, + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds"]=26, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds"]=89, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds"]=142, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds"]=65, + ["Art/2DArt/SkillIcons/passives/ThornsNode1.dds"]=143, + ["Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds"]=158, + ["Art/2DArt/SkillIcons/passives/WarCryEffect.dds"]=22, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds"]=149, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds"]=58, + ["Art/2DArt/SkillIcons/passives/accuracydex.dds"]=141, + ["Art/2DArt/SkillIcons/passives/accuracystr.dds"]=132, + ["Art/2DArt/SkillIcons/passives/areaofeffect.dds"]=62, + ["Art/2DArt/SkillIcons/passives/attackspeed.dds"]=39, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.dds"]=96, + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.dds"]=12, + ["Art/2DArt/SkillIcons/passives/auraeffect.dds"]=155, + ["Art/2DArt/SkillIcons/passives/avoidchilling.dds"]=133, + ["Art/2DArt/SkillIcons/passives/axedmgspeed.dds"]=120, + ["Art/2DArt/SkillIcons/passives/blankDex.dds"]=31, + ["Art/2DArt/SkillIcons/passives/blankInt.dds"]=33, + ["Art/2DArt/SkillIcons/passives/blankStr.dds"]=121, + ["Art/2DArt/SkillIcons/passives/blockstr.dds"]=157, + ["Art/2DArt/SkillIcons/passives/castspeed.dds"]=53, + ["Art/2DArt/SkillIcons/passives/chargedex.dds"]=138, + ["Art/2DArt/SkillIcons/passives/chargeint.dds"]=81, + ["Art/2DArt/SkillIcons/passives/chargestr.dds"]=67, + ["Art/2DArt/SkillIcons/passives/colddamage.dds"]=151, + ["Art/2DArt/SkillIcons/passives/coldresist.dds"]=79, + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.dds"]=49, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.dds"]=91, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds"]=69, + ["Art/2DArt/SkillIcons/passives/damage.dds"]=5, + ["Art/2DArt/SkillIcons/passives/damage_blue.dds"]=116, + ["Art/2DArt/SkillIcons/passives/damageaxe.dds"]=73, + ["Art/2DArt/SkillIcons/passives/damagedualwield.dds"]=55, + ["Art/2DArt/SkillIcons/passives/damagespells.dds"]=46, + ["Art/2DArt/SkillIcons/passives/damagestaff.dds"]=59, + ["Art/2DArt/SkillIcons/passives/damagesword.dds"]=126, + ["Art/2DArt/SkillIcons/passives/dmgreduction.dds"]=32, + ["Art/2DArt/SkillIcons/passives/elementaldamage.dds"]=163, + ["Art/2DArt/SkillIcons/passives/energyshield.dds"]=145, + ["Art/2DArt/SkillIcons/passives/evade.dds"]=122, + ["Art/2DArt/SkillIcons/passives/firedamage.dds"]=66, + ["Art/2DArt/SkillIcons/passives/firedamageint.dds"]=4, + ["Art/2DArt/SkillIcons/passives/firedamagestr.dds"]=152, + ["Art/2DArt/SkillIcons/passives/fireresist.dds"]=44, + ["Art/2DArt/SkillIcons/passives/flaskdex.dds"]=103, + ["Art/2DArt/SkillIcons/passives/flaskint.dds"]=105, + ["Art/2DArt/SkillIcons/passives/flaskstr.dds"]=35, + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds"]=124, + ["Art/2DArt/SkillIcons/passives/knockback.dds"]=140, + ["Art/2DArt/SkillIcons/passives/life1.dds"]=28, + ["Art/2DArt/SkillIcons/passives/lifepercentage.dds"]=80, + ["Art/2DArt/SkillIcons/passives/lightningint.dds"]=83, + ["Art/2DArt/SkillIcons/passives/lightningstr.dds"]=90, + ["Art/2DArt/SkillIcons/passives/macedmg.dds"]=37, + ["Art/2DArt/SkillIcons/passives/mana.dds"]=47, + ["Art/2DArt/SkillIcons/passives/manaregeneration.dds"]=27, + ["Art/2DArt/SkillIcons/passives/manastr.dds"]=51, + ["Art/2DArt/SkillIcons/passives/minionattackspeed.dds"]=101, + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.dds"]=159, + ["Art/2DArt/SkillIcons/passives/minionlife.dds"]=15, + ["Art/2DArt/SkillIcons/passives/minionstr.dds"]=50, + ["Art/2DArt/SkillIcons/passives/onehanddamage.dds"]=24, + ["Art/2DArt/SkillIcons/passives/plusattribute.dds"]=10, + ["Art/2DArt/SkillIcons/passives/plusdexterity.dds"]=119, + ["Art/2DArt/SkillIcons/passives/plusintelligence.dds"]=3, + ["Art/2DArt/SkillIcons/passives/plusstrength.dds"]=2, + ["Art/2DArt/SkillIcons/passives/projectilespeed.dds"]=148, + ["Art/2DArt/SkillIcons/passives/shieldblock.dds"]=17, + ["Art/2DArt/SkillIcons/passives/spellcritical.dds"]=76, + ["Art/2DArt/SkillIcons/passives/stun2h.dds"]=21, + ["Art/2DArt/SkillIcons/passives/stunstr.dds"]=29, + ["Art/2DArt/SkillIcons/passives/tempint.dds"]=7, + ["Art/2DArt/SkillIcons/passives/totemandbrandlife.dds"]=30, + ["Art/2DArt/SkillIcons/passives/trapdamage.dds"]=72, + ["Art/2DArt/SkillIcons/passives/trapsmax.dds"]=54 + }, + ["skills_128_128_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds"]=59, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds"]=72, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds"]=171, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds"]=73, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds"]=49, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds"]=166, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds"]=243, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds"]=136, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds"]=68, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds"]=213, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds"]=67, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds"]=127, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds"]=257, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds"]=37, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds"]=57, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds"]=45, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds"]=207, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds"]=40, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds"]=293, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds"]=47, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds"]=78, + ["Art/2DArt/SkillIcons/passives/Annihilation.dds"]=23, + ["Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds"]=304, + ["Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds"]=319, + ["Art/2DArt/SkillIcons/passives/AuraNotable.dds"]=199, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds"]=215, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds"]=75, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds"]=325, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds"]=273, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds"]=238, + ["Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds"]=144, + ["Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds"]=135, + ["Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds"]=176, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds"]=234, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds"]=269, + ["Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds"]=206, + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds"]=284, + ["Art/2DArt/SkillIcons/passives/BattleRouse.dds"]=326, + ["Art/2DArt/SkillIcons/passives/Blood2.dds"]=303, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds"]=237, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds"]=230, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds"]=309, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds"]=290, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds"]=235, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds"]=281, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds"]=315, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds"]=228, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds"]=231, + ["Art/2DArt/SkillIcons/passives/BowDamage.dds"]=128, + ["Art/2DArt/SkillIcons/passives/BucklersNotable1.dds"]=210, + ["Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds"]=324, + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds"]=248, + ["Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds"]=64, + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.dds"]=141, + ["Art/2DArt/SkillIcons/passives/CharmNotable1.dds"]=80, + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds"]=208, + ["Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds"]=125, + ["Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds"]=327, + ["Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds"]=301, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds"]=221, + ["Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds"]=143, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds"]=108, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds"]=87, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds"]=103, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds"]=52, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds"]=307, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds"]=102, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds"]=93, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds"]=99, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds"]=313, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds"]=3, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds"]=232, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds"]=174, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds"]=222, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds"]=212, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds"]=217, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds"]=275, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds"]=224, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds"]=203, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds"]=200, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds"]=196, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds"]=262, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds"]=255, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds"]=274, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds"]=244, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds"]=180, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds"]=194, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds"]=152, + ["Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds"]=277, + ["Art/2DArt/SkillIcons/passives/DruidAnimism.dds"]=139, + ["Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds"]=164, + ["Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds"]=179, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds"]=21, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds"]=249, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds"]=202, + ["Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds"]=227, + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds"]=131, + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.dds"]=298, + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.dds"]=88, + ["Art/2DArt/SkillIcons/passives/EternalYouth.dds"]=148, + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds"]=5, + ["Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds"]=220, + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds"]=154, + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds"]=6, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds"]=271, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds"]=4, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds"]=204, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds"]=33, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds"]=79, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds"]=322, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds"]=321, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds"]=8, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds"]=197, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds"]=129, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds"]=178, + ["Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds"]=306, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.dds"]=15, + ["Art/2DArt/SkillIcons/passives/Harrier.dds"]=239, + ["Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds"]=149, + ["Art/2DArt/SkillIcons/passives/Hearty.dds"]=24, + ["Art/2DArt/SkillIcons/passives/HiredKiller2.dds"]=312, + ["Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds"]=182, + ["Art/2DArt/SkillIcons/passives/Hunter.dds"]=150, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds"]=218, + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds"]=63, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds"]=263, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds"]=252, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds"]=26, + ["Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds"]=186, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds"]=260, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds"]=259, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds"]=123, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds"]=43, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds"]=251, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds"]=160, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds"]=256, + ["Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds"]=147, + ["Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds"]=189, + ["Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds"]=91, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds"]=113, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds"]=111, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds"]=109, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds"]=116, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds"]=115, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds"]=110, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds"]=114, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds"]=112, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds"]=38, + ["Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds"]=69, + ["Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds"]=76, + ["Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds"]=167, + ["Art/2DArt/SkillIcons/passives/KeystoneConduit.dds"]=34, + ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds"]=161, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds"]=118, + ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds"]=89, + ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds"]=55, + ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds"]=317, + ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds"]=242, + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds"]=58, + ["Art/2DArt/SkillIcons/passives/LethalAssault.dds"]=157, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds"]=172, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds"]=183, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds"]=283, + ["Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds"]=82, + ["Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds"]=185, + ["Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds"]=159, + ["Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds"]=151, + ["Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds"]=292, + ["Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds"]=2, + ["Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds"]=173, + ["Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds"]=184, + ["Art/2DArt/SkillIcons/passives/LifeandMana.dds"]=285, + ["Art/2DArt/SkillIcons/passives/Meleerange.dds"]=50, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds"]=156, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.dds"]=17, + ["Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds"]=122, + ["Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds"]=187, + ["Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds"]=83, + ["Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds"]=120, + ["Art/2DArt/SkillIcons/passives/MonkManaChakra.dds"]=1, + ["Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds"]=169, + ["Art/2DArt/SkillIcons/passives/MonkStunChakra.dds"]=155, + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds"]=137, + ["Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds"]=268, + ["Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds"]=314, + ["Art/2DArt/SkillIcons/passives/OasisKeystone2.dds"]=201, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds"]=81, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds"]=86, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds"]=205, + ["Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds"]=216, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds"]=223, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds"]=266, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds"]=289, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds"]=195, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds"]=84, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds"]=119, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds"]=105, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds"]=100, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds"]=97, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds"]=98, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds"]=133, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds"]=101, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds"]=74, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds"]=175, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds"]=96, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds"]=107, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds"]=90, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds"]=170, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds"]=92, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds"]=302, + ["Art/2DArt/SkillIcons/passives/Poison.dds"]=296, + ["Art/2DArt/SkillIcons/passives/PressurePoints.dds"]=188, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds"]=10, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds"]=311, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds"]=41, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds"]=30, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds"]=29, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds"]=35, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds"]=28, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds"]=163, + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds"]=54, + ["Art/2DArt/SkillIcons/passives/RageNotable.dds"]=299, + ["Art/2DArt/SkillIcons/passives/RemnantNotable.dds"]=246, + ["Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds"]=39, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds"]=19, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds"]=247, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds"]=316, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds"]=286, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds"]=56, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds"]=288, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds"]=12, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds"]=261, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds"]=53, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds"]=117, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds"]=71, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds"]=104, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds"]=233, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds"]=328, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds"]=132, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds"]=124, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds"]=61, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds"]=295, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds"]=287, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds"]=279, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds"]=264, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds"]=226, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds"]=240, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds"]=305, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds"]=265, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds"]=42, + ["Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds"]=70, + ["Art/2DArt/SkillIcons/passives/SpearsNotable1.dds"]=94, + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds"]=272, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds"]=46, + ["Art/2DArt/SkillIcons/passives/Storm Weaver.dds"]=214, + ["Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds"]=177, + ["Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds"]=162, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds"]=168, + ["Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds"]=236, + ["Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds"]=140, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds"]=245, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds"]=146, + ["Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds"]=153, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds"]=241, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds"]=181, + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds"]=7, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds"]=300, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds"]=145, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds"]=323, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds"]=282, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds"]=27, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds"]=16, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds"]=318, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds"]=85, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds"]=121, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds"]=250, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds"]=22, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds"]=297, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds"]=219, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds"]=18, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds"]=77, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds"]=165, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds"]=142, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds"]=66, + ["Art/2DArt/SkillIcons/passives/ThornsNotable1.dds"]=308, + ["Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds"]=278, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds"]=62, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds"]=158, + ["Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds"]=280, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds"]=291, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds"]=31, + ["Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds"]=198, + ["Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds"]=209, + ["Art/2DArt/SkillIcons/passives/Trap.dds"]=193, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds"]=276, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds"]=253, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds"]=36, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds"]=294, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds"]=270, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds"]=258, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds"]=192, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds"]=229, + ["Art/2DArt/SkillIcons/passives/Warrior.dds"]=130, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds"]=9, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds"]=329, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds"]=25, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds"]=32, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds"]=126, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds"]=95, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds"]=65, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds"]=13, + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds"]=134, + ["Art/2DArt/SkillIcons/passives/bodysoul.dds"]=20, + ["Art/2DArt/SkillIcons/passives/deepwisdom.dds"]=254, + ["Art/2DArt/SkillIcons/passives/eagleeye.dds"]=211, + ["Art/2DArt/SkillIcons/passives/executioner.dds"]=225, + ["Art/2DArt/SkillIcons/passives/finesse.dds"]=48, + ["Art/2DArt/SkillIcons/passives/flameborn.dds"]=310, + ["Art/2DArt/SkillIcons/passives/frostborn.dds"]=138, + ["Art/2DArt/SkillIcons/passives/heroicspirit.dds"]=190, + ["Art/2DArt/SkillIcons/passives/legstrength.dds"]=44, + ["Art/2DArt/SkillIcons/passives/lifeleech.dds"]=11, + ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds"]=60, + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.dds"]=51, + ["Art/2DArt/SkillIcons/passives/steelspan.dds"]=14, + ["Art/2DArt/SkillIcons/passives/stormborn.dds"]=191, + ["Art/2DArt/SkillIcons/passives/strongarm.dds"]=320, + ["Art/2DArt/SkillIcons/passives/totemmax.dds"]=106, + ["Art/2DArt/SkillIcons/passives/vaalpact.dds"]=267 + }, + ["skills_172_172_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/MasteryBlank.dds"]=1 + }, + ["skills_176_176_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds"]=1 + }, + ["skills_64_64_BC1.dds.zst"]={ + ["Art/2DArt/SkillIcons/ExplosiveGrenade.dds"]=78, + ["Art/2DArt/SkillIcons/WitchBoneStorm.dds"]=12, + ["Art/2DArt/SkillIcons/icongroundslam.dds"]=24, + ["Art/2DArt/SkillIcons/passives/2handeddamage.dds"]=37, + ["Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds"]=86, + ["Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds"]=114, + ["Art/2DArt/SkillIcons/passives/ArchonGeneric.dds"]=144, + ["Art/2DArt/SkillIcons/passives/AreaDmgNode.dds"]=112, + ["Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds"]=73, + ["Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds"]=71, + ["Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds"]=164, + ["Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds"]=161, + ["Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds"]=137, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds"]=62, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds"]=65, + ["Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds"]=157, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds"]=128, + ["Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds"]=111, + ["Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds"]=17, + ["Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds"]=133, + ["Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds"]=81, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds"]=113, + ["Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds"]=121, + ["Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds"]=84, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds"]=20, + ["Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds"]=115, + ["Art/2DArt/SkillIcons/passives/BucklerNode1.dds"]=108, + ["Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds"]=35, + ["Art/2DArt/SkillIcons/passives/ChannellingDamage.dds"]=90, + ["Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds"]=9, + ["Art/2DArt/SkillIcons/passives/ChaosDamage.dds"]=134, + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds"]=66, + ["Art/2DArt/SkillIcons/passives/CharmNode1.dds"]=103, + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.dds"]=109, + ["Art/2DArt/SkillIcons/passives/ColdResistNode.dds"]=118, + ["Art/2DArt/SkillIcons/passives/CompanionsNode1.dds"]=149, + ["Art/2DArt/SkillIcons/passives/CorpseDamage.dds"]=101, + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.dds"]=116, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds"]=77, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds"]=57, + ["Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds"]=123, + ["Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds"]=120, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds"]=21, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds"]=124, + ["Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds"]=100, + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds"]=130, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds"]=89, + ["Art/2DArt/SkillIcons/passives/EvasionNode.dds"]=141, + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds"]=88, + ["Art/2DArt/SkillIcons/passives/FireDamagenode.dds"]=132, + ["Art/2DArt/SkillIcons/passives/FireResistNode.dds"]=150, + ["Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds"]=46, + ["Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds"]=39, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds"]=74, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds"]=110, + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds"]=119, + ["Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds"]=98, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds"]=42, + ["Art/2DArt/SkillIcons/passives/InstillationsNode1.dds"]=49, + ["Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds"]=53, + ["Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds"]=95, + ["Art/2DArt/SkillIcons/passives/Lich/LichNode.dds"]=96, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds"]=156, + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.dds"]=15, + ["Art/2DArt/SkillIcons/passives/LightningResistNode.dds"]=151, + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds"]=102, + ["Art/2DArt/SkillIcons/passives/MarkNode.dds"]=80, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.dds"]=14, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds"]=94, + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds"]=165, + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds"]=106, + ["Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds"]=70, + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds"]=117, + ["Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds"]=7, + ["Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds"]=44, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds"]=155, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds"]=19, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds"]=63, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds"]=26, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds"]=139, + ["Art/2DArt/SkillIcons/passives/Rage.dds"]=61, + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds"]=97, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds"]=1, + ["Art/2DArt/SkillIcons/passives/Remnant.dds"]=87, + ["Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds"]=10, + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds"]=58, + ["Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds"]=33, + ["Art/2DArt/SkillIcons/passives/SpearsNode1.dds"]=43, + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds"]=27, + ["Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds"]=91, + ["Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds"]=93, + ["Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds"]=67, + ["Art/2DArt/SkillIcons/passives/ThornsNode1.dds"]=105, + ["Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds"]=138, + ["Art/2DArt/SkillIcons/passives/WarCryEffect.dds"]=23, + ["Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds"]=148, + ["Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds"]=59, + ["Art/2DArt/SkillIcons/passives/accuracydex.dds"]=158, + ["Art/2DArt/SkillIcons/passives/accuracystr.dds"]=135, + ["Art/2DArt/SkillIcons/passives/areaofeffect.dds"]=64, + ["Art/2DArt/SkillIcons/passives/attackspeed.dds"]=38, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.dds"]=99, + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.dds"]=13, + ["Art/2DArt/SkillIcons/passives/auraeffect.dds"]=104, + ["Art/2DArt/SkillIcons/passives/avoidchilling.dds"]=136, + ["Art/2DArt/SkillIcons/passives/axedmgspeed.dds"]=125, + ["Art/2DArt/SkillIcons/passives/blankDex.dds"]=32, + ["Art/2DArt/SkillIcons/passives/blankInt.dds"]=34, + ["Art/2DArt/SkillIcons/passives/blankStr.dds"]=126, + ["Art/2DArt/SkillIcons/passives/blockstr.dds"]=160, + ["Art/2DArt/SkillIcons/passives/castspeed.dds"]=54, + ["Art/2DArt/SkillIcons/passives/chargedex.dds"]=140, + ["Art/2DArt/SkillIcons/passives/chargeint.dds"]=83, + ["Art/2DArt/SkillIcons/passives/chargestr.dds"]=69, + ["Art/2DArt/SkillIcons/passives/colddamage.dds"]=152, + ["Art/2DArt/SkillIcons/passives/coldresist.dds"]=143, + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.dds"]=50, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.dds"]=92, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds"]=72, + ["Art/2DArt/SkillIcons/passives/damage.dds"]=6, + ["Art/2DArt/SkillIcons/passives/damage_blue.dds"]=122, + ["Art/2DArt/SkillIcons/passives/damageaxe.dds"]=76, + ["Art/2DArt/SkillIcons/passives/damagedualwield.dds"]=56, + ["Art/2DArt/SkillIcons/passives/damagespells.dds"]=47, + ["Art/2DArt/SkillIcons/passives/damagestaff.dds"]=60, + ["Art/2DArt/SkillIcons/passives/damagesword.dds"]=131, + ["Art/2DArt/SkillIcons/passives/dmgreduction.dds"]=146, + ["Art/2DArt/SkillIcons/passives/elementaldamage.dds"]=163, + ["Art/2DArt/SkillIcons/passives/energyshield.dds"]=40, + ["Art/2DArt/SkillIcons/passives/evade.dds"]=127, + ["Art/2DArt/SkillIcons/passives/firedamage.dds"]=68, + ["Art/2DArt/SkillIcons/passives/firedamageint.dds"]=5, + ["Art/2DArt/SkillIcons/passives/firedamagestr.dds"]=153, + ["Art/2DArt/SkillIcons/passives/fireresist.dds"]=45, + ["Art/2DArt/SkillIcons/passives/flaskdex.dds"]=107, + ["Art/2DArt/SkillIcons/passives/flaskint.dds"]=145, + ["Art/2DArt/SkillIcons/passives/flaskstr.dds"]=36, + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds"]=129, + ["Art/2DArt/SkillIcons/passives/knockback.dds"]=142, + ["Art/2DArt/SkillIcons/passives/life1.dds"]=29, + ["Art/2DArt/SkillIcons/passives/lifepercentage.dds"]=82, + ["Art/2DArt/SkillIcons/passives/lightningint.dds"]=85, + ["Art/2DArt/SkillIcons/passives/lightningstr.dds"]=41, + ["Art/2DArt/SkillIcons/passives/macedmg.dds"]=162, + ["Art/2DArt/SkillIcons/passives/mana.dds"]=48, + ["Art/2DArt/SkillIcons/passives/manaregeneration.dds"]=28, + ["Art/2DArt/SkillIcons/passives/manastr.dds"]=52, + ["Art/2DArt/SkillIcons/passives/minionattackspeed.dds"]=154, + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.dds"]=159, + ["Art/2DArt/SkillIcons/passives/minionlife.dds"]=16, + ["Art/2DArt/SkillIcons/passives/minionstr.dds"]=51, + ["Art/2DArt/SkillIcons/passives/onehanddamage.dds"]=25, + ["Art/2DArt/SkillIcons/passives/plusattribute.dds"]=11, + ["Art/2DArt/SkillIcons/passives/plusdexterity.dds"]=3, + ["Art/2DArt/SkillIcons/passives/plusintelligence.dds"]=4, + ["Art/2DArt/SkillIcons/passives/plusstrength.dds"]=2, + ["Art/2DArt/SkillIcons/passives/projectilespeed.dds"]=147, + ["Art/2DArt/SkillIcons/passives/shieldblock.dds"]=18, + ["Art/2DArt/SkillIcons/passives/spellcritical.dds"]=79, + ["Art/2DArt/SkillIcons/passives/stun2h.dds"]=22, + ["Art/2DArt/SkillIcons/passives/stunstr.dds"]=30, + ["Art/2DArt/SkillIcons/passives/tempint.dds"]=8, + ["Art/2DArt/SkillIcons/passives/totemandbrandlife.dds"]=31, + ["Art/2DArt/SkillIcons/passives/trapdamage.dds"]=75, + ["Art/2DArt/SkillIcons/passives/trapsmax.dds"]=55 + } + }, + groups={ + [1]={ + nodes={ + [1]=42761 + }, + orbits={ + [1]=0 + }, + x=-15304.90389222, + y=-7077.31698124 + }, + [2]={ + nodes={ + [1]=25092 + }, + orbits={ + [1]=0 + }, + x=-14965.39389222, + y=-7075.62698124 + }, + [4]={ + nodes={ + [1]=11335 + }, + orbits={ + [1]=0 + }, + x=-14964.17389222, + y=-6594.24698124 + }, + [5]={ + nodes={ + [1]=22541 + }, + orbits={ + [1]=0 + }, + x=-16119.101927197, + y=4438.4370503224 + }, + [6]={ + nodes={ + [1]=5386 + }, + orbits={ + [1]=0 + }, + x=-16119.101927197, + y=4819.1370503224 + }, + [7]={ + nodes={ + [1]=15275 + }, + orbits={ + [1]=0 + }, + x=-14735.81389222, + y=-7075.62698124 + }, + [8]={ + nodes={ + [1]=21284 + }, + orbits={ + [1]=0 + }, + x=-14735.81389222, + y=-6824.05698124 + }, + [9]={ + nodes={ + [1]=57959 + }, + orbits={ + [1]=0 + }, + x=-15906.431927197, + y=4073.9070503224 + }, + [10]={ + nodes={ + [1]=14960 + }, + orbits={ + [1]=0 + }, + x=-15906.431927197, + y=4819.1370503224 + }, + [11]={ + nodes={ + [1]=5571 + }, + orbits={ + [1]=0 + }, + x=-14615.85389222, + y=-6148.10698124 + }, + [12]={ + nodes={ + [1]=34313 + }, + orbits={ + [1]=0 + }, + x=-14615.79389222, + y=-7507.15698124 + }, + [13]={ + nodes={ + [1]=56505 + }, + orbits={ + [1]=0 + }, + x=-14615.79389222, + y=-6937.15698124 + }, + [14]={ + nodes={ + [1]=39659 + }, + orbits={ + [1]=0 + }, + x=-14615.79389222, + y=-6709.09698124 + }, + [15]={ + nodes={ + [1]=60298 + }, + orbits={ + [1]=0 + }, + x=-15694.431927197, + y=4438.4370503224 + }, + [16]={ + nodes={ + [1]=47236 + }, + orbits={ + [1]=0 + }, + x=-15694.431927197, + y=4819.1370503224 + }, + [17]={ + nodes={ + [1]=47184 + }, + orbits={ + [1]=0 + }, + x=-15482.431927197, + y=4438.4370503224 + }, + [18]={ + nodes={ + [1]=20895 + }, + orbits={ + [1]=0 + }, + x=-15482.431927197, + y=4819.1370503224 + }, + [19]={ + nodes={ + [1]=64962 + }, + orbits={ + [1]=0 + }, + x=-15479.931927197, + y=5558.0570503224 + }, + [20]={ + nodes={ + [1]=110 + }, + orbits={ + [1]=0 + }, + x=-15422.891927197, + y=5717.9970503224 + }, + [21]={ + nodes={ + [1]=52374 + }, + orbits={ + [1]=0 + }, + x=-14144.72389222, + y=-7263.50698124 + }, + [22]={ + nodes={ + [1]=30904 + }, + orbits={ + [1]=0 + }, + x=-14144.72389222, + y=-6824.05698124 + }, + [23]={ + nodes={ + [1]=32905, + [2]=55135 + }, + orbits={ + [1]=6 + }, + x=-14123.92389222, + y=-6819.93698124 + }, + [24]={ + nodes={ + [1]=22908 + }, + orbits={ + [1]=0 + }, + x=-15325.041927197, + y=5867.8370503224 + }, + [25]={ + nodes={ + [1]=48537 + }, + orbits={ + [1]=0 + }, + x=-15270.431927197, + y=4438.4370503224 + }, + [26]={ + nodes={ + [1]=63401 + }, + orbits={ + [1]=0 + }, + x=-15270.391927197, + y=4073.9070503224 + }, + [27]={ + nodes={ + [1]=8525 + }, + orbits={ + [1]=0 + }, + x=-15190.211927197, + y=5992.6870503224 + }, + [28]={ + nodes={ + [1]=49380 + }, + orbits={ + [1]=0 + }, + x=-14606.81101513, + y=7334.015606703 + }, + [29]={ + nodes={ + [1]=58704 + }, + orbits={ + [1]=0 + }, + x=-14606.81101513, + y=7697.015606703 + }, + [30]={ + nodes={ + [1]=38769 + }, + orbits={ + [1]=0 + }, + x=-14606.81101513, + y=8060.015606703 + }, + [31]={ + nodes={ + [1]=36659 + }, + orbits={ + [1]=0 + }, + x=-14539.78101513, + y=7083.845606703 + }, + [32]={ + nodes={ + [1]=9997 + }, + orbits={ + [1]=0 + }, + x=-15031.611927197, + y=6079.3970503224 + }, + [33]={ + nodes={ + [1]=6127 + }, + orbits={ + [1]=0 + }, + x=-14450.05101513, + y=7505.725606703 + }, + [34]={ + nodes={ + [1]=18585 + }, + orbits={ + [1]=0 + }, + x=-14450.05101513, + y=7918.875606703 + }, + [35]={ + nodes={ + [1]=378 + }, + orbits={ + [1]=0 + }, + x=-13677.60389222, + y=-7508.15698124 + }, + [36]={ + nodes={ + [1]=4197 + }, + orbits={ + [1]=0 + }, + x=-13677.60389222, + y=-6937.15698124 + }, + [37]={ + nodes={ + [1]=37782 + }, + orbits={ + [1]=0 + }, + x=-13677.60389222, + y=-6709.11698124 + }, + [38]={ + nodes={ + [1]=47190 + }, + orbits={ + [1]=0 + }, + x=-13677.60389222, + y=-6148.10698124 + }, + [39]={ + nodes={ + [1]=13772 + }, + orbits={ + [1]=0 + }, + x=-14861.501927197, + y=6123.0170503224 + }, + [40]={ + nodes={ + [1]=40915 + }, + orbits={ + [1]=0 + }, + x=-14352.33101513, + y=7083.805606703 + }, + [41]={ + nodes={ + [1]=5852 + }, + orbits={ + [1]=9 + }, + x=-14787.651927197, + y=4798.3970503224 + }, + [42]={ + nodes={ + [1]=1994 + }, + orbits={ + [1]=0 + }, + x=-14285.47101513, + y=8597.995606703 + }, + [43]={ + nodes={ + [1]=48682 + }, + orbits={ + [1]=0 + }, + x=-14285.29101513, + y=7334.015606703 + }, + [44]={ + nodes={ + [1]=39411 + }, + orbits={ + [1]=0 + }, + x=-14285.29101513, + y=7697.015606703 + }, + [45]={ + nodes={ + [1]=25935 + }, + orbits={ + [1]=0 + }, + x=-14285.29101513, + y=8423.795606703 + }, + [46]={ + nodes={ + [1]=39365 + }, + orbits={ + [1]=0 + }, + x=-14284.67101513, + y=8060.015606703 + }, + [47]={ + nodes={ + [1]=9988 + }, + orbits={ + [1]=0 + }, + x=-14769.631927197, + y=5458.3970503224 + }, + [48]={ + nodes={ + [1]=25438 + }, + orbits={ + [1]=0 + }, + x=-14678.231927197, + y=6123.0170503224 + }, + [49]={ + nodes={ + [1]=49340 + }, + orbits={ + [1]=0 + }, + x=-14511.001927197, + y=6079.3970503224 + }, + [50]={ + nodes={ + [1]=35535 + }, + orbits={ + [1]=0 + }, + x=-13664.02358899, + y=-9880.4330959001 + }, + [51]={ + nodes={ + [1]=33812 + }, + orbits={ + [1]=6 + }, + x=-13880.21101513, + y=8004.295606703 + }, + [52]={ + nodes={ + [1]=60913 + }, + orbits={ + [1]=0 + }, + x=-14353.191927197, + y=5992.6870503224 + }, + [53]={ + nodes={ + [1]=47097 + }, + orbits={ + [1]=0 + }, + x=-13831.53101513, + y=8677.045606703 + }, + [54]={ + nodes={ + [1]=23005 + }, + orbits={ + [1]=0 + }, + x=-13827.72101513, + y=8346.605606703 + }, + [55]={ + nodes={ + [1]=61039 + }, + orbits={ + [1]=0 + }, + x=-14229.211927197, + y=5867.8370503224 + }, + [56]={ + nodes={ + [1]=20195 + }, + orbits={ + [1]=0 + }, + x=-14136.951927197, + y=5717.9970503224 + }, + [57]={ + nodes={ + [1]=16276 + }, + orbits={ + [1]=0 + }, + x=-14062.601927197, + y=5558.0570503224 + }, + [58]={ + nodes={ + [1]=16204 + }, + orbits={ + [1]=0 + }, + x=-13233.22358899, + y=-9717.0130959001 + }, + [59]={ + nodes={ + [1]=10072 + }, + orbits={ + [1]=0 + }, + x=-13456.74101513, + y=8286.915606703 + }, + [60]={ + nodes={ + [1]=52068 + }, + orbits={ + [1]=0 + }, + x=-13427.83101513, + y=8705.925606703 + }, + [62]={ + nodes={ + [1]=42253 + }, + orbits={ + [1]=0 + }, + x=-12936.00358899, + y=-9284.5530959001 + }, + [63]={ + nodes={ + [1]=33824 + }, + orbits={ + [1]=0 + }, + x=-12936.00358899, + y=-8851.5530959001 + }, + [64]={ + nodes={ + [1]=54512 + }, + orbits={ + [1]=0 + }, + x=-12658.85358899, + y=-8617.4730959001 + }, + [65]={ + nodes={ + [1]=58646, + [2]=28022, + [3]=61722, + [4]=1855 + }, + orbits={ + [1]=6, + [2]=8 + }, + x=-12394.22358899, + y=-9283.8730959001 + }, + [66]={ + nodes={ + [1]=35762 + }, + orbits={ + [1]=0 + }, + x=-11956.16358899, + y=-9717.0130959001 + }, + [67]={ + nodes={ + [1]=35920 + }, + orbits={ + [1]=0 + }, + x=-11956.16358899, + y=-9241.2030959001 + }, + [68]={ + nodes={ + [1]=56933 + }, + orbits={ + [1]=0 + }, + x=-11956.16358899, + y=-8744.5430959001 + }, + [69]={ + nodes={ + [1]=24807 + }, + orbits={ + [1]=0 + }, + x=-12395.901045607, + y=9837.0838448507 + }, + [70]={ + nodes={ + [1]=61983 + }, + orbits={ + [1]=0 + }, + x=-11751.52358899, + y=-9863.9930959001 + }, + [71]={ + nodes={ + [1]=46654 + }, + orbits={ + [1]=0 + }, + x=-11751.52358899, + y=-9304.3030959001 + }, + [72]={ + nodes={ + [1]=28745 + }, + orbits={ + [1]=0 + }, + x=-11486.44358899, + y=-10044.1730959 + }, + [73]={ + nodes={ + [1]=26063 + }, + orbits={ + [1]=0 + }, + x=-11483.26358899, + y=-9396.9630959001 + }, + [74]={ + nodes={ + [1]=62523 + }, + orbits={ + [1]=0 + }, + x=-11481.39358899, + y=-8744.5730959001 + }, + [75]={ + nodes={ + [1]=38014 + }, + orbits={ + [1]=0 + }, + x=-11998.951045607, + y=9614.1838448507 + }, + [76]={ + nodes={ + [1]=42275 + }, + orbits={ + [1]=0 + }, + x=-11821.031045607, + y=10122.973844851 + }, + [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, + [2]=5, + [3]=6, + [4]=7, + [5]=9 + }, + x=-11560.091045607, + y=10394.963844851 + }, + [78]={ + nodes={ + [1]=12000 + }, + orbits={ + [1]=0 + }, + x=-11494.591045607, + y=11397.883844851 + }, + [79]={ + nodes={ + [1]=59372 + }, + orbits={ + [1]=0 + }, + x=-11454.221045607, + y=10756.733844851 + }, + [80]={ + nodes={ + [1]=56842 + }, + orbits={ + [1]=0 + }, + x=-11100.601045607, + y=11172.483844851 + }, + [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, + [5]=5 + }, + x=-12135.66, + y=-1230.15 + }, + [87]={ + nodes={ + [1]=47753 + }, + orbits={ + [1]=0 + }, + x=-11896.79, + 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, + [3]=5, + [4]=6, + [5]=7 + }, + 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, + [4]=6, + [5]=7 + }, + x=-11664.2, + y=614.3 + }, + [90]={ + nodes={ + [1]=38320 + }, + orbits={ + [1]=0 + }, + x=-11504.95, + 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.71, + 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, + [3]=5 + }, + x=-11338.93, + y=-2050.8 + }, + [93]={ + nodes={ + [1]=65, + [2]=36504, + [3]=55260, + [4]=19751, + [5]=15698, + [6]=35618 + }, + orbits={ + [1]=7, + [2]=2 + }, + x=-11081.72, + y=-622.4 + }, + [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.17, + y=1430.79 + }, + [95]={ + nodes={ + [1]=55190 + }, + orbits={ + [1]=1 + }, + x=-10939.38, + y=88.39 + }, + [96]={ + nodes={ + [1]=41012 + }, + orbits={ + [1]=0 + }, + x=-10916.6, + y=-2156.56 + }, + [97]={ + nodes={ + [1]=24630 + }, + orbits={ + [1]=0 + }, + x=-10708.76, + y=2443.13 + }, + [98]={ + nodes={ + [1]=1200 + }, + orbits={ + [1]=4 + }, + x=-10682.77, + y=445.3 + }, + [99]={ + nodes={ + [1]=28982 + }, + orbits={ + [1]=0 + }, + x=-10667.72, + y=-1117.08 + }, + [100]={ + nodes={ + [1]=64489, + [2]=25162, + [3]=6952, + [4]=750 + }, + orbits={ + [1]=2 + }, + x=-10654.45, + y=2047.3 + }, + [101]={ + nodes={ + [1]=3348 + }, + orbits={ + [1]=0 + }, + x=-10649.96, + y=-3724.53 + }, + [102]={ + nodes={ + [1]=48314 + }, + orbits={ + [1]=0 + }, + x=-10649.96, + y=-3509.98 + }, + [103]={ + nodes={ + [1]=43941 + }, + orbits={ + [1]=0 + }, + x=-10648.12, + 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, + [4]=7 + }, + x=-10615.17, + y=3051.94 + }, + [105]={ + nodes={ + [1]=440 + }, + orbits={ + [1]=0 + }, + x=-10594.08, + 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, + [4]=7 + }, + x=-10593.41, + 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, + [3]=7 + }, + x=-10575.67, + y=-6386.37 + }, + [108]={ + nodes={ + [1]=8850 + }, + orbits={ + [1]=0 + }, + x=-10520.26, + y=-3933.98 + }, + [109]={ + nodes={ + [1]=61896 + }, + orbits={ + [1]=0 + }, + x=-10520.26, + 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.83, + y=-4121.17 + }, + [112]={ + nodes={ + [1]=50767, + [2]=20289 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-10439.87, + y=-3500.92 + }, + [113]={ + nodes={ + [1]=14432 + }, + orbits={ + [1]=0 + }, + x=-10437.87, + y=-4316.54 + }, + [114]={ + nodes={ + [1]=20989, + [2]=42984, + [3]=21184, + [4]=20251 + }, + orbits={ + [1]=1, + [2]=3, + [3]=7 + }, + x=-10401.12, + y=-377.96 + }, + [115]={ + nodes={ + [1]=41768 + }, + orbits={ + [1]=0 + }, + x=-10398.41, + y=-2166.4 + }, + [116]={ + nodes={ + [1]=55888 + }, + orbits={ + [1]=0 + }, + x=-10371.25, + y=-4590.02 + }, + [117]={ + 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, + [4]=7 + }, + x=-10371.18, + y=-5305.09 + }, + [118]={ + nodes={ + [1]=53354 + }, + orbits={ + [1]=0 + }, + x=-10368.75, + y=-3710.82 + }, + [119]={ + nodes={ + [1]=33408 + }, + orbits={ + [1]=0 + }, + x=-10368.59, + y=-3933.98 + }, + [120]={ + nodes={ + [1]=30141 + }, + orbits={ + [1]=0 + }, + x=-10364.84, + y=5.97 + }, + [121]={ + nodes={ + [1]=59785 + }, + orbits={ + [1]=0 + }, + x=-10358.72, + 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, + [4]=7 + }, + x=-10266.25, + y=5666.88 + }, + [123]={ + nodes={ + [1]=36250 + }, + orbits={ + [1]=0 + }, + x=-10252.92, + y=-3509.98 + }, + [124]={ + nodes={ + [1]=56368 + }, + orbits={ + [1]=0 + }, + x=-10251.16, + y=-3312.73 + }, + [125]={ + nodes={ + [1]=49214 + }, + orbits={ + [1]=0 + }, + x=-10248.76, + 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, + [3]=7 + }, + x=-10240.12, + y=4633.75 + }, + [127]={ + nodes={ + [1]=18684 + }, + orbits={ + [1]=0 + }, + x=-10198.25, + y=3732.13 + }, + [128]={ + nodes={ + [1]=18746 + }, + orbits={ + [1]=0 + }, + x=-10160.38, + y=-4757.69 + }, + [129]={ + nodes={ + [1]=51749 + }, + orbits={ + [1]=0 + }, + x=-10158.37, + y=296.7 + }, + [130]={ + nodes={ + [1]=29611 + }, + orbits={ + [1]=0 + }, + x=-10134.33, + y=-3151.93 + }, + [131]={ + nodes={ + [1]=33590 + }, + orbits={ + [1]=0 + }, + x=-10128.99, + y=5639.94 + }, + [132]={ + nodes={ + [1]=11656, + [2]=9106, + [3]=53822, + [4]=54937 + }, + orbits={ + [1]=1, + [2]=7 + }, + x=-10089.33, + y=1201.49 + }, + [133]={ + nodes={ + [1]=37484 + }, + orbits={ + [1]=0 + }, + x=-10073.8, + y=-2358.14 + }, + [134]={ + nodes={ + [1]=9352, + [2]=31295, + [3]=32071, + [4]=49111, + [5]=39190, + [6]=8800, + [7]=15427, + [8]=57379 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-10026.06, + y=-1117.08 + }, + [135]={ + nodes={ + [1]=27296 + }, + orbits={ + [1]=0 + }, + x=-10009.75, + y=3405.64 + }, + [136]={ + nodes={ + [1]=31554, + [2]=49929, + [3]=31757 + }, + orbits={ + [1]=6, + [2]=5 + }, + x=-9932.89, + y=-7295.29 + }, + [137]={ + nodes={ + [1]=51535, + [2]=18397, + [3]=55063, + [4]=8852, + [5]=4139 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-9927.8, + y=2362.11 + }, + [138]={ + nodes={ + [1]=9328 + }, + orbits={ + [1]=0 + }, + x=-9903.54, + y=-6537.44 + }, + [139]={ + nodes={ + [1]=58496 + }, + orbits={ + [1]=0 + }, + x=-9903.54, + y=-6355.19 + }, + [140]={ + nodes={ + [1]=39598, + [2]=3949, + [3]=28613, + [4]=15247, + [5]=46683 + }, + orbits={ + [1]=3, + [2]=2 + }, + x=-9851.18, + y=2995.92 + }, + [141]={ + nodes={ + [1]=1130, + [2]=50847, + [3]=33393, + [4]=42914 + }, + orbits={ + [1]=0, + [2]=4, + [3]=5, + [4]=7 + }, + x=-9825.21, + y=-3241.28 + }, + [142]={ + nodes={ + [1]=32474 + }, + orbits={ + [1]=0 + }, + x=-9791.13, + y=-4500.02 + }, + [143]={ + nodes={ + [1]=4442, + [2]=59886, + [3]=62313, + [4]=62034, + [5]=55931, + [6]=33939, + [7]=6872 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=5 + }, + x=-9765.33, + y=710.66 + }, + [144]={ + nodes={ + [1]=53123, + [2]=43250, + [3]=34818, + [4]=22697, + [5]=8421, + [6]=35404, + [7]=5862, + [8]=54982 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-9735.55, + y=-2055.78 + }, + [145]={ + nodes={ + [1]=14026 + }, + orbits={ + [1]=0 + }, + x=-9717.96, + y=-6634.67 + }, + [146]={ + nodes={ + [1]=37187 + }, + orbits={ + [1]=0 + }, + x=-9717.96, + y=-6452.32 + }, + [147]={ + 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, + [5]=5 + }, + x=-9716.02, + y=6484.44 + }, + [148]={ + nodes={ + [1]=59777 + }, + orbits={ + [1]=0 + }, + x=-9701.92, + y=4489.54 + }, + [149]={ + nodes={ + [1]=62670, + [2]=41497, + [3]=30554, + [4]=21164, + [5]=18245, + [6]=10055 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-9699.83, + y=-2798.91 + }, + [150]={ + nodes={ + [1]=917, + [2]=44069, + [3]=65160, + [4]=21670, + [5]=29358 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-9636.83, + y=3334.63 + }, + [151]={ + nodes={ + [1]=30553 + }, + orbits={ + [1]=0 + }, + x=-9621.33, + y=3036.16 + }, + [152]={ + nodes={ + [1]=30457, + [2]=13293, + [3]=54416, + [4]=19236, + [5]=60274 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-9598.42, + y=-542.54 + }, + [153]={ + nodes={ + [1]=18448 + }, + orbits={ + [1]=0 + }, + x=-9598.42, + y=4 + }, + [154]={ + nodes={ + [1]=19563, + [2]=34782, + [3]=34490, + [4]=18972 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-9524.42, + y=-6101.02 + }, + [155]={ + nodes={ + [1]=47931 + }, + orbits={ + [1]=0 + }, + x=-9524.42, + y=-5501.21 + }, + [156]={ + nodes={ + [1]=36100 + }, + orbits={ + [1]=0 + }, + x=-9522.16, + y=-6739.15 + }, + [157]={ + nodes={ + [1]=63085 + }, + orbits={ + [1]=0 + }, + x=-9522.16, + y=-6562.27 + }, + [158]={ + nodes={ + [1]=61942 + }, + orbits={ + [1]=0 + }, + x=-9449.45, + y=-4442.32 + }, + [159]={ + nodes={ + [1]=53719 + }, + orbits={ + [1]=0 + }, + x=-9427.5, + y=5442.15 + }, + [160]={ + nodes={ + [1]=10362, + [2]=10830, + [3]=9163, + [4]=59589, + [5]=44952, + [6]=6153, + [7]=52659 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=-9363.33, + y=4400.29 + }, + [161]={ + nodes={ + [1]=63678 + }, + orbits={ + [1]=0 + }, + x=-9318.59, + y=-6631.85 + }, + [162]={ + nodes={ + [1]=43460 + }, + orbits={ + [1]=0 + }, + x=-9318.59, + y=-6434.75 + }, + [163]={ + nodes={ + [1]=61847 + }, + orbits={ + [1]=0 + }, + x=-9265.01, + y=-2982.99 + }, + [164]={ + nodes={ + [1]=17587, + [2]=59039, + [3]=28223, + [4]=6100, + [5]=20963 + }, + orbits={ + [1]=1, + [2]=2, + [3]=4, + [4]=5, + [5]=7 + }, + x=-9247.14, + y=-875.71 + }, + [165]={ + 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 + }, + [166]={ + nodes={ + [1]=41935 + }, + orbits={ + [1]=0 + }, + x=-9155.13, + y=-6541.86 + }, + [167]={ + nodes={ + [1]=6735 + }, + orbits={ + [1]=0 + }, + x=-9155.13, + y=-6351.08 + }, + [168]={ + nodes={ + [1]=65154, + [2]=2575, + [3]=56757, + [4]=11292 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-9064.75, + y=362.33 + }, + [169]={ + nodes={ + [1]=49370, + [2]=32148, + [3]=8535, + [4]=43443 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-9058.33, + y=-2717.44 + }, + [170]={ + nodes={ + [1]=6502 + }, + orbits={ + [1]=0 + }, + x=-9056.17, + y=-2715.81 + }, + [171]={ + nodes={ + [1]=41747 + }, + orbits={ + [1]=0 + }, + x=-9050.55, + y=-3180.38 + }, + [172]={ + 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 + }, + [173]={ + nodes={ + [1]=33203, + [2]=55033, + [3]=17059, + [4]=6874, + [5]=34940 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=7 + }, + x=-8963.6, + y=-1538.12 + }, + [174]={ + 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, + [4]=5, + [5]=7 + }, + x=-8945, + y=1954.01 + }, + [175]={ + 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 + }, + [176]={ + 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, + [4]=7 + }, + x=-8776.24, + y=-545.92 + }, + [177]={ + nodes={ + [1]=61811, + [2]=44452, + [3]=21809, + [4]=19162, + [5]=34143, + [6]=36408, + [7]=15141 + }, + orbits={ + [1]=6, + [2]=5 + }, + x=-8734.51, + y=-7310.37 + }, + [178]={ + nodes={ + [1]=21387 + }, + orbits={ + [1]=0 + }, + x=-8724.91, + y=5036.5 + }, + [179]={ + nodes={ + [1]=51129, + [2]=26437, + [3]=15892 + }, + orbits={ + [1]=3, + [2]=7 + }, + x=-8699.47, + y=5504.76 + }, + [180]={ + nodes={ + [1]=52 + }, + orbits={ + [1]=0 + }, + x=-8682.17, + y=-4609.87 + }, + [181]={ + nodes={ + [1]=39131 + }, + orbits={ + [1]=0 + }, + x=-8680.79, + y=-5014.13 + }, + [182]={ + nodes={ + [1]=47606, + [2]=28981, + [3]=34871, + [4]=27980, + [5]=270, + [6]=56219, + [7]=52764 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=7 + }, + x=-8664.77, + y=-6794.46 + }, + [183]={ + nodes={ + [1]=33722 + }, + orbits={ + [1]=0 + }, + x=-8664.77, + y=-6378.53 + }, + [184]={ + 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 + }, + [185]={ + nodes={ + [1]=10100 + }, + orbits={ + [1]=0 + }, + x=-8622.21, + y=522.51 + }, + [186]={ + nodes={ + [1]=23307 + }, + orbits={ + [1]=0 + }, + x=-8621.47, + y=988.33 + }, + [187]={ + nodes={ + [1]=27082 + }, + orbits={ + [1]=0 + }, + x=-8618.25, + y=6301.67 + }, + [188]={ + nodes={ + [1]=63243, + [2]=48160, + [3]=13108, + [4]=49543, + [5]=37778, + [6]=24929 + }, + orbits={ + [1]=2, + [2]=3, + [3]=5 + }, + x=-8606.47, + y=-3419.53 + }, + [189]={ + nodes={ + [1]=61404, + [2]=38923, + [3]=44902, + [4]=61429, + [5]=511 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-8575.54, + y=-2302.44 + }, + [190]={ + 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 + }, + [191]={ + nodes={ + [1]=47263 + }, + orbits={ + [1]=0 + }, + x=-8484.8, + y=9.69 + }, + [192]={ + nodes={ + [1]=51210 + }, + orbits={ + [1]=0 + }, + x=-8483, + y=-2227.56 + }, + [193]={ + nodes={ + [1]=13482 + }, + orbits={ + [1]=0 + }, + x=-8394.02, + y=5599.53 + }, + [194]={ + nodes={ + [1]=22626, + [2]=45227, + [3]=30136 + }, + orbits={ + [1]=3, + [2]=7 + }, + x=-8335.67, + y=5293.13 + }, + [195]={ + nodes={ + [1]=42111, + [2]=48717 + }, + orbits={ + [1]=7, + [2]=3 + }, + x=-8316.62, + y=5282.9 + }, + [196]={ + nodes={ + [1]=25300 + }, + orbits={ + [1]=0 + }, + x=-8308.16, + y=504.36 + }, + [197]={ + nodes={ + [1]=55048 + }, + orbits={ + [1]=0 + }, + x=-8287.77, + y=-6378.53 + }, + [198]={ + 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, + [4]=7 + }, + x=-8253.67, + y=-5967.44 + }, + [199]={ + nodes={ + [1]=25315, + [2]=25591, + [3]=19820, + [4]=5686 + }, + orbits={ + [1]=2 + }, + x=-8242.08, + y=-2760.44 + }, + [200]={ + nodes={ + [1]=59945 + }, + orbits={ + [1]=0 + }, + x=-8233.08, + y=1737.23 + }, + [201]={ + 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, + [4]=5, + [5]=6, + [6]=7 + }, + x=-8221.2, + y=-7830.17 + }, + [202]={ + nodes={ + [1]=50392 + }, + orbits={ + [1]=0 + }, + x=-8217.79, + y=6324.33 + }, + [203]={ + nodes={ + [1]=32349 + }, + orbits={ + [1]=0 + }, + x=-8206.04, + y=7089.13 + }, + [204]={ + nodes={ + [1]=38365, + [2]=61142, + [3]=34626, + [4]=46499 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8204.79, + y=2567.51 + }, + [205]={ + nodes={ + [1]=61796, + [2]=38066, + [3]=8260, + [4]=10286 + }, + orbits={ + [1]=7 + }, + x=-8193.04, + y=453.74 + }, + [206]={ + nodes={ + [1]=31779, + [2]=20791, + [3]=13777, + [4]=38532 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8166.54, + y=-4543.78 + }, + [207]={ + nodes={ + [1]=38707 + }, + orbits={ + [1]=0 + }, + x=-8161.98, + y=-1195.09 + }, + [208]={ + nodes={ + [1]=24855, + [2]=17138, + [3]=53308, + [4]=51903, + [5]=39347, + [6]=48014, + [7]=55058, + [8]=63790 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=5 + }, + x=-8158.65, + y=3447.68 + }, + [209]={ + nodes={ + [1]=11741 + }, + orbits={ + [1]=3 + }, + x=-8149.73, + y=-4707.52 + }, + [210]={ + nodes={ + [1]=41821 + }, + orbits={ + [1]=0 + }, + x=-8141.21, + y=7641.73 + }, + [211]={ + nodes={ + [1]=24801, + [2]=34305, + [3]=40736, + [4]=8171, + [5]=45162, + [6]=63031, + [7]=15606, + [8]=31545 + }, + orbits={ + [1]=3, + [2]=4, + [3]=7 + }, + x=-8131.61, + y=7618.79 + }, + [212]={ + nodes={ + [1]=52220, + [2]=60064, + [3]=3027, + [4]=54228, + [5]=64240 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8115.09, + y=-155.26 + }, + [213]={ + nodes={ + [1]=61409, + [2]=24646 + }, + orbits={ + [1]=3, + [2]=7 + }, + x=-8111.51, + y=6128.94 + }, + [214]={ + 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 + }, + [215]={ + nodes={ + [1]=8272 + }, + orbits={ + [1]=0 + }, + x=-1028.4703459825, + y=15926.500291259 + }, + [216]={ + nodes={ + [1]=21453 + }, + orbits={ + [1]=0 + }, + x=-8091.65, + y=379.36 + }, + [217]={ + nodes={ + [1]=63114 + }, + orbits={ + [1]=3 + }, + x=-8046.92, + y=4659.56 + }, + [218]={ + nodes={ + [1]=13075 + }, + orbits={ + [1]=0 + }, + x=-8021.19, + y=6127.75 + }, + [219]={ + nodes={ + [1]=60916, + [2]=41701, + [3]=11027, + [4]=59433 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-8013.96, + y=-4798.6 + }, + [220]={ + nodes={ + [1]=4140 + }, + orbits={ + [1]=0 + }, + x=-8008.17, + y=-7035.15 + }, + [221]={ + nodes={ + [1]=54849, + [2]=3723, + [3]=16413, + [4]=17092, + [5]=10484, + [6]=42660 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7994.15, + y=-746.39 + }, + [222]={ + 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 + }, + [223]={ + nodes={ + [1]=35048, + [2]=26176, + [3]=43650, + [4]=21070, + [5]=57388, + [6]=53386, + [7]=9698 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=-7966.51, + y=4130.84 + }, + [224]={ + nodes={ + [1]=49734 + }, + orbits={ + [1]=0 + }, + x=-7956.51, + y=-1961.91 + }, + [225]={ + nodes={ + [1]=40105, + [2]=30258, + [3]=20558 + }, + orbits={ + [1]=2 + }, + x=-7930.61, + y=-2397.42 + }, + [226]={ + nodes={ + [1]=39102, + [2]=43486, + [3]=13228, + [4]=54289 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7915.44, + y=-3108.31 + }, + [227]={ + nodes={ + [1]=44017 + }, + orbits={ + [1]=0 + }, + x=-7860.53, + y=2931.66 + }, + [228]={ + 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, + [4]=6, + [5]=7 + }, + x=-7842.42, + y=-9697.42 + }, + [229]={ + nodes={ + [1]=3446 + }, + orbits={ + [1]=0 + }, + x=-7829.04, + y=7089.13 + }, + [230]={ + nodes={ + [1]=51737 + }, + orbits={ + [1]=0 + }, + x=-725.97034598253, + y=16707.190291259 + }, + [231]={ + nodes={ + [1]=4527 + }, + orbits={ + [1]=0 + }, + x=-7762.96, + y=2567.51 + }, + [232]={ + nodes={ + [1]=20115 + }, + orbits={ + [1]=0 + }, + x=-7745.48, + y=-2749.55 + }, + [233]={ + nodes={ + [1]=51812, + [2]=62757, + [3]=4673, + [4]=10047, + [5]=46741 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7735.13, + y=-1427.91 + }, + [234]={ + nodes={ + [1]=64807, + [2]=46674, + [3]=35921, + [4]=57405, + [5]=5642 + }, + orbits={ + [1]=2 + }, + x=-7728.69, + y=1935.05 + }, + [235]={ + nodes={ + [1]=58855 + }, + orbits={ + [1]=0 + }, + x=-7717.94, + y=1429.4 + }, + [236]={ + nodes={ + [1]=53527, + [2]=4985, + [3]=64525, + [4]=45327, + [5]=7204, + [6]=10251 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-7711.19, + y=1435.92 + }, + [237]={ + nodes={ + [1]=35369, + [2]=1459, + [3]=47252, + [4]=17282, + [5]=43579 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=-7642.03, + y=-4244.19 + }, + [238]={ + nodes={ + [1]=2946, + [2]=62518, + [3]=4547, + [4]=41414, + [5]=41363 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3, + [4]=4, + [5]=7 + }, + x=-7612.36, + y=8202.29 + }, + [239]={ + nodes={ + [1]=15913, + [2]=7542, + [3]=36737, + [4]=61362, + [5]=28516, + [6]=32599 + }, + orbits={ + [1]=2 + }, + x=-7585.53, + y=-2160.61 + }, + [240]={ + nodes={ + [1]=17646 + }, + orbits={ + [1]=0 + }, + x=-515.80034598253, + y=15646.330291259 + }, + [241]={ + nodes={ + [1]=51821 + }, + orbits={ + [1]=0 + }, + x=-7574.92, + y=-3386.05 + }, + [242]={ + nodes={ + [1]=31159, + [2]=54962, + [3]=35849, + [4]=46017, + [5]=12382 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=-7523.03, + y=-4513.11 + }, + [243]={ + nodes={ + [1]=29197, + [2]=23436, + [3]=26300, + [4]=11428 + }, + orbits={ + [1]=2, + [2]=4, + [3]=5, + [4]=7 + }, + x=-7495.63, + y=-5422.46 + }, + [244]={ + nodes={ + [1]=43653, + [2]=48171, + [3]=26518, + [4]=40803, + [5]=3218 + }, + orbits={ + [1]=4 + }, + x=-7479.31, + y=-755.12 + }, + [245]={ + 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, + [4]=5 + }, + x=-7472.17, + y=6094.06 + }, + [246]={ + nodes={ + [1]=9040 + }, + orbits={ + [1]=0 + }, + x=-7472.17, + y=6133.69 + }, + [247]={ + nodes={ + [1]=50616 + }, + orbits={ + [1]=0 + }, + x=-7470.27, + y=4966.83 + }, + [248]={ + nodes={ + [1]=46665 + }, + orbits={ + [1]=0 + }, + x=-7469.65, + y=409.35 + }, + [249]={ + nodes={ + [1]=18505, + [2]=18496, + [3]=18073, + [4]=36027, + [5]=49952, + [6]=45090, + [7]=13856 + }, + orbits={ + [1]=7 + }, + x=-7463.54, + y=4960.9 + }, + [250]={ + nodes={ + [1]=24339, + [2]=7060, + [3]=28214, + [4]=1973, + [5]=8607, + [6]=53131 + }, + orbits={ + [1]=7, + [2]=2 + }, + x=-7459.86, + y=371.68 + }, + [251]={ + nodes={ + [1]=39710 + }, + orbits={ + [1]=0 + }, + x=-7441.19, + y=-3885.12 + }, + [252]={ + nodes={ + [1]=52298 + }, + orbits={ + [1]=0 + }, + x=-7437.53, + y=3131.16 + }, + [253]={ + nodes={ + [1]=53216, + [2]=52126, + [3]=21885, + [4]=1352 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-7437.53, + y=3624.13 + }, + [254]={ + nodes={ + [1]=45202 + }, + orbits={ + [1]=0 + }, + x=-7414.29, + y=-8107.33 + }, + [255]={ + 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, + [4]=7 + }, + x=-7383.29, + y=-7035.15 + }, + [256]={ + nodes={ + [1]=58295 + }, + orbits={ + [1]=2 + }, + x=-7366.84, + y=84.99 + }, + [257]={ + 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, + [5]=7 + }, + x=-7350.17, + y=-6377.15 + }, + [258]={ + nodes={ + [1]=26196 + }, + orbits={ + [1]=0 + }, + x=-7344.38, + y=-4246.42 + }, + [259]={ + nodes={ + [1]=40117, + [2]=31848, + [3]=1286, + [4]=21089, + [5]=17903, + [6]=54701, + [7]=64023 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-7296.92, + y=2335.67 + }, + [260]={ + nodes={ + [1]=24430, + [2]=47191, + [3]=3601, + [4]=8554, + [5]=63037 + }, + orbits={ + [1]=4 + }, + x=-7251.15, + y=-371.11 + }, + [261]={ + nodes={ + [1]=50629 + }, + orbits={ + [1]=0 + }, + x=-7241.96, + y=-651.55 + }, + [262]={ + nodes={ + [1]=44298 + }, + orbits={ + [1]=0 + }, + x=-7240.77, + y=-656.16 + }, + [263]={ + nodes={ + [1]=17725, + [2]=24420, + [3]=33829, + [4]=18737, + [5]=9221, + [6]=9442, + [7]=37260, + [8]=30395 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=7 + }, + x=-7188.4, + y=-2426.53 + }, + [264]={ + nodes={ + [1]=45354, + [2]=64948, + [3]=48264, + [4]=12964 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7177.65, + y=-5009.06 + }, + [265]={ + nodes={ + [1]=12232, + [2]=36556, + [3]=872, + [4]=1502, + [5]=11087, + [6]=42635 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7167.85, + y=-3642.67 + }, + [266]={ + nodes={ + [1]=28774, + [2]=17505, + [3]=52106, + [4]=2999, + [5]=44005, + [6]=10295, + [7]=27733 + }, + orbits={ + [1]=4, + [2]=5, + [3]=6 + }, + x=-7140.48, + y=-10437.39 + }, + [267]={ + nodes={ + [1]=11048, + [2]=47420, + [3]=53444, + [4]=9065, + [5]=752, + [6]=64653, + [7]=52676 + }, + orbits={ + [1]=1, + [2]=2, + [3]=4, + [4]=7 + }, + x=-7123.17, + y=-8949.18 + }, + [268]={ + nodes={ + [1]=50062, + [2]=64357, + [3]=6416, + [4]=506, + [5]=46857, + [6]=59596, + [7]=42916, + [8]=11030, + [9]=37641 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-7080.06, + y=-3066.48 + }, + [269]={ + nodes={ + [1]=23930, + [2]=30662, + [3]=45383, + [4]=26291, + [5]=46024 + }, + orbits={ + [1]=4 + }, + x=-7073.34, + y=-821.9 + }, + [270]={ + nodes={ + [1]=59093 + }, + orbits={ + [1]=0 + }, + x=-7050.15, + y=-8009.76 + }, + [271]={ + nodes={ + [1]=61973, + [2]=38601, + [3]=43131, + [4]=40719, + [5]=61897, + [6]=34501, + [7]=7120 + }, + orbits={ + [1]=6, + [2]=5, + [3]=9, + [4]=8 + }, + x=22.379654017468, + y=15546.750291259 + }, + [272]={ + nodes={ + [1]=25172 + }, + orbits={ + [1]=0 + }, + x=22.379654017468, + y=16596.080291259 + }, + [273]={ + nodes={ + [1]=46535 + }, + orbits={ + [1]=0 + }, + x=26.729654017468, + y=15646.330291259 + }, + [274]={ + nodes={ + [1]=32559 + }, + orbits={ + [1]=0 + }, + x=26.729654017468, + y=15948.310291259 + }, + [275]={ + nodes={ + [1]=3704 + }, + orbits={ + [1]=0 + }, + x=26.729654017468, + y=16229.120291259 + }, + [276]={ + nodes={ + [1]=52993, + [2]=9414, + [3]=32768, + [4]=8107, + [5]=18081, + [6]=14980 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-7038.4, + y=-1699.91 + }, + [277]={ + nodes={ + [1]=25229, + [2]=7972, + [3]=21390, + [4]=5663 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-7025.42, + y=7409.4 + }, + [278]={ + nodes={ + [1]=62498 + }, + orbits={ + [1]=0 + }, + x=-7025.42, + y=7906.98 + }, + [279]={ + nodes={ + [1]=12255, + [2]=989, + [3]=26416, + [4]=27740, + [5]=35792 + }, + orbits={ + [1]=2 + }, + x=-7025.42, + y=8507.21 + }, + [280]={ + nodes={ + [1]=45632, + [2]=25503, + [3]=27068, + [4]=35831, + [5]=27388, + [6]=28578, + [7]=904, + [8]=24551 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-6938.5, + y=-5539.42 + }, + [281]={ + nodes={ + [1]=26725 + }, + orbits={ + [1]=0 + }, + x=-6934.34, + y=4002.72 + }, + [282]={ + nodes={ + [1]=31805, + [2]=44461, + [3]=54998, + [4]=29041, + [5]=31388, + [6]=51394, + [7]=29993 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=-6908.33, + y=2821.11 + }, + [283]={ + 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 + }, + [284]={ + nodes={ + [1]=21568 + }, + orbits={ + [1]=0 + }, + x=-6880.96, + y=-4712.38 + }, + [285]={ + 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 + }, + [286]={ + nodes={ + [1]=39621, + [2]=14176, + [3]=18004, + [4]=8881 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4 + }, + x=-6849.92, + y=3687.64 + }, + [287]={ + 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, + [5]=6, + [6]=7 + }, + x=-6849.4, + y=-7455.59 + }, + [288]={ + nodes={ + [1]=48935, + [2]=61367, + [3]=64239, + [4]=2733 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-6846.57, + y=-239.4 + }, + [289]={ + nodes={ + [1]=16249 + }, + orbits={ + [1]=0 + }, + x=2206.941488019, + y=15163.039415167 + }, + [290]={ + nodes={ + [1]=50757, + [2]=62303, + [3]=33045, + [4]=59938 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=-6813.53, + y=-3551.71 + }, + [291]={ + nodes={ + [1]=40511, + [2]=58368, + [3]=29985, + [4]=61113, + [5]=53910, + [6]=9212 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=-6753.23, + y=-6208.67 + }, + [292]={ + nodes={ + [1]=25031, + [2]=17999, + [3]=63979, + [4]=9750, + [5]=1169, + [6]=42026, + [7]=63813 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-6714.29, + y=9037.67 + }, + [293]={ + nodes={ + [1]=35966, + [2]=41105, + [3]=38368, + [4]=54288, + [5]=44316 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=-6674.42, + y=-4314.1 + }, + [294]={ + nodes={ + [1]=11464, + [2]=27405, + [3]=30781, + [4]=63772, + [5]=37888, + [6]=29663 + }, + orbits={ + [1]=2, + [2]=3, + [3]=5, + [4]=6, + [5]=7 + }, + x=-6663.73, + y=-1193.34 + }, + [295]={ + nodes={ + [1]=5800, + [2]=45075, + [3]=43149, + [4]=43507, + [5]=40292 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-6629.67, + y=5303.33 + }, + [296]={ + nodes={ + [1]=32560 + }, + orbits={ + [1]=0 + }, + x=2418.441488019, + y=15529.369415167 + }, + [297]={ + nodes={ + [1]=6935 + }, + orbits={ + [1]=0 + }, + x=560.54965401747, + y=15646.330291259 + }, + [298]={ + nodes={ + [1]=10371 + }, + orbits={ + [1]=0 + }, + x=2527.921488019, + y=15120.769415167 + }, + [299]={ + nodes={ + [1]=11248 + }, + orbits={ + [1]=0 + }, + x=-6473.32, + y=-5120.01 + }, + [300]={ + nodes={ + [1]=53921, + [2]=40596, + [3]=58838 + }, + orbits={ + [1]=5 + }, + x=-6456.61, + y=5137.09 + }, + [301]={ + nodes={ + [1]=22975 + }, + orbits={ + [1]=0 + }, + x=-6409.48, + y=4911.79 + }, + [302]={ + nodes={ + [1]=15044 + }, + orbits={ + [1]=0 + }, + x=2629.941488019, + y=15895.699415167 + }, + [303]={ + nodes={ + [1]=22270, + [2]=1144, + [3]=12471, + [4]=19942, + [5]=42070, + [6]=26148 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6401.88, + y=-5623.51 + }, + [304]={ + nodes={ + [1]=21861, + [2]=52807, + [3]=61836, + [4]=60551, + [5]=65243, + [6]=46421 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6391.25, + y=-308.27 + }, + [305]={ + nodes={ + [1]=43711, + [2]=5544, + [3]=14459 + }, + orbits={ + [1]=2 + }, + x=-6370.69, + y=420.58 + }, + [306]={ + nodes={ + [1]=38921, + [2]=49023, + [3]=49198, + [4]=12817, + [5]=22967 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=-6353.65, + y=4501.4 + }, + [307]={ + nodes={ + [1]=34187, + [2]=20848, + [3]=32239, + [4]=16721, + [5]=9009, + [6]=7128, + [7]=18270, + [8]=45874 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=5, + [5]=6, + [6]=7 + }, + x=-6348.3, + y=-6484.17 + }, + [308]={ + nodes={ + [1]=18678 + }, + orbits={ + [1]=0 + }, + x=2726.7151094136, + y=-16520.239541646 + }, + [309]={ + nodes={ + [1]=63002 + }, + orbits={ + [1]=0 + }, + x=2726.7151094136, + y=-14316.419541646 + }, + [310]={ + nodes={ + [1]=42845 + }, + orbits={ + [1]=0 + }, + x=2739.421488019, + y=15487.109415167 + }, + [311]={ + nodes={ + [1]=20830 + }, + orbits={ + [1]=0 + }, + x=799.83965401747, + y=16707.190291259 + }, + [312]={ + nodes={ + [1]=46380, + [2]=21327, + [3]=56876, + [4]=1104 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6253.23, + y=-4790.96 + }, + [313]={ + nodes={ + [1]=32777, + [2]=17625, + [3]=59710, + [4]=21567, + [5]=18822, + [6]=10873, + [7]=52618, + [8]=47790 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=-6239.27, + y=-3222.72 + }, + [314]={ + 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, + [4]=5, + [5]=7 + }, + x=-6210.4, + y=7289.19 + }, + [315]={ + nodes={ + [1]=51561 + }, + orbits={ + [1]=0 + }, + x=-6210.4, + y=8758.64 + }, + [316]={ + nodes={ + [1]=23382 + }, + orbits={ + [1]=0 + }, + x=-6208.88, + y=-8867.25 + }, + [317]={ + nodes={ + [1]=19674 + }, + orbits={ + [1]=3 + }, + x=-6203.21, + y=3942.14 + }, + [318]={ + nodes={ + [1]=10731 + }, + orbits={ + [1]=0 + }, + x=2828.6351094136, + y=-16082.639541646 + }, + [319]={ + nodes={ + [1]=27439 + }, + orbits={ + [1]=0 + }, + x=-6186.82, + y=5297.48 + }, + [320]={ + nodes={ + [1]=11786, + [2]=7716, + [3]=29447, + [4]=18157 + }, + orbits={ + [1]=2 + }, + x=-6167.94, + y=9255.09 + }, + [321]={ + nodes={ + [1]=29162 + }, + orbits={ + [1]=0 + }, + x=2869.651488019, + y=16135.409415167 + }, + [322]={ + nodes={ + [1]=8982, + [2]=58926, + [3]=64572, + [4]=14952, + [5]=21985, + [6]=48925, + [7]=54887 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=-6160.01, + y=-9509.97 + }, + [323]={ + nodes={ + [1]=3363, + [2]=38433, + [3]=4970, + [4]=23195, + [5]=55375, + [6]=62748 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-6116.54, + y=-6010.78 + }, + [324]={ + nodes={ + [1]=41493 + }, + orbits={ + [1]=0 + }, + x=-6116.29, + y=3951.76 + }, + [325]={ + nodes={ + [1]=41180, + [2]=6222, + [3]=17260, + [4]=61703, + [5]=9037, + [6]=57608, + [7]=32353, + [8]=65189 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-6051.67, + y=-646.18 + }, + [326]={ + nodes={ + [1]=29126, + [2]=28770, + [3]=479 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-6036.75, + y=-1514.07 + }, + [327]={ + nodes={ + [1]=21017, + [2]=26969, + [3]=16861, + [4]=55789, + [5]=41665, + [6]=27303, + [7]=50562, + [8]=43142 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=5, + [5]=7 + }, + x=-6026.21, + y=1197.89 + }, + [328]={ + nodes={ + [1]=14654 + }, + orbits={ + [1]=0 + }, + x=-6014.13, + y=4 + }, + [329]={ + nodes={ + [1]=54838 + }, + orbits={ + [1]=0 + }, + x=3024.181488019, + y=14820.959415167 + }, + [330]={ + nodes={ + [1]=4245 + }, + orbits={ + [1]=0 + }, + x=3024.181488019, + y=15243.969415167 + }, + [331]={ + nodes={ + [1]=44746 + }, + orbits={ + [1]=0 + }, + x=3024.181488019, + y=15666.969415167 + }, + [332]={ + nodes={ + [1]=26638 + }, + orbits={ + [1]=0 + }, + x=3040.6851094136, + y=-15421.219541646 + }, + [333]={ + 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 + }, + [334]={ + nodes={ + [1]=57703 + }, + orbits={ + [1]=0 + }, + x=-5982.73, + y=3453.31 + }, + [335]={ + nodes={ + [1]=37078 + }, + orbits={ + [1]=0 + }, + x=1106.1996540175, + y=15926.500291259 + }, + [336]={ + nodes={ + [1]=56342 + }, + orbits={ + [1]=0 + }, + x=-5952.13, + y=8688.45 + }, + [337]={ + nodes={ + [1]=7341 + }, + orbits={ + [1]=0 + }, + x=-5946.57, + y=8472.91 + }, + [338]={ + nodes={ + [1]=49938 + }, + orbits={ + [1]=0 + }, + x=-5945.28, + y=-3432.51 + }, + [339]={ + nodes={ + [1]=25890, + [2]=26863, + [3]=54378, + [4]=58198 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5938.61, + y=-8581.7 + }, + [340]={ + nodes={ + [1]=46522 + }, + orbits={ + [1]=0 + }, + x=3111.921488019, + y=15994.419415167 + }, + [341]={ + nodes={ + [1]=50253 + }, + orbits={ + [1]=0 + }, + x=-5918.9, + y=4065.73 + }, + [342]={ + nodes={ + [1]=58747 + }, + orbits={ + [1]=0 + }, + x=3107.3351094136, + y=-14316.419541646 + }, + [343]={ + 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 + }, + [344]={ + 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, + [4]=5, + [5]=7 + }, + x=-5885.4, + y=-2365.38 + }, + [345]={ + nodes={ + [1]=44872 + }, + orbits={ + [1]=0 + }, + x=-5846.29, + y=-5740.53 + }, + [346]={ + nodes={ + [1]=51795, + [2]=32271, + [3]=54311, + [4]=28482, + [5]=53632, + [6]=19846 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-5794.96, + y=-3968.54 + }, + [347]={ + nodes={ + [1]=42035, + [2]=28153, + [3]=50219, + [4]=54194 + }, + orbits={ + [1]=2 + }, + x=3230.2751094136, + y=-16146.949541646 + }, + [348]={ + nodes={ + [1]=22147 + }, + orbits={ + [1]=9 + }, + x=3230.2751094136, + y=-15207.249541646 + }, + [349]={ + nodes={ + [1]=36252 + }, + orbits={ + [1]=6 + }, + x=3252.201488019, + y=15678.949415167 + }, + [350]={ + nodes={ + [1]=57776, + [2]=60013, + [3]=10208, + [4]=21935, + [5]=33914, + [6]=18240, + [7]=21415, + [8]=22909, + [9]=61493 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-5744.12, + y=-6744.4 + }, + [351]={ + nodes={ + [1]=43128 + }, + orbits={ + [1]=4 + }, + x=3294.0451094136, + y=-16066.949541646 + }, + [352]={ + nodes={ + [1]=8600 + }, + orbits={ + [1]=0 + }, + x=-5721.96, + y=6102.63 + }, + [353]={ + nodes={ + [1]=32952 + }, + orbits={ + [1]=0 + }, + x=-4412.0930451617, + y=15102.650574792 + }, + [354]={ + nodes={ + [1]=61471, + [2]=61977, + [3]=15580, + [4]=49153 + }, + orbits={ + [1]=4 + }, + x=-5699.67, + y=-4002.92 + }, + [355]={ + nodes={ + [1]=62015, + [2]=7668, + [3]=21982, + [4]=47371 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5694.65, + y=5052.28 + }, + [356]={ + nodes={ + [1]=64870, + [2]=34090, + [3]=14655, + [4]=372, + [5]=54340 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-5677.8, + y=5511.25 + }, + [357]={ + nodes={ + [1]=3605 + }, + orbits={ + [1]=0 + }, + x=3370.1251094136, + y=-14316.019541646 + }, + [358]={ + nodes={ + [1]=54892 + }, + orbits={ + [1]=0 + }, + x=3392.521488019, + y=15994.249415167 + }, + [359]={ + nodes={ + [1]=10987 + }, + orbits={ + [1]=0 + }, + x=3402.6551094136, + y=-15421.219541646 + }, + [360]={ + nodes={ + [1]=37397 + }, + orbits={ + [1]=0 + }, + x=-4302.9730451617, + y=14913.650574792 + }, + [361]={ + nodes={ + [1]=60287 + }, + orbits={ + [1]=0 + }, + x=-4302.9730451617, + y=15039.650574792 + }, + [362]={ + nodes={ + [1]=7960 + }, + orbits={ + [1]=1 + }, + x=-5597.85, + y=-9484.56 + }, + [363]={ + 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, + [5]=6, + [6]=7 + }, + x=-5585.44, + y=-521.46 + }, + [364]={ + nodes={ + [1]=33244, + [2]=52373, + [3]=16347, + [4]=52556, + [5]=37276 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5585.08, + y=8844.88 + }, + [365]={ + nodes={ + [1]=32637 + }, + orbits={ + [1]=0 + }, + x=3480.491488019, + y=14819.939415167 + }, + [366]={ + nodes={ + [1]=30151 + }, + orbits={ + [1]=0 + }, + x=3480.491488019, + y=15242.949415167 + }, + [367]={ + nodes={ + [1]=44371 + }, + orbits={ + [1]=0 + }, + x=3480.491488019, + y=15665.949415167 + }, + [368]={ + nodes={ + [1]=20303, + [2]=9908 + }, + orbits={ + [1]=2 + }, + x=-5535.94, + y=811.34 + }, + [369]={ + nodes={ + [1]=16311, + [2]=32600, + [3]=6304, + [4]=12125 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5532.01, + y=426.08 + }, + [370]={ + nodes={ + [1]=20350, + [2]=47006, + [3]=43174, + [4]=4948, + [5]=62785, + [6]=28542 + }, + orbits={ + [1]=1, + [2]=3, + [3]=7 + }, + x=-5498.11, + y=8167.23 + }, + [371]={ + nodes={ + [1]=63259 + }, + orbits={ + [1]=0 + }, + x=-4193.8630451617, + y=15102.650574792 + }, + [372]={ + nodes={ + [1]=55582 + }, + orbits={ + [1]=0 + }, + x=-4167.0930451617, + y=15546.760574792 + }, + [373]={ + nodes={ + [1]=25482, + [2]=51702, + [3]=54485, + [4]=60620, + [5]=61472 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-5457.8, + y=4362.34 + }, + [374]={ + nodes={ + [1]=64995, + [2]=51867, + [3]=17924 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=-5440.73, + y=6837.73 + }, + [375]={ + nodes={ + [1]=27990 + }, + orbits={ + [1]=0 + }, + x=3593.6051094136, + y=-16317.889541646 + }, + [376]={ + nodes={ + [1]=761, + [2]=22133, + [3]=39857, + [4]=4663 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-5431.35, + y=-1790.04 + }, + [377]={ + nodes={ + [1]=2491 + }, + orbits={ + [1]=1 + }, + x=-5399.53, + y=9533.46 + }, + [378]={ + nodes={ + [1]=762 + }, + orbits={ + [1]=0 + }, + x=3635.451488019, + y=16134.699415167 + }, + [379]={ + nodes={ + [1]=49049 + }, + orbits={ + [1]=0 + }, + x=3627.9251094136, + y=-16082.639541646 + }, + [380]={ + 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=-5386.44, + y=-5437.75 + }, + [381]={ + nodes={ + [1]=14429 + }, + orbits={ + [1]=0 + }, + x=-4082.4230451617, + y=14628.030574792 + }, + [382]={ + nodes={ + [1]=8629 + }, + orbits={ + [1]=0 + }, + x=-5326.03, + y=2555.07 + }, + [383]={ + nodes={ + [1]=20015, + [2]=14777, + [3]=49136, + [4]=9604, + [5]=37226, + [6]=4015, + [7]=47429, + [8]=9187, + [9]=59466 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=6, + [5]=7 + }, + x=-5323.67, + y=7500.44 + }, + [384]={ + nodes={ + [1]=16084 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=2655.72 + }, + [385]={ + nodes={ + [1]=13474 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=2829.25 + }, + [386]={ + nodes={ + [1]=10602, + [2]=24871, + [3]=57552, + [4]=46696 + }, + orbits={ + [1]=4 + }, + x=-5314.13, + y=2922.83 + }, + [387]={ + nodes={ + [1]=54811 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=3067.3 + }, + [388]={ + nodes={ + [1]=34210 + }, + orbits={ + [1]=0 + }, + x=-5314.13, + y=3397.64 + }, + [389]={ + nodes={ + [1]=25934, + [2]=6923, + [3]=1087, + [4]=64939, + [5]=30123, + [6]=26092, + [7]=52392 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=-5314.13, + y=3520.75 + }, + [390]={ + nodes={ + [1]=20499, + [2]=34327, + [3]=32078, + [4]=16940, + [5]=25446, + [6]=2336, + [7]=63402, + [8]=29881 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=7 + }, + x=-5305.62, + y=-3550.7 + }, + [391]={ + nodes={ + [1]=1579 + }, + orbits={ + [1]=0 + }, + x=3733.2751094136, + y=-16527.249541646 + }, + [392]={ + nodes={ + [1]=32856 + }, + orbits={ + [1]=0 + }, + x=3733.2751094136, + y=-14316.019541646 + }, + [393]={ + nodes={ + [1]=12054 + }, + orbits={ + [1]=0 + }, + x=3775.731488019, + y=16377.669415167 + }, + [394]={ + nodes={ + [1]=45248 + }, + orbits={ + [1]=0 + }, + x=-3946.5530451617, + y=15135.140574792 + }, + [395]={ + nodes={ + [1]=44406, + [2]=63451, + [3]=57846 + }, + orbits={ + [1]=6 + }, + x=-5197.82, + y=6507.02 + }, + [396]={ + nodes={ + [1]=63470, + [2]=50302, + [3]=16090 + }, + orbits={ + [1]=3 + }, + x=-5165.01, + y=833.39 + }, + [397]={ + nodes={ + [1]=61490 + }, + orbits={ + [1]=0 + }, + x=-5159.25, + y=6455.65 + }, + [398]={ + nodes={ + [1]=28304 + }, + orbits={ + [1]=0 + }, + x=-5153.8, + y=8943.84 + }, + [399]={ + nodes={ + [1]=8693, + [2]=35393, + [3]=23708, + [4]=3896, + [5]=56320 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-5140.8, + y=745.04 + }, + [400]={ + nodes={ + [1]=11641 + }, + orbits={ + [1]=0 + }, + x=-3810.6630451617, + y=15642.260574792 + }, + [401]={ + nodes={ + [1]=56703, + [2]=28839, + [3]=56762, + [4]=20032, + [5]=28680 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5107.55, + y=-6981.78 + }, + [402]={ + nodes={ + [1]=1988 + }, + orbits={ + [1]=0 + }, + x=3929.031488019, + y=15965.199415167 + }, + [403]={ + nodes={ + [1]=28002 + }, + orbits={ + [1]=0 + }, + x=-5095.02, + y=-2941.61 + }, + [404]={ + nodes={ + [1]=2955, + [2]=28800, + [3]=55308, + [4]=38313, + [5]=30701 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-5085.88, + y=-2565.83 + }, + [405]={ + nodes={ + [1]=51183, + [2]=10635, + [3]=45301, + [4]=31724, + [5]=2074 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-5081.34, + y=-791.76 + }, + [406]={ + nodes={ + [1]=35408, + [2]=36474, + [3]=38596, + [4]=24767, + [5]=31925 + }, + orbits={ + [1]=2, + [2]=4, + [3]=7 + }, + x=-5073.9, + y=-9428.05 + }, + [407]={ + nodes={ + [1]=64042, + [2]=55422, + [3]=34415, + [4]=48387, + [5]=54640, + [6]=27900, + [7]=62376 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=5, + [5]=7 + }, + x=-5064.25, + y=-4700.96 + }, + [408]={ + nodes={ + [1]=18441, + [2]=34181, + [3]=45422 + }, + orbits={ + [1]=7 + }, + x=-5039.48, + y=-3334.46 + }, + [409]={ + nodes={ + [1]=51369, + [2]=56061, + [3]=6544, + [4]=45503, + [5]=37746, + [6]=42604 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=-5034.82, + y=1520.57 + }, + [410]={ + nodes={ + [1]=34412, + [2]=25915, + [3]=8916, + [4]=20547, + [5]=33340, + [6]=51267, + [7]=11886 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-5003.08, + y=-1341.35 + }, + [411]={ + nodes={ + [1]=45918 + }, + orbits={ + [1]=0 + }, + x=-4999.75, + y=-8120.71 + }, + [412]={ + nodes={ + [1]=49547 + }, + orbits={ + [1]=0 + }, + x=-4997.46, + y=-3305.76 + }, + [413]={ + nodes={ + [1]=10305, + [2]=45586, + [3]=35011, + [4]=14761, + [5]=53187, + [6]=45215 + }, + orbits={ + [1]=2 + }, + x=-4989.69, + y=6154.73 + }, + [414]={ + nodes={ + [1]=57775 + }, + orbits={ + [1]=0 + }, + x=-4987.35, + y=6165.44 + }, + [415]={ + nodes={ + [1]=34882 + }, + orbits={ + [1]=0 + }, + x=-3674.7830451617, + y=16149.370574792 + }, + [416]={ + nodes={ + [1]=46628 + }, + orbits={ + [1]=4 + }, + x=-4966.28, + y=-5972.03 + }, + [417]={ + nodes={ + [1]=37523 + }, + orbits={ + [1]=0 + }, + x=4069.301488019, + y=16208.169415167 + }, + [418]={ + nodes={ + [1]=48552 + }, + orbits={ + [1]=0 + }, + x=-4902.61, + y=-8434.54 + }, + [419]={ + nodes={ + [1]=36880, + [2]=15628, + [3]=27626, + [4]=2244, + [5]=54067, + [6]=43036 + }, + orbits={ + [1]=4, + [2]=5, + [3]=7 + }, + x=-4890.11, + y=-8497.87 + }, + [420]={ + nodes={ + [1]=10452, + [2]=1878, + [3]=44213, + [4]=14328, + [5]=869, + [6]=18959, + [7]=55843 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-4876.25, + y=-7652.71 + }, + [421]={ + nodes={ + [1]=34990, + [2]=25337, + [3]=50184, + [4]=46069, + [5]=6088, + [6]=54380 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-4860.65, + y=-5812 + }, + [422]={ + nodes={ + [1]=47316, + [2]=2888, + [3]=21716, + [4]=8827, + [5]=16691, + [6]=9583, + [7]=28862 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=-4814.59, + y=10580.08 + }, + [423]={ + nodes={ + [1]=37258 + }, + orbits={ + [1]=0 + }, + x=-4805.94, + y=8363.52 + }, + [424]={ + nodes={ + [1]=59367, + [2]=10774, + [3]=26568, + [4]=51732, + [5]=35863 + }, + orbits={ + [1]=2 + }, + x=-4801.92, + y=7834.96 + }, + [425]={ + nodes={ + [1]=23062, + [2]=19122, + [3]=28432, + [4]=20416 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4747.08, + y=-251.96 + }, + [426]={ + nodes={ + [1]=24696 + }, + orbits={ + [1]=0 + }, + x=4295.151488019, + y=15983.139415167 + }, + [427]={ + nodes={ + [1]=38965, + [2]=11284, + [3]=24764, + [4]=12324, + [5]=30985, + [6]=31697, + [7]=51303 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-4715.21, + y=-10129.75 + }, + [428]={ + nodes={ + [1]=56595, + [2]=23861, + [3]=54886, + [4]=56997, + [5]=64312 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=-4713.07, + y=5643.94 + }, + [429]={ + nodes={ + [1]=15782 + }, + orbits={ + [1]=0 + }, + x=-4694.67, + y=-6892.17 + }, + [430]={ + nodes={ + [1]=54814, + [2]=59498, + [3]=53675, + [4]=16114 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4694.67, + y=-6482.36 + }, + [431]={ + nodes={ + [1]=31419, + [2]=35787, + [3]=42813, + [4]=55491 + }, + orbits={ + [1]=1, + [2]=7 + }, + x=-4660.69, + y=223.67 + }, + [432]={ + nodes={ + [1]=31238 + }, + orbits={ + [1]=0 + }, + x=-4643.88, + y=-7996.23 + }, + [433]={ + nodes={ + [1]=2653, + [2]=19203, + [3]=10260, + [4]=30896, + [5]=49172, + [6]=33730, + [7]=60809 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-4628.58, + y=-3070.51 + }, + [434]={ + nodes={ + [1]=65226 + }, + orbits={ + [1]=0 + }, + x=-4621.23, + y=-10104.85 + }, + [435]={ + nodes={ + [1]=38876 + }, + orbits={ + [1]=0 + }, + x=-4606.4, + y=6774.82 + }, + [436]={ + nodes={ + [1]=292 + }, + orbits={ + [1]=0 + }, + x=-4582.26, + y=-8704.8 + }, + [437]={ + nodes={ + [1]=5681 + }, + orbits={ + [1]=0 + }, + x=-4573.05, + y=9245.21 + }, + [438]={ + nodes={ + [1]=4086 + }, + orbits={ + [1]=0 + }, + x=4459.721488019, + y=15683.469415167 + }, + [439]={ + 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 + }, + [440]={ + nodes={ + [1]=23825, + [2]=11572, + [3]=24325, + [4]=32923, + [5]=58215, + [6]=40006, + [7]=9896 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=7 + }, + x=-4568.4, + y=-8712.09 + }, + [441]={ + nodes={ + [1]=39083 + }, + orbits={ + [1]=0 + }, + x=-4542.4, + y=925.6 + }, + [442]={ + nodes={ + [1]=33978, + [2]=30390, + [3]=31609, + [4]=36163, + [5]=62581 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-4507.44, + y=2159.3 + }, + [443]={ + nodes={ + [1]=55536 + }, + orbits={ + [1]=9 + }, + x=-3208.3430451617, + y=15211.520574792 + }, + [444]={ + 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 + }, + [445]={ + nodes={ + [1]=14540 + }, + orbits={ + [1]=0 + }, + x=-4431.15, + y=7184.65 + }, + [446]={ + nodes={ + [1]=7878, + [2]=48745, + [3]=53901, + [4]=34375, + [5]=45612 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-4431.08, + y=-684.43 + }, + [447]={ + nodes={ + [1]=9417 + }, + orbits={ + [1]=0 + }, + x=-4427.82, + y=4646.67 + }, + [448]={ + 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 + }, + [449]={ + nodes={ + [1]=7642, + [2]=6356, + [3]=71, + [4]=32859, + [5]=12189, + [6]=56547, + [7]=15114 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=5, + [5]=7 + }, + x=-4418.06, + y=-4540.25 + }, + [450]={ + nodes={ + [1]=13171 + }, + orbits={ + [1]=0 + }, + x=-4346.51, + y=4339.79 + }, + [451]={ + nodes={ + [1]=9638 + }, + orbits={ + [1]=0 + }, + x=-4339.42, + y=843.27 + }, + [452]={ + 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 + }, + [453]={ + nodes={ + [1]=41657, + [2]=21286, + [3]=45992, + [4]=17029 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-4335.51, + y=3380.39 + }, + [454]={ + nodes={ + [1]=26798 + }, + orbits={ + [1]=0 + }, + x=-4335.1, + y=619.91 + }, + [455]={ + nodes={ + [1]=51052, + [2]=22616, + [3]=17468, + [4]=53405, + [5]=22558 + }, + orbits={ + [1]=6 + }, + x=-4308.23, + y=0.53 + }, + [456]={ + nodes={ + [1]=59006 + }, + orbits={ + [1]=0 + }, + x=-4296.44, + y=407.49 + }, + [457]={ + nodes={ + [1]=48631 + }, + orbits={ + [1]=0 + }, + x=-4289.92, + y=0.53 + }, + [458]={ + nodes={ + [1]=14294, + [2]=48530, + [3]=4623, + [4]=39130, + [5]=48524 + }, + orbits={ + [1]=2 + }, + x=-4288.8, + y=-6798.65 + }, + [459]={ + nodes={ + [1]=43818 + }, + orbits={ + [1]=0 + }, + x=-4285.55, + y=-6819.23 + }, + [460]={ + 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, + [6]=5, + [7]=7 + }, + x=-4283.82, + y=-11016.96 + }, + [461]={ + 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 + }, + [462]={ + nodes={ + [1]=28175 + }, + orbits={ + [1]=0 + }, + x=-4254.59, + y=10064.45 + }, + [463]={ + nodes={ + [1]=17745 + }, + orbits={ + [1]=0 + }, + x=-4238.73, + y=4457.57 + }, + [464]={ + nodes={ + [1]=62378, + [2]=47633, + [3]=57002, + [4]=48761 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4230.17, + y=-789.73 + }, + [465]={ + nodes={ + [1]=16725 + }, + orbits={ + [1]=0 + }, + x=-4227.25, + y=2439.49 + }, + [466]={ + nodes={ + [1]=4681, + [2]=25058, + [3]=48828, + [4]=26228 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4208.73, + y=-7738.4 + }, + [467]={ + nodes={ + [1]=50104 + }, + orbits={ + [1]=0 + }, + x=-4185.36, + y=-10001.8 + }, + [468]={ + nodes={ + [1]=47212, + [2]=17417, + [3]=43843, + [4]=3652, + [5]=56714, + [6]=27999, + [7]=45777 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3, + [5]=5 + }, + x=-4166, + y=10952.54 + }, + [469]={ + nodes={ + [1]=56605 + }, + orbits={ + [1]=0 + }, + x=-4163.59, + y=6722.67 + }, + [470]={ + nodes={ + [1]=18146 + }, + orbits={ + [1]=0 + }, + x=-2863.1830451617, + y=15383.910574792 + }, + [471]={ + nodes={ + [1]=48121 + }, + orbits={ + [1]=0 + }, + x=-4120.96, + y=4565.35 + }, + [472]={ + nodes={ + [1]=4931, + [2]=42825, + [3]=21404, + [4]=27674, + [5]=44082, + [6]=27307 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4117.42, + y=-8135.44 + }, + [473]={ + nodes={ + [1]=32745 + }, + orbits={ + [1]=0 + }, + x=-4116.33, + y=-9838.01 + }, + [474]={ + nodes={ + [1]=24438 + }, + orbits={ + [1]=0 + }, + x=-4114.17, + y=4317.84 + }, + [475]={ + nodes={ + [1]=40276 + }, + orbits={ + [1]=0 + }, + x=-4113.12, + y=-9545.42 + }, + [476]={ + nodes={ + [1]=60241 + }, + orbits={ + [1]=0 + }, + x=-4113.12, + y=-9254.29 + }, + [477]={ + 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, + [5]=7 + }, + x=-4109.59, + y=-3555.51 + }, + [478]={ + nodes={ + [1]=17762, + [2]=2964, + [3]=18374, + [4]=28476 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-4107.23, + y=6275.65 + }, + [479]={ + nodes={ + [1]=46742 + }, + orbits={ + [1]=0 + }, + x=-4102.54, + y=-10310.91 + }, + [480]={ + nodes={ + [1]=95 + }, + orbits={ + [1]=0 + }, + x=-4084.76, + y=-7312.1 + }, + [481]={ + nodes={ + [1]=26895 + }, + orbits={ + [1]=0 + }, + x=-4082.88, + y=287.24 + }, + [482]={ + 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 + }, + [483]={ + nodes={ + [1]=26490, + [2]=12751, + [3]=6229, + [4]=13356, + [5]=18489 + }, + orbits={ + [1]=7, + [2]=2 + }, + x=-4066.8, + y=8524.92 + }, + [484]={ + nodes={ + [1]=31903 + }, + orbits={ + [1]=0 + }, + x=-4066.02, + y=7086.81 + }, + [485]={ + nodes={ + [1]=3084 + }, + orbits={ + [1]=0 + }, + x=-2738.2930451617, + y=16153.010574792 + }, + [486]={ + nodes={ + [1]=32278, + [2]=58183 + }, + orbits={ + [1]=2, + [2]=7 + }, + x=-4030.62, + y=-9550.54 + }, + [487]={ + 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, + [3]=5, + [4]=6, + [5]=7, + [6]=8 + }, + x=-4027.59, + y=5238.17 + }, + [488]={ + nodes={ + [1]=57819 + }, + orbits={ + [1]=0 + }, + x=-2727.0430451617, + y=14875.830574792 + }, + [489]={ + nodes={ + [1]=46748 + }, + orbits={ + [1]=0 + }, + x=-3995.5, + y=4196.65 + }, + [490]={ + nodes={ + [1]=61179 + }, + orbits={ + [1]=0 + }, + x=-3955.44, + y=-9600.64 + }, + [491]={ + 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=-3944.14, + y=9526.74 + }, + [492]={ + nodes={ + [1]=259 + }, + orbits={ + [1]=0 + }, + x=-3931.69, + y=7603.71 + }, + [493]={ + nodes={ + [1]=38010, + [2]=13352, + [3]=59180, + [4]=54923, + [5]=27638, + [6]=50023, + [7]=13524, + [8]=4921 + }, + orbits={ + [1]=4, + [2]=7 + }, + x=-3931.58, + y=7588.67 + }, + [494]={ + nodes={ + [1]=37956 + }, + orbits={ + [1]=0 + }, + x=-3921.6, + y=394.73 + }, + [495]={ + nodes={ + [1]=35645 + }, + orbits={ + [1]=0 + }, + x=-3915.69, + y=-7172.57 + }, + [496]={ + nodes={ + [1]=1928 + }, + orbits={ + [1]=0 + }, + x=-3908.2, + y=-7290.56 + }, + [497]={ + nodes={ + [1]=5284 + }, + orbits={ + [1]=0 + }, + x=-3905.87, + y=-9191.64 + }, + [498]={ + nodes={ + [1]=30996 + }, + orbits={ + [1]=0 + }, + x=-2602.1530451617, + y=15644.940574792 + }, + [499]={ + nodes={ + [1]=35581 + }, + orbits={ + [1]=0 + }, + x=-3872.48, + y=156.68 + }, + [500]={ + nodes={ + [1]=51485, + [2]=41338, + [3]=31673, + [4]=48649 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3861.26, + y=-1010.61 + }, + [501]={ + nodes={ + [1]=32847 + }, + orbits={ + [1]=0 + }, + x=-3856.25, + y=-7033.48 + }, + [502]={ + 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={ + [1]=6, + [2]=5, + [3]=9, + [4]=8 + }, + x=9.0949470177293e-13, + y=-15546.765136719 + }, + [503]={ + nodes={ + [1]=21245 + }, + orbits={ + [1]=0 + }, + x=-3804.23, + y=-9338.75 + }, + [504]={ + nodes={ + [1]=57178 + }, + orbits={ + [1]=0 + }, + x=-3804.23, + y=-8886.17 + }, + [505]={ + nodes={ + [1]=1442 + }, + orbits={ + [1]=0 + }, + x=-2502.4330451617, + y=16388.870574792 + }, + [506]={ + nodes={ + [1]=53762 + }, + orbits={ + [1]=0 + }, + x=-2466.0130451617, + y=15136.860574792 + }, + [507]={ + nodes={ + [1]=45962, + [2]=48589, + [3]=7922, + [4]=7183, + [5]=15617 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-3759.41, + y=5937.79 + }, + [508]={ + nodes={ + [1]=56284 + }, + orbits={ + [1]=0 + }, + x=-3754.39, + y=-7303 + }, + [509]={ + nodes={ + [1]=9226, + [2]=13500, + [3]=47591, + [4]=41044 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=-3746.22, + y=-5464.19 + }, + [510]={ + nodes={ + [1]=46565 + }, + orbits={ + [1]=0 + }, + x=-3736.26, + y=12649.72 + }, + [511]={ + nodes={ + [1]=34487, + [2]=4882, + [3]=60568, + [4]=38172, + [5]=51206, + [6]=49642, + [7]=52348 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-3727.22, + y=3905.64 + }, + [512]={ + 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, + [4]=5 + }, + x=-3724.22, + y=1390.39 + }, + [513]={ + nodes={ + [1]=27290 + }, + orbits={ + [1]=0 + }, + x=-3711.3, + y=11983.92 + }, + [514]={ + nodes={ + [1]=6077 + }, + orbits={ + [1]=0 + }, + x=-3709.27, + y=-7173.96 + }, + [515]={ + nodes={ + [1]=8248, + [2]=48079, + [3]=60014, + [4]=38474 + }, + orbits={ + [1]=7, + [2]=2 + }, + x=-3702.66, + y=-823.68 + }, + [516]={ + nodes={ + [1]=8737 + }, + orbits={ + [1]=0 + }, + x=-3697.15, + y=-7461.02 + }, + [517]={ + nodes={ + [1]=53108 + }, + orbits={ + [1]=0 + }, + x=-2366.0430451617, + y=15879.830574792 + }, + [518]={ + nodes={ + [1]=35265 + }, + orbits={ + [1]=0 + }, + x=-3657.51, + y=6318.1 + }, + [519]={ + nodes={ + [1]=36728 + }, + orbits={ + [1]=0 + }, + x=-2329.8730451617, + y=14628.780574792 + }, + [520]={ + nodes={ + [1]=25927 + }, + orbits={ + [1]=0 + }, + x=-3622.31, + y=-7106.13 + }, + [521]={ + 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, + [5]=7 + }, + x=-3604.52, + y=-11358.09 + }, + [522]={ + nodes={ + [1]=62122, + [2]=6748, + [3]=37327, + [4]=34248, + [5]=48618, + [6]=4295 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=-3593.46, + y=-8544.35 + }, + [523]={ + nodes={ + [1]=34840 + }, + orbits={ + [1]=0 + }, + x=-3593.46, + y=-7995.13 + }, + [524]={ + nodes={ + [1]=33601, + [2]=5692, + [3]=35708, + [4]=41154, + [5]=2863 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3556.93, + y=-337.58 + }, + [525]={ + nodes={ + [1]=23364, + [2]=33781, + [3]=65493, + [4]=43854, + [5]=48614, + [6]=9018, + [7]=35918 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=-3555.35, + y=-3914.61 + }, + [526]={ + nodes={ + [1]=52038 + }, + orbits={ + [1]=0 + }, + x=-3550.74, + y=-3918.97 + }, + [527]={ + nodes={ + [1]=36822 + }, + orbits={ + [1]=0 + }, + x=-2229.6330451617, + y=15370.790574792 + }, + [528]={ + nodes={ + [1]=2511, + [2]=19802, + [3]=64399 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-3517.31, + y=5116.13 + }, + [529]={ + nodes={ + [1]=2071, + [2]=37543, + [3]=38420, + [4]=16647 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3516.49, + y=-3235.91 + }, + [530]={ + nodes={ + [1]=33397, + [2]=51248, + [3]=53294, + [4]=38292, + [5]=39594 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3498.41, + y=321.55 + }, + [531]={ + nodes={ + [1]=44733 + }, + orbits={ + [1]=2 + }, + x=-3497.77, + y=-6221.4 + }, + [532]={ + nodes={ + [1]=49363 + }, + orbits={ + [1]=0 + }, + x=-3496.22, + y=-6579.23 + }, + [533]={ + nodes={ + [1]=49550, + [2]=61935, + [3]=55746, + [4]=4624 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-3484.73, + y=4125.9 + }, + [534]={ + nodes={ + [1]=43842, + [2]=5695, + [3]=32309, + [4]=59070, + [5]=28092, + [6]=17061, + [7]=31773, + [8]=55011 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=-3480.21, + y=-9844.83 + }, + [535]={ + nodes={ + [1]=26697 + }, + orbits={ + [1]=0 + }, + x=-3462.24, + y=12165.79 + }, + [536]={ + nodes={ + [1]=41511 + }, + orbits={ + [1]=0 + }, + x=-3445.11, + y=-7610.06 + }, + [537]={ + nodes={ + [1]=62661 + }, + orbits={ + [1]=0 + }, + x=-3443.04, + y=-4769.59 + }, + [538]={ + nodes={ + [1]=1433 + }, + orbits={ + [1]=6 + }, + x=-3428.17, + y=-7186.71 + }, + [539]={ + nodes={ + [1]=35284, + [2]=3921, + [3]=38398, + [4]=31898, + [5]=7473, + [6]=2211, + [7]=8154 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-3422.22, + y=11010.67 + }, + [540]={ + nodes={ + [1]=12786 + }, + orbits={ + [1]=0 + }, + x=-3421.76, + y=-1975.64 + }, + [541]={ + nodes={ + [1]=15374, + [2]=48035, + [3]=54676, + [4]=39759, + [5]=11329 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3410.15, + y=7031.06 + }, + [542]={ + nodes={ + [1]=52746, + [2]=9796, + [3]=62310, + [4]=54148, + [5]=36325, + [6]=56934 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=-3408.23, + y=9916.18 + }, + [543]={ + nodes={ + [1]=58591 + }, + orbits={ + [1]=0 + }, + x=-2093.2330451617, + y=14861.740574792 + }, + [544]={ + nodes={ + [1]=37612 + }, + orbits={ + [1]=0 + }, + x=-3366.12, + y=7490.9 + }, + [545]={ + 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 + }, + [546]={ + nodes={ + [1]=37963, + [2]=15855, + [3]=59263, + [4]=61441, + [5]=54138 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=5, + [5]=6 + }, + x=-3314.67, + y=11934.56 + }, + [547]={ + nodes={ + [1]=64223 + }, + orbits={ + [1]=0 + }, + x=5660.4216959661, + y=-14377.641217109 + }, + [548]={ + nodes={ + [1]=9762, + [2]=10783, + [3]=38564, + [4]=20091 + }, + orbits={ + [1]=2, + [2]=3, + [3]=5, + [4]=6 + }, + x=-3296.49, + y=11927.97 + }, + [549]={ + nodes={ + [1]=51299 + }, + orbits={ + [1]=2 + }, + x=-3292.33, + y=5858.65 + }, + [550]={ + nodes={ + [1]=46060, + [2]=29788, + [3]=44419, + [4]=7251, + [5]=29270, + [6]=7488 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-3285.98, + y=4891.42 + }, + [551]={ + 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, + [4]=6 + }, + x=-3281.46, + y=-1894.64 + }, + [552]={ + nodes={ + [1]=25011, + [2]=60404, + [3]=20691, + [4]=41739 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3244.97, + y=8358.66 + }, + [553]={ + nodes={ + [1]=60191, + [2]=54985, + [3]=14602, + [4]=42737 + }, + orbits={ + [1]=7 + }, + x=-3244.55, + y=7079.31 + }, + [554]={ + nodes={ + [1]=47168 + }, + orbits={ + [1]=0 + }, + x=-3225.69, + y=-10395.75 + }, + [555]={ + nodes={ + [1]=38235, + [2]=34671, + [3]=61934, + [4]=24477, + [5]=17532, + [6]=48418 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3224.09, + y=7913.29 + }, + [556]={ + nodes={ + [1]=57373 + }, + orbits={ + [1]=0 + }, + x=-3215.37, + y=-6401.48 + }, + [557]={ + nodes={ + [1]=25303 + }, + orbits={ + [1]=0 + }, + x=-3196.2, + y=-8995.5 + }, + [558]={ + nodes={ + [1]=39935 + }, + orbits={ + [1]=0 + }, + x=-3184.23, + y=-9385.96 + }, + [559]={ + nodes={ + [1]=38323 + }, + orbits={ + [1]=0 + }, + x=-3154.84, + y=556.13 + }, + [560]={ + nodes={ + [1]=48305 + }, + orbits={ + [1]=0 + }, + x=-3144.84, + y=-551.55 + }, + [561]={ + nodes={ + [1]=4956 + }, + orbits={ + [1]=0 + }, + x=-3121.95, + y=-1268.74 + }, + [562]={ + nodes={ + [1]=35560 + }, + orbits={ + [1]=0 + }, + x=-3116.51, + y=-7680.34 + }, + [563]={ + nodes={ + [1]=22045, + [2]=63209, + [3]=30704, + [4]=13505 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-3115.35, + y=-1267.96 + }, + [564]={ + nodes={ + [1]=30979 + }, + orbits={ + [1]=0 + }, + x=-3109.62, + y=-5381.56 + }, + [565]={ + nodes={ + [1]=30265 + }, + orbits={ + [1]=0 + }, + x=5882.2416959661, + y=-15234.651217109 + }, + [566]={ + nodes={ + [1]=4407 + }, + orbits={ + [1]=0 + }, + x=-3069.12, + y=-8364.27 + }, + [567]={ + 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, + [4]=5 + }, + x=-3067.29, + y=2529.2 + }, + [568]={ + nodes={ + [1]=43366 + }, + orbits={ + [1]=0 + }, + x=-3061.21, + y=-8608.16 + }, + [569]={ + nodes={ + [1]=15194 + }, + orbits={ + [1]=0 + }, + x=-3049.19, + y=-8762.37 + }, + [570]={ + nodes={ + [1]=34747, + [2]=24753, + [3]=56567, + [4]=151, + [5]=6274 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-3044.02, + y=6253.4 + }, + [571]={ + nodes={ + [1]=33618, + [2]=12610, + [3]=4873, + [4]=12683, + [5]=61974, + [6]=39990, + [7]=20718, + [8]=13294 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-2999.63, + y=-5834.98 + }, + [572]={ + nodes={ + [1]=43895, + [2]=13562 + }, + orbits={ + [1]=7 + }, + x=-2998.56, + y=4483.94 + }, + [573]={ + nodes={ + [1]=23650, + [2]=56616, + [3]=41415 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2977.66, + y=4483.94 + }, + [574]={ + nodes={ + [1]=30219, + [2]=45177, + [3]=39732 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-2974.98, + y=3611.49 + }, + [575]={ + nodes={ + [1]=29148 + }, + orbits={ + [1]=0 + }, + x=-2904.82, + y=-7995.13 + }, + [576]={ + nodes={ + [1]=38300 + }, + orbits={ + [1]=0 + }, + x=-2893.96, + y=-6643.12 + }, + [577]={ + nodes={ + [1]=17517, + [2]=13233, + [3]=19873 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-2880.6, + y=-1668.56 + }, + [578]={ + nodes={ + [1]=44344 + }, + orbits={ + [1]=0 + }, + x=-2864.23, + y=-9385.96 + }, + [579]={ + nodes={ + [1]=27726, + [2]=32416, + [3]=6529 + }, + orbits={ + [1]=2 + }, + x=-2851.04, + y=1645.22 + }, + [580]={ + nodes={ + [1]=8406, + [2]=6015, + [3]=35426 + }, + orbits={ + [1]=6, + [2]=3 + }, + x=-2849.6, + y=0.53 + }, + [581]={ + nodes={ + [1]=2606, + [2]=21606, + [3]=20388 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=-2824.48, + y=-8749.27 + }, + [582]={ + nodes={ + [1]=64471 + }, + orbits={ + [1]=4 + }, + x=-2808.97, + y=10498.42 + }, + [583]={ + nodes={ + [1]=45824 + }, + orbits={ + [1]=0 + }, + x=-2787.46, + y=11060.96 + }, + [584]={ + nodes={ + [1]=6898 + }, + orbits={ + [1]=0 + }, + x=-2774.37, + y=-1070.72 + }, + [585]={ + 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, + [4]=7 + }, + x=-2756.41, + y=10024.89 + }, + [586]={ + 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 + }, + [587]={ + nodes={ + [1]=14575 + }, + orbits={ + [1]=0 + }, + x=-2730.42, + y=-9028.75 + }, + [588]={ + nodes={ + [1]=41147, + [2]=23797, + [3]=31370, + [4]=32448 + }, + orbits={ + [1]=2 + }, + x=-2702.07, + y=8329.01 + }, + [589]={ + nodes={ + [1]=56090, + [2]=59136, + [3]=17729, + [4]=56466 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=-2701.66, + y=-4273.5 + }, + [590]={ + 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 + }, + [591]={ + 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, + [3]=7 + }, + x=-2697.32, + y=-10245.46 + }, + [592]={ + nodes={ + [1]=63469, + [2]=57967, + [3]=50216, + [4]=30834 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2656.19, + y=-2063.25 + }, + [593]={ + 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, + [4]=5, + [5]=6, + [6]=7, + [7]=9, + [8]=8 + }, + x=6319.3716959661, + y=-14679.541217109 + }, + [594]={ + nodes={ + [1]=5101, + [2]=64690, + [3]=35558, + [4]=46726 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=-2648.97, + y=-4970.63 + }, + [595]={ + nodes={ + [1]=3414 + }, + orbits={ + [1]=0 + }, + x=-2625.49, + y=-8808.47 + }, + [596]={ + nodes={ + [1]=23227, + [2]=39564, + [3]=3516 + }, + orbits={ + [1]=4, + [2]=7 + }, + x=-2620.07, + y=7375.23 + }, + [597]={ + nodes={ + [1]=38663, + [2]=49618, + [3]=62039 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-2620.07, + y=7379.36 + }, + [598]={ + nodes={ + [1]=55348 + }, + orbits={ + [1]=0 + }, + x=-2620.07, + y=7389.42 + }, + [599]={ + nodes={ + [1]=13279 + }, + orbits={ + [1]=0 + }, + x=-2620.07, + y=7921.63 + }, + [600]={ + nodes={ + [1]=47284 + }, + orbits={ + [1]=0 + }, + x=-2588.8, + y=-8604.12 + }, + [601]={ + nodes={ + [1]=1865, + [2]=54934, + [3]=15494, + [4]=43584 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2568.32, + y=3948.16 + }, + [602]={ + nodes={ + [1]=8493 + }, + orbits={ + [1]=0 + }, + x=-2554.96, + y=10828.42 + }, + [603]={ + nodes={ + [1]=42177, + [2]=5049, + [3]=43183, + [4]=11153, + [5]=49231 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-2553.76, + y=5504.65 + }, + [604]={ + nodes={ + [1]=41838, + [2]=38103, + [3]=25429, + [4]=34084 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-2541.03, + y=-1462.22 + }, + [605]={ + nodes={ + [1]=3332 + }, + orbits={ + [1]=0 + }, + x=-2530.04, + y=-8376.52 + }, + [606]={ + nodes={ + [1]=53396, + [2]=64370, + [3]=45923, + [4]=52319 + }, + orbits={ + [1]=6 + }, + x=-2522.24, + y=-1450.05 + }, + [607]={ + nodes={ + [1]=51921 + }, + orbits={ + [1]=6 + }, + x=-2502.19, + y=3479.47 + }, + [608]={ + nodes={ + [1]=5920, + [2]=52574, + [3]=55478, + [4]=48006, + [5]=33604 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-2481, + y=3401.68 + }, + [609]={ + nodes={ + [1]=32523 + }, + orbits={ + [1]=0 + }, + x=-2460.75, + y=-3489.54 + }, + [610]={ + 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, + [4]=5, + [5]=7 + }, + x=-2457.53, + y=-3479.87 + }, + [611]={ + nodes={ + [1]=35745, + [2]=12601, + [3]=483, + [4]=50908 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2431.32, + y=-2692.66 + }, + [612]={ + nodes={ + [1]=27992 + }, + orbits={ + [1]=0 + }, + x=-2415.33, + y=11530.75 + }, + [613]={ + nodes={ + [1]=23373, + [2]=23428, + [3]=47623, + [4]=53895, + [5]=17026, + [6]=17303, + [7]=38570 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=-2399.07, + y=11558.76 + }, + [614]={ + 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, + [3]=7 + }, + x=-2393.09, + y=1033.71 + }, + [615]={ + nodes={ + [1]=61042 + }, + orbits={ + [1]=0 + }, + x=-2364.29, + y=-8977.68 + }, + [616]={ + nodes={ + [1]=11679 + }, + orbits={ + [1]=0 + }, + x=-2364.29, + y=-7995.11 + }, + [617]={ + nodes={ + [1]=54453, + [2]=19006, + [3]=39461, + [4]=229, + [5]=46365 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2362.28, + y=-9378.04 + }, + [618]={ + nodes={ + [1]=38856 + }, + orbits={ + [1]=6 + }, + x=-2351.05, + y=-3487.38 + }, + [619]={ + nodes={ + [1]=28950 + }, + orbits={ + [1]=0 + }, + x=-2308.21, + y=-1862.64 + }, + [620]={ + nodes={ + [1]=46358, + [2]=50423, + [3]=59376 + }, + orbits={ + [1]=6 + }, + x=-2291.85, + y=-4007.49 + }, + [621]={ + nodes={ + [1]=39207, + [2]=33518, + [3]=37519, + [4]=17045, + [5]=32564, + [6]=63579, + [7]=55131 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=-2289.79, + y=8432.25 + }, + [622]={ + nodes={ + [1]=19240 + }, + orbits={ + [1]=0 + }, + x=-2241.38, + y=-4242.75 + }, + [623]={ + nodes={ + [1]=13241 + }, + orbits={ + [1]=6 + }, + x=-2221.54, + y=3539.9 + }, + [624]={ + nodes={ + [1]=56783 + }, + orbits={ + [1]=0 + }, + x=6756.5616959661, + y=-15234.651217109 + }, + [625]={ + nodes={ + [1]=53589 + }, + orbits={ + [1]=0 + }, + x=-2199.44, + y=3805.96 + }, + [626]={ + nodes={ + [1]=17584, + [2]=28446, + [3]=12430, + [4]=61067, + [5]=1143, + [6]=58170 + }, + orbits={ + [1]=2 + }, + x=-2188.85, + y=-968.66 + }, + [627]={ + nodes={ + [1]=28718 + }, + orbits={ + [1]=0 + }, + x=-2187.5, + y=-962.97 + }, + [628]={ + nodes={ + [1]=54521 + }, + orbits={ + [1]=0 + }, + x=-2171.82, + y=-10395.75 + }, + [629]={ + nodes={ + [1]=48670 + }, + orbits={ + [1]=6 + }, + x=-2134.26, + y=3688.8 + }, + [630]={ + nodes={ + [1]=6714, + [2]=5066, + [3]=51788, + [4]=42583, + [5]=10499 + }, + orbits={ + [1]=2 + }, + x=-2097.34, + y=4206.32 + }, + [631]={ + nodes={ + [1]=1913, + [2]=4665, + [3]=61534, + [4]=7721, + [5]=64683, + [6]=41031, + [7]=23570, + [8]=36709, + [9]=63393 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=-2092.78, + y=1554.69 + }, + [632]={ + nodes={ + [1]=10772, + [2]=21468, + [3]=2119, + [4]=39274, + [5]=53505 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=-2087.68, + y=7594.08 + }, + [633]={ + nodes={ + [1]=38430 + }, + orbits={ + [1]=0 + }, + x=-2087.37, + y=4208.07 + }, + [634]={ + nodes={ + [1]=2864 + }, + orbits={ + [1]=0 + }, + x=-2086.96, + y=8229.42 + }, + [635]={ + nodes={ + [1]=48581, + [2]=15969, + [3]=41129, + [4]=24338, + [5]=15838, + [6]=33242, + [7]=13387 + }, + orbits={ + [1]=3, + [2]=4, + [3]=5, + [4]=6 + }, + x=-2076.24, + y=-4701.25 + }, + [636]={ + nodes={ + [1]=1543, + [2]=14096, + [3]=44293 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=-2074.7, + y=-4534.37 + }, + [637]={ + nodes={ + [1]=54232 + }, + orbits={ + [1]=0 + }, + x=-2059.23, + y=2453.77 + }, + [638]={ + nodes={ + [1]=44372, + [2]=25829, + [3]=57791, + [4]=52229 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=-2012.26, + y=-7643.07 + }, + [639]={ + nodes={ + [1]=41646 + }, + orbits={ + [1]=0 + }, + x=-2012.03, + y=4519.75 + }, + [640]={ + 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, + [5]=7 + }, + x=-2012.03, + y=4750.59 + }, + [641]={ + nodes={ + [1]=58674, + [2]=17867, + [3]=37092, + [4]=55817 + }, + orbits={ + [1]=7 + }, + x=-1966.11, + y=4165.53 + }, + [642]={ + nodes={ + [1]=2397, + [2]=54437, + [3]=16111, + [4]=5324, + [5]=46268 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-1955.87, + y=11130.6 + }, + [643]={ + nodes={ + [1]=43791, + [2]=53320, + [3]=16385, + [4]=41651, + [5]=5098 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-1945.48, + y=5858.53 + }, + [644]={ + 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, + [4]=7 + }, + x=-1940.55, + y=-8386.27 + }, + [645]={ + nodes={ + [1]=50626, + [2]=32597, + [3]=12777, + [4]=3918, + [5]=54708, + [6]=59695 + }, + orbits={ + [1]=2 + }, + x=-1927.77, + y=-1422.19 + }, + [646]={ + nodes={ + [1]=44948 + }, + orbits={ + [1]=0 + }, + x=-1923.59, + y=-1417.27 + }, + [647]={ + 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, + [3]=7 + }, + x=-1909.32, + y=-6475.67 + }, + [648]={ + nodes={ + [1]=3041, + [2]=47555, + [3]=53697, + [4]=10156, + [5]=59795 + }, + orbits={ + [1]=3, + [2]=5, + [3]=6 + }, + x=-1892.34, + y=-3294.04 + }, + [649]={ + 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 + }, + [650]={ + nodes={ + [1]=3685, + [2]=55700, + [3]=44983, + [4]=32151 + }, + orbits={ + [1]=2, + [2]=4, + [3]=7 + }, + x=-1788.73, + y=10569 + }, + [651]={ + nodes={ + [1]=7628 + }, + orbits={ + [1]=6 + }, + x=-1769.02, + y=3906.89 + }, + [652]={ + nodes={ + [1]=33369 + }, + orbits={ + [1]=0 + }, + x=-1760.47, + y=8417.92 + }, + [653]={ + nodes={ + [1]=61170, + [2]=25763, + [3]=27186, + [4]=62963 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-1731.48, + y=-9989.29 + }, + [654]={ + nodes={ + [1]=43647, + [2]=32727, + [3]=53524, + [4]=32507, + [5]=12851, + [6]=57555, + [7]=52973, + [8]=37608 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=-1682.34, + y=-9147.25 + }, + [655]={ + 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, + [3]=7 + }, + x=-1653.23, + y=9760.91 + }, + [656]={ + nodes={ + [1]=56388, + [2]=21096, + [3]=57616, + [4]=63360, + [5]=18801, + [6]=62258, + [7]=11752, + [8]=62455 + }, + orbits={ + [1]=0, + [2]=4, + [3]=5, + [4]=7 + }, + x=-1626.68, + y=7851.58 + }, + [657]={ + nodes={ + [1]=1220 + }, + orbits={ + [1]=0 + }, + x=-1614.94, + y=-5019.94 + }, + [658]={ + nodes={ + [1]=6655 + }, + orbits={ + [1]=2 + }, + x=-1610.62, + y=8920.12 + }, + [659]={ + nodes={ + [1]=35015 + }, + orbits={ + [1]=0 + }, + x=-1587.62, + y=8880.27 + }, + [660]={ + nodes={ + [1]=36286, + [2]=14033, + [3]=41130, + [4]=34553, + [5]=8397 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-1573.72, + y=-4956.19 + }, + [661]={ + nodes={ + [1]=15885 + }, + orbits={ + [1]=0 + }, + x=-1545.44, + y=-7995.13 + }, + [662]={ + 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, + [3]=5, + [4]=6 + }, + x=-1533.68, + y=2648.54 + }, + [663]={ + nodes={ + [1]=50084 + }, + orbits={ + [1]=0 + }, + x=-1527.89, + y=-734.8 + }, + [664]={ + nodes={ + [1]=3936 + }, + orbits={ + [1]=0 + }, + x=-1525.89, + y=733.41 + }, + [665]={ + nodes={ + [1]=35720, + [2]=7258, + [3]=11861, + [4]=3281 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-1513.28, + y=-2332.55 + }, + [666]={ + nodes={ + [1]=58718 + }, + orbits={ + [1]=0 + }, + x=-1482.46, + y=8698.1 + }, + [667]={ + nodes={ + [1]=53853, + [2]=36170, + [3]=28693, + [4]=49280, + [5]=57320 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-1456.07, + y=3778.76 + }, + [668]={ + nodes={ + [1]=45497 + }, + orbits={ + [1]=0 + }, + x=-1446.33, + y=-10165.59 + }, + [669]={ + nodes={ + [1]=17057, + [2]=22784, + [3]=17025, + [4]=13515, + [5]=14601 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-1446.33, + y=-9722.75 + }, + [670]={ + nodes={ + [1]=34058 + }, + orbits={ + [1]=0 + }, + x=-1432.94, + y=-4703.73 + }, + [671]={ + nodes={ + [1]=40336 + }, + orbits={ + [1]=0 + }, + x=-1410.85, + y=8880.27 + }, + [672]={ + nodes={ + [1]=38646 + }, + orbits={ + [1]=0 + }, + x=-1397.89, + y=957.2 + }, + [673]={ + nodes={ + [1]=13855 + }, + orbits={ + [1]=0 + }, + x=-1396.89, + y=-954.59 + }, + [674]={ + nodes={ + [1]=42680 + }, + orbits={ + [1]=0 + }, + x=-1385.44, + y=-8272.26 + }, + [675]={ + nodes={ + [1]=54099 + }, + orbits={ + [1]=0 + }, + x=-1367.15, + y=10828.42 + }, + [676]={ + 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 + }, + [677]={ + nodes={ + [1]=44707, + [2]=32885, + [3]=54785, + [4]=51735, + [5]=6689, + [6]=45599 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=-1349.52, + y=4972.79 + }, + [678]={ + 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 + }, + [679]={ + 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 + }, + [680]={ + nodes={ + [1]=39886 + }, + orbits={ + [1]=0 + }, + x=-1309.39, + y=-3298.79 + }, + [681]={ + nodes={ + [1]=65322 + }, + orbits={ + [1]=0 + }, + x=-1305.68, + y=8391.66 + }, + [682]={ + nodes={ + [1]=47709 + }, + orbits={ + [1]=0 + }, + x=-1305.68, + y=8698.1 + }, + [683]={ + nodes={ + [1]=47175 + }, + orbits={ + [1]=0 + }, + x=-1271.19, + y=733.1 + }, + [684]={ + nodes={ + [1]=61525 + }, + orbits={ + [1]=0 + }, + x=-1245.18, + y=-728.9 + }, + [685]={ + 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, + [5]=5 + }, + x=-1221.99, + y=-11452.46 + }, + [686]={ + nodes={ + [1]=63814 + }, + orbits={ + [1]=0 + }, + x=-1200.68, + y=8879.97 + }, + [687]={ + nodes={ + [1]=54818 + }, + orbits={ + [1]=0 + }, + x=-1170.69, + y=8229.42 + }, + [688]={ + nodes={ + [1]=47157, + [2]=516, + [3]=7201, + [4]=61347, + [5]=64488, + [6]=48215 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-1169.57, + y=7550.25 + }, + [689]={ + nodes={ + [1]=13333, + [2]=1091, + [3]=1700, + [4]=48699 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-1161.05, + y=-9989.29 + }, + [690]={ + nodes={ + [1]=13425 + }, + orbits={ + [1]=0 + }, + x=-1137.16, + y=8698.1 + }, + [691]={ + nodes={ + [1]=28492 + }, + orbits={ + [1]=0 + }, + x=-1099.85, + y=11095.71 + }, + [692]={ + nodes={ + [1]=45885 + }, + orbits={ + [1]=0 + }, + x=-1051.9, + y=-10395.75 + }, + [693]={ + nodes={ + [1]=40043, + [2]=9857, + [3]=55231, + [4]=37361, + [5]=54990 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-1048.42, + y=4248.9 + }, + [694]={ + nodes={ + [1]=315 + }, + orbits={ + [1]=0 + }, + x=-1032.12, + y=8879.97 + }, + [695]={ + nodes={ + [1]=33216 + }, + orbits={ + [1]=2 + }, + x=-1009.12, + y=8919.8 + }, + [696]={ + 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.03, + y=-5546.35 + }, + [697]={ + nodes={ + [1]=46343 + }, + orbits={ + [1]=0 + }, + x=-767.04, + y=5189.25 + }, + [698]={ + nodes={ + [1]=18407 + }, + orbits={ + [1]=0 + }, + x=-752.96, + y=-2537.92 + }, + [699]={ + nodes={ + [1]=10398, + [2]=3472, + [3]=56640, + [4]=26682 + }, + orbits={ + [1]=7 + }, + x=-691.9, + y=-7030.08 + }, + [700]={ + nodes={ + [1]=13359, + [2]=8382, + [3]=61863, + [4]=42045, + [5]=50535, + [6]=10612, + [7]=31943 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=-683.96, + y=-10841 + }, + [701]={ + nodes={ + [1]=18158 + }, + orbits={ + [1]=0 + }, + x=-9473.5114156951, + y=-13344.137033218 + }, + [702]={ + 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.1, + y=6556.71 + }, + [703]={ + nodes={ + [1]=13882 + }, + orbits={ + [1]=0 + }, + x=-616.96, + y=-7619.15 + }, + [704]={ + nodes={ + [1]=49512 + }, + orbits={ + [1]=0 + }, + x=-613.84, + y=-7995.13 + }, + [705]={ + 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 + }, + [706]={ + nodes={ + [1]=51194, + [2]=24060, + [3]=3091, + [4]=18793, + [5]=33639, + [6]=24087, + [7]=8782 + }, + orbits={ + [1]=7, + [2]=2 + }, + x=-611.91, + y=-7670.28 + }, + [707]={ + nodes={ + [1]=15182 + }, + orbits={ + [1]=0 + }, + x=-593.45, + y=8229.42 + }, + [708]={ + nodes={ + [1]=52003 + }, + orbits={ + [1]=2 + }, + x=-509.65, + y=-10901.37 + }, + [709]={ + nodes={ + [1]=38270, + [2]=23724, + [3]=7275, + [4]=29402, + [5]=4046, + [6]=8875, + [7]=50687 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4, + [5]=7 + }, + x=-484.77, + y=9710.46 + }, + [710]={ + nodes={ + [1]=63484 + }, + orbits={ + [1]=0 + }, + x=-9304.0614156951, + y=-13507.497033218 + }, + [711]={ + nodes={ + [1]=22821, + [2]=22314 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=-478.3, + y=-3316.19 + }, + [712]={ + nodes={ + [1]=51184 + }, + orbits={ + [1]=0 + }, + x=-478.3, + y=-3030.38 + }, + [713]={ + 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, + [5]=5, + [6]=7 + }, + x=-478.24, + y=-3752.19 + }, + [714]={ + nodes={ + [1]=56935 + }, + orbits={ + [1]=0 + }, + x=-478.02, + y=-4703.73 + }, + [715]={ + nodes={ + [1]=22419 + }, + orbits={ + [1]=0 + }, + x=-478.01, + y=-2158.22 + }, + [716]={ + 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, + [4]=7 + }, + x=-477.54, + y=10441.93 + }, + [717]={ + 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 + }, + [718]={ + nodes={ + [1]=50383 + }, + orbits={ + [1]=0 + }, + x=-458.18, + y=-9486.35 + }, + [719]={ + nodes={ + [1]=29391, + [2]=50715, + [3]=61354, + [4]=29800 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=-429.99, + y=-9489.3 + }, + [720]={ + nodes={ + [1]=47363, + [2]=13708, + [3]=9164, + [4]=25513, + [5]=51825, + [6]=47856, + [7]=32561 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=5, + [5]=6 + }, + x=-420.12, + y=4842.33 + }, + [721]={ + nodes={ + [1]=62588 + }, + orbits={ + [1]=0 + }, + x=-405.01, + y=3700.21 + }, + [722]={ + nodes={ + [1]=14997 + }, + orbits={ + [1]=0 + }, + x=-376.02, + y=4798.23 + }, + [723]={ + nodes={ + [1]=55807, + [2]=6686, + [3]=1922, + [4]=41965, + [5]=1755, + [6]=18845 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=-374.23, + y=-2574.13 + }, + [724]={ + 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, + [5]=7 + }, + x=-344.33, + y=11065.56 + }, + [725]={ + 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={ + [1]=6, + [2]=5, + [3]=9, + [4]=8 + }, + x=-9132.2814156951, + y=-12579.507033218 + }, + [726]={ + nodes={ + [1]=53975, + [2]=55104, + [3]=33254, + [4]=19125 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=-296.21, + y=-5775.53 + }, + [727]={ + nodes={ + [1]=28510, + [2]=61438, + [3]=42350 + }, + orbits={ + [1]=6 + }, + x=-262.23, + y=3156.44 + }, + [728]={ + nodes={ + [1]=5407 + }, + orbits={ + [1]=0 + }, + x=-257.48, + y=2491.06 + }, + [729]={ + nodes={ + [1]=934, + [2]=9825, + [3]=12526 + }, + orbits={ + [1]=4, + [2]=3 + }, + x=-248.37, + y=7972.75 + }, + [730]={ + nodes={ + [1]=44605, + [2]=2455, + [3]=48588, + [4]=13081 + }, + orbits={ + [1]=5 + }, + x=-203.43, + y=2592.67 + }, + [731]={ + nodes={ + [1]=57039, + [2]=14572, + [3]=11037 + }, + orbits={ + [1]=3 + }, + x=-152.71, + y=3700.23 + }, + [732]={ + nodes={ + [1]=29328, + [2]=43201, + [3]=43383, + [4]=37450 + }, + orbits={ + [1]=4 + }, + x=-150.31, + y=3572.61 + }, + [733]={ + nodes={ + [1]=59779 + }, + orbits={ + [1]=0 + }, + x=-133.15, + y=1690.41 + }, + [735]={ + nodes={ + [1]=35492, + [2]=30523, + [3]=11376, + [4]=50720, + [5]=34199, + [6]=43557 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4, + [4]=5, + [5]=7 + }, + x=-73.93, + y=-9897.76 + }, + [736]={ + nodes={ + [1]=44871 + }, + orbits={ + [1]=3 + }, + x=-30.93, + y=-1405.7 + }, + [737]={ + nodes={ + [1]=46819 + }, + orbits={ + [1]=0 + }, + x=-0.88, + y=-7031.82 + }, + [738]={ + nodes={ + [1]=59362 + }, + orbits={ + [1]=0 + }, + x=0, + y=-10395.75 + }, + [739]={ + nodes={ + [1]=29009 + }, + orbits={ + [1]=0 + }, + x=0, + y=-9772.2 + }, + [740]={ + nodes={ + [1]=5314 + }, + orbits={ + [1]=4 + }, + x=0, + y=-9671.2 + }, + [741]={ + nodes={ + [1]=61419 + }, + orbits={ + [1]=0 + }, + x=0, + y=-7995.13 + }, + [742]={ + nodes={ + [1]=8616 + }, + orbits={ + [1]=0 + }, + x=0, + y=-5955.17 + }, + [743]={ + nodes={ + [1]=57710 + }, + orbits={ + [1]=6 + }, + x=0, + y=-4700.35 + }, + [744]={ + nodes={ + [1]=22290, + [2]=5501, + [3]=48821, + [4]=15618, + [5]=32404 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=0, + y=-4439.9 + }, + [745]={ + nodes={ + [1]=29502, + [2]=47307, + [3]=36302, + [4]=3242, + [5]=13769, + [6]=59636, + [7]=48007 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=0, + y=-3031.45 + }, + [746]={ + nodes={ + [1]=54447 + }, + orbits={ + [1]=0 + }, + x=0, + y=-1490.58 + }, + [747]={ + nodes={ + [1]=52125 + }, + orbits={ + [1]=0 + }, + x=0.13, + y=10105.93 + }, + [748]={ + nodes={ + [1]=2847 + }, + orbits={ + [1]=0 + }, + x=0.13, + y=10828.42 + }, + [749]={ + 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.46 + }, + [750]={ + nodes={ + [1]=54417, + [2]=49657 + }, + orbits={ + [1]=6 + }, + x=1.25, + y=3822.38 + }, + [751]={ + nodes={ + [1]=10247, + [2]=28370 + }, + orbits={ + [1]=6 + }, + x=1.63, + y=3822.38 + }, + [752]={ + nodes={ + [1]=50986 + }, + orbits={ + [1]=0 + }, + x=1.95, + y=1469.82 + }, + [753]={ + nodes={ + [1]=52442, + [2]=14254, + [3]=97 + }, + orbits={ + [1]=2 + }, + x=1.95, + y=2418.36 + }, + [754]={ + nodes={ + [1]=47150, + [2]=38779, + [3]=44836 + }, + orbits={ + [1]=2 + }, + x=1.95, + y=2829.7 + }, + [755]={ + nodes={ + [1]=48635 + }, + orbits={ + [1]=0 + }, + x=1.95, + y=6250.78 + }, + [756]={ + nodes={ + [1]=21755 + }, + orbits={ + [1]=0 + }, + x=1.95, + y=7013.94 + }, + [757]={ + nodes={ + [1]=57805, + [2]=43444, + [3]=7788 + }, + orbits={ + [1]=4, + [2]=7 + }, + x=3.72, + y=5712 + }, + [758]={ + nodes={ + [1]=38003, + [2]=28361, + [3]=47782 + }, + orbits={ + [1]=4, + [2]=7 + }, + x=4.1, + y=5712 + }, + [759]={ + nodes={ + [1]=40691, + [2]=36746, + [3]=25893, + [4]=51169, + [5]=43576, + [6]=14324, + [7]=1468, + [8]=7971 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=7 + }, + x=5.06, + y=-6484.35 + }, + [760]={ + nodes={ + [1]=63526 + }, + orbits={ + [1]=0 + }, + x=6.24, + y=5223.21 + }, + [761]={ + 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, + [2]=5, + [3]=7 + }, + x=7.01, + y=11943.01 + }, + [762]={ + nodes={ + [1]=54127 + }, + orbits={ + [1]=0 + }, + x=8.31, + y=8229.42 + }, + [763]={ + nodes={ + [1]=54282 + }, + orbits={ + [1]=3 + }, + x=8.31, + y=9742.42 + }, + [764]={ + nodes={ + [1]=4739 + }, + orbits={ + [1]=3 + }, + x=28.94, + y=-1404.7 + }, + [765]={ + nodes={ + [1]=59915 + }, + orbits={ + [1]=0 + }, + x=136.86, + y=1689.33 + }, + [766]={ + nodes={ + [1]=41210, + [2]=43578, + [3]=59028, + [4]=8092 + }, + orbits={ + [1]=4 + }, + x=150.01, + y=3572.63 + }, + [767]={ + nodes={ + [1]=50609, + [2]=14926, + [3]=11916 + }, + orbits={ + [1]=3 + }, + x=151.5, + y=3700.21 + }, + [768]={ + nodes={ + [1]=11311, + [2]=38057, + [3]=34061, + [4]=56910 + }, + orbits={ + [1]=5 + }, + x=225.42, + y=2596.07 + }, + [769]={ + 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 + }, + [770]={ + nodes={ + [1]=10694 + }, + orbits={ + [1]=0 + }, + x=-8561.6214156951, + y=-13001.437033218 + }, + [771]={ + nodes={ + [1]=7741, + [2]=42500, + [3]=59881 + }, + orbits={ + [1]=6 + }, + x=262.02, + y=3155.84 + }, + [772]={ + nodes={ + [1]=17340, + [2]=40341, + [3]=62051 + }, + orbits={ + [1]=4, + [2]=3 + }, + x=265.15, + y=7972.57 + }, + [773]={ + nodes={ + [1]=2461 + }, + orbits={ + [1]=0 + }, + x=273.71, + y=2491.06 + }, + [774]={ + nodes={ + [1]=26648, + [2]=22565, + [3]=17994, + [4]=24256, + [5]=63541 + }, + orbits={ + [1]=2 + }, + x=337.58, + y=10423.74 + }, + [775]={ + nodes={ + [1]=30346, + [2]=34006, + [3]=15408, + [4]=29695, + [5]=43736, + [6]=6338 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=371.9, + y=-2574.13 + }, + [776]={ + nodes={ + [1]=1477 + }, + orbits={ + [1]=0 + }, + x=407.71, + y=3700.23 + }, + [777]={ + nodes={ + [1]=4017, + [2]=12918, + [3]=26447, + [4]=10079, + [5]=49633 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=415.74, + y=-9265.2 + }, + [778]={ + nodes={ + [1]=517 + }, + orbits={ + [1]=0 + }, + x=419.3, + y=-4284.19 + }, + [779]={ + nodes={ + [1]=45570, + [2]=43713, + [3]=3051, + [4]=35602, + [5]=27009, + [6]=30459 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=7 + }, + x=452.02, + y=-9772.2 + }, + [780]={ + nodes={ + [1]=56216 + }, + orbits={ + [1]=0 + }, + x=472.38, + y=-2158.22 + }, + [781]={ + nodes={ + [1]=39037 + }, + orbits={ + [1]=0 + }, + x=486.61, + y=-4703.51 + }, + [782]={ + nodes={ + [1]=14666, + [2]=9642, + [3]=17973, + [4]=4748, + [5]=61027 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=486.99, + y=-3752.19 + }, + [783]={ + nodes={ + [1]=2254 + }, + orbits={ + [1]=0 + }, + x=486.99, + y=-3030.38 + }, + [784]={ + nodes={ + [1]=4113, + [2]=36782, + [3]=55572, + [4]=44179 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=494.7, + y=-8434.59 + }, + [785]={ + nodes={ + [1]=1151, + [2]=4627, + [3]=57626 + }, + orbits={ + [1]=7 + }, + x=494.7, + y=-8404.42 + }, + [786]={ + nodes={ + [1]=3025 + }, + orbits={ + [1]=0 + }, + x=497.14, + y=-7995.13 + }, + [787]={ + nodes={ + [1]=34030, + [2]=42614, + [3]=25594, + [4]=13634, + [5]=47441, + [6]=61992 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=7 + }, + x=497.14, + y=-7601.82 + }, + [788]={ + nodes={ + [1]=44765, + [2]=22533, + [3]=11066, + [4]=26663, + [5]=32233 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=502.65, + y=8723.77 + }, + [789]={ + nodes={ + [1]=58090, + [2]=13542, + [3]=48774, + [4]=34367, + [5]=21540, + [6]=27658, + [7]=44850 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=533.4, + y=-5930.42 + }, + [790]={ + 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, + [5]=5, + [6]=7 + }, + x=541.38, + y=9564.7 + }, + [791]={ + nodes={ + [1]=13909, + [2]=31037, + [3]=34866, + [4]=40985, + [5]=62679 + }, + orbits={ + [1]=2 + }, + x=545.48, + y=-7039.3 + }, + [792]={ + nodes={ + [1]=22691 + }, + orbits={ + [1]=0 + }, + x=552.41, + y=-4284.19 + }, + [793]={ + nodes={ + [1]=56978 + }, + orbits={ + [1]=0 + }, + x=610.22, + y=8229.3 + }, + [794]={ + nodes={ + [1]=8872 + }, + orbits={ + [1]=0 + }, + x=615.53, + y=5034.86 + }, + [795]={ + 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 + }, + [796]={ + 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, + [5]=7 + }, + x=624.45, + y=11228.41 + }, + [798]={ + nodes={ + [1]=15984 + }, + orbits={ + [1]=0 + }, + x=712.02, + y=-10905.77 + }, + [799]={ + nodes={ + [1]=50150, + [2]=11873, + [3]=37279, + [4]=41159, + [5]=27434, + [6]=51234, + [7]=15991 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=722.97, + y=-10830.71 + }, + [800]={ + 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, + [3]=7 + }, + x=729.71, + y=7013.94 + }, + [801]={ + nodes={ + [1]=9485 + }, + orbits={ + [1]=0 + }, + x=756.52, + y=-2537.92 + }, + [802]={ + nodes={ + [1]=46124, + [2]=63009, + [3]=37593, + [4]=63739 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=784.17, + y=-5269.44 + }, + [803]={ + nodes={ + [1]=15083 + }, + orbits={ + [1]=0 + }, + x=905.73, + y=-11253.83 + }, + [804]={ + 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.86, + y=10235.46 + }, + [805]={ + nodes={ + [1]=35653 + }, + orbits={ + [1]=0 + }, + x=940.85, + y=11379.02 + }, + [806]={ + nodes={ + [1]=58109 + }, + orbits={ + [1]=0 + }, + x=1010.78, + y=4639.54 + }, + [807]={ + nodes={ + [1]=22271 + }, + orbits={ + [1]=0 + }, + x=1029.73, + y=-11468.6 + }, + [808]={ + nodes={ + [1]=40783 + }, + orbits={ + [1]=0 + }, + x=1061.08, + y=-5546.35 + }, + [809]={ + nodes={ + [1]=38732 + }, + orbits={ + [1]=0 + }, + x=1063.41, + y=-7995.13 + }, + [810]={ + nodes={ + [1]=17107 + }, + orbits={ + [1]=0 + }, + x=1069.2, + y=-7546.83 + }, + [811]={ + nodes={ + [1]=40345, + [2]=42290, + [3]=52254, + [4]=37991 + }, + orbits={ + [1]=7 + }, + x=1070.74, + y=-9412.83 + }, + [812]={ + nodes={ + [1]=50540 + }, + orbits={ + [1]=0 + }, + x=1073.28, + y=-9540.92 + }, + [813]={ + nodes={ + [1]=17711 + }, + orbits={ + [1]=0 + }, + x=1074.78, + y=-6113.73 + }, + [814]={ + nodes={ + [1]=36639, + [2]=32009, + [3]=36814, + [4]=16499 + }, + orbits={ + [1]=7 + }, + x=1075.8, + y=-9669 + }, + [815]={ + nodes={ + [1]=60685 + }, + orbits={ + [1]=0 + }, + x=1089.99, + y=-3001.45 + }, + [816]={ + nodes={ + [1]=18651 + }, + orbits={ + [1]=0 + }, + x=1129.94, + y=-11238.26 + }, + [817]={ + nodes={ + [1]=55554 + }, + orbits={ + [1]=0 + }, + x=1139.73, + y=-11659.12 + }, + [818]={ + nodes={ + [1]=27853, + [2]=59289, + [3]=3365, + [4]=52576, + [5]=64550, + [6]=22532 + }, + orbits={ + [1]=2, + [2]=7 + }, + x=1152.97, + y=4158.69 + }, + [819]={ + nodes={ + [1]=33180, + [2]=11788, + [3]=14355, + [4]=60269, + [5]=8483, + [6]=46989, + [7]=6588 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=1162.02, + y=-6821.54 + }, + [820]={ + nodes={ + [1]=55802 + }, + orbits={ + [1]=0 + }, + x=1168.66, + y=10828.42 + }, + [821]={ + nodes={ + [1]=3717 + }, + orbits={ + [1]=0 + }, + x=1168.66, + y=11146.25 + }, + [822]={ + nodes={ + [1]=60488 + }, + orbits={ + [1]=0 + }, + x=1170.11, + y=4170.02 + }, + [823]={ + nodes={ + [1]=21274 + }, + orbits={ + [1]=0 + }, + x=1188.06, + y=8229.3 + }, + [824]={ + nodes={ + [1]=57190, + [2]=27859, + [3]=38694, + [4]=38763, + [5]=22188 + }, + orbits={ + [1]=1, + [2]=7 + }, + x=1188.06, + y=8669.63 + }, + [825]={ + nodes={ + [1]=62677 + }, + orbits={ + [1]=0 + }, + x=1235.03, + y=-10395.55 + }, + [826]={ + nodes={ + [1]=26905 + }, + orbits={ + [1]=3 + }, + x=1247.13, + y=-11855.75 + }, + [827]={ + nodes={ + [1]=11736, + [2]=8821, + [3]=28975 + }, + orbits={ + [1]=3, + [2]=4, + [3]=6 + }, + x=1249.73, + y=-11514.66 + }, + [828]={ + nodes={ + [1]=44683 + }, + orbits={ + [1]=0 + }, + x=1270.43, + y=-728.84 + }, + [829]={ + nodes={ + [1]=50459 + }, + orbits={ + [1]=0 + }, + x=1274.68, + y=735.85 + }, + [830]={ + nodes={ + [1]=1826 + }, + orbits={ + [1]=0 + }, + x=1308.1, + y=-3294.7 + }, + [831]={ + nodes={ + [1]=44566 + }, + orbits={ + [1]=0 + }, + x=1353.57, + y=9646.22 + }, + [832]={ + nodes={ + [1]=65468 + }, + orbits={ + [1]=0 + }, + x=1366.53, + y=11380.85 + }, + [833]={ + nodes={ + [1]=63863, + [2]=27785 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=1367.44, + y=-11645.12 + }, + [834]={ + nodes={ + [1]=36293, + [2]=55708 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=1381.34, + y=-11239.64 + }, + [835]={ + nodes={ + [1]=13828 + }, + orbits={ + [1]=0 + }, + x=1402.97, + y=958.27 + }, + [836]={ + nodes={ + [1]=48030, + [2]=6715, + [3]=62436, + [4]=116, + [5]=3215, + [6]=41372, + [7]=44359 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=1423.72, + y=-4183.63 + }, + [837]={ + nodes={ + [1]=47759 + }, + orbits={ + [1]=0 + }, + x=1436.89, + y=-10147.25 + }, + [838]={ + nodes={ + [1]=3995, + [2]=12311, + [3]=64119, + [4]=18115, + [5]=48856, + [6]=17882, + [7]=33596 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=1450.76, + y=7777.63 + }, + [839]={ + nodes={ + [1]=53996, + [2]=17686, + [3]=43575, + [4]=41512 + }, + orbits={ + [1]=7 + }, + x=1474.81, + y=3454.96 + }, + [840]={ + nodes={ + [1]=42736 + }, + orbits={ + [1]=0 + }, + x=1484.79, + y=-2826.54 + }, + [841]={ + nodes={ + [1]=60741, + [2]=49804, + [3]=6950, + [4]=24035, + [5]=33922 + }, + orbits={ + [1]=2 + }, + x=1505.67, + y=-5546.35 + }, + [842]={ + nodes={ + [1]=10909, + [2]=16489, + [3]=28556 + }, + orbits={ + [1]=6, + [2]=3 + }, + x=1516.21, + y=2614.41 + }, + [843]={ + nodes={ + [1]=56651 + }, + orbits={ + [1]=0 + }, + x=1535.77, + y=727.98 + }, + [844]={ + nodes={ + [1]=19998 + }, + orbits={ + [1]=0 + }, + x=1559.69, + y=11253.56 + }, + [845]={ + nodes={ + [1]=11672 + }, + orbits={ + [1]=0 + }, + x=1563.03, + y=-4703.51 + }, + [846]={ + nodes={ + [1]=2486, + [2]=19341, + [3]=56118, + [4]=61487, + [5]=36596, + [6]=8440, + [7]=63732, + [8]=45013, + [9]=58884 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3, + [4]=4, + [5]=7 + }, + x=1573.91, + y=5379.88 + }, + [847]={ + nodes={ + [1]=48401, + [2]=15507, + [3]=1140 + }, + orbits={ + [1]=2, + [2]=3, + [3]=6 + }, + x=1574.14, + y=1708.94 + }, + [848]={ + nodes={ + [1]=39116, + [2]=9941, + [3]=38888 + }, + orbits={ + [1]=7, + [2]=3 + }, + x=1598.81, + y=3240.19 + }, + [849]={ + nodes={ + [1]=42076, + [2]=46972, + [3]=17706 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=1600.36, + y=-3445.28 + }, + [850]={ + nodes={ + [1]=54783 + }, + orbits={ + [1]=1 + }, + x=1609.6, + y=-3528.07 + }, + [851]={ + nodes={ + [1]=58783, + [2]=37190, + [3]=35855, + [4]=48583, + [5]=26520, + [6]=35859 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1632.43, + y=4050.7 + }, + [852]={ + nodes={ + [1]=48846 + }, + orbits={ + [1]=0 + }, + x=1657.19, + y=9770.52 + }, + [853]={ + nodes={ + [1]=2978 + }, + orbits={ + [1]=0 + }, + x=1663.34, + y=10309.59 + }, + [854]={ + nodes={ + [1]=6266, + [2]=60085, + [3]=15839, + [4]=11667, + [5]=1915, + [6]=48617 + }, + orbits={ + [1]=1, + [2]=7 + }, + x=1670.41, + y=10295.58 + }, + [855]={ + nodes={ + [1]=30117 + }, + orbits={ + [1]=0 + }, + x=-7077.2916959661, + y=-15153.531217109 + }, + [856]={ + nodes={ + [1]=25807 + }, + orbits={ + [1]=0 + }, + x=1694.19, + y=11468.66 + }, + [857]={ + nodes={ + [1]=30555 + }, + orbits={ + [1]=0 + }, + x=1695.71, + y=-2698.11 + }, + [858]={ + nodes={ + [1]=27234 + }, + orbits={ + [1]=0 + }, + x=1713.31, + y=-4986.63 + }, + [859]={ + nodes={ + [1]=4203 + }, + orbits={ + [1]=0 + }, + x=1714.69, + y=-2969.93 + }, + [860]={ + nodes={ + [1]=14340 + }, + orbits={ + [1]=0 + }, + x=1734.98, + y=4453 + }, + [861]={ + nodes={ + [1]=58939, + [2]=26319, + [3]=30990, + [4]=44608 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1737.77, + y=4778 + }, + [862]={ + nodes={ + [1]=2732, + [2]=65393, + [3]=52241, + [4]=58115, + [5]=94, + [6]=16790 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=1746.18, + y=-5035.12 + }, + [863]={ + nodes={ + [1]=49691, + [2]=31409, + [3]=50437, + [4]=32274, + [5]=61106, + [6]=59653, + [7]=35987 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=1759.97, + y=1320.44 + }, + [864]={ + nodes={ + [1]=48551 + }, + orbits={ + [1]=0 + }, + x=-7001.4816959661, + y=-14067.501217109 + }, + [865]={ + nodes={ + [1]=15876, + [2]=7947, + [3]=26061, + [4]=4579 + }, + orbits={ + [1]=2 + }, + x=1776.09, + y=-10680.12 + }, + [866]={ + nodes={ + [1]=17672 + }, + orbits={ + [1]=0 + }, + x=1797.54, + y=-7995.13 + }, + [867]={ + nodes={ + [1]=11230 + }, + orbits={ + [1]=0 + }, + x=1797.54, + y=-7675.13 + }, + [868]={ + nodes={ + [1]=48290, + [2]=49088, + [3]=47155, + [4]=55180, + [5]=17394, + [6]=45530, + [7]=3443, + [8]=63545 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=1798.44, + y=-7166.71 + }, + [869]={ + nodes={ + [1]=20140 + }, + orbits={ + [1]=0 + }, + x=1800.67, + y=-8634.27 + }, + [870]={ + 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, + [5]=7 + }, + x=1802.15, + y=-8810.16 + }, + [871]={ + 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, + [5]=5, + [6]=7 + }, + x=1821.35, + y=-1202.94 + }, + [872]={ + nodes={ + [1]=39298 + }, + orbits={ + [1]=0 + }, + x=1824.91, + y=8228.37 + }, + [873]={ + 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, + [5]=5, + [6]=7 + }, + x=1826.63, + y=8513.85 + }, + [874]={ + 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.83 + }, + [875]={ + nodes={ + [1]=64726, + [2]=19573, + [3]=17553, + [4]=46296, + [5]=38479, + [6]=19342, + [7]=27493 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4, + [5]=7 + }, + x=1899.93, + y=6744.84 + }, + [876]={ + nodes={ + [1]=53683 + }, + orbits={ + [1]=0 + }, + x=1904.34, + y=11524.96 + }, + [877]={ + nodes={ + [1]=44430 + }, + orbits={ + [1]=0 + }, + x=1949.13, + y=11357.83 + }, + [878]={ + 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, + [5]=5, + [6]=7 + }, + x=1958.85, + y=-978.15 + }, + [879]={ + nodes={ + [1]=33225 + }, + orbits={ + [1]=0 + }, + x=1960.52, + y=-9606.62 + }, + [880]={ + nodes={ + [1]=21779, + [2]=9185, + [3]=40760, + [4]=60107, + [5]=57204, + [6]=47833 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=1986.68, + y=-4242.81 + }, + [881]={ + nodes={ + [1]=19779, + [2]=63891, + [3]=63074, + [4]=42999, + [5]=4925 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=1999.54, + y=-11112.83 + }, + [882]={ + nodes={ + [1]=35660, + [2]=18548, + [3]=62628, + [4]=4313, + [5]=35234, + [6]=6789, + [7]=28992 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=2012.88, + y=865.02 + }, + [883]={ + nodes={ + [1]=17726, + [2]=11826 + }, + orbits={ + [1]=7 + }, + x=2015.32, + y=2999.71 + }, + [884]={ + nodes={ + [1]=11315 + }, + orbits={ + [1]=0 + }, + x=2015.42, + y=9673.14 + }, + [885]={ + nodes={ + [1]=64427, + [2]=51892, + [3]=44188, + [4]=59387 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2081.9, + y=-8262.87 + }, + [886]={ + nodes={ + [1]=23153, + [2]=31112, + [3]=56897, + [4]=57785, + [5]=63828, + [6]=23996 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=2082.55, + y=7631.77 + }, + [887]={ + nodes={ + [1]=30082 + }, + orbits={ + [1]=0 + }, + x=2092.43, + y=11575.37 + }, + [888]={ + nodes={ + [1]=46554 + }, + orbits={ + [1]=0 + }, + x=2107.3, + y=-10394.21 + }, + [889]={ + nodes={ + [1]=41225, + [2]=48611, + [3]=4271, + [4]=62887 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2107.3, + y=-9931.58 + }, + [890]={ + nodes={ + [1]=47177 + }, + orbits={ + [1]=0 + }, + x=2110.13, + y=-4703.51 + }, + [891]={ + nodes={ + [1]=61768 + }, + orbits={ + [1]=0 + }, + x=2157.18, + y=-9511.45 + }, + [892]={ + nodes={ + [1]=61432 + }, + orbits={ + [1]=0 + }, + x=2164.6, + y=11512.63 + }, + [893]={ + nodes={ + [1]=56926, + [2]=44255, + [3]=14548, + [4]=59541, + [5]=10320, + [6]=28573, + [7]=15358, + [8]=41905 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=2165.23, + y=-6650.5 + }, + [894]={ + nodes={ + [1]=2841, + [2]=33059, + [3]=39839, + [4]=20205 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2192.99, + y=4717.44 + }, + [895]={ + nodes={ + [1]=52703 + }, + orbits={ + [1]=0 + }, + x=-6563.3716959661, + y=-13772.791217109 + }, + [896]={ + nodes={ + [1]=48568 + }, + orbits={ + [1]=0 + }, + x=2199.2, + y=3806.76 + }, + [897]={ + nodes={ + [1]=49046 + }, + orbits={ + [1]=0 + }, + x=2214.93, + y=-3836.38 + }, + [898]={ + nodes={ + [1]=62159, + [2]=59603, + [3]=57110, + [4]=46561 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=2229.99, + y=-3149.3 + }, + [899]={ + nodes={ + [1]=16460, + [2]=43746, + [3]=38143 + }, + orbits={ + [1]=2, + [2]=3, + [3]=6 + }, + x=2235.52, + y=536.07 + }, + [900]={ + nodes={ + [1]=57810 + }, + orbits={ + [1]=0 + }, + x=2257.86, + y=-8717.37 + }, + [901]={ + nodes={ + [1]=5961 + }, + orbits={ + [1]=0 + }, + x=2260.4, + y=9939.27 + }, + [902]={ + nodes={ + [1]=54675 + }, + orbits={ + [1]=0 + }, + x=2281.59, + y=10332.05 + }, + [903]={ + nodes={ + [1]=58329, + [2]=31950, + [3]=8569 + }, + orbits={ + [1]=6 + }, + x=2292.18, + y=-3970.17 + }, + [905]={ + nodes={ + [1]=39987, + [2]=12419, + [3]=18913, + [4]=56063 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=2317.51, + y=-5438.63 + }, + [906]={ + nodes={ + [1]=40073 + }, + orbits={ + [1]=0 + }, + x=2343.9, + y=-9085.31 + }, + [907]={ + nodes={ + [1]=49993, + [2]=40632, + [3]=48889, + [4]=28038, + [5]=3893, + [6]=64434, + [7]=56488 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=2372.91, + y=8504.31 + }, + [908]={ + nodes={ + [1]=20744, + [2]=33053, + [3]=4844, + [4]=50795, + [5]=58013 + }, + orbits={ + [1]=1, + [2]=7 + }, + x=2377.83, + y=2986.75 + }, + [909]={ + nodes={ + [1]=63926 + }, + orbits={ + [1]=0 + }, + x=2393.91, + y=-9611.59 + }, + [910]={ + 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={ + [1]=6, + [2]=5, + [3]=9, + [4]=8 + }, + x=-6319.3716959661, + y=-14203.541217109 + }, + [911]={ + nodes={ + [1]=53266 + }, + orbits={ + [1]=0 + }, + x=2453.78, + y=-8312.45 + }, + [912]={ + nodes={ + [1]=46224, + [2]=24045, + [3]=49799, + [4]=45019 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2457.39, + y=3459.95 + }, + [913]={ + nodes={ + [1]=26786, + [2]=18882 + }, + orbits={ + [1]=0, + [2]=5 + }, + x=2459.2, + y=4266.46 + }, + [914]={ + nodes={ + [1]=23764 + }, + orbits={ + [1]=0 + }, + x=2459.21, + y=-3622.89 + }, + [915]={ + nodes={ + [1]=5295 + }, + orbits={ + [1]=0 + }, + x=2476.38, + y=9574.5 + }, + [916]={ + nodes={ + [1]=50485, + [2]=28229, + [3]=8540, + [4]=45230, + [5]=22959 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2497.88, + y=-5053.36 + }, + [917]={ + nodes={ + [1]=19288 + }, + orbits={ + [1]=0 + }, + x=2503.68, + y=7415.67 + }, + [918]={ + nodes={ + [1]=38814 + }, + orbits={ + [1]=0 + }, + x=2503.68, + y=7792.67 + }, + [919]={ + nodes={ + [1]=20387 + }, + orbits={ + [1]=0 + }, + x=2504.3, + y=-8625.66 + }, + [920]={ + nodes={ + [1]=63731 + }, + orbits={ + [1]=0 + }, + x=2537.98, + y=11565.76 + }, + [921]={ + nodes={ + [1]=58814 + }, + orbits={ + [1]=0 + }, + x=2568.17, + y=10828.42 + }, + [922]={ + 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 + }, + [923]={ + nodes={ + [1]=4850 + }, + orbits={ + [1]=0 + }, + x=2577.55, + y=-4030.32 + }, + [924]={ + nodes={ + [1]=11855, + [2]=56999, + [3]=44014, + [4]=30829 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2590.36, + y=5169.65 + }, + [925]={ + nodes={ + [1]=58002, + [2]=55575, + [3]=45086, + [4]=34520, + [5]=23738 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=2590.88, + y=-7324.15 + }, + [926]={ + nodes={ + [1]=17024 + }, + orbits={ + [1]=0 + }, + x=2607.33, + y=-8878.62 + }, + [927]={ + nodes={ + [1]=53196, + [2]=12322, + [3]=32135, + [4]=35848, + [5]=28625, + [6]=46692, + [7]=51509, + [8]=9393 + }, + orbits={ + [1]=0, + [2]=1, + [3]=4, + [4]=7 + }, + x=2622.75, + y=6605.25 + }, + [928]={ + nodes={ + [1]=35896 + }, + orbits={ + [1]=0 + }, + x=2634.6, + y=-7995.13 + }, + [929]={ + nodes={ + [1]=13738 + }, + orbits={ + [1]=0 + }, + x=2641.65, + y=-9309.5 + }, + [930]={ + nodes={ + [1]=52354 + }, + orbits={ + [1]=0 + }, + x=2667.71, + y=11496.1 + }, + [931]={ + nodes={ + [1]=31223 + }, + orbits={ + [1]=0 + }, + x=-6075.3516959661, + y=-13772.791217109 + }, + [932]={ + nodes={ + [1]=4157, + [2]=55088, + [3]=34168 + }, + orbits={ + [1]=7 + }, + x=2694.54, + y=-2103.71 + }, + [933]={ + nodes={ + [1]=53960 + }, + orbits={ + [1]=5 + }, + x=2704.11, + y=-2329.78 + }, + [934]={ + nodes={ + [1]=36479, + [2]=36778, + [3]=12925 + }, + orbits={ + [1]=4 + }, + x=2724.74, + y=-2058.41 + }, + [935]={ + nodes={ + [1]=61312, + [2]=20831, + [3]=29843, + [4]=55397, + [5]=44527, + [6]=44875 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=2727.45, + y=2024.66 + }, + [936]={ + nodes={ + [1]=9020, + [2]=244, + [3]=41171, + [4]=37767, + [5]=6596, + [6]=36341, + [7]=35118 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=4, + [5]=7 + }, + x=2730.83, + y=11768.89 + }, + [937]={ + nodes={ + [1]=35503 + }, + orbits={ + [1]=0 + }, + x=2744.59, + y=-3760.9 + }, + [938]={ + nodes={ + [1]=34233, + [2]=14725, + [3]=32545, + [4]=16123 + }, + orbits={ + [1]=3, + [2]=2 + }, + x=2753.29, + y=-2001.95 + }, + [939]={ + nodes={ + [1]=31745, + [2]=3234, + [3]=3624, + [4]=10927, + [5]=9272, + [6]=18470, + [7]=4447, + [8]=12906 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4, + [4]=7 + }, + x=2756.47, + y=5912.5 + }, + [940]={ + nodes={ + [1]=19104 + }, + orbits={ + [1]=0 + }, + x=2770.83, + y=1599.66 + }, + [941]={ + nodes={ + [1]=53560 + }, + orbits={ + [1]=0 + }, + x=2785.02, + y=-8428.64 + }, + [942]={ + nodes={ + [1]=34984, + [2]=12661, + [3]=44917, + [4]=18895, + [5]=703, + [6]=10552 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=2787.39, + y=-5900.44 + }, + [943]={ + nodes={ + [1]=12465, + [2]=30040, + [3]=56016, + [4]=65149, + [5]=35594, + [6]=26830 + }, + orbits={ + [1]=1, + [2]=2, + [3]=5, + [4]=7 + }, + x=2795.71, + y=10440.37 + }, + [944]={ + nodes={ + [1]=13576 + }, + orbits={ + [1]=0 + }, + x=2802.27, + y=-8676.29 + }, + [945]={ + nodes={ + [1]=64352 + }, + orbits={ + [1]=0 + }, + x=2806.74, + y=4311.96 + }, + [946]={ + nodes={ + [1]=37372 + }, + orbits={ + [1]=0 + }, + x=2810.3, + y=-9096.02 + }, + [947]={ + nodes={ + [1]=12337 + }, + orbits={ + [1]=0 + }, + x=2880.86, + y=9533.6 + }, + [948]={ + nodes={ + [1]=25281, + [2]=10677, + [3]=56638, + [4]=53935 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=2886.44, + y=-3430.12 + }, + [949]={ + nodes={ + [1]=7405 + }, + orbits={ + [1]=0 + }, + x=2886.7, + y=-4100.44 + }, + [950]={ + nodes={ + [1]=48585 + }, + orbits={ + [1]=0 + }, + x=2890.88, + y=2251.96 + }, + [951]={ + nodes={ + [1]=31517, + [2]=11722, + [3]=62431 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2898.16, + y=-5489.12 + }, + [952]={ + nodes={ + [1]=13341, + [2]=56841, + [3]=18451, + [4]=63255 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=2899.54, + y=2850.56 + }, + [953]={ + nodes={ + [1]=62230, + [2]=19355, + [3]=37974 + }, + orbits={ + [1]=6 + }, + x=2922.78, + y=-10114.18 + }, + [954]={ + 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, + [6]=5 + }, + x=2922.78, + y=-9973.75 + }, + [955]={ + nodes={ + [1]=21336, + [2]=15975, + [3]=62984, + [4]=58182, + [5]=7344, + [6]=26931 + }, + orbits={ + [1]=3, + [2]=2 + }, + x=2935.56, + y=-1694.84 + }, + [956]={ + nodes={ + [1]=8975 + }, + orbits={ + [1]=0 + }, + x=2939.76, + y=-2768.08 + }, + [957]={ + nodes={ + [1]=44487, + [2]=45137, + [3]=39884, + [4]=40271 + }, + orbits={ + [1]=7 + }, + x=2946.52, + y=4969.56 + }, + [958]={ + nodes={ + [1]=44345 + }, + orbits={ + [1]=0 + }, + x=2947.79, + y=4537.32 + }, + [959]={ + nodes={ + [1]=20504, + [2]=52836, + [3]=56806, + [4]=11980, + [5]=62341 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=2995.2, + y=8568.45 + }, + [960]={ + nodes={ + [1]=46157 + }, + orbits={ + [1]=0 + }, + x=3017.04, + y=-8315.27 + }, + [961]={ + nodes={ + [1]=50516, + [2]=41447, + [3]=31626, + [4]=59661, + [5]=13610, + [6]=2814, + [7]=26952, + [8]=12245, + [9]=19749 + }, + orbits={ + [1]=1, + [2]=3, + [3]=7 + }, + x=3038.31, + y=11084.54 + }, + [962]={ + nodes={ + [1]=38614, + [2]=25827, + [3]=55241, + [4]=44201, + [5]=27662 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=3049.32, + y=-6418.35 + }, + [963]={ + nodes={ + [1]=37806 + }, + orbits={ + [1]=0 + }, + x=3052.85, + y=-8723.72 + }, + [964]={ + nodes={ + [1]=42250 + }, + orbits={ + [1]=0 + }, + x=3086.31, + y=5345.94 + }, + [965]={ + nodes={ + [1]=40630 + }, + orbits={ + [1]=0 + }, + x=3105.36, + y=2128.06 + }, + [966]={ + nodes={ + [1]=6772, + [2]=30695, + [3]=13783, + [4]=56472, + [5]=22795, + [6]=42781 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=3109.38, + y=1336.95 + }, + [967]={ + nodes={ + [1]=17118 + }, + orbits={ + [1]=0 + }, + x=3112.88, + y=7440.94 + }, + [968]={ + nodes={ + [1]=20049, + [2]=30252, + [3]=32818, + [4]=48135, + [5]=12750 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=3112.88, + y=7857 + }, + [969]={ + nodes={ + [1]=50192 + }, + orbits={ + [1]=0 + }, + x=-5648.4816959661, + y=-14067.501217109 + }, + [970]={ + nodes={ + [1]=63064, + [2]=65437, + [3]=30634, + [4]=54413 + }, + orbits={ + [1]=3, + [2]=2 + }, + x=3116.47, + y=-1389.24 + }, + [971]={ + nodes={ + [1]=30047 + }, + orbits={ + [1]=0 + }, + x=3144.14, + y=3080.1 + }, + [972]={ + nodes={ + [1]=40068, + [2]=53149, + [3]=32683 + }, + orbits={ + [1]=4 + }, + x=3145.56, + y=-1331.11 + }, + [973]={ + nodes={ + [1]=56325 + }, + orbits={ + [1]=0 + }, + x=3195.27, + y=2366.42 + }, + [974]={ + nodes={ + [1]=3165 + }, + orbits={ + [1]=0 + }, + x=-5560.9516959661, + y=-15153.501217109 + }, + [975]={ + nodes={ + [1]=53965 + }, + orbits={ + [1]=0 + }, + x=3203.89, + y=9325.66 + }, + [976]={ + nodes={ + [1]=24825, + [2]=34136, + [3]=29479 + }, + orbits={ + [1]=5, + [2]=3 + }, + x=3203.92, + y=0.42 + }, + [977]={ + nodes={ + [1]=48833 + }, + orbits={ + [1]=0 + }, + x=3228.15, + y=4292.78 + }, + [978]={ + nodes={ + [1]=57517 + }, + orbits={ + [1]=0 + }, + x=3247.77, + y=3615.89 + }, + [979]={ + nodes={ + [1]=4 + }, + orbits={ + [1]=0 + }, + x=3249.41, + y=4552.82 + }, + [980]={ + nodes={ + [1]=46034 + }, + orbits={ + [1]=0 + }, + x=3255.08, + y=-5628.71 + }, + [981]={ + nodes={ + [1]=55668 + }, + orbits={ + [1]=0 + }, + x=3266.72, + y=-8000 + }, + [982]={ + nodes={ + [1]=55420, + [2]=30061, + [3]=31908, + [4]=5594, + [5]=50107, + [6]=50881 + }, + orbits={ + [1]=2 + }, + x=3269.96, + y=-7564.13 + }, + [983]={ + nodes={ + [1]=8785 + }, + orbits={ + [1]=0 + }, + x=3272.71, + y=-7565.73 + }, + [984]={ + nodes={ + [1]=29240 + }, + orbits={ + [1]=0 + }, + x=3284.63, + y=-9003.35 + }, + [985]={ + nodes={ + [1]=25170, + [2]=19442, + [3]=30820, + [4]=8606 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=3312.53, + y=4003.79 + }, + [986]={ + nodes={ + [1]=13411 + }, + orbits={ + [1]=5 + }, + x=3369.01, + y=-1178.15 + }, + [987]={ + nodes={ + [1]=33946, + [2]=34074, + [3]=57227, + [4]=23259, + [5]=22864, + [6]=57966 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=3386.17, + y=9912.71 + }, + [988]={ + nodes={ + [1]=16484 + }, + orbits={ + [1]=2 + }, + x=3395.61, + y=6043.67 + }, + [989]={ + nodes={ + [1]=32943, + [2]=22368, + [3]=47088, + [4]=8789, + [5]=16938, + [6]=29930, + [7]=63182, + [8]=37266 + }, + orbits={ + [1]=0, + [2]=2, + [3]=4, + [4]=7 + }, + x=3395.61, + y=6863.03 + }, + [990]={ + nodes={ + [1]=55429 + }, + orbits={ + [1]=0 + }, + x=3398.9, + y=1369.34 + }, + [991]={ + nodes={ + [1]=36630, + [2]=60829, + [3]=29941, + [4]=28268 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=3414.8, + y=3529.44 + }, + [992]={ + nodes={ + [1]=19808 + }, + orbits={ + [1]=0 + }, + x=3433.98, + y=1627.23 + }, + [993]={ + nodes={ + [1]=57513 + }, + orbits={ + [1]=0 + }, + x=3444.63, + y=-9280.49 + }, + [994]={ + nodes={ + [1]=25557 + }, + orbits={ + [1]=6 + }, + x=3446.89, + y=-7266.34 + }, + [995]={ + nodes={ + [1]=21280 + }, + orbits={ + [1]=0 + }, + x=3498.09, + y=2467.05 + }, + [996]={ + nodes={ + [1]=41770, + [2]=9441, + [3]=5077, + [4]=33080, + [5]=43254, + [6]=33400 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3507.9, + y=5460.57 + }, + [997]={ + nodes={ + [1]=11578 + }, + orbits={ + [1]=0 + }, + x=3512.67, + y=4752.05 + }, + [998]={ + nodes={ + [1]=20837 + }, + orbits={ + [1]=0 + }, + x=3537.82, + y=3734.46 + }, + [999]={ + nodes={ + [1]=41029 + }, + orbits={ + [1]=0 + }, + x=3541.56, + y=-6134.17 + }, + [1000]={ + nodes={ + [1]=28050 + }, + orbits={ + [1]=6 + }, + x=3551.58, + y=2050.41 + }, + [1001]={ + nodes={ + [1]=31928, + [2]=50574, + [3]=19426, + [4]=15443 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3553.55, + y=-5454.76 + }, + [1002]={ + nodes={ + [1]=5564 + }, + orbits={ + [1]=0 + }, + x=3555.53, + y=4441.55 + }, + [1003]={ + nodes={ + [1]=24812, + [2]=56360, + [3]=64643, + [4]=27176 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3563.72, + y=-3733.75 + }, + [1004]={ + nodes={ + [1]=36997 + }, + orbits={ + [1]=0 + }, + x=3599.3, + y=2962.09 + }, + [1005]={ + nodes={ + [1]=53539, + [2]=46705, + [3]=45650, + [4]=9572, + [5]=12822 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=3607.08, + y=2672.84 + }, + [1006]={ + nodes={ + [1]=17548, + [2]=14958, + [3]=630, + [4]=13419, + [5]=31039 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=3632.11, + y=-2981.28 + }, + [1007]={ + nodes={ + [1]=10671, + [2]=23419, + [3]=55930, + [4]=5740, + [5]=40687 + }, + orbits={ + [1]=2 + }, + x=3636.66, + y=10787.37 + }, + [1008]={ + nodes={ + [1]=22049 + }, + orbits={ + [1]=0 + }, + x=3638.69, + y=1581.38 + }, + [1009]={ + nodes={ + [1]=24239, + [2]=55846, + [3]=40213, + [4]=24481 + }, + orbits={ + [1]=0, + [2]=1 + }, + x=3641.03, + y=-482.86 + }, + [1010]={ + 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 + }, + [1011]={ + nodes={ + [1]=49473 + }, + orbits={ + [1]=0 + }, + x=3660.16, + y=3626.42 + }, + [1012]={ + nodes={ + [1]=47754, + [2]=23455, + [3]=49740, + [4]=55847, + [5]=27274 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=3668.09, + y=-8216.37 + }, + [1013]={ + nodes={ + [1]=63861, + [2]=55947, + [3]=13823, + [4]=46088, + [5]=62153, + [6]=32054 + }, + orbits={ + [1]=3, + [2]=2 + }, + x=3703.88, + y=-9989 + }, + [1014]={ + nodes={ + [1]=25100 + }, + orbits={ + [1]=0 + }, + x=3733.3, + y=5789.19 + }, + [1015]={ + nodes={ + [1]=25620, + [2]=26804, + [3]=55405, + [4]=59909, + [5]=30539, + [6]=9083 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=3771.31, + y=-7094.88 + }, + [1016]={ + nodes={ + [1]=10131 + }, + orbits={ + [1]=0 + }, + x=3772.63, + y=-10338.81 + }, + [1017]={ + nodes={ + [1]=51048 + }, + orbits={ + [1]=0 + }, + x=3772.84, + y=10291.5 + }, + [1018]={ + nodes={ + [1]=27761, + [2]=5826 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=3776.11, + y=2965.63 + }, + [1019]={ + nodes={ + [1]=61104 + }, + orbits={ + [1]=0 + }, + x=3779.38, + y=3832.89 + }, + [1020]={ + 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.24 + }, + [1021]={ + nodes={ + [1]=11838, + [2]=10881, + [3]=33112, + [4]=36450 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=3832.63, + y=-9003.35 + }, + [1022]={ + 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, + [4]=7 + }, + x=3842.13, + y=-4910.29 + }, + [1023]={ + nodes={ + [1]=5702 + }, + orbits={ + [1]=0 + }, + x=3849.74, + y=-1186.7 + }, + [1024]={ + nodes={ + [1]=38676, + [2]=27910, + [3]=53938, + [4]=64056, + [5]=36931 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=3855.19, + y=-2510.92 + }, + [1025]={ + nodes={ + [1]=56045 + }, + orbits={ + [1]=0 + }, + x=3856.59, + y=-2226.59 + }, + [1026]={ + nodes={ + [1]=44563, + [2]=59053, + [3]=54805 + }, + orbits={ + [1]=0, + [2]=3, + [3]=5 + }, + x=3857.5, + y=-5882.32 + }, + [1027]={ + nodes={ + [1]=13379 + }, + orbits={ + [1]=0 + }, + x=3866.11, + y=2806.15 + }, + [1028]={ + nodes={ + [1]=60505 + }, + orbits={ + [1]=0 + }, + x=3888.73, + y=1790.7 + }, + [1029]={ + nodes={ + [1]=63585 + }, + orbits={ + [1]=0 + }, + x=3915.95, + y=4292.71 + }, + [1030]={ + nodes={ + [1]=44612, + [2]=9112, + [3]=41538, + [4]=55598, + [5]=15644 + }, + orbits={ + [1]=0, + [2]=1, + [3]=3 + }, + x=3917.46, + y=3195.79 + }, + [1031]={ + nodes={ + [1]=31855, + [2]=37408, + [3]=60738, + [4]=46761 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=3918.15, + y=449.43 + }, + [1032]={ + 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, + [4]=7 + }, + x=3926.82, + y=9716.85 + }, + [1033]={ + nodes={ + [1]=38459, + [2]=61373, + [3]=63610, + [4]=5988, + [5]=38568 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=3926.84, + y=959.23 + }, + [1034]={ + nodes={ + [1]=33751, + [2]=8810, + [3]=12451 + }, + orbits={ + [1]=1, + [2]=3, + [3]=7 + }, + x=3941.17, + y=7406.81 + }, + [1035]={ + nodes={ + [1]=14343 + }, + orbits={ + [1]=0 + }, + x=3946.1, + y=8993.8 + }, + [1036]={ + nodes={ + [1]=18923 + }, + orbits={ + [1]=6 + }, + x=3992.99, + y=6086.8 + }, + [1037]={ + nodes={ + [1]=46146, + [2]=15829, + [3]=55227 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=3994, + y=-485.92 + }, + [1038]={ + nodes={ + [1]=21080, + [2]=1869, + [3]=27095, + [4]=48658, + [5]=14890 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=4022.98, + y=-4125.73 + }, + [1039]={ + nodes={ + [1]=32509, + [2]=47614, + [3]=3688, + [4]=22219, + [5]=52351, + [6]=52260 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=4031.85, + y=-6354.58 + }, + [1040]={ + nodes={ + [1]=13030 + }, + orbits={ + [1]=0 + }, + x=4037.79, + y=5340.36 + }, + [1041]={ + nodes={ + [1]=43691, + [2]=21746, + [3]=65009, + [4]=29517, + [5]=32701 + }, + orbits={ + [1]=6 + }, + x=4039.97, + y=0.42 + }, + [1042]={ + nodes={ + [1]=24647, + [2]=61196 + }, + orbits={ + [1]=6 + }, + x=4137.88, + y=-2406.01 + }, + [1043]={ + nodes={ + [1]=37220, + [2]=50342, + [3]=5227, + [4]=17955, + [5]=46402, + [6]=51708 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=4182.56, + y=6218.3 + }, + [1044]={ + nodes={ + [1]=59651, + [2]=47821, + [3]=41654, + [4]=41033, + [5]=55872 + }, + orbits={ + [1]=3, + [2]=2 + }, + x=4188.77, + y=-7809.17 + }, + [1045]={ + nodes={ + [1]=54746 + }, + orbits={ + [1]=0 + }, + x=4195.04, + y=9238 + }, + [1046]={ + nodes={ + [1]=41062, + [2]=47677, + [3]=14045, + [4]=33848, + [5]=31991, + [6]=65176, + [7]=36070, + [8]=9472 + }, + orbits={ + [1]=0, + [2]=4, + [3]=5, + [4]=6, + [5]=7 + }, + x=4216.28, + y=4693.55 + }, + [1047]={ + nodes={ + [1]=55 + }, + orbits={ + [1]=0 + }, + x=4219.73, + y=5087.65 + }, + [1048]={ + nodes={ + [1]=38703, + [2]=63525, + [3]=8249, + [4]=16816, + [5]=53094 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=4278.42, + y=10564.54 + }, + [1049]={ + nodes={ + [1]=8510 + }, + orbits={ + [1]=0 + }, + x=4283.46, + y=5565.69 + }, + [1050]={ + nodes={ + [1]=44239, + [2]=60083, + [3]=55270 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=4332.46, + y=-271.82 + }, + [1051]={ + nodes={ + [1]=55938, + [2]=41394, + [3]=56844, + [4]=40929, + [5]=43633, + [6]=40313, + [7]=58363, + [8]=10841 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=4344.88, + y=-9579.04 + }, + [1052]={ + nodes={ + [1]=9085 + }, + orbits={ + [1]=0 + }, + x=4347, + y=6925.8 + }, + [1053]={ + nodes={ + [1]=51463, + [2]=4364, + [3]=36114, + [4]=23360, + [5]=23736, + [6]=53566, + [7]=17077 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=4350.71, + y=7926.5 + }, + [1054]={ + nodes={ + [1]=50469 + }, + orbits={ + [1]=0 + }, + x=4375.94, + y=0.42 + }, + [1055]={ + nodes={ + [1]=49110 + }, + orbits={ + [1]=0 + }, + x=4385.38, + y=9460.25 + }, + [1056]={ + nodes={ + [1]=64851, + [2]=15030, + [3]=49545, + [4]=45693, + [5]=39658, + [6]=18831, + [7]=21324 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=4386.25, + y=1960.69 + }, + [1057]={ + nodes={ + [1]=60974, + [2]=1506, + [3]=60324, + [4]=42339, + [5]=18744 + }, + orbits={ + [1]=2 + }, + x=4414.61, + y=-8287.6 + }, + [1058]={ + 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 + }, + [1059]={ + nodes={ + [1]=45481, + [2]=29408, + [3]=52765, + [4]=34300, + [5]=31888, + [6]=13862 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4438.01, + y=-3100.56 + }, + [1060]={ + nodes={ + [1]=24922 + }, + orbits={ + [1]=0 + }, + x=4451.73, + y=7751.52 + }, + [1061]={ + nodes={ + [1]=40918 + }, + orbits={ + [1]=0 + }, + x=4468.06, + y=5319.67 + }, + [1062]={ + 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, + [4]=7 + }, + x=4480.65, + y=3149.72 + }, + [1063]={ + nodes={ + [1]=1773 + }, + orbits={ + [1]=0 + }, + x=4488.81, + y=5009.54 + }, + [1064]={ + nodes={ + [1]=30562, + [2]=13711, + [3]=3203, + [4]=8908, + [5]=11032 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=4520.4, + y=-6892.55 + }, + [1065]={ + nodes={ + [1]=36298 + }, + orbits={ + [1]=0 + }, + x=4526.88, + y=5794.6 + }, + [1066]={ + nodes={ + [1]=33823 + }, + orbits={ + [1]=0 + }, + x=4536.81, + y=-4967.55 + }, + [1067]={ + nodes={ + [1]=4519 + }, + orbits={ + [1]=0 + }, + x=4542.03, + y=-5257.07 + }, + [1068]={ + nodes={ + [1]=20236 + }, + orbits={ + [1]=0 + }, + x=4542.03, + y=-4689.37 + }, + [1069]={ + nodes={ + [1]=58932 + }, + orbits={ + [1]=0 + }, + x=-3941.5251094136, + y=-15586.089541646 + }, + [1070]={ + nodes={ + [1]=27262 + }, + orbits={ + [1]=0 + }, + x=4562.63, + y=9687.25 + }, + [1071]={ + nodes={ + [1]=51213 + }, + orbits={ + [1]=0 + }, + x=4563.3, + y=4714.06 + }, + [1072]={ + nodes={ + [1]=50912, + [2]=49461, + [3]=21314, + [4]=18818 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=4597.23, + y=322.95 + }, + [1073]={ + nodes={ + [1]=45193, + [2]=4083, + [3]=33815, + [4]=35644, + [5]=43677 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=4605.3, + y=1275.23 + }, + [1074]={ + nodes={ + [1]=33979 + }, + orbits={ + [1]=0 + }, + x=4648.31, + y=-8702.96 + }, + [1075]={ + nodes={ + [1]=11604 + }, + orbits={ + [1]=0 + }, + x=4671.13, + y=-2696.8 + }, + [1076]={ + nodes={ + [1]=49661, + [2]=49394, + [3]=23786, + [4]=33391, + [5]=56330, + [6]=39570 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=4, + [5]=7 + }, + x=4687.08, + y=7330.29 + }, + [1077]={ + nodes={ + [1]=3251 + }, + orbits={ + [1]=0 + }, + x=4693.79, + y=-9892.16 + }, + [1078]={ + nodes={ + [1]=4059 + }, + orbits={ + [1]=0 + }, + x=4703.02, + y=-8121.08 + }, + [1079]={ + nodes={ + [1]=4346 + }, + orbits={ + [1]=0 + }, + x=4705.26, + y=-4974.35 + }, + [1080]={ + 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, + [4]=7 + }, + x=4748.75, + y=-10725.21 + }, + [1081]={ + nodes={ + [1]=6161 + }, + orbits={ + [1]=0 + }, + x=4750.42, + y=-10827.13 + }, + [1082]={ + nodes={ + [1]=42460, + [2]=11882, + [3]=46182, + [4]=33838, + [5]=64747 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=4766, + y=3895.65 + }, + [1083]={ + nodes={ + [1]=6912 + }, + orbits={ + [1]=0 + }, + x=4782.59, + y=9204.08 + }, + [1084]={ + nodes={ + [1]=20467, + [2]=23244, + [3]=29899, + [4]=58312, + [5]=49497, + [6]=21792, + [7]=16786, + [8]=19001 + }, + orbits={ + [1]=1, + [2]=3, + [3]=7 + }, + x=4786.73, + y=9130.06 + }, + [1085]={ + nodes={ + [1]=17702 + }, + orbits={ + [1]=0 + }, + x=4788.07, + y=9831.08 + }, + [1086]={ + nodes={ + [1]=64650, + [2]=35058, + [3]=30210, + [4]=38966 + }, + orbits={ + [1]=2 + }, + x=4789.34, + y=6875.05 + }, + [1087]={ + nodes={ + [1]=1995 + }, + orbits={ + [1]=0 + }, + x=4791.75, + y=2293.82 + }, + [1088]={ + nodes={ + [1]=61976 + }, + orbits={ + [1]=0 + }, + x=4795.75, + y=6464.55 + }, + [1089]={ + nodes={ + [1]=62797 + }, + orbits={ + [1]=0 + }, + x=-3677.4251094136, + y=-16234.729541646 + }, + [1090]={ + nodes={ + [1]=9510, + [2]=16695, + [3]=61926, + [4]=1603 + }, + orbits={ + [1]=2 + }, + x=4821.1, + y=-7752.56 + }, + [1091]={ + nodes={ + [1]=32040 + }, + orbits={ + [1]=0 + }, + x=4825, + y=-7747.13 + }, + [1092]={ + nodes={ + [1]=7054, + [2]=47009, + [3]=37250, + [4]=21142, + [5]=55829, + [6]=1420 + }, + orbits={ + [1]=2, + [2]=7 + }, + x=4849.31, + y=-3488.45 + }, + [1093]={ + nodes={ + [1]=34201 + }, + orbits={ + [1]=0 + }, + x=4859.19, + y=8419.96 + }, + [1094]={ + nodes={ + [1]=13724 + }, + orbits={ + [1]=4 + }, + x=4872.03, + y=-4974.35 + }, + [1095]={ + 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.42 + }, + [1096]={ + nodes={ + [1]=29763 + }, + orbits={ + [1]=0 + }, + x=4889.32, + y=-7413.25 + }, + [1097]={ + nodes={ + [1]=39241 + }, + orbits={ + [1]=0 + }, + x=-3593.3351094136, + y=-16051.419541646 + }, + [1098]={ + nodes={ + [1]=22152, + [2]=15304, + [3]=16466, + [4]=40196 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4918.5, + y=-9036.21 + }, + [1099]={ + nodes={ + [1]=9586 + }, + orbits={ + [1]=4 + }, + x=4931.31, + y=-4650.65 + }, + [1100]={ + nodes={ + [1]=13367, + [2]=21713, + [3]=50588, + [4]=38969, + [5]=6010 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4944.98, + y=-2386.46 + }, + [1101]={ + nodes={ + [1]=36623, + [2]=3628, + [3]=64474, + [4]=31630, + [5]=10729 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4945.01, + y=-9466.17 + }, + [1102]={ + nodes={ + [1]=61356, + [2]=12498, + [3]=30341 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=4953.65, + y=2387.3 + }, + [1103]={ + nodes={ + [1]=63888 + }, + orbits={ + [1]=0 + }, + x=4955.38, + y=2861.7 + }, + [1104]={ + nodes={ + [1]=37695 + }, + orbits={ + [1]=0 + }, + x=4989.84, + y=542.4 + }, + [1105]={ + nodes={ + [1]=50879, + [2]=14211, + [3]=43238, + [4]=22972, + [5]=44540 + }, + orbits={ + [1]=1, + [2]=7 + }, + x=4990.13, + y=5788.96 + }, + [1106]={ + nodes={ + [1]=20820, + [2]=44628, + [3]=40166, + [4]=48544 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=4993.9, + y=-6490.84 + }, + [1107]={ + nodes={ + [1]=56729, + [2]=26308, + [3]=27017, + [4]=21349 + }, + orbits={ + [1]=2 + }, + x=5001.21, + y=7989.42 + }, + [1108]={ + nodes={ + [1]=10382 + }, + orbits={ + [1]=0 + }, + x=5026.31, + y=-8702.96 + }, + [1109]={ + nodes={ + [1]=20677 + }, + orbits={ + [1]=0 + }, + x=5061.13, + y=-4971.48 + }, + [1110]={ + nodes={ + [1]=43877, + [2]=51522, + [3]=47895, + [4]=56493 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=5074.31, + y=-208.98 + }, + [1111]={ + nodes={ + [1]=38044, + [2]=11813 + }, + orbits={ + [1]=7 + }, + x=5074.6, + y=585.09 + }, + [1112]={ + nodes={ + [1]=64345, + [2]=49968, + [3]=63679, + [4]=20008 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=5085.86, + y=7486.56 + }, + [1113]={ + nodes={ + [1]=61263, + [2]=59446, + [3]=22115, + [4]=4544 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=5095.01, + y=174.43 + }, + [1114]={ + nodes={ + [1]=37946 + }, + orbits={ + [1]=0 + }, + x=5112.65, + y=2295.51 + }, + [1115]={ + nodes={ + [1]=46782, + [2]=53698, + [3]=20916, + [4]=59355 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=5188.48, + y=-751.6 + }, + [1116]={ + nodes={ + [1]=9782 + }, + orbits={ + [1]=0 + }, + x=5193.02, + y=-5200.3 + }, + [1117]={ + nodes={ + [1]=535 + }, + orbits={ + [1]=0 + }, + x=5193.02, + y=-4742.69 + }, + [1118]={ + nodes={ + [1]=2446, + [2]=50268, + [3]=22851, + [4]=37164, + [5]=419, + [6]=63400 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=5214.31, + y=-8121.08 + }, + [1119]={ + 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 + }, + [1120]={ + 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={ + [1]=6, + [2]=9, + [3]=8 + }, + x=-3230.2751094136, + y=-15207.249541646 + }, + [1121]={ + nodes={ + [1]=24210, + [2]=26932, + [3]=2200, + [4]=35689, + [5]=34543 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=5279.5, + y=6677.73 + }, + [1122]={ + nodes={ + [1]=30456 + }, + orbits={ + [1]=0 + }, + x=5286.04, + y=719.09 + }, + [1123]={ + nodes={ + [1]=39423, + [2]=47635, + [3]=53207, + [4]=56914 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=5288.98, + y=-7410.44 + }, + [1124]={ + nodes={ + [1]=17254, + [2]=26596, + [3]=14272 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=5300.06, + y=-3797.31 + }, + [1125]={ + nodes={ + [1]=1953 + }, + orbits={ + [1]=0 + }, + x=5316.81, + y=-1530.6 + }, + [1126]={ + nodes={ + [1]=9275, + [2]=5704, + [3]=62166, + [4]=19337 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5320.34, + y=2650.99 + }, + [1127]={ + nodes={ + [1]=28021 + }, + orbits={ + [1]=0 + }, + x=5324.92, + y=-5429.12 + }, + [1128]={ + nodes={ + [1]=34621 + }, + orbits={ + [1]=0 + }, + x=5324.92, + y=-4513.87 + }, + [1129]={ + nodes={ + [1]=36759 + }, + orbits={ + [1]=0 + }, + x=5333.76, + y=-6040.15 + }, + [1130]={ + nodes={ + [1]=40480 + }, + orbits={ + [1]=0 + }, + x=5368.5, + y=-1842.95 + }, + [1131]={ + nodes={ + [1]=39569, + [2]=9046, + [3]=45609, + [4]=56776, + [5]=3458, + [6]=7353, + [7]=24129 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=3, + [5]=7 + }, + x=5399.15, + y=3723.01 + }, + [1132]={ + nodes={ + [1]=24165 + }, + orbits={ + [1]=0 + }, + x=5409.48, + y=-6761.17 + }, + [1133]={ + nodes={ + [1]=21984 + }, + orbits={ + [1]=1 + }, + x=5445.28, + y=-9562.99 + }, + [1134]={ + 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.41 + }, + [1135]={ + nodes={ + [1]=44420 + }, + orbits={ + [1]=0 + }, + x=5457.07, + y=-5200.42 + }, + [1136]={ + nodes={ + [1]=38541 + }, + orbits={ + [1]=0 + }, + x=5457.07, + y=-4742.78 + }, + [1137]={ + nodes={ + [1]=41645, + [2]=6490, + [3]=43964, + [4]=14082, + [5]=8831 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=5472.15, + y=-8445.56 + }, + [1138]={ + nodes={ + [1]=54176 + }, + orbits={ + [1]=0 + }, + x=5478.57, + y=-1107.81 + }, + [1139]={ + nodes={ + [1]=7526 + }, + orbits={ + [1]=0 + }, + x=5482.17, + y=6073.03 + }, + [1140]={ + nodes={ + [1]=36808, + [2]=37244, + [3]=34076, + [4]=22057, + [5]=33445, + [6]=30143, + [7]=37795 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=5544.92, + y=8921.21 + }, + [1141]={ + nodes={ + [1]=46882 + }, + orbits={ + [1]=1 + }, + x=5571.69, + y=9486.45 + }, + [1142]={ + nodes={ + [1]=61601 + }, + orbits={ + [1]=0 + }, + x=5579.63, + y=-4981.71 + }, + [1143]={ + 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, + [3]=5, + [4]=7 + }, + x=5581.73, + y=1347.41 + }, + [1144]={ + nodes={ + [1]=4238, + [2]=60173, + [3]=62986, + [4]=17316, + [5]=43263, + [6]=46688, + [7]=40244, + [8]=64492 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=5585.65, + y=8198.85 + }, + [1145]={ + nodes={ + [1]=11472, + [2]=19880, + [3]=59390, + [4]=40270 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5646.25, + y=635.1 + }, + [1146]={ + nodes={ + [1]=26598 + }, + orbits={ + [1]=0 + }, + x=5646.98, + y=0.51 + }, + [1147]={ + nodes={ + [1]=32813 + }, + orbits={ + [1]=2 + }, + x=5658.94, + y=4004.28 + }, + [1148]={ + nodes={ + [1]=59600, + [2]=12208, + [3]=13619, + [4]=35809 + }, + orbits={ + [1]=1, + [2]=7 + }, + x=5658.94, + y=4289.75 + }, + [1149]={ + nodes={ + [1]=49466, + [2]=9411, + [3]=30871 + }, + orbits={ + [1]=7 + }, + x=5658.96, + y=4337.05 + }, + [1150]={ + nodes={ + [1]=23905 + }, + orbits={ + [1]=0 + }, + x=5664.01, + y=-1616.29 + }, + [1151]={ + nodes={ + [1]=2995 + }, + orbits={ + [1]=0 + }, + x=-2784.3151094136, + y=-16234.729541646 + }, + [1152]={ + nodes={ + [1]=4328 + }, + orbits={ + [1]=0 + }, + x=5749.4, + y=-6287.76 + }, + [1153]={ + nodes={ + [1]=3463 + }, + orbits={ + [1]=0 + }, + x=5749.4, + y=-5672.71 + }, + [1154]={ + nodes={ + [1]=42379 + }, + orbits={ + [1]=0 + }, + x=5749.4, + y=-4981.71 + }, + [1155]={ + nodes={ + [1]=56860, + [2]=29320, + [3]=1680, + [4]=17447, + [5]=24843 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=5833.86, + y=5463.88 + }, + [1156]={ + nodes={ + [1]=38111, + [2]=10242, + [3]=6079, + [4]=32241 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=5891.44, + y=-6838.35 + }, + [1157]={ + nodes={ + [1]=10944, + [2]=33366, + [3]=55193 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=5924.32, + y=-625.86 + }, + [1158]={ + nodes={ + [1]=25971, + [2]=50635, + [3]=44423 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=5933.04, + y=-2670.25 + }, + [1159]={ + nodes={ + [1]=11764, + [2]=38878, + [3]=54975, + [4]=26772, + [5]=45774, + [6]=34898, + [7]=24240 + }, + orbits={ + [1]=0, + [2]=4, + [3]=5, + [4]=7 + }, + x=5943.98, + y=7225.03 + }, + [1160]={ + nodes={ + [1]=23915, + [2]=41529, + [3]=21380, + [4]=31284 + }, + orbits={ + [1]=0, + [2]=1, + [3]=2, + [4]=7 + }, + x=5948.13, + y=186.79 + }, + [1161]={ + nodes={ + [1]=60700, + [2]=52501, + [3]=44974 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=5965.19, + y=-239.81 + }, + [1162]={ + nodes={ + [1]=25520 + }, + orbits={ + [1]=0 + }, + x=5975.67, + y=-4755.44 + }, + [1163]={ + nodes={ + [1]=27875, + [2]=55463, + [3]=32123 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=5979.38, + y=-1521.97 + }, + [1164]={ + nodes={ + [1]=50121 + }, + orbits={ + [1]=0 + }, + x=5988.31, + y=-7475.15 + }, + [1165]={ + nodes={ + [1]=21572, + [2]=39050, + [3]=6660 + }, + orbits={ + [1]=2 + }, + x=6015.15, + y=6443.42 + }, + [1166]={ + nodes={ + [1]=31345, + [2]=30372, + [3]=42065, + [4]=55400, + [5]=37532 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=6036.73, + y=1763.34 + }, + [1167]={ + nodes={ + [1]=2516 + }, + orbits={ + [1]=0 + }, + x=-2412.6351094136, + y=-15898.889541646 + }, + [1168]={ + nodes={ + [1]=21801, + [2]=30748, + [3]=44369, + [4]=24150 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=6098.71, + y=-8410.42 + }, + [1169]={ + nodes={ + [1]=43720, + [2]=14383, + [3]=18568, + [4]=46601, + [5]=46887 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=6104.56, + y=8403.35 + }, + [1170]={ + nodes={ + [1]=45329 + }, + orbits={ + [1]=0 + }, + x=6129.78, + y=9643.2 + }, + [1171]={ + nodes={ + [1]=4552, + [2]=17215, + [3]=17668, + [4]=50817, + [5]=61355, + [6]=29306 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=6139.19, + y=-5350.4 + }, + [1172]={ + 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, + [2]=5, + [3]=6, + [4]=7 + }, + x=6172.4, + y=-3563.57 + }, + [1173]={ + nodes={ + [1]=45100, + [2]=56928, + [3]=62350, + [4]=7163, + [5]=23013 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=5 + }, + x=6220.23, + y=4601.9 + }, + [1174]={ + nodes={ + [1]=20641, + [2]=14231, + [3]=40399, + [4]=51934, + [5]=43281, + [6]=25304, + [7]=47359, + [8]=40453, + [9]=61056 + }, + orbits={ + [1]=0, + [2]=1, + [3]=5, + [4]=7 + }, + x=6324.58, + y=-9381.54 + }, + [1175]={ + nodes={ + [1]=38668, + [2]=32664, + [3]=27671, + [4]=32681, + [5]=5188 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=6345.01, + y=-6118.94 + }, + [1176]={ + nodes={ + [1]=23608, + [2]=40024, + [3]=2091, + [4]=61741, + [5]=6951, + [6]=63759, + [7]=26565, + [8]=24401 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=7 + }, + x=6359.19, + y=2826.09 + }, + [1177]={ + nodes={ + [1]=35901, + [2]=12890, + [3]=63566, + [4]=62464, + [5]=55275, + [6]=12120, + [7]=65207, + [8]=51606, + [9]=17854 + }, + orbits={ + [1]=3, + [2]=4, + [3]=6 + }, + x=6365.75, + y=3674.83 + }, + [1178]={ + nodes={ + [1]=43044 + }, + orbits={ + [1]=0 + }, + x=6365.75, + y=5562.23 + }, + [1179]={ + nodes={ + [1]=34853, + [2]=25458, + [3]=37568, + [4]=45370 + }, + orbits={ + [1]=7, + [2]=2 + }, + x=6365.75, + y=5989.65 + }, + [1180]={ + nodes={ + [1]=61403 + }, + orbits={ + [1]=0 + }, + x=6372.73, + y=-8685.67 + }, + [1181]={ + nodes={ + [1]=56349 + }, + orbits={ + [1]=0 + }, + x=6372.73, + y=-8307.67 + }, + [1182]={ + nodes={ + [1]=2128 + }, + orbits={ + [1]=0 + }, + x=6402.75, + y=9681.5 + }, + [1183]={ + nodes={ + [1]=5009, + [2]=36270, + [3]=12169 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=6411.76, + y=-4456.86 + }, + [1184]={ + nodes={ + [1]=28441, + [2]=32721, + [3]=24570, + [4]=11836, + [5]=47235, + [6]=53471, + [7]=10011, + [8]=11871 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=6431.15, + y=-2256.19 + }, + [1185]={ + nodes={ + [1]=11015 + }, + orbits={ + [1]=0 + }, + x=6470.71, + y=9436.59 + }, + [1186]={ + nodes={ + [1]=54725, + [2]=56336, + [3]=21208, + [4]=21748 + }, + orbits={ + [1]=7 + }, + x=6488.25, + y=-6987.61 + }, + [1187]={ + nodes={ + [1]=52191 + }, + orbits={ + [1]=0 + }, + x=6536.96, + y=-5291.42 + }, + [1188]={ + nodes={ + [1]=57088, + [2]=9421, + [3]=28086, + [4]=54557, + [5]=60170 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=6551.51, + y=876.88 + }, + [1189]={ + nodes={ + [1]=45709, + [2]=26363, + [3]=52803 + }, + orbits={ + [1]=7 + }, + x=6555.55, + y=-642.86 + }, + [1190]={ + nodes={ + [1]=7412, + [2]=49291, + [3]=57945, + [4]=59356 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=6555.55, + y=-627.07 + }, + [1191]={ + nodes={ + [1]=3128, + [2]=22713, + [3]=12166 + }, + orbits={ + [1]=7 + }, + x=6564.29, + y=-7691.65 + }, + [1192]={ + nodes={ + [1]=33221 + }, + orbits={ + [1]=0 + }, + x=6564.44, + y=-7691.65 + }, + [1193]={ + nodes={ + [1]=19722, + [2]=4959, + [3]=26331, + [4]=19003 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=6564.44, + y=-7691.65 + }, + [1194]={ + nodes={ + [1]=42658 + }, + orbits={ + [1]=0 + }, + x=6564.69, + y=4176.51 + }, + [1195]={ + nodes={ + [1]=40626 + }, + orbits={ + [1]=0 + }, + x=6576.82, + y=9549.91 + }, + [1196]={ + nodes={ + [1]=46431 + }, + orbits={ + [1]=0 + }, + x=6576.88, + y=8924.35 + }, + [1197]={ + nodes={ + [1]=6570 + }, + orbits={ + [1]=0 + }, + x=6612.09, + y=-6987.61 + }, + [1198]={ + nodes={ + [1]=65256 + }, + orbits={ + [1]=0 + }, + x=6617.23, + y=9944.27 + }, + [1199]={ + nodes={ + [1]=34845 + }, + orbits={ + [1]=0 + }, + x=6636.34, + y=9687.17 + }, + [1200]={ + nodes={ + [1]=38463 + }, + orbits={ + [1]=0 + }, + x=6649.25, + y=8378.88 + }, + [1201]={ + nodes={ + [1]=22329, + [2]=58526, + [3]=331, + [4]=32891, + [5]=62427, + [6]=42103, + [7]=50673 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=6654.65, + y=7621.83 + }, + [1202]={ + nodes={ + [1]=1631, + [2]=14001, + [3]=56893, + [4]=29049 + }, + orbits={ + [1]=7, + [2]=2 + }, + x=6661.76, + y=246.47 + }, + [1203]={ + nodes={ + [1]=28199 + }, + orbits={ + [1]=0 + }, + x=6670.73, + y=9432.42 + }, + [1204]={ + nodes={ + [1]=54678 + }, + orbits={ + [1]=0 + }, + x=6720.04, + y=-1779.61 + }, + [1205]={ + nodes={ + [1]=60735 + }, + orbits={ + [1]=0 + }, + x=6729.48, + y=3890.84 + }, + [1206]={ + nodes={ + [1]=57724, + [2]=26885, + [3]=34473, + [4]=20782, + [5]=42361 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=4, + [5]=7 + }, + x=6734.63, + y=-5492.35 + }, + [1207]={ + nodes={ + [1]=26268, + [2]=22710, + [3]=45111, + [4]=59214 + }, + orbits={ + [1]=7 + }, + x=6735.94, + y=-6987.61 + }, + [1208]={ + nodes={ + [1]=21111, + [2]=43522, + [3]=33099 + }, + orbits={ + [1]=4, + [2]=7 + }, + x=6771.38, + y=8501.01 + }, + [1209]={ + nodes={ + [1]=52060, + [2]=17602, + [3]=59799, + [4]=7338, + [5]=59798, + [6]=5335 + }, + orbits={ + [1]=0, + [2]=1, + [3]=7 + }, + x=6844.88, + y=-9157.81 + }, + [1210]={ + nodes={ + [1]=21495, + [2]=42794, + [3]=31433, + [4]=5348 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=6846.27, + y=4801 + }, + [1211]={ + nodes={ + [1]=54883 + }, + orbits={ + [1]=0 + }, + x=6883.65, + y=-5638.13 + }, + [1212]={ + nodes={ + [1]=26432 + }, + orbits={ + [1]=0 + }, + x=6900.54, + y=3596.76 + }, + [1213]={ + nodes={ + [1]=60273 + }, + orbits={ + [1]=0 + }, + x=7001.73, + y=9638.79 + }, + [1214]={ + nodes={ + [1]=59775 + }, + orbits={ + [1]=0 + }, + x=7020.48, + y=-5774.94 + }, + [1215]={ + nodes={ + [1]=6842, + [2]=28329, + [3]=18472, + [4]=46533, + [5]=3700, + [6]=36723 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=7031.53, + y=7197.76 + }, + [1216]={ + nodes={ + [1]=32438 + }, + orbits={ + [1]=0 + }, + x=7037.31, + y=-8704.87 + }, + [1217]={ + nodes={ + [1]=28623, + [2]=60464, + [3]=12998, + [4]=9968, + [5]=30463, + [6]=58971, + [7]=38678 + }, + orbits={ + [1]=0, + [2]=4, + [3]=2 + }, + x=7059, + y=5648.15 + }, + [1218]={ + nodes={ + [1]=51871, + [2]=8045, + [3]=3042 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=7065.9, + y=-3324.15 + }, + [1219]={ + nodes={ + [1]=28823, + [2]=11094, + [3]=59303 + }, + orbits={ + [1]=4, + [2]=7 + }, + x=7074.07, + y=9630.67 + }, + [1220]={ + nodes={ + [1]=23547, + [2]=45798, + [3]=43944, + [4]=30102, + [5]=62578, + [6]=46615, + [7]=53177 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=7077.07, + y=-4647.67 + }, + [1221]={ + nodes={ + [1]=14658 + }, + orbits={ + [1]=0 + }, + x=7088.65, + y=0 + }, + [1222]={ + nodes={ + [1]=28903, + [2]=42959, + [3]=59644, + [4]=32896, + [5]=22517 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=7088.65, + y=513.16 + }, + [1223]={ + nodes={ + [1]=55149 + }, + orbits={ + [1]=0 + }, + x=7119.01, + y=-8248.39 + }, + [1224]={ + nodes={ + [1]=14446 + }, + orbits={ + [1]=0 + }, + x=7123.27, + y=-7914.57 + }, + [1225]={ + nodes={ + [1]=11825 + }, + orbits={ + [1]=0 + }, + x=7191.57, + y=4152.81 + }, + [1226]={ + nodes={ + [1]=62185 + }, + orbits={ + [1]=0 + }, + x=7236.46, + y=5087.69 + }, + [1227]={ + 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 + }, + [1228]={ + nodes={ + [1]=64601 + }, + orbits={ + [1]=0 + }, + x=7273.71, + y=-2633.18 + }, + [1229]={ + nodes={ + [1]=41877 + }, + orbits={ + [1]=0 + }, + x=7273.71, + y=-2313.18 + }, + [1230]={ + nodes={ + [1]=40333, + [2]=43102, + [3]=30197, + [4]=52415, + [5]=24178, + [6]=42998, + [7]=32655, + [8]=33514 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=7300.34, + y=2711.86 + }, + [1231]={ + nodes={ + [1]=63981, + [2]=6516, + [3]=8194 + }, + orbits={ + [1]=7 + }, + x=7309.21, + y=3682.83 + }, + [1232]={ + nodes={ + [1]=29285, + [2]=9745, + [3]=11774, + [4]=58513, + [5]=16602, + [6]=14418 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=7334.57, + y=8277.54 + }, + [1233]={ + 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, + [5]=5, + [6]=6, + [7]=7, + [8]=8 + }, + x=7345.82, + y=2075.69 + }, + [1234]={ + nodes={ + [1]=52971, + [2]=21227, + [3]=36290, + [4]=23046, + [5]=62936, + [6]=51891, + [7]=49976, + [8]=25528 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=7 + }, + x=7365.71, + y=-6708.34 + }, + [1235]={ + nodes={ + [1]=15424, + [2]=35151, + [3]=44453, + [4]=58157, + [5]=61149, + [6]=42760 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=7384.78, + y=-3775.87 + }, + [1236]={ + nodes={ + [1]=24120, + [2]=52053, + [3]=14048, + [4]=34717, + [5]=10495 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=7 + }, + x=7386.63, + y=-380.49 + }, + [1237]={ + nodes={ + [1]=51040, + [2]=23822, + [3]=327, + [4]=58779, + [5]=9652 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7399.75, + y=-7157.75 + }, + [1238]={ + nodes={ + [1]=26762 + }, + orbits={ + [1]=0 + }, + x=7420.17, + y=-8305.21 + }, + [1239]={ + nodes={ + [1]=30657 + }, + orbits={ + [1]=0 + }, + x=7430.94, + y=7597.17 + }, + [1240]={ + 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, + [5]=5, + [6]=7 + }, + x=7459.44, + y=6789.98 + }, + [1241]={ + nodes={ + [1]=35380, + [2]=10058 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7466.03, + y=-8440.87 + }, + [1242]={ + nodes={ + [1]=14724 + }, + orbits={ + [1]=0 + }, + x=7487.17, + y=5195.85 + }, + [1243]={ + nodes={ + [1]=35671, + [2]=11504, + [3]=30839, + [4]=31172 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=5 + }, + x=7495.21, + y=1196.11 + }, + [1244]={ + nodes={ + [1]=44373 + }, + orbits={ + [1]=0 + }, + x=7501.94, + y=-8629.84 + }, + [1245]={ + nodes={ + [1]=336, + [2]=4806, + [3]=49388, + [4]=37304, + [5]=64543, + [6]=61921, + [7]=38215 + }, + orbits={ + [1]=2, + [2]=3, + [3]=4, + [4]=5 + }, + x=7520.58, + y=-906.8 + }, + [1246]={ + nodes={ + [1]=6800 + }, + orbits={ + [1]=0 + }, + x=7559.71, + y=-8913.34 + }, + [1247]={ + nodes={ + [1]=47374, + [2]=18049, + [3]=5802 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=7559.9, + y=4790.76 + }, + [1248]={ + nodes={ + [1]=32301 + }, + orbits={ + [1]=0 + }, + x=7573.53, + y=5472.94 + }, + [1249]={ + nodes={ + [1]=15301, + [2]=10277, + [3]=64064, + [4]=4709, + [5]=35477 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7632.55, + y=696.89 + }, + [1250]={ + nodes={ + [1]=31692, + [2]=46197, + [3]=61333, + [4]=45702, + [5]=39237 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7645.67, + y=-7774.6 + }, + [1251]={ + nodes={ + [1]=8456, + [2]=10267, + [3]=38329 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=7655.94, + y=2478.52 + }, + [1252]={ + nodes={ + [1]=49130, + [2]=58416, + [3]=1020, + [4]=54631, + [5]=30132 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=7664.38, + y=1483.08 + }, + [1253]={ + nodes={ + [1]=37813 + }, + orbits={ + [1]=0 + }, + x=7678.02, + y=5026.98 + }, + [1254]={ + nodes={ + [1]=58022 + }, + orbits={ + [1]=0 + }, + x=7691.01, + y=-8333.04 + }, + [1255]={ + nodes={ + [1]=12174, + [2]=18864, + [3]=49107, + [4]=54562, + [5]=49485, + [6]=2745 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=7726.42, + y=3243.25 + }, + [1256]={ + nodes={ + [1]=52445 + }, + orbits={ + [1]=0 + }, + x=7747, + y=-5468.73 + }, + [1257]={ + nodes={ + [1]=34324, + [2]=13457, + [3]=3630, + [4]=56838, + [5]=26034, + [6]=45631, + [7]=62624, + [8]=42805 + }, + orbits={ + [1]=3, + [2]=4, + [3]=7 + }, + x=7749.73, + y=-5462.17 + }, + [1258]={ + nodes={ + [1]=57821 + }, + orbits={ + [1]=4 + }, + x=7752.6, + y=-4481.19 + }, + [1259]={ + nodes={ + [1]=55377, + [2]=26211, + [3]=24883, + [4]=44573 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=7755.88, + y=-1645.82 + }, + [1260]={ + nodes={ + [1]=59503, + [2]=22208, + [3]=60034, + [4]=6330, + [5]=15207, + [6]=4378 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=7762.38, + y=6434.67 + }, + [1261]={ + nodes={ + [1]=5186 + }, + orbits={ + [1]=0 + }, + x=7764.53, + y=-8668.33 + }, + [1262]={ + nodes={ + [1]=34497 + }, + orbits={ + [1]=0 + }, + x=7768.26, + y=228.34 + }, + [1263]={ + nodes={ + [1]=56023 + }, + orbits={ + [1]=0 + }, + x=7806.6, + y=-2934.34 + }, + [1264]={ + nodes={ + [1]=33404 + }, + orbits={ + [1]=0 + }, + x=7810.1, + y=-4823.01 + }, + [1265]={ + nodes={ + [1]=50277 + }, + orbits={ + [1]=0 + }, + x=7815.76, + y=5381.08 + }, + [1266]={ + nodes={ + [1]=44932 + }, + orbits={ + [1]=3 + }, + x=7818.48, + y=5206.42 + }, + [1267]={ + nodes={ + [1]=52361, + [2]=57462, + [3]=53771, + [4]=12078, + [5]=33713, + [6]=26107 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=5 + }, + x=7868.42, + y=-3177.92 + }, + [1268]={ + nodes={ + [1]=50701 + }, + orbits={ + [1]=0 + }, + x=7874.86, + y=5154.88 + }, + [1269]={ + nodes={ + [1]=47976 + }, + orbits={ + [1]=0 + }, + x=7886.46, + y=-7151.38 + }, + [1270]={ + nodes={ + [1]=48462, + [2]=38497, + [3]=62803, + [4]=25029 + }, + orbits={ + [1]=4, + [2]=5, + [3]=7 + }, + x=7901.35, + y=8803.79 + }, + [1271]={ + nodes={ + [1]=33463 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=-1873.69 + }, + [1272]={ + nodes={ + [1]=49996 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=-996.85 + }, + [1273]={ + nodes={ + [1]=32183 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=-571.97 + }, + [1274]={ + nodes={ + [1]=12253 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=0 + }, + [1275]={ + nodes={ + [1]=35696 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=1153.21 + }, + [1276]={ + nodes={ + [1]=2408 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=2075.69 + }, + [1277]={ + nodes={ + [1]=42118 + }, + orbits={ + [1]=0 + }, + x=7994.25, + y=2711.86 + }, + [1278]={ + nodes={ + [1]=10648, + [2]=26400, + [3]=8904 + }, + orbits={ + [1]=0, + [2]=4, + [3]=7 + }, + x=8000.05, + y=4152.81 + }, + [1279]={ + 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 + }, + [1280]={ + nodes={ + [1]=55664, + [2]=16568, + [3]=63246, + [4]=34702, + [5]=31826, + [6]=33585, + [7]=31129, + [8]=24889 + }, + orbits={ + [1]=1, + [2]=3, + [3]=4, + [4]=5, + [5]=7 + }, + x=8073.32, + y=5817.48 + }, + [1281]={ + nodes={ + [1]=43453 + }, + orbits={ + [1]=0 + }, + x=8124.67, + y=632.41 + }, + [1282]={ + nodes={ + [1]=62542, + [2]=45713, + [3]=39607, + [4]=2559, + [5]=16329 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=8175.23, + y=-4097.21 + }, + [1283]={ + nodes={ + [1]=24786 + }, + orbits={ + [1]=0 + }, + x=8177.92, + y=6850.21 + }, + [1284]={ + nodes={ + [1]=17146, + [2]=57518, + [3]=31366, + [4]=3843, + [5]=65265 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=8184.76, + y=3540.75 + }, + [1285]={ + nodes={ + [1]=44490 + }, + orbits={ + [1]=0 + }, + x=8203.42, + y=-391.26 + }, + [1286]={ + nodes={ + [1]=12239 + }, + orbits={ + [1]=0 + }, + x=8254.56, + y=-2462.39 + }, + [1287]={ + nodes={ + [1]=64050 + }, + orbits={ + [1]=0 + }, + x=8280.06, + y=715.96 + }, + [1288]={ + nodes={ + [1]=54152 + }, + orbits={ + [1]=0 + }, + x=8280.54, + y=369.3 + }, + [1289]={ + nodes={ + [1]=1599, + [2]=35173, + [3]=16013, + [4]=41811, + [5]=16140, + [6]=31286 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=8281.88, + y=-2509.71 + }, + [1290]={ + nodes={ + [1]=1416 + }, + orbits={ + [1]=0 + }, + x=8284.38, + y=-6118.71 + }, + [1291]={ + nodes={ + [1]=5163, + [2]=48103, + [3]=26726, + [4]=52875 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8294.62, + y=-1449.59 + }, + [1292]={ + nodes={ + [1]=16401 + }, + orbits={ + [1]=0 + }, + x=8325.04, + y=-131.01 + }, + [1293]={ + nodes={ + [1]=39881 + }, + orbits={ + [1]=0 + }, + x=8344.62, + y=-2618.36 + }, + [1294]={ + nodes={ + [1]=24070 + }, + orbits={ + [1]=0 + }, + x=8357.14, + y=1153.21 + }, + [1295]={ + nodes={ + [1]=19461, + [2]=38944, + [3]=43338, + [4]=5797, + [5]=22063, + [6]=64415, + [7]=56767 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=8357.5, + y=-6160.65 + }, + [1296]={ + nodes={ + [1]=51602, + [2]=23305, + [3]=21279, + [4]=44280, + [5]=35534 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8365.09, + y=1769.99 + }, + [1297]={ + nodes={ + [1]=3431, + [2]=5305, + [3]=43082 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=8388.6, + y=6235.46 + }, + [1298]={ + nodes={ + [1]=30077 + }, + orbits={ + [1]=0 + }, + x=8390.12, + y=-7635.29 + }, + [1299]={ + nodes={ + [1]=24656 + }, + orbits={ + [1]=0 + }, + x=8400.25, + y=166.18 + }, + [1300]={ + nodes={ + [1]=7302, + [2]=52615, + [3]=33093, + [4]=25729, + [5]=37876 + }, + orbits={ + [1]=4, + [2]=7 + }, + x=8409.99, + y=-7674.9 + }, + [1301]={ + nodes={ + [1]=12800 + }, + orbits={ + [1]=0 + }, + x=8433.06, + y=504.46 + }, + [1302]={ + nodes={ + [1]=3994, + [2]=9089, + [3]=37951, + [4]=41020, + [5]=34908 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=8437.79, + y=2974.28 + }, + [1303]={ + nodes={ + [1]=61800, + [2]=52630, + [3]=28371, + [4]=60560, + [5]=29527 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=8443.67, + y=-719.43 + }, + [1304]={ + nodes={ + [1]=1514 + }, + orbits={ + [1]=0 + }, + x=8444.56, + y=-598.29 + }, + [1305]={ + nodes={ + [1]=7809 + }, + orbits={ + [1]=0 + }, + x=8464.96, + y=-3633.16 + }, + [1306]={ + nodes={ + [1]=54984 + }, + orbits={ + [1]=0 + }, + x=8470.97, + y=4890.73 + }, + [1307]={ + nodes={ + [1]=33348, + [2]=11509, + [3]=17664, + [4]=7465, + [5]=11463 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=8489.3, + y=2450.54 + }, + [1308]={ + nodes={ + [1]=56988 + }, + orbits={ + [1]=0 + }, + x=8506.18, + y=-3240.16 + }, + [1309]={ + nodes={ + [1]=47831, + [2]=44522, + [3]=63762, + [4]=34541, + [5]=52743, + [6]=8734 + }, + orbits={ + [1]=1, + [2]=2 + }, + x=8512.95, + y=-1003.98 + }, + [1310]={ + nodes={ + [1]=43090 + }, + orbits={ + [1]=0 + }, + x=8601.56, + y=-234.45 + }, + [1311]={ + 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 + }, + [1312]={ + nodes={ + [1]=8896 + }, + orbits={ + [1]=0 + }, + x=8629.29, + y=605.39 + }, + [1313]={ + nodes={ + [1]=15814 + }, + orbits={ + [1]=0 + }, + x=8660.79, + y=276.65 + }, + [1314]={ + 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, + [4]=6, + [5]=7 + }, + x=8668.76, + y=2075.69 + }, + [1315]={ + nodes={ + [1]=59538 + }, + orbits={ + [1]=0 + }, + x=8684.39, + y=-6347.76 + }, + [1316]={ + nodes={ + [1]=58397, + [2]=19338, + [3]=31647 + }, + orbits={ + [1]=0, + [2]=3 + }, + x=8692.14, + y=1153.21 + }, + [1317]={ + nodes={ + [1]=45382, + [2]=28859, + [3]=53265 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4 + }, + x=8713.8, + y=-2248.79 + }, + [1318]={ + nodes={ + [1]=25055, + [2]=13799, + [3]=41580, + [4]=36576, + [5]=41298 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=8732.17, + y=4438.38 + }, + [1319]={ + nodes={ + [1]=60483 + }, + orbits={ + [1]=0 + }, + x=8733.08, + y=-3633.16 + }, + [1320]={ + nodes={ + [1]=36540 + }, + orbits={ + [1]=0 + }, + x=8733.08, + y=-3371.16 + }, + [1321]={ + nodes={ + [1]=25070, + [2]=11252, + [3]=32903, + [4]=39911, + [5]=25361 + }, + orbits={ + [1]=2 + }, + x=8744.6, + y=-4572.62 + }, + [1322]={ + 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, + [5]=5, + [6]=6 + }, + x=8847.14, + y=7072.15 + }, + [1323]={ + nodes={ + [1]=18717 + }, + orbits={ + [1]=0 + }, + x=8862.26, + y=-3861.86 + }, + [1324]={ + nodes={ + [1]=24287 + }, + orbits={ + [1]=0 + }, + x=8886.25, + y=6141.88 + }, + [1325]={ + nodes={ + [1]=8273 + }, + orbits={ + [1]=0 + }, + x=8922.01, + y=-4178.25 + }, + [1326]={ + 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 + }, + [1327]={ + nodes={ + [1]=15625, + [2]=23253, + [3]=65161, + [4]=3170, + [5]=22811 + }, + orbits={ + [1]=2 + }, + x=8940.74, + y=5582.5 + }, + [1328]={ + nodes={ + [1]=1801, + [2]=60, + [3]=58426, + [4]=34401 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=8971.45, + y=474.23 + }, + [1329]={ + nodes={ + [1]=51241, + [2]=50420, + [3]=55118, + [4]=31364 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=8991.63, + y=4890.73 + }, + [1330]={ + nodes={ + [1]=15356 + }, + orbits={ + [1]=0 + }, + x=8992.39, + y=-3633.64 + }, + [1331]={ + nodes={ + [1]=40990 + }, + orbits={ + [1]=0 + }, + x=8993.62, + y=-3178.16 + }, + [1332]={ + nodes={ + [1]=2334 + }, + orbits={ + [1]=0 + }, + x=9027.14, + y=1153.21 + }, + [1333]={ + nodes={ + [1]=14226 + }, + orbits={ + [1]=0 + }, + x=9119.2, + y=6374.82 + }, + [1334]={ + nodes={ + [1]=17420 + }, + orbits={ + [1]=0 + }, + x=9124.17, + y=-3861.86 + }, + [1335]={ + nodes={ + [1]=18815 + }, + orbits={ + [1]=0 + }, + x=9125.5, + y=-3407.73 + }, + [1336]={ + nodes={ + [1]=25565 + }, + orbits={ + [1]=2 + }, + x=9152.09, + y=-4119.84 + }, + [1337]={ + 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.58 + }, + [1338]={ + nodes={ + [1]=41017 + }, + orbits={ + [1]=0 + }, + x=9212.92, + y=-2.43 + }, + [1339]={ + nodes={ + [1]=36364 + }, + orbits={ + [1]=0 + }, + x=9287.06, + y=3103.82 + }, + [1340]={ + nodes={ + [1]=27422, + [2]=2021, + [3]=17687, + [4]=10472, + [5]=25857 + }, + orbits={ + [1]=0, + [2]=3, + [3]=4, + [4]=7 + }, + x=9315.43, + y=3714.68 + }, + [1341]={ + nodes={ + [1]=10162, + [2]=3336, + [3]=36231, + [4]=30615, + [5]=65204 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=9329.96, + y=-5015.5 + }, + [1342]={ + nodes={ + [1]=22927, + [2]=20582, + [3]=29246 + }, + orbits={ + [1]=6 + }, + x=9400.47, + y=5023.83 + }, + [1343]={ + nodes={ + [1]=37242, + [2]=59368, + [3]=61215, + [4]=9532, + [5]=16871, + [6]=54031 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=9411.81, + y=4567.88 + }, + [1344]={ + nodes={ + [1]=52257 + }, + orbits={ + [1]=0 + }, + x=9455.83, + y=2570.72 + }, + [1345]={ + nodes={ + [1]=63600 + }, + orbits={ + [1]=0 + }, + x=9507.95, + y=2888.65 + }, + [1346]={ + nodes={ + [1]=31765 + }, + orbits={ + [1]=0 + }, + x=9512.58, + y=-5497.3 + }, + [1347]={ + 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, + [2]=5, + [3]=6 + }, + x=9516.92, + y=-7180.28 + }, + [1348]={ + nodes={ + [1]=34015 + }, + orbits={ + [1]=0 + }, + x=9527.62, + y=5500.5 + }, + [1349]={ + nodes={ + [1]=27513, + [2]=65498, + [3]=39307, + [4]=7294, + [5]=37026 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=9588.39, + y=-215.51 + }, + [1350]={ + nodes={ + [1]=44891, + [2]=55835, + [3]=20909, + [4]=52537, + [5]=7023 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=9590.33, + y=-3478.67 + }, + [1351]={ + nodes={ + [1]=59083, + [2]=32364, + [3]=1073, + [4]=32858, + [5]=1205, + [6]=14882, + [7]=5048, + [8]=261 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=7 + }, + x=9649.45, + y=5859.96 + }, + [1352]={ + nodes={ + [1]=57069 + }, + orbits={ + [1]=0 + }, + x=9696.74, + y=2772.94 + }, + [1353]={ + nodes={ + [1]=65091, + [2]=1841, + [3]=38728, + [4]=44776, + [5]=3209, + [6]=14539, + [7]=9405, + [8]=51707, + [9]=59720, + [10]=41163 + }, + orbits={ + [1]=0, + [2]=5, + [3]=7 + }, + x=9720.67, + y=1153.21 + }, + [1354]={ + nodes={ + [1]=62998 + }, + orbits={ + [1]=0 + }, + x=9731.16, + y=3030.3 + }, + [1355]={ + nodes={ + [1]=722 + }, + orbits={ + [1]=0 + }, + x=9755.52, + y=-4566.29 + }, + [1356]={ + nodes={ + [1]=35095, + [2]=19359, + [3]=41886, + [4]=9663, + [5]=52245 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=9759.71, + y=-5970.48 + }, + [1357]={ + nodes={ + [1]=20105 + }, + orbits={ + [1]=0 + }, + x=9764.39, + y=6540.17 + }, + [1358]={ + nodes={ + [1]=65212, + [2]=32543, + [3]=34968, + [4]=58539, + [5]=60899, + [6]=64637 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=9805.18, + y=2135.11 + }, + [1359]={ + nodes={ + [1]=48116 + }, + orbits={ + [1]=0 + }, + x=9826.06, + y=4319.11 + }, + [1360]={ + nodes={ + [1]=29990, + [2]=47477, + [3]=51774, + [4]=36217, + [5]=47021, + [6]=34425 + }, + orbits={ + [1]=1, + [2]=2, + [3]=7 + }, + x=9855.02, + y=-2946.78 + }, + [1361]={ + nodes={ + [1]=41861 + }, + orbits={ + [1]=0 + }, + x=9855.92, + y=3274.55 + }, + [1362]={ + nodes={ + [1]=21156, + [2]=19027, + [3]=34623, + [4]=40471, + [5]=14769, + [6]=7847 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=9860.54, + y=353.55 + }, + [1363]={ + nodes={ + [1]=20649 + }, + orbits={ + [1]=0 + }, + x=9947.79, + y=2860.79 + }, + [1364]={ + nodes={ + [1]=43867, + [2]=10423, + [3]=37905, + [4]=57571, + [5]=28101 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=9960.59, + y=-2144.87 + }, + [1365]={ + nodes={ + [1]=65290 + }, + orbits={ + [1]=0 + }, + x=10006.41, + y=2637.88 + }, + [1366]={ + nodes={ + [1]=16121, + [2]=61421, + [3]=56334, + [4]=46171, + [5]=41753 + }, + orbits={ + [1]=0, + [2]=7 + }, + x=10039.26, + y=-5356.19 + }, + [1367]={ + nodes={ + [1]=14262 + }, + orbits={ + [1]=0 + }, + x=10048.64, + y=0 + }, + [1368]={ + nodes={ + [1]=12116, + [2]=52410, + [3]=20414, + [4]=55329, + [5]=42036, + [6]=35043, + [7]=50146 + }, + orbits={ + [1]=4, + [2]=3 + }, + x=10080.5, + y=5416.44 + }, + [1369]={ + nodes={ + [1]=18624, + [2]=17523, + [3]=42032, + [4]=30408, + [5]=39608, + [6]=12329, + [7]=1778, + [8]=17906 + }, + orbits={ + [1]=0, + [2]=3, + [3]=7 + }, + x=10082.79, + y=4865.9 + }, + [1370]={ + nodes={ + [1]=49320, + [2]=30973 + }, + orbits={ + [1]=6 + }, + x=10091.58, + y=-5603.69 + }, + [1371]={ + nodes={ + [1]=15775 + }, + orbits={ + [1]=0 + }, + x=10091.7, + y=-3334.83 + }, + [1372]={ + nodes={ + [1]=3640, + [2]=28963, + [3]=7888, + [4]=17724, + [5]=17101, + [6]=25362, + [7]=37780 + }, + orbits={ + [1]=2, + [2]=3 + }, + x=10100.39, + y=-1227.6 + }, + [1373]={ + nodes={ + [1]=23105 + }, + orbits={ + [1]=0 + }, + x=10112.62, + y=-1237.84 + }, + [1374]={ + nodes={ + [1]=2582 + }, + orbits={ + [1]=0 + }, + x=10184.13, + y=3019.63 + }, + [1375]={ + nodes={ + [1]=60891, + [2]=18897, + [3]=64990, + [4]=53185 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=10203.08, + y=1730.1 + }, + [1376]={ + nodes={ + [1]=47514, + [2]=38342, + [3]=21945, + [4]=61718, + [5]=26572, + [6]=54545, + [7]=39128 + }, + orbits={ + [1]=0, + [2]=2, + [3]=7 + }, + x=10290.88, + y=-481.6 + }, + [1377]={ + nodes={ + [1]=29959, + [2]=60362, + [3]=6891, + [4]=56265, + [5]=42802 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=10299.85, + y=-3717.25 + }, + [1378]={ + nodes={ + [1]=17792, + [2]=34892, + [3]=12066, + [4]=42226, + [5]=48734 + }, + orbits={ + [1]=3, + [2]=2 + }, + x=10370.85, + y=533.97 + }, + [1379]={ + nodes={ + [1]=30808 + }, + orbits={ + [1]=0 + }, + x=10379, + y=-2278.35 + }, + [1380]={ + nodes={ + [1]=27705 + }, + orbits={ + [1]=0 + }, + x=10420.75, + y=2130.08 + }, + [1381]={ + nodes={ + [1]=28835, + [2]=60480, + [3]=56847, + [4]=8157, + [5]=178, + [6]=28044, + [7]=43088, + [8]=6988 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3, + [4]=5, + [5]=7 + }, + x=10451.5, + y=3456.48 + }, + [1382]={ + nodes={ + [1]=326 + }, + orbits={ + [1]=0 + }, + x=10503.99, + y=-3050.26 + }, + [1383]={ + nodes={ + [1]=59694 + }, + orbits={ + [1]=0 + }, + x=10614.77, + y=-3021.26 + }, + [1384]={ + nodes={ + [1]=3543, + [2]=31825, + [3]=20787, + [4]=5390, + [5]=16142 + }, + orbits={ + [1]=3, + [2]=7 + }, + x=10650.08, + y=2504.32 + }, + [1385]={ + nodes={ + [1]=632 + }, + orbits={ + [1]=0 + }, + x=10657.31, + y=-5268.96 + }, + [1386]={ + nodes={ + [1]=48773 + }, + orbits={ + [1]=0 + }, + x=10682.01, + y=1152.07 + }, + [1387]={ + 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, + [4]=5, + [5]=6 + }, + x=10682.25, + y=4548.52 + }, + [1388]={ + 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, + [4]=5, + [5]=6 + }, + x=10687.96, + y=-3515.65 + }, + [1389]={ + nodes={ + [1]=14267 + }, + orbits={ + [1]=0 + }, + x=10699.04, + y=-1058.34 + }, + [1390]={ + nodes={ + [1]=28638 + }, + orbits={ + [1]=0 + }, + x=10703.99, + y=-3595.77 + }, + [1391]={ + nodes={ + [1]=64700 + }, + orbits={ + [1]=0 + }, + x=10769.27, + y=-4040.33 + }, + [1392]={ + nodes={ + [1]=18969 + }, + orbits={ + [1]=0 + }, + x=10793.45, + y=4578.32 + }, + [1393]={ + nodes={ + [1]=52215 + }, + orbits={ + [1]=0 + }, + x=10794.6, + y=-5031.25 + }, + [1394]={ + nodes={ + [1]=3419, + [2]=28797, + [3]=20429 + }, + orbits={ + [1]=6 + }, + x=10801.88, + y=-4373.44 + }, + [1395]={ + nodes={ + [1]=46152, + [2]=40110, + [3]=42347, + [4]=8302, + [5]=4467, + [6]=42974 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3, + [4]=7 + }, + x=10841.31, + y=-2278.35 + }, + [1396]={ + nodes={ + [1]=38993 + }, + orbits={ + [1]=0 + }, + x=10852.75, + y=5275.51 + }, + [1397]={ + nodes={ + [1]=32442 + }, + orbits={ + [1]=0 + }, + x=10878.54, + y=-4005.64 + }, + [1398]={ + nodes={ + [1]=53272, + [2]=2560, + [3]=20044, + [4]=30736, + [5]=52180 + }, + orbits={ + [1]=1, + [2]=2, + [3]=3 + }, + x=10949.1, + y=3186.63 + }, + [1399]={ + nodes={ + [1]=32763 + }, + orbits={ + [1]=1 + }, + x=10978.46, + y=-82.24 + }, + [1400]={ + nodes={ + [1]=41873, + [2]=55995, + [3]=57970, + [4]=21537 + }, + orbits={ + [1]=2 + }, + x=11005.79, + y=1424.1 + }, + [1401]={ + nodes={ + [1]=27048 + }, + orbits={ + [1]=0 + }, + x=11023.99, + y=2449.53 + }, + [1402]={ + nodes={ + [1]=56366, + [2]=54058, + [3]=35755, + [4]=4423, + [5]=62001 + }, + orbits={ + [1]=0, + [2]=2, + [3]=3 + }, + x=11047.97, + y=-5335.92 + }, + [1403]={ + nodes={ + [1]=39495 + }, + orbits={ + [1]=0 + }, + x=11053.84, + y=2092.2 + }, + [1404]={ + nodes={ + [1]=38212, + [2]=57683, + [3]=1499, + [4]=33830, + [5]=35031 + }, + orbits={ + [1]=0, + [2]=2 + }, + x=11095.74, + y=-797.85 + }, + [1405]={ + nodes={ + [1]=328 + }, + orbits={ + [1]=0 + }, + x=11202.42, + y=4037.83 + }, + [1406]={ + nodes={ + [1]=28976 + }, + orbits={ + [1]=0 + }, + x=11230.95, + y=-1058.34 + }, + [1407]={ + nodes={ + [1]=47375 + }, + orbits={ + [1]=0 + }, + x=11305.33, + y=2677.45 + }, + [1408]={ + nodes={ + [1]=39986 + }, + orbits={ + [1]=0 + }, + x=11330.52, + y=1564.9 + }, + [1409]={ + nodes={ + [1]=6030, + [2]=2500, + [3]=15986, + [4]=29458, + [5]=2134, + [6]=53595, + [7]=9703, + [8]=1723, + [9]=38628 + }, + orbits={ + [1]=2, + [2]=3, + [3]=7 + }, + x=11355.41, + y=-1515.36 + }, + [1410]={ + 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, + [4]=7 + }, + x=11355.97, + y=617.13 + }, + [1411]={ + nodes={ + [1]=46386 + }, + orbits={ + [1]=0 + }, + x=11403.34, + y=1937.84 + }, + [1412]={ + nodes={ + [1]=23374 + }, + orbits={ + [1]=0 + }, + x=11480.79, + y=-1058.34 + }, + [1413]={ + nodes={ + [1]=63618 + }, + orbits={ + [1]=0 + }, + x=11588.89, + y=2604.19 + }, + [1414]={ + nodes={ + [1]=37971 + }, + orbits={ + [1]=0 + }, + x=11726.63, + y=2342.66 + }, + [1415]={ + nodes={ + [1]=57933 + }, + orbits={ + [1]=0 + }, + x=11768.79, + y=1960.45 + }, + [1417]={ + nodes={ + [1]=52800, + [2]=57615, + [3]=32319, + [4]=48836, + [5]=33542 + }, + orbits={ + [1]=0, + [2]=4, + [3]=6, + [4]=7 + }, + x=12068.18, + y=1163.81 + }, + [1418]={ + nodes={ + [1]=16150 + }, + orbits={ + [1]=0 + }, + x=12070.35, + y=2129.97 + }, + [1419]={ + nodes={ + [1]=47443 + }, + orbits={ + [1]=0 + }, + x=12118.08, + y=2530.75 + }, + [1420]={ + nodes={ + [1]=44699 + }, + orbits={ + [1]=0 + }, + x=12345.66, + y=2292.24 + }, + [1421]={ + nodes={ + [1]=60992 + }, + orbits={ + [1]=0 + }, + x=12484.46, + y=2765.08 + }, + [1422]={ + nodes={ + [1]=10315 + }, + orbits={ + [1]=0 + }, + x=12637.88, + y=2423.74 + }, + [1426]={ + nodes={ + [1]=24226 + }, + orbits={ + [1]=0 + }, + x=15117.158863669, + y=4222.9796220229 + }, + [1427]={ + nodes={ + [1]=12033, + [2]=42416, + [3]=46854, + [4]=61461, + [5]=3987, + [6]=24295, + [7]=49165, + [8]=39723, + [9]=46990 + }, + orbits={ + [1]=2, + [2]=3, + [3]=5, + [4]=6, + [5]=8, + [6]=9 + }, + x=15206.108863669, + y=3234.4396220229 + }, + [1428]={ + nodes={ + [1]=30 + }, + orbits={ + [1]=0 + }, + x=15297.928863669, + y=3773.2996220229 + }, + [1429]={ + nodes={ + [1]=29871 + }, + orbits={ + [1]=0 + }, + x=15400.178863669, + y=4147.1496220229 + }, + [1430]={ + 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, + [3]=5, + [4]=6, + [5]=8, + [6]=9 + }, + x=12605.015732927, + y=-9099.5692755704 + }, + [1431]={ + nodes={ + [1]=59542 + }, + orbits={ + [1]=0 + }, + x=15664.448863669, + y=3601.9396220229 + }, + [1432]={ + nodes={ + [1]=59913 + }, + orbits={ + [1]=0 + }, + x=15683.198863669, + y=4071.3096220229 + }, + [1433]={ + nodes={ + [1]=5817 + }, + orbits={ + [1]=0 + }, + x=15717.168863669, + y=3046.0996220229 + }, + [1434]={ + nodes={ + [1]=41875 + }, + orbits={ + [1]=0 + }, + x=15757.968863669, + y=3438.9396220229 + }, + [1436]={ + nodes={ + [1]=23508 + }, + orbits={ + [1]=0 + }, + x=16109.948863669, + y=2556.2096220229 + }, + [1437]={ + nodes={ + [1]=35801 + }, + orbits={ + [1]=0 + }, + x=16161.838863669, + y=2844.5696220229 + }, + [1438]={ + nodes={ + [1]=61991, + [2]=24868, + [3]=29074, + [4]=14508, + [5]=33736, + [6]=9798, + [7]=1583 + }, + orbits={ + [1]=9, + [2]=8 + }, + x=14202.55838509, + y=6323.5874913776 + }, + [1439]={ + nodes={ + [1]=37336 + }, + orbits={ + [1]=0 + }, + x=16214.908863669, + y=3132.7296220229 + }, + [1440]={ + nodes={ + [1]=38004 + }, + orbits={ + [1]=0 + }, + x=14706.26838509, + y=5869.0874913776 + }, + [1441]={ + nodes={ + [1]=9710 + }, + orbits={ + [1]=0 + }, + x=14706.26838509, + y=5990.0874913776 + }, + [1442]={ + nodes={ + [1]=18940 + }, + orbits={ + [1]=0 + }, + x=14811.06838509, + y=5808.5874913776 + }, + [1443]={ + nodes={ + [1]=57141 + }, + orbits={ + [1]=0 + }, + x=14811.06838509, + y=5929.5874913776 + }, + [1444]={ + nodes={ + [1]=49503 + }, + orbits={ + [1]=0 + }, + x=14811.06838509, + y=6429.2774913776 + }, + [1445]={ + nodes={ + [1]=56618 + }, + orbits={ + [1]=0 + }, + x=14915.85838509, + y=5867.6874913776 + }, + [1446]={ + nodes={ + [1]=58379 + }, + orbits={ + [1]=0 + }, + x=14915.85838509, + y=5990.0874913776 + }, + [1447]={ + nodes={ + [1]=16 + }, + orbits={ + [1]=0 + }, + x=15092.69838509, + y=6429.2774913776 + }, + [1448]={ + nodes={ + [1]=41619 + }, + orbits={ + [1]=0 + }, + x=15156.65838509, + y=6190.6174913776 + }, + [1449]={ + nodes={ + [1]=57253 + }, + orbits={ + [1]=0 + }, + x=15268.72838509, + y=6319.0874913776 + }, + [1450]={ + nodes={ + [1]=16433 + }, + orbits={ + [1]=0 + }, + x=15345.70838509, + y=6422.2774913776 + }, + [1451]={ + nodes={ + [1]=12183 + }, + orbits={ + [1]=0 + }, + x=15345.70838509, + y=6704.5274913776 + }, + [1452]={ + nodes={ + [1]=46454 + }, + orbits={ + [1]=0 + }, + x=15349.46838509, + y=5717.3874913776 + }, + [1453]={ + nodes={ + [1]=36676 + }, + orbits={ + [1]=0 + }, + x=15349.46838509, + y=6049.5874913776 + }, + [1454]={ + nodes={ + [1]=12795 + }, + orbits={ + [1]=0 + }, + x=15424.62838509, + y=6319.0674913776 + }, + [1455]={ + nodes={ + [1]=40 + }, + orbits={ + [1]=0 + }, + x=15534.87838509, + y=6189.6174913776 + }, + [1456]={ + nodes={ + [1]=39292 + }, + orbits={ + [1]=0 + }, + x=15599.42838509, + y=6429.2774913776 + }, + [1457]={ + nodes={ + [1]=35187 + }, + orbits={ + [1]=0 + }, + x=11269.831182469, + y=9136.4978543927 + }, + [1458]={ + 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={ + [1]=6, + [2]=8, + [3]=9, + [4]=5 + }, + x=14221.321245422, + y=-6282.2115396635 + }, + [1459]={ + nodes={ + [1]=41008 + }, + orbits={ + [1]=0 + }, + x=11604.641182469, + y=9372.6478543927 + }, + [1460]={ + nodes={ + [1]=664 + }, + orbits={ + [1]=0 + }, + x=14579.471245422, + y=-5756.2115396635 + }, + [1461]={ + nodes={ + [1]=42441 + }, + orbits={ + [1]=0 + }, + x=11674.681182469, + y=9101.9278543927 + }, + [1462]={ + nodes={ + [1]=26283 + }, + orbits={ + [1]=0 + }, + x=14685.891245422, + y=-5937.8815396635 + }, + [1463]={ + nodes={ + [1]=43095 + }, + orbits={ + [1]=0 + }, + x=11836.831182469, + y=9288.4078543927 + }, + [1464]={ + nodes={ + [1]=56331 + }, + orbits={ + [1]=0 + }, + x=14789.251245422, + y=-5754.8515396635 + }, + [1465]={ + nodes={ + [1]=528 + }, + orbits={ + [1]=0 + }, + x=12071.261182469, + y=9573.8678543927 + }, + [1466]={ + nodes={ + [1]=19233 + }, + orbits={ + [1]=0 + }, + x=12180.801182469, + y=9165.0778543927 + }, + [1468]={ + nodes={ + [1]=55796 + }, + orbits={ + [1]=0 + }, + x=12403.821182469, + y=9440.3478543927 + }, + [1469]={ + nodes={ + [1]=9294 + }, + orbits={ + [1]=0 + }, + x=12587.601182469, + y=9792.6278543927 + }, + [1470]={ + nodes={ + [1]=7979 + }, + orbits={ + [1]=0 + }, + x=12738.491182469, + y=9226.7678543927 + }, + [1471]={ + nodes={ + [1]=46071 + }, + orbits={ + [1]=0 + }, + x=12944.601182469, + y=9792.6278543927 + }, + [1472]={ + nodes={ + [1]=35033 + }, + orbits={ + [1]=0 + }, + x=12970.871182469, + y=9592.2878543927 + }, + [1473]={ + nodes={ + [1]=60662 + }, + orbits={ + [1]=0 + }, + x=13048.301182469, + y=9405.6278543927 + }, + [1474]={ + nodes={ + [1]=41736 + }, + orbits={ + [1]=6 + }, + x=13125.341182469, + y=9199.3678543927 + }, + [1475]={ + nodes={ + [1]=2702 + }, + orbits={ + [1]=0 + }, + x=13447.001182469, + y=9285.9178543927 + }, + [1476]={ + nodes={ + [1]=7068 + }, + orbits={ + [1]=0 + }, + x=9147.5225669017, + y=11798.264105614 + }, + [1477]={ + nodes={ + [1]=3065 + }, + orbits={ + [1]=0 + }, + x=13624.681182469, + y=8935.4478543927 + }, + [1478]={ + nodes={ + [1]=63254 + }, + orbits={ + [1]=0 + }, + x=13718.601182469, + y=9285.9178543927 + }, + [1479]={ + nodes={ + [1]=6109 + }, + orbits={ + [1]=0 + }, + x=13718.601182469, + y=9516.1478543927 + }, + [1480]={ + nodes={ + [1]=47312 + }, + orbits={ + [1]=0 + }, + x=13812.481182469, + y=8935.5578543927 + }, + [1481]={ + nodes={ + [1]=3223 + }, + orbits={ + [1]=0 + }, + x=9530.1025669017, + y=12133.294105614 + }, + [1482]={ + nodes={ + [1]=5563 + }, + orbits={ + [1]=0 + }, + x=13980.281182469, + y=9285.9178543927 + }, + [1483]={ + nodes={ + [1]=34785 + }, + orbits={ + [1]=0 + }, + x=10082.402566902, + y=12206.524105614 + }, + [1484]={ + nodes={ + [1]=18280 + }, + orbits={ + [1]=0 + }, + x=10578.312566902, + y=11309.804105614 + }, + [1485]={ + nodes={ + [1]=62804 + }, + orbits={ + [1]=0 + }, + x=10797.962566902, + y=11727.654105614 + }, + [1486]={ + nodes={ + [1]=17058 + }, + orbits={ + [1]=0 + }, + x=10813.402566902, + y=11949.524105614 + }, + [1487]={ + nodes={ + [1]=42017 + }, + orbits={ + [1]=0 + }, + x=10813.402566902, + y=12206.524105614 + }, + [1488]={ + nodes={ + [1]=58574 + }, + orbits={ + [1]=0 + }, + x=10813.402566902, + y=12463.524105614 + }, + [1489]={ + nodes={ + [1]=37972 + }, + orbits={ + [1]=0 + }, + x=10880.112566902, + y=11352.134105614 + }, + [1490]={ + nodes={ + [1]=36365 + }, + orbits={ + [1]=6 + }, + x=10952.082566902, + y=11613.264105614 + }, + [1491]={ + nodes={ + [1]=4891 + }, + orbits={ + [1]=0 + }, + x=11114.202566902, + y=11498.364105614 + }, + [1492]={ + nodes={ + [1]=58149 + }, + orbits={ + [1]=0 + }, + x=11157.502566902, + y=11862.284105614 + }, + [1493]={ + nodes={ + [1]=37046 + }, + orbits={ + [1]=0 + }, + x=11206.462566902, + y=10749.284105614 + }, + [1494]={ + nodes={ + [1]=60859 + }, + orbits={ + [1]=0 + }, + x=11338.152566902, + y=11738.234105614 + }, + [1495]={ + nodes={ + [1]=30233 + }, + orbits={ + [1]=0 + }, + x=11379.622566902, + y=11334.214105614 + }, + [1496]={ + nodes={ + [1]=22661 + }, + orbits={ + [1]=0 + }, + x=11514.982566902, + y=11678.194105614 + }, + [1497]={ + nodes={ + [1]=11776 + }, + orbits={ + [1]=0 + }, + x=11660.712566902, + y=11279.134105614 + } + }, + 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 + }, + ["max_x"]=23983.291432028, + ["max_y"]=24475.572859619, + ["min_x"]=-23887.484495557, + ["min_y"]=-24295.632110005, + 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=979, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1447, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Life Flask Charges", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=16, + stats={ + [1]="20% increased Life Flask Charges gained" + } + }, + [30]={ + ascendancyName="Deadeye", + connections={ + }, + group=1428, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds", + isNotable=true, + name="Gathering Winds", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=30, + stats={ + [1]="Gain Tailwind on Skill use", + [2]="Lose all Tailwind when Hit" + } + }, + [40]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1455, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds", + isNotable=true, + name="Sustainable Practices", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=40, + stats={ + [1]="50% of Evasion Rating also grants Elemental Damage reduction" + } + }, + [52]={ + connections={ + [1]={ + id=39131, + orbit=0 + } + }, + group=180, + icon="Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds", + isKeystone=true, + name="Zealot's Oath", + orbit=0, + orbitIndex=0, + skill=52, + stats={ + [1]="Excess Life Recovery from Regeneration is applied to Energy Shield", + [2]="Energy Shield does not Recharge" + } + }, + [55]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern", + connections={ + }, + group=1047, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + isNotable=true, + name="Fast Acting Toxins", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Isolation" + }, + skill=55, + stats={ + [1]="Damaging Ailments deal damage 12% faster" + } + }, + [59]={ + ascendancyName="Lich", + connections={ + }, + group=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds", + isNotable=true, + isSwitchable=true, + name="Incessant Cacophony", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + } + } + }, + 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=1328, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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.dds", + name="Freeze Buildup", + orbit=2, + orbitIndex=7, + skill=65, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [71]={ + connections={ + [1]={ + id=62376, + orbit=0 + } + }, + group=449, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Acolyte of Chayula", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=9, + orbitIndex=24, + skill=74, + stats={ + } + }, + [94]={ + connections={ + [1]={ + id=27234, + orbit=0 + } + }, + group=862, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Efficient Killing", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Paranoia" + }, + 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=480, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + orbit=0, + orbitIndex=0, + skill=95, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [97]={ + connections={ + [1]={ + id=52442, + orbit=0 + } + }, + group=753, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=0, + skill=97, + stats={ + [1]="3% increased Attack Speed" + } + }, + [110]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=20, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds", + isNotable=true, + name="Internal Layer", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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=836, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + isNotable=true, + name="Insightfulness", + orbit=7, + orbitIndex=13, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Fear" + }, + 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=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=570, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=7, + orbitIndex=5, + skill=151, + stats={ + [1]="16% increased Accuracy Rating at Close Range" + } + }, + [178]={ + connections={ + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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=617, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=936, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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", + connections={ + }, + group=492, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=259, + stats={ + } + }, + [261]={ + connections={ + [1]={ + id=1205, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Toxic Sludge", + orbit=3, + orbitIndex=13, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Disgust" + }, + skill=261, + stats={ + [1]="40% increased Duration of Poisons you inflict against Slowed Enemies" + } + }, + [270]={ + connections={ + [1]={ + id=56219, + orbit=2 + } + }, + group=182, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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", + connections={ + }, + group=436, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=292, + stats={ + } + }, + [296]={ + connections={ + [1]={ + id=30959, + orbit=2 + }, + [2]={ + id=8145, + orbit=2 + }, + [3]={ + id=12992, + orbit=2 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=694, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleeding Duration", + orbit=0, + orbitIndex=0, + skill=315, + stats={ + [1]="10% increased Bleeding Duration" + } + }, + [326]={ + connections={ + [1]={ + id=31449, + orbit=0 + } + }, + group=1382, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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=1237, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Evasion", + orbit=2, + orbitIndex=12, + skill=327, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [328]={ + connections={ + [1]={ + id=25992, + orbit=0 + }, + [2]={ + id=60764, + orbit=0 + }, + [3]={ + id=21112, + orbit=0 + } + }, + group=1405, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=1201, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection and Evasion", + orbit=2, + orbitIndex=3, + skill=331, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 3% of Evasion Rating" + } + }, + [336]={ + connections={ + [1]={ + id=4806, + orbit=-3 + } + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + isNotable=true, + name="Storm Swell", + orbit=3, + orbitIndex=15, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Suffering" + }, + skill=336, + stats={ + [1]="Damage Penetrates 15% Cold Resistance", + [2]="Damage Penetrates 8% Lightning Resistance" + } + }, + [338]={ + connections={ + [1]={ + id=20140, + orbit=0 + } + }, + group=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Invocated Limit", + orbit=1, + orbitIndex=6, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Greed" + }, + skill=338, + stats={ + [1]="Invocated skills have 30% increased Maximum Energy" + } + }, + [354]={ + connections={ + [1]={ + id=48429, + orbit=0 + } + }, + group=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=724, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=2, + orbitIndex=4, + skill=364, + stats={ + [1]="+3 to all Attributes" + } + }, + [372]={ + connections={ + [1]={ + id=54340, + orbit=0 + } + }, + group=356, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Heatproof", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Greed" + }, + skill=372, + stats={ + [1]="+30% of Armour also applies to Fire Damage", + [2]="30% reduced Magnitude of Ignite on you" + } + }, + [375]={ + connections={ + [1]={ + id=12276, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + 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.dds", + name="Critical Hit Chance", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=378, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [419]={ + connections={ + [1]={ + id=63400, + orbit=-7 + } + }, + group=1118, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds", + 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.dds", + name="Shield Defences", + orbit=0, + orbitIndex=0, + skill=440, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [472]={ + connections={ + [1]={ + id=3744, + orbit=0 + } + }, + group=796, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + name="Dexterity", + orbit=7, + orbitIndex=20, + skill=472, + stats={ + [1]="+8 to Dexterity" + } + }, + [479]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=29126, + orbit=2 + } + }, + group=326, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Hidden Forms", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=2147483647 + }, + [2]={ + id=35745, + orbit=2147483647 + } + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + name="Gain Maximum Endurance Charges on Gaining Endurance Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=268, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=189, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=688, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=778, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=0, + orbitIndex=0, + skill=517, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [526]={ + connections={ + [1]={ + id=2645, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + 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=1465, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Accuracy", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=528, + stats={ + [1]="12% increased Accuracy Rating" + } + }, + [535]={ + connections={ + [1]={ + id=34621, + orbit=0 + } + }, + group=1117, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=0, + orbitIndex=0, + skill=535, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [541]={ + connections={ + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + name="Shapeshifted Energy Shield Recharge", + orbit=6, + orbitIndex=17, + skill=541, + stats={ + [1]="15% increased Energy Shield Recharge Rate while Shapeshifted" + } + }, + [558]={ + connections={ + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + 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.dds", + 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=1006, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=1, + orbitIndex=4, + skill=630, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [632]={ + connections={ + [1]={ + id=56366, + orbit=0 + } + }, + group=1385, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + name="Dagger Speed", + orbit=0, + orbitIndex=0, + skill=632, + stats={ + [1]="3% increased Attack Speed with Daggers" + } + }, + [664]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1460, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds", + isMultipleChoiceOption=true, + name="Choice of Power", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=664, + stats={ + [1]="Remnants have 50% increased effect", + [2]="Remnants can be collected from 50% further away", + [3]="All Flames of Chayula that you manifest are Purple" + } + }, + [703]={ + connections={ + [1]={ + id=44917, + orbit=-3 + } + }, + group=942, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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" + } + }, + [722]={ + connections={ + [1]={ + id=3419, + orbit=0 + }, + [2]={ + id=15775, + orbit=0 + } + }, + group=1355, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=722, + stats={ + [1]="+5 to any Attribute" + } + }, + [750]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + [1]={ + id=6952, + orbit=0 + } + }, + group=100, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Tribal Fury", + orbit=2, + orbitIndex=22, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Isolation" + }, + skill=750, + stats={ + [1]="Strikes deal Splash Damage" + } + }, + [752]={ + connections={ + [1]={ + id=47420, + orbit=0 + } + }, + group=267, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=376, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Command Skill Cooldown", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=378, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Minion Damage", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=762, + stats={ + [1]="Minions deal 20% increased Damage" + } + }, + [770]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=10694, + orbit=-7 + } + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Mana", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=6, + orbitIndex=7, + skill=770, + stats={ + [1]="3% increased maximum Mana" + } + }, + [829]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=36025, + orbit=2147483647 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=857, + stats={ + } + }, + [858]={ + connections={ + [1]={ + id=58387, + orbit=5 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=5, + orbitIndex=18, + skill=858, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [869]={ + connections={ + [1]={ + id=18959, + orbit=0 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + name="Armour and Energy Shield Delay", + orbit=7, + orbitIndex=9, + skill=869, + stats={ + [1]="12% increased Armour", + [2]="12% faster start of Energy Shield Recharge" + } + }, + [872]={ + connections={ + [1]={ + id=36556, + orbit=0 + } + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds", + name="Channelling Defences", + orbit=2, + orbitIndex=17, + skill=872, + stats={ + [1]="8% increased Global Defences while Channelling" + } + }, + [904]={ + connections={ + [1]={ + id=28578, + orbit=0 + } + }, + group=280, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=150, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=3, + orbitIndex=10, + skill=917, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [934]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern", + connections={ + [1]={ + id=12526, + orbit=-4 + } + }, + group=729, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + isNotable=true, + name="Natural Immunity", + orbit=4, + orbitIndex=63, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Paranoia" + }, + skill=934, + stats={ + [1]="+4 to Ailment Threshold per Dexterity" + } + }, + [968]={ + connections={ + [1]={ + id=6752, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + 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=279, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=1252, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + 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=1351, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=389, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + isNotable=true, + name="Shockwaves", + orbit=3, + orbitIndex=7, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Ire" + }, + 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=689, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Chill Effect on You", + orbit=2, + orbitIndex=0, + skill=1091, + stats={ + [1]="10% reduced Effect of Chill on you" + } + }, + [1104]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + [1]={ + id=56876, + orbit=0 + } + }, + group=312, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + isNotable=true, + name="Lust for Power", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Guilt" + }, + 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=141, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + name="Flail Damage", + orbit=0, + orbitIndex=0, + skill=1130, + stats={ + [1]="10% increased Damage with Flails" + } + }, + [1140]={ + connections={ + [1]={ + id=15507, + orbit=0 + } + }, + group=847, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=626, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds", + isSwitchable=true, + name="Spell Critical Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=303, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=7, + skill=1144, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [1151]={ + connections={ + [1]={ + id=4113, + orbit=0 + } + }, + group=785, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=7, + orbitIndex=8, + skill=1151, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [1169]={ + connections={ + [1]={ + id=25031, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Urgent Call", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Fear", + [2]="Isolation", + [3]="Suffering" + }, + 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=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.dds", + isOnlyImage=true, + name="Poison Mastery", + orbit=0, + orbitIndex=0, + skill=1205, + stats={ + } + }, + [1207]={ + connections={ + [1]={ + id=38323, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=174, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block and Shield Defences", + orbit=7, + orbitIndex=21, + skill=1214, + stats={ + [1]="4% increased Block chance", + [2]="15% increased Defences from Equipped Shield" + } + }, + [1215]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern", + connections={ + }, + group=878, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=1, + orbitIndex=5, + skill=1215, + stats={ + } + }, + [1218]={ + connections={ + [1]={ + id=14945, + orbit=0 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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", + connections={ + }, + group=657, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=1220, + stats={ + } + }, + [1286]={ + connections={ + [1]={ + id=17903, + orbit=-7 + } + }, + group=259, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Skill Speed", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=6, + orbitIndex=12, + skill=1347, + stats={ + [1]="4% increased Skill Speed" + } + }, + [1352]={ + connections={ + [1]={ + id=53216, + orbit=0 + } + }, + group=253, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Unbending", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Paranoia" + }, + 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", + connections={ + }, + group=1290, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=1416, + stats={ + } + }, + [1420]={ + connections={ + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=538, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=505, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Attributes", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=1442, + stats={ + [1]="3% increased Attributes" + } + }, + [1447]={ + connections={ + [1]={ + id=22393, + orbit=0 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + orbit=3, + orbitIndex=14, + skill=1447, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [1459]={ + connections={ + [1]={ + id=47252, + orbit=0 + } + }, + group=237, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=7, + orbitIndex=12, + skill=1459, + stats={ + [1]="16% increased Mana Regeneration Rate while stationary" + } + }, + [1468]={ + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + [1]={ + id=11037, + orbit=0 + } + }, + group=776, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=1477, + stats={ + } + }, + [1499]={ + connections={ + [1]={ + id=33830, + orbit=-2 + } + }, + group=1404, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds", + name="Life Regeneration", + orbit=2, + orbitIndex=0, + skill=1499, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [1502]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern", + connections={ + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + isNotable=true, + name="Draiocht Cleansing", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Ire", + [3]="Suffering" + }, + skill=1502, + stats={ + [1]="Channelling Skills deal 20% increased Damage", + [2]="Remove a Curse after Channelling for 2 seconds" + } + }, + [1506]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.dds", + isNotable=true, + name="Remnant Attraction", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Isolation" + }, + 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", + connections={ + [1]={ + id=29527, + orbit=0 + } + }, + group=1304, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=1514, + stats={ + } + }, + [1543]={ + connections={ + [1]={ + id=14096, + orbit=7 + }, + [2]={ + id=59376, + orbit=0 + } + }, + group=636, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=1, + orbitIndex=0, + skill=1543, + stats={ + [1]="3% increased Cast Speed" + } + }, + [1546]={ + connections={ + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + isNotable=true, + name="Spiral into Depression", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Envy", + [2]="Despair", + [3]="Suffering" + }, + skill=1546, + stats={ + [1]="3% increased Movement Speed", + [2]="25% increased Armour", + [3]="25% increased maximum Energy Shield" + } + }, + [1579]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=10987, + orbit=-9 + } + }, + group=391, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + 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=1438, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Pathfinder", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=9, + orbitIndex=48, + skill=1583, + stats={ + } + }, + [1599]={ + connections={ + [1]={ + id=31286, + orbit=0 + } + }, + group=1289, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=1090, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Storm Driven", + orbit=2, + orbitIndex=18, + recipe={ + [1]="Ire", + [2]="Ire", + [3]="Isolation" + }, + skill=1603, + stats={ + [1]="15% of Elemental Damage taken Recouped as Energy Shield" + } + }, + [1628]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49769, + orbit=2147483647 + }, + [2]={ + id=9554, + orbit=-7 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1202, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + name="Charm Duration", + orbit=2, + orbitIndex=4, + skill=1631, + stats={ + [1]="10% increased Charm Effect Duration" + } + }, + [1680]={ + connections={ + }, + group=1155, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Projectile Parry Range", + orbit=2, + orbitIndex=2, + skill=1680, + stats={ + [1]="20% increased Parry Range" + } + }, + [1700]={ + connections={ + [1]={ + id=48699, + orbit=0 + } + }, + group=689, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Duration", + orbit=3, + orbitIndex=22, + skill=1723, + stats={ + [1]="10% increased Poison Duration" + } + }, + [1755]={ + connections={ + [1]={ + id=18845, + orbit=-4 + } + }, + group=723, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1063, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=1369, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Duration", + orbit=7, + orbitIndex=12, + skill=1778, + stats={ + [1]="20% increased Hazard Duration" + } + }, + [1801]={ + connections={ + [1]={ + id=60, + orbit=3 + } + }, + group=1328, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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=647, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + isNotable=true, + name="Illuminated Crown", + orbit=4, + orbitIndex=60, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Suffering" + }, + 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", + connections={ + }, + group=165, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=1825, + stats={ + } + }, + [1826]={ + connections={ + [1]={ + id=39037, + orbit=0 + } + }, + group=830, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=7, + orbitIndex=8, + skill=1841, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [1855]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=16204, + orbit=2147483647 + } + }, + group=65, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds", + name="Flask Recovery", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=6, + orbitIndex=54, + skill=1855, + stats={ + [1]="12% increased Life and Mana Recovery from Flasks" + } + }, + [1865]={ + connections={ + [1]={ + id=54934, + orbit=0 + } + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=1038, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=2, + orbitIndex=1, + skill=1869, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [1878]={ + connections={ + [1]={ + id=14328, + orbit=0 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + name="Energy Shield and Armour applies to Elemental Resistance", + 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.dds", + name="Armour", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=631, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=7, + orbitIndex=3, + skill=1913, + stats={ + [1]="+20 to Armour" + } + }, + [1915]={ + connections={ + [1]={ + id=60085, + orbit=0 + } + }, + group=854, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + 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", + connections={ + [1]={ + id=51184, + orbit=0 + } + }, + group=723, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=1922, + stats={ + } + }, + [1928]={ + connections={ + }, + group=496, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1125, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=250, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + name="Mana Flasks", + orbit=2, + orbitIndex=8, + skill=1973, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [1988]={ + ascendancyName="Tactician", + connections={ + }, + group=402, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds", + isNotable=true, + name="Unleash Hell!", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + 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.dds", + name="Warcry Speed", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=1994, + stats={ + [1]="20% increased Warcry Speed" + } + }, + [1995]={ + connections={ + }, + group=1087, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + 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=1340, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + isNotable=true, + name="Wellspring", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Guilt" + }, + 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=529, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=405, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=2074, + stats={ + } + }, + [2091]={ + connections={ + }, + group=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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", + connections={ + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=2102, + stats={ + } + }, + [2113]={ + connections={ + [1]={ + id=326, + orbit=0 + }, + [2]={ + id=59694, + orbit=0 + } + }, + group=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + isNotable=true, + name="Martial Artistry", + orbit=3, + orbitIndex=13, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Fear" + }, + 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=632, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + 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=1182, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Area", + orbit=0, + orbitIndex=0, + skill=2128, + stats={ + [1]="10% increased Hazard Area of Effect" + } + }, + [2134]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + [1]={ + id=9703, + orbit=0 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Toxic Tolerance", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Isolation" + }, + skill=2134, + stats={ + [1]="Immune to Poison" + } + }, + [2138]={ + connections={ + [1]={ + id=32523, + orbit=0 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Spiral into Insanity", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Envy" + }, + skill=2138, + stats={ + [1]="29% increased Chaos Damage", + [2]="20% increased Defences" + } + }, + [2174]={ + connections={ + [1]={ + id=19249, + orbit=4 + } + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=4, + orbitIndex=70, + skill=2174, + stats={ + [1]="15% increased Totem Damage" + } + }, + [2200]={ + connections={ + [1]={ + id=35689, + orbit=7 + } + }, + group=1121, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds", + name="Damage", + orbit=7, + orbitIndex=20, + skill=2200, + stats={ + [1]="10% increased Damage" + } + }, + [2211]={ + connections={ + [1]={ + id=7473, + orbit=7 + } + }, + group=539, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + name="Herald Damage", + orbit=7, + orbitIndex=19, + skill=2211, + stats={ + [1]="Herald Skills deal 20% increased Damage" + } + }, + [2244]={ + connections={ + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=783, + icon="Art/2DArt/SkillIcons/passives/deepwisdom.dds", + 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=1332, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + name="Dexterity", + orbit=0, + orbitIndex=0, + skill=2334, + stats={ + [1]="+8 to Dexterity" + } + }, + [2335]={ + connections={ + [1]={ + id=18121, + orbit=0 + } + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + isNotable=true, + name="Turn the Clock Forward", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Guilt" + }, + skill=2335, + stats={ + [1]="20% increased Spell Damage", + [2]="15% increased Projectile Speed for Spell Skills" + } + }, + [2336]={ + connections={ + [1]={ + id=63402, + orbit=2 + } + }, + group=390, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + 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=255, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Dimensional Weakspot", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Isolation" + }, + 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=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + isNotable=true, + name="Blade Flurry", + orbit=3, + orbitIndex=9, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Despair" + }, + skill=2394, + stats={ + [1]="6% increased Attack Speed while Dual Wielding", + [2]="15% increased Attack Critical Hit Chance while Dual Wielding" + } + }, + [2397]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=642, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Last Stand", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Fear" + }, + 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=1276, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1118, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds", + name="Elemental Damage", + orbit=3, + orbitIndex=18, + skill=2446, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [2455]={ + connections={ + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=5, + orbitIndex=11, + skill=2455, + stats={ + [1]="8% increased Projectile Damage" + } + }, + [2461]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + [1]={ + id=44605, + orbit=0 + } + }, + group=773, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds", + isOnlyImage=true, + name="Accuracy Mastery", + orbit=0, + orbitIndex=0, + skill=2461, + stats={ + } + }, + [2486]={ + connections={ + [1]={ + id=63732, + orbit=3 + }, + [2]={ + id=19341, + orbit=7 + }, + [3]={ + id=58884, + orbit=0 + } + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Stars Aligned", + orbit=7, + orbitIndex=22, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Isolation" + }, + skill=2486, + stats={ + [1]="Damage with Hits is Lucky against Enemies that are on Low Life" + } + }, + [2491]={ + connections={ + [1]={ + id=28175, + orbit=0 + } + }, + group=377, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=10, + skill=2491, + stats={ + } + }, + [2500]={ + connections={ + [1]={ + id=6030, + orbit=7 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=591, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + name="Life Recoup", + orbit=7, + orbitIndex=18, + skill=2508, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [2511]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=528, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Sundering", + orbit=3, + orbitIndex=20, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Ire" + }, + 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=1167, + icon="Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds", + isNotable=true, + isSwitchable=true, + name="Price of Power", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds", + id=11705, + name="Steward of Kulemak", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + stats={ + [1]="Damaging Spells consume a Power Charge if able to trigger 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=1282, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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=1398, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=1, + skill=2560, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [2575]={ + connections={ + [1]={ + id=65154, + orbit=0 + } + }, + group=168, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Ancestral Alacrity", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Guilt" + }, + 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=1374, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=581, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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.dds", + isNotable=true, + name="Skullcrusher", + orbit=4, + orbitIndex=69, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Ire" + }, + 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=433, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + 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=214, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1475, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Life Leech", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=2702, + stats={ + [1]="12% increased amount of Life Leeched" + } + }, + [2732]={ + connections={ + [1]={ + id=16790, + orbit=-2 + } + }, + group=862, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds", + isOnlyImage=true, + name="Lightning Mastery", + orbit=0, + orbitIndex=0, + skill=2733, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [2745]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern", + connections={ + }, + group=1255, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds", + isNotable=true, + name="The Noble Wolf", + orbit=1, + orbitIndex=3, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Guilt" + }, + 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=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds", + isNotable=true, + name="Varashta's Intuition", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + 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=961, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Engineered Blaze", + orbit=3, + orbitIndex=5, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Isolation" + }, + 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", + connections={ + }, + group=894, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=2841, + stats={ + } + }, + [2843]={ + connections={ + [1]={ + id=61396, + orbit=0 + }, + [2]={ + id=61318, + orbit=0 + }, + [3]={ + id=62235, + orbit=0 + } + }, + group=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + isNotable=true, + name="Tolerant Equipment", + orbit=5, + orbitIndex=36, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Fear" + }, + skill=2843, + stats={ + [1]="Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating", + [2]="Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour" + } + }, + [2847]={ + connections={ + [1]={ + id=45272, + orbit=0 + } + }, + group=748, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds", + isNotable=true, + name="Strike Twice", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Perpetual Freeze", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Ire", + [3]="Isolation" + }, + 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 + }, + [6]={ + id=32564, + orbit=0 + } + }, + group=634, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds", + isNotable=true, + isSwitchable=true, + name="Blackened Heart", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds", + id=36863, + name="Unwilling Offering", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=422, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=7, + orbitIndex=15, + skill=2888, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [2936]={ + connections={ + [1]={ + id=13407, + orbit=-3 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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", + connections={ + }, + group=238, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Resistance Mastery", + orbit=1, + orbitIndex=1, + skill=2946, + stats={ + } + }, + [2955]={ + connections={ + [1]={ + id=28800, + orbit=0 + } + }, + group=404, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds", + name="Projectile Damage", + orbit=2, + orbitIndex=0, + skill=2955, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [2964]={ + connections={ + [1]={ + id=18374, + orbit=-7 + } + }, + group=478, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + 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", + connections={ + }, + group=853, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=2978, + stats={ + } + }, + [2995]={ + ascendancyName="Lich", + connections={ + [1]={ + id=2516, + orbit=4 + } + }, + group=1151, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Energy Shield if Consumed Power Charge", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=12474, + name="Energy Shield if Consumed Power Charge", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=266, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Final Barrage", + orbit=6, + orbitIndex=22, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Disgust" + }, + 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=786, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=212, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=648, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + [1]={ + id=51871, + orbit=0 + } + }, + group=1218, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=2, + orbitIndex=19, + skill=3042, + stats={ + } + }, + [3051]={ + connections={ + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + name="Offering Life", + orbit=2, + orbitIndex=0, + skill=3051, + stats={ + [1]="Offerings have 30% increased Maximum Life" + } + }, + [3065]={ + ascendancyName="Amazon", + connections={ + }, + group=1477, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds", + isNotable=true, + name="Mystic Harvest", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + 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=2147483647 + } + }, + group=485, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Reduced Attribute Requirements", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + 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=706, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + 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=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=1191, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + 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=974, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Life", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=3165, + stats={ + [1]="3% increased maximum Life" + } + }, + [3170]={ + connections={ + [1]={ + id=22811, + orbit=0 + } + }, + group=1327, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds", + name="Deflection", + orbit=2, + orbitIndex=20, + skill=3170, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [3188]={ + connections={ + [1]={ + id=38670, + orbit=0 + }, + [2]={ + id=46051, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.dds", + isNotable=true, + name="Revenge", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Ire", + [2]="Disgust", + [3]="Isolation" + }, + skill=3188, + stats={ + [1]="Gain Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour" + } + }, + [3203]={ + connections={ + [1]={ + id=30562, + orbit=-4 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + name="Evasion and Energy Shield", + orbit=7, + orbitIndex=14, + skill=3203, + stats={ + [1]="12% increased Evasion Rating", + [2]="12% increased maximum Energy Shield" + } + }, + [3209]={ + connections={ + [1]={ + id=59720, + orbit=-6 + }, + [2]={ + id=65091, + orbit=4 + } + }, + group=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=7, + orbitIndex=16, + skill=3209, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [3215]={ + connections={ + [1]={ + id=44359, + orbit=0 + } + }, + group=836, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + isNotable=true, + name="Melding", + orbit=7, + orbitIndex=9, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Suffering" + }, + skill=3215, + stats={ + [1]="40% increased maximum Energy Shield", + [2]="10% reduced maximum Mana" + } + }, + [3218]={ + connections={ + [1]={ + id=48171, + orbit=0 + } + }, + group=244, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=1481, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Attributes", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=3223, + stats={ + [1]="3% increased Attributes" + } + }, + [3234]={ + connections={ + [1]={ + id=4447, + orbit=0 + }, + [2]={ + id=31745, + orbit=0 + } + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + name="Pin Duration", + orbit=1, + orbitIndex=8, + skill=3234, + stats={ + [1]="15% increased Pin duration" + } + }, + [3242]={ + connections={ + [1]={ + id=59636, + orbit=-4 + } + }, + group=745, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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.dds", + 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=1077, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=3251, + stats={ + [1]="+5 to any Attribute" + } + }, + [3281]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=35720, + orbit=0 + } + }, + group=665, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + isNotable=true, + name="Powerful Casting", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + name="Ballista Immobilisation Buildup", + orbit=3, + orbitIndex=15, + skill=3282, + stats={ + [1]="20% increased Ballista Immobilisation buildup" + } + }, + [3332]={ + connections={ + }, + group=605, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.dds", + 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=1341, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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.dds", + isNotable=true, + name="Spirit of the Wolf", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Suffering" + }, + 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=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=323, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=818, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Immobilisation Buildup", + orbit=2, + orbitIndex=17, + skill=3365, + stats={ + [1]="15% increased Immobilisation buildup" + } + }, + [3414]={ + connections={ + [1]={ + id=14575, + orbit=0 + } + }, + group=595, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.dds", + 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=1394, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + name="Dagger Damage", + orbit=6, + orbitIndex=59, + skill=3419, + stats={ + [1]="10% increased Damage with Daggers" + } + }, + [3431]={ + connections={ + [1]={ + id=43082, + orbit=0 + } + }, + group=1297, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + name="Skill Speed", + orbit=1, + orbitIndex=6, + skill=3431, + stats={ + [1]="3% increased Skill Speed" + } + }, + [3438]={ + connections={ + [1]={ + id=18856, + orbit=0 + } + }, + group=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=868, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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 + } + }, + group=229, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1131, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1153, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=647, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=3471, + stats={ + } + }, + [3472]={ + connections={ + [1]={ + id=26682, + orbit=-3 + } + }, + group=699, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=678, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Void", + orbit=3, + orbitIndex=12, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Disgust" + }, + 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=596, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=7, + orbitIndex=0, + skill=3516, + stats={ + [1]="10% increased Melee Damage" + } + }, + [3543]={ + connections={ + [1]={ + id=31825, + orbit=2147483647 + } + }, + group=1384, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=2147483647 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=954, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Raw Mana", + orbit=3, + orbitIndex=16, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Isolation" + }, + skill=3567, + stats={ + [1]="8% increased maximum Mana", + [2]="10% increased Mana Cost of Skills" + } + }, + [3601]={ + connections={ + [1]={ + id=47191, + orbit=0 + } + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=4, + orbitIndex=62, + skill=3601, + stats={ + [1]="12% increased Fire Damage" + } + }, + [3605]={ + ascendancyName="Chronomancer", + connections={ + }, + group=357, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds", + isNotable=true, + name="Unbound Encore", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + 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=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + 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=1101, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=19, + skill=3628, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [3630]={ + connections={ + [1]={ + id=62624, + orbit=-5 + } + }, + group=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + name="Evasion and Energy Shield Recharge", + orbit=3, + orbitIndex=18, + skill=3630, + stats={ + [1]="10% increased Evasion Rating", + [2]="10% increased Energy Shield Recharge Rate" + } + }, + [3640]={ + connections={ + [1]={ + id=37780, + orbit=2147483647 + }, + [2]={ + id=17724, + orbit=2147483647 + }, + [3]={ + id=14267, + orbit=0 + } + }, + group=1372, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds", + 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=468, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=804, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Blind Chance", + orbit=3, + orbitIndex=18, + skill=3660, + stats={ + [1]="8% chance to Blind Enemies on Hit with Attacks" + } + }, + [3681]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=57386, + orbit=-8 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Elemental Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=650, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + 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=1039, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Dynamism", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Ire" + }, + 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=283, + icon="Art/2DArt/SkillIcons/icongroundslam.dds", + isNotable=true, + name="Spike Pit", + orbit=2, + orbitIndex=11, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Greed" + }, + skill=3698, + stats={ + [1]="Enemies in Jagged Ground you create take 10% increased Damage" + } + }, + [3700]={ + connections={ + [1]={ + id=6842, + orbit=3 + } + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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=275, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds", + isNotable=true, + name="Witchbane", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + 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=821, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=221, + icon="Art/2DArt/SkillIcons/passives/minionstr.dds", + 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=796, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + 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.dds", + isNotable=true, + name="Ancestral Empowerment", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + 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=1095, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds", + isNotable=true, + name="Unravelling", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + orbit=9, + orbitIndex=136, + skill=3781, + stats={ + [1]="Grants Unravelling" + } + }, + [3823]={ + connections={ + [1]={ + id=5726, + orbit=0 + } + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + isSwitchable=true, + name="Elemental Force", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1284, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=460, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=907, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=16, + skill=3893, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [3894]={ + connections={ + [1]={ + id=13307, + orbit=0 + }, + [2]={ + id=857, + orbit=0 + } + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Eldritch Will", + orbit=4, + orbitIndex=30, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Isolation" + }, + 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=399, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Vale Dweller", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=645, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=15, + skill=3918, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [3921]={ + connections={ + [1]={ + id=38398, + orbit=0 + } + }, + group=539, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + isNotable=true, + name="Fate Finding", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Greed" + }, + skill=3921, + stats={ + [1]="20% increased Reservation Efficiency of Herald Skills" + } + }, + [3936]={ + connections={ + [1]={ + id=13397, + orbit=0 + } + }, + group=664, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=140, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + isNotable=true, + name="Forces of Nature", + orbit=2, + orbitIndex=15, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Ire" + }, + skill=3985, + stats={ + [1]="Attack Damage Penetrates 15% of Enemy Elemental Resistances" + } + }, + [3987]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=30, + orbit=0 + } + }, + group=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Skill Speed", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=6, + orbitIndex=27, + skill=3987, + stats={ + [1]="4% increased Skill Speed" + } + }, + [3988]={ + connections={ + [1]={ + id=51832, + orbit=0 + } + }, + group=184, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Empowered Attack Damage", + orbit=2, + orbitIndex=13, + skill=3988, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [3994]={ + connections={ + [1]={ + id=9089, + orbit=0 + }, + [2]={ + id=37951, + orbit=0 + } + }, + group=1302, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=20, + skill=3994, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [3995]={ + connections={ + [1]={ + id=12311, + orbit=0 + } + }, + group=838, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=-6 + }, + [3]={ + id=49136, + orbit=0 + } + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=777, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=12, + skill=4017, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [4031]={ + connections={ + [1]={ + id=50403, + orbit=0 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Icebreaker", + orbit=3, + orbitIndex=15, + recipe={ + [1]="Ire", + [2]="Paranoia", + [3]="Fear" + }, + skill=4031, + stats={ + [1]="Gain 50% of maximum Energy Shield as additional Freeze Threshold" + } + }, + [4046]={ + connections={ + [1]={ + id=8875, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=1078, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=647, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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=1073, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Damage", + orbit=2, + orbitIndex=11, + skill=4083, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [4086]={ + ascendancyName="Tactician", + connections={ + }, + group=438, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds", + isNotable=true, + name="Strategic Embankments", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=4086, + stats={ + [1]="Totems you place grant Embankment Auras" + } + }, + [4113]={ + connections={ + [1]={ + id=4627, + orbit=0 + } + }, + group=784, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=452, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=2, + orbitIndex=18, + skill=4128, + stats={ + [1]="15% increased Armour" + } + }, + [4139]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=137, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=4139, + stats={ + } + }, + [4140]={ + connections={ + [1]={ + id=59093, + orbit=0 + }, + [2]={ + id=57273, + orbit=0 + }, + [3]={ + id=296, + orbit=0 + } + }, + group=220, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=932, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds", + 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.dds", + isNotable=true, + name="Converging Paths", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + 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=859, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4203, + stats={ + [1]="+5 to any Attribute" + } + }, + [4238]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + isNotable=true, + name="Versatile Arms", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Envy" + }, + 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=330, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Pin Buildup", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + 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=889, + icon="Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds", + name="Minion Resistances", + orbit=2, + orbitIndex=8, + skill=4271, + stats={ + [1]="Minions have +8% to all Elemental Resistances" + } + }, + [4295]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + [1]={ + id=34248, + orbit=-3 + } + }, + group=522, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Adverse Growth", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Paranoia", + [3]="Disgust" + }, + 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=882, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=5188, + orbit=0 + } + }, + group=1152, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + isNotable=true, + name="Guided Hand", + orbit=3, + orbitIndex=19, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Envy" + }, + skill=4331, + stats={ + [1]="Ancestrally Boosted Attacks deal 30% increased Damage", + [2]="On Heavy Stunning a Rare or Unique Enemy, your next Attack within 4 seconds will be Ancestrally Boosted" + } + }, + [4346]={ + connections={ + [1]={ + id=4519, + orbit=0 + }, + [2]={ + id=20677, + orbit=0 + } + }, + group=1079, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Damage on Critical", + orbit=0, + orbitIndex=0, + skill=4346, + stats={ + [1]="20% increased Damage if you've dealt a Critical Hit Recently" + } + }, + [4364]={ + connections={ + [1]={ + id=23736, + orbit=0 + } + }, + group=1053, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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" + } + }, + [4377]={ + connections={ + [1]={ + id=50273, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + 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=1260, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=7, + orbitIndex=9, + skill=4378, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [4407]={ + connections={ + }, + group=566, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=1402, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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=143, + icon="Art/2DArt/SkillIcons/passives/lightningstr.dds", + name="Armour Applies to Lightning Damage Hits", + orbit=3, + orbitIndex=10, + skill=4442, + stats={ + [1]="+15% of Armour also applies to Lightning Damage" + } + }, + [4447]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + isNotable=true, + name="Pin their Motivation", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Despair" + }, + 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=696, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1395, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds", + 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", + connections={ + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Attributes Mastery", + orbit=0, + orbitIndex=0, + skill=4492, + stats={ + } + }, + [4519]={ + connections={ + [1]={ + id=13724, + orbit=0 + } + }, + group=1067, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Damage on Critical", + orbit=0, + orbitIndex=0, + skill=4519, + stats={ + [1]="20% increased Damage if you've dealt a Critical Hit Recently" + } + }, + [4527]={ + connections={ + [1]={ + id=54701, + orbit=0 + } + }, + group=231, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=4527, + stats={ + [1]="+5 to any Attribute" + } + }, + [4534]={ + connections={ + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Piercing Shot", + orbit=3, + orbitIndex=13, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Disgust" + }, + skill=4534, + stats={ + [1]="50% chance to Pierce an Enemy" + } + }, + [4536]={ + connections={ + [1]={ + id=37514, + orbit=0 + } + }, + group=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + name="Quarterstaff Speed", + orbit=2, + orbitIndex=1, + skill=4536, + stats={ + [1]="3% increased Attack Speed with Quarterstaves" + } + }, + [4544]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern", + connections={ + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds", + isNotable=true, + name="The Ancient Serpent", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Greed", + [2]="Guilt", + [3]="Despair" + }, + 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=238, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.dds", + isNotable=true, + name="Unnatural Resilience", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Isolation" + }, + 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=1171, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=15, + skill=4552, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [4577]={ + connections={ + [1]={ + id=3999, + orbit=4 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Attack Area", + orbit=7, + orbitIndex=8, + skill=4577, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [4579]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + }, + group=865, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Unbothering Cold", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Fear", + [2]="Isolation", + [3]="Paranoia" + }, + 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=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun and Elemental Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=458, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + 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=533, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=785, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Climate Change", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Despair" + }, + 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=491, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds", + isNotable=true, + name="Inspiring Leader", + orbit=3, + orbitIndex=4, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Greed" + }, + skill=4661, + stats={ + [1]="Banners also grant +25% to all Elemental Resistances to you and Allies" + } + }, + [4663]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=376, + icon="", + isOnlyImage=true, + name="Minion Mastery", + orbit=0, + orbitIndex=0, + skill=4663, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [4664]={ + connections={ + [1]={ + id=43938, + orbit=0 + } + }, + group=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=631, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=233, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Hulking Smash", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Guilt" + }, + skill=4673, + stats={ + [1]="30% increased Stun Buildup", + [2]="+15 to Strength" + } + }, + [4681]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=48828, + orbit=2147483647 + }, + [2]={ + id=26228, + orbit=0 + } + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + name="Gain Maximum Frenzy Charges on Gaining Frenzy Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1249, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Near Sighted", + orbit=2, + orbitIndex=19, + recipe={ + [1]="Ire", + [2]="Envy", + [3]="Paranoia" + }, + skill=4709, + stats={ + [1]="30% increased Critical Hit Chance for Attacks", + [2]="30% increased penalty to Accuracy Rating at range" + } + }, + [4716]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=649, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + isNotable=true, + name="Afterimage", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Disgust" + }, + 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=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + 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=764, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + id=17306, + name="Spell and Minion Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="Minions deal 8% increased Damage" + } + } + }, + orbit=3, + orbitIndex=22, + skill=4739, + stats={ + [1]="10% increased Spell Damage" + } + }, + [4748]={ + connections={ + [1]={ + id=2254, + orbit=6 + } + }, + group=782, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + id=48235, + name="Minion Life", + stats={ + [1]="Minions have 10% increased maximum Life" + } + } + }, + orbit=3, + orbitIndex=6, + skill=4748, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [4776]={ + connections={ + [1]={ + id=14363, + orbit=0 + } + }, + group=696, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Penetration", + orbit=2, + orbitIndex=2, + skill=4776, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [4806]={ + connections={ + [1]={ + id=32183, + orbit=-4 + } + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + 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=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Sanguine Tolerance", + orbit=1, + orbitIndex=6, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Greed" + }, + skill=4810, + stats={ + [1]="Immune to Corrupted Blood", + [2]="40% reduced Duration of Bleeding on You" + } + }, + [4828]={ + connections={ + [1]={ + id=19044, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=12, + skill=4828, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [4844]={ + connections={ + [1]={ + id=33053, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=7, + orbitIndex=1, + skill=4844, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [4847]={ + connections={ + [1]={ + id=6294, + orbit=5 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=5, + orbitIndex=66, + skill=4847, + stats={ + [1]="3% increased Cast Speed" + } + }, + [4850]={ + connections={ + [1]={ + id=35503, + orbit=0 + } + }, + group=923, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=571, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Energy", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=511, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=2, + orbitIndex=3, + skill=4882, + stats={ + [1]="15% increased Totem Damage" + } + }, + [4891]={ + ascendancyName="Ritualist", + connections={ + }, + group=1491, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds", + isNotable=true, + name="Intricate Sigils", + nodeOverlay={ + alloc="RitualistFrameLargeAllocated", + path="RitualistFrameLargeCanAllocate", + unalloc="RitualistFrameLargeNormal" + }, + 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=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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=881, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=472, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Dependable Ward", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Envy" + }, + skill=4931, + stats={ + [1]="25% increased Energy Shield Recharge Rate", + [2]="25% faster start of Energy Shield Recharge" + } + }, + [4948]={ + connections={ + }, + group=370, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break", + orbit=3, + orbitIndex=6, + skill=4948, + stats={ + [1]="Break 20% increased Armour" + } + }, + [4956]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern", + connections={ + }, + group=561, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Recovery Mastery", + orbit=0, + orbitIndex=0, + skill=4956, + stats={ + } + }, + [4959]={ + connections={ + [1]={ + id=12166, + orbit=0 + } + }, + group=1193, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Heavy Frost", + orbit=7, + orbitIndex=2, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Paranoia" + }, + 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=323, + icon="Art/2DArt/SkillIcons/passives/LifeandMana.dds", + 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=236, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Flip the Script", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Ire", + [2]="Disgust", + [3]="Ire" + }, + 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=1183, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + isNotable=true, + name="Seeing Stars", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Paranoia" + }, + skill=5009, + stats={ + [1]="10% chance to Daze on Hit", + [2]="25% increased Daze Duration" + } + }, + [5048]={ + connections={ + [1]={ + id=261, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=603, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=630, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + 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=996, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=685, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=2, + orbitIndex=22, + skill=5084, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [5088]={ + connections={ + [1]={ + id=49537, + orbit=0 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=2147483647 + } + }, + group=643, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + name="Banner Area", + orbit=2, + orbitIndex=10, + skill=5098, + stats={ + [1]="Banner Skills have 15% increased Area of Effect" + } + }, + [5101]={ + connections={ + [1]={ + id=35558, + orbit=-5 + }, + [2]={ + id=46358, + orbit=0 + } + }, + group=594, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + name="Minion Revive Speed and Energy Shield Recharge", + orbit=0, + orbitIndex=0, + skill=5101, + stats={ + [1]="8% increased Energy Shield Recharge Rate", + [2]="Minions Revive 3% faster" + } + }, + [5108]={ + connections={ + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=1291, + icon="Art/2DArt/SkillIcons/passives/knockback.dds", + 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=1261, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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 + } + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds", + name="Energy Shield Recharge and Delay", + orbit=7, + orbitIndex=19, + skill=5188, + stats={ + [1]="8% increased Energy Shield Recharge Rate", + [2]="8% faster start of Energy Shield Recharge" + } + }, + [5227]={ + connections={ + [1]={ + id=51708, + orbit=0 + } + }, + group=1043, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + isNotable=true, + name="Escape Strategy", + orbit=3, + orbitIndex=20, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Despair" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + [1]={ + id=16367, + orbit=2 + } + }, + group=1022, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Echoing Frost", + orbit=7, + orbitIndex=20, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Greed" + }, + skill=5257, + stats={ + [1]="30% increased Elemental Damage if you've Chilled an Enemy Recently" + } + }, + [5284]={ + connections={ + [1]={ + id=32278, + orbit=0 + } + }, + group=497, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + isNotable=true, + name="Shredding Force", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Greed" + }, + 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=915, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1297, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + name="Skill Speed", + orbit=1, + orbitIndex=2, + skill=5305, + stats={ + [1]="3% increased Skill Speed" + } + }, + [5314]={ + connections={ + [1]={ + id=29009, + orbit=0 + } + }, + group=740, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=2147483647 + }, + [2]={ + id=2397, + orbit=0 + } + }, + group=642, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connections={ + }, + group=796, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + isNotable=true, + name="Crystallised Immunities", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Suffering" + }, + 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=1209, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Shimmering Mirage", + orbit=7, + orbitIndex=7, + recipe={ + [1]="Envy", + [2]="Despair", + [3]="Fear" + }, + 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", + connections={ + }, + group=1210, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=5348, + stats={ + } + }, + [5386]={ + ascendancyName="Smith of Kitava", + connections={ + [1]={ + id=22541, + orbit=0 + } + }, + group=6, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds", + name="Fire Damage", + nodeOverlay={ + alloc="Smith of KitavaFrameSmallAllocated", + path="Smith of KitavaFrameSmallCanAllocate", + unalloc="Smith of KitavaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=5386, + stats={ + [1]="20% increased Fire Damage" + } + }, + [5390]={ + connections={ + [1]={ + id=16142, + orbit=2147483647 + } + }, + group=1384, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Freeze Buildup", + orbit=7, + orbitIndex=14, + skill=5390, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [5398]={ + connections={ + [1]={ + id=51820, + orbit=-6 + } + }, + group=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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", + connections={ + [1]={ + id=56910, + orbit=0 + } + }, + group=728, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=5407, + stats={ + } + }, + [5410]={ + connections={ + [1]={ + id=33590, + orbit=0 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Channelled Heritage", + orbit=3, + orbitIndex=15, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Fear" + }, + skill=5410, + stats={ + [1]="30% increased Area of Effect of Ancestrally Boosted Attacks" + } + }, + [5501]={ + connections={ + [1]={ + id=48821, + orbit=0 + } + }, + group=744, + icon="Art/2DArt/SkillIcons/passives/Annihilation.dds", + isNotable=true, + name="Critical Overload", + orbit=0, + orbitIndex=0, + skill=5501, + stats={ + [1]="15% increased Critical Hit Chance for Spells", + [2]="15% increased Spell Damage if you've dealt a Critical Hit Recently" + } + }, + [5544]={ + connections={ + [1]={ + id=43711, + orbit=3 + } + }, + group=305, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + 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=1482, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Flask Recovery", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + 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=1002, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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.dds", + isNotable=true, + name="The Unseen Path", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=5571, + stats={ + [1]="Walk the Paths Not Taken" + } + }, + [5580]={ + connections={ + [1]={ + id=42710, + orbit=0 + } + }, + group=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Watchtowers", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Suffering" + }, + 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=982, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + isNotable=true, + name="Decrepifying Curse", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Despair" + }, + skill=5594, + stats={ + [1]="20% increased duration of Ailments you inflict against Cursed Enemies" + } + }, + [5642]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + [1]={ + id=57405, + orbit=0 + } + }, + group=234, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Behemoth", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Fear", + [2]="Isolation", + [3]="Greed" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=277, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + isNotable=true, + name="Endurance", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Envy" + }, + skill=5663, + stats={ + [1]="+2 to Maximum Endurance Charges" + } + }, + [5681]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern", + connections={ + }, + group=437, + icon="Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds", + isOnlyImage=true, + name="Fortify Mastery", + orbit=0, + orbitIndex=0, + skill=5681, + stats={ + } + }, + [5686]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=199, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Chillproof", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Paranoia", + [2]="Disgust", + [3]="Disgust" + }, + skill=5686, + stats={ + [1]="30% reduced Effect of Chill on you", + [2]="30% increased Freeze Threshold", + [3]="+30% of Armour also applies to Cold Damage" + } + }, + [5692]={ + connections={ + [1]={ + id=41154, + orbit=0 + }, + [2]={ + id=35708, + orbit=0 + } + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=534, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Archon Duration", + orbit=7, + orbitIndex=20, + skill=5695, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [5702]={ + connections={ + [1]={ + id=13411, + orbit=-5 + } + }, + group=1023, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=5702, + stats={ + [1]="+5 to any Attribute" + } + }, + [5703]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + [1]={ + id=16367, + orbit=2 + } + }, + group=1022, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Echoing Thunder", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Ire" + }, + skill=5703, + stats={ + [1]="30% increased Elemental Damage if you've Shocked an Enemy Recently" + } + }, + [5704]={ + connections={ + [1]={ + id=62166, + orbit=0 + } + }, + group=1126, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=614, + icon="Art/2DArt/SkillIcons/passives/strongarm.dds", + 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", + connections={ + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=5726, + stats={ + } + }, + [5728]={ + connections={ + [1]={ + id=17349, + orbit=-3 + }, + [2]={ + id=58138, + orbit=0 + } + }, + group=117, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + isNotable=true, + name="Ancient Aegis", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Envy" + }, + skill=5728, + stats={ + [1]="60% increased Armour from Equipped Body Armour", + [2]="60% increased Energy Shield from Equipped Body Armour" + } + }, + [5740]={ + connections={ + [1]={ + id=40687, + orbit=0 + } + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + 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=551, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + isSwitchable=true, + name="Deadly Swarm", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=1295, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=295, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + name="Attack Damage and Accuracy", + orbit=7, + orbitIndex=0, + skill=5800, + stats={ + [1]="5% increased Attack Damage", + [2]="6% increased Accuracy Rating" + } + }, + [5802]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=1247, + icon="Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds", + isNotable=true, + name="Stand and Deliver", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Isolation" + }, + 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=1433, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds", + isNotable=true, + name="Mirage Deadeye", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=5817, + stats={ + [1]="Grants Skill: Mirage Deadeye" + } + }, + [5826]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=1018, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=2, + orbitIndex=22, + skill=5826, + stats={ + } + }, + [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.dds", + isAscendancyStart=true, + name="Smith of Kitava", + nodeOverlay={ + alloc="Smith of KitavaFrameSmallAllocated", + path="Smith of KitavaFrameSmallCanAllocate", + unalloc="Smith of KitavaFrameSmallNormal" + }, + orbit=9, + orbitIndex=96, + skill=5852, + stats={ + } + }, + [5862]={ + connections={ + [1]={ + id=22697, + orbit=-2 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.dds", + 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=608, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=901, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=5961, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [5988]={ + connections={ + [1]={ + id=38459, + orbit=7 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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=591, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=4, + orbitIndex=62, + skill=6006, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [6008]={ + connections={ + [1]={ + id=58096, + orbit=2 + } + }, + group=482, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + 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=1100, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=8, + skill=6010, + stats={ + [1]="12% increased Accuracy Rating" + } + }, + [6015]={ + connections={ + [1]={ + id=35426, + orbit=6 + } + }, + group=580, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=3, + orbitIndex=15, + skill=6015, + stats={ + [1]="+5 to any Attribute" + } + }, + [6030]={ + connections={ + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=514, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1326, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=1156, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=421, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="First Sting", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + orbit=7, + orbitIndex=10, + skill=6088, + stats={ + [1]="30% chance to Poison on Hit against Enemies that are not Poisoned", + [2]="80% increased Effect 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=164, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1479, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Evasion", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + 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.dds", + isNotable=true, + name="Jade Heritage", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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=117, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Core of the Guardian", + orbit=4, + orbitIndex=48, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Fear" + }, + skill=6133, + stats={ + [1]="100% increased Defences from Equipped Shield" + } + }, + [6153]={ + connections={ + [1]={ + id=44952, + orbit=0 + }, + [2]={ + id=10362, + orbit=0 + } + }, + group=160, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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", + connections={ + }, + group=1081, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.dds", + isOnlyImage=true, + name="Bleeding Mastery", + orbit=0, + orbitIndex=0, + skill=6161, + stats={ + } + }, + [6178]={ + connections={ + [1]={ + id=33415, + orbit=0 + } + }, + group=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Power Shots", + orbit=4, + orbitIndex=35, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Suffering" + }, + 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=325, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + name="Shapeshifted Damage", + orbit=7, + orbitIndex=11, + skill=6222, + stats={ + [1]="10% increased Damage while Shapeshifted" + } + }, + [6229]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + [1]={ + id=26490, + orbit=7 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + isNotable=true, + name="Push the Advantage", + orbit=7, + orbitIndex=5, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Disgust" + }, + skill=6229, + stats={ + [1]="40% increased Critical Damage Bonus with One Handed Melee Weapons" + } + }, + [6266]={ + connections={ + [1]={ + id=60085, + orbit=0 + } + }, + group=854, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Damage", + orbit=7, + orbitIndex=9, + skill=6266, + stats={ + [1]="10% increased Damage against Demons" + } + }, + [6269]={ + connections={ + [1]={ + id=45990, + orbit=0 + } + }, + group=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + 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=570, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=7, + orbitIndex=17, + skill=6274, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [6287]={ + connections={ + [1]={ + id=364, + orbit=2147483647 + } + }, + group=724, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + name="Intelligence", + orbit=2, + orbitIndex=10, + skill=6287, + stats={ + [1]="+8 to Intelligence" + } + }, + [6294]={ + connections={ + [1]={ + id=52429, + orbit=4 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=4, + orbitIndex=54, + skill=6294, + stats={ + [1]="3% increased Cast Speed" + } + }, + [6304]={ + connections={ + [1]={ + id=12125, + orbit=0 + } + }, + group=369, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + isNotable=true, + name="Stand Ground", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Guilt" + }, + 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=1260, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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", + connections={ + [1]={ + id=2254, + orbit=0 + } + }, + group=775, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=6338, + stats={ + } + }, + [6355]={ + connections={ + [1]={ + id=14110, + orbit=-4 + }, + [2]={ + id=38124, + orbit=4 + } + }, + group=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=7, + orbitIndex=2, + skill=6355, + stats={ + [1]="15% increased Totem Damage" + } + }, + [6356]={ + connections={ + [1]={ + id=27900, + orbit=0 + } + }, + group=449, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=268, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=1137, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Critical Damage", + orbit=2, + orbitIndex=12, + skill=6490, + stats={ + [1]="10% increased Critical Damage Bonus" + } + }, + [6502]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern", + connections={ + }, + group=170, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds", + isOnlyImage=true, + name="Flail Mastery", + orbit=0, + orbitIndex=0, + skill=6502, + stats={ + } + }, + [6505]={ + connections={ + [1]={ + id=55060, + orbit=0 + } + }, + group=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=184, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Cacophony", + orbit=4, + orbitIndex=5, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Fear" + }, + skill=6514, + stats={ + [1]="40% increased Damage with Warcries", + [2]="Warcry Skills have 25% increased Area of Effect" + } + }, + [6516]={ + connections={ + [1]={ + id=63981, + orbit=7 + }, + [2]={ + id=12890, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold if no recent Stun", + orbit=7, + orbitIndex=22, + skill=6516, + stats={ + [1]="25% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [6529]={ + connections={ + [1]={ + id=32416, + orbit=-3 + } + }, + group=579, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=2, + orbitIndex=0, + skill=6529, + stats={ + [1]="15% increased Armour" + } + }, + [6544]={ + connections={ + [1]={ + id=56061, + orbit=6 + }, + [2]={ + id=42604, + orbit=0 + } + }, + group=409, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Burning Strikes", + orbit=4, + orbitIndex=53, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Isolation" + }, + skill=6544, + stats={ + [1]="Gain 12% of Physical Damage as Extra Fire Damage" + } + }, + [6570]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern", + connections={ + }, + group=1197, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.dds", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=6570, + stats={ + } + }, + [6588]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=6588, + stats={ + } + }, + [6596]={ + connections={ + [1]={ + id=41171, + orbit=0 + } + }, + group=936, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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=491, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=649, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + name="Armour and Evasion", + orbit=2, + orbitIndex=21, + skill=6626, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [6655]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + }, + group=658, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Aggravation", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Envy" + }, + skill=6655, + stats={ + [1]="10% chance to Aggravate Bleeding on targets you Hit with Attacks" + } + }, + [6660]={ + connections={ + [1]={ + id=39050, + orbit=-7 + } + }, + group=1165, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + 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=723, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isSwitchable=true, + name="Mana Regeneration", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=677, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=630, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + 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=836, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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=167, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=551, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=522, + icon="Art/2DArt/SkillIcons/passives/damage_blue.dds", + 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=586, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=3, + orbitIndex=23, + skill=6752, + stats={ + [1]="12% increased Fire Damage" + } + }, + [6772]={ + connections={ + [1]={ + id=60505, + orbit=0 + } + }, + group=966, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=882, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=7, + orbitIndex=6, + skill=6792, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [6800]={ + connections={ + [1]={ + id=32438, + orbit=4 + } + }, + group=1246, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=6800, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [6839]={ + connections={ + [1]={ + id=39581, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=7, + orbitIndex=14, + skill=6839, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [6842]={ + connections={ + [1]={ + id=18472, + orbit=3 + } + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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=143, + icon="Art/2DArt/SkillIcons/passives/coldresist.dds", + 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=173, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + name="Channelling Life Recoup", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=7, + orbitIndex=11, + 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=1377, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=584, + icon="Art/2DArt/SkillIcons/passives/PressurePoints.dds", + isNotable=true, + isSwitchable=true, + name="Relentless Vindicator", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/stormborn.dds", + 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=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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", + connections={ + }, + group=1083, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=6912, + stats={ + } + }, + [6923]={ + connections={ + [1]={ + id=1087, + orbit=0 + } + }, + group=389, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + name="Two Handed Damage", + orbit=3, + orbitIndex=10, + skill=6923, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [6935]={ + ascendancyName="Witchhunter", + connections={ + }, + group=297, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds", + isNotable=true, + name="Ceremonial Ablution", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + 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=841, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Exposure Effect", + orbit=2, + orbitIndex=2, + skill=6950, + stats={ + [1]="10% increased Exposure Effect" + } + }, + [6951]={ + connections={ + [1]={ + id=23608, + orbit=-2 + } + }, + group=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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.dds", + 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", + connections={ + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds", + isOnlyImage=true, + name="Herald Mastery", + orbit=2, + orbitIndex=10, + skill=6988, + stats={ + } + }, + [6999]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=15672, + orbit=2147483647 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Elemental Resistance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=7023, + stats={ + } + }, + [7049]={ + connections={ + [1]={ + id=22556, + orbit=0 + } + }, + group=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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=1092, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=250, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Reusable Ammunition", + orbit=4, + orbitIndex=19, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Despair" + }, + skill=7062, + stats={ + [1]="Bolts fired by Crossbow Attacks have 30% chance to not", + [2]="expend Ammunition if you've Reloaded Recently" + } + }, + [7066]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=23932, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Bow Attack Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1476, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds", + isNotable=true, + name="Mystic Attunement", + nodeOverlay={ + alloc="RitualistFrameLargeAllocated", + path="RitualistFrameLargeCanAllocate", + unalloc="RitualistFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=7068, + stats={ + [1]="25% increased bonuses gained from Equipped Rings and Amulets" + } + }, + [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=271, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Witchhunter", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + orbit=9, + orbitIndex=72, + skill=7120, + stats={ + } + }, + [7128]={ + connections={ + }, + group=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Dangerous Blossom", + orbit=6, + orbitIndex=63, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Isolation" + }, + 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=1173, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Stimulants", + orbit=5, + orbitIndex=45, + recipe={ + [1]="Despair", + [2]="Greed", + [3]="Greed" + }, + skill=7163, + stats={ + [1]="16% increased Attack Speed during any Flask Effect" + } + }, + [7183]={ + connections={ + [1]={ + id=48589, + orbit=-6 + } + }, + group=507, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=688, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=236, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=0, + orbitIndex=0, + skill=7204, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [7218]={ + connections={ + [1]={ + id=60203, + orbit=0 + } + }, + group=796, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength", + orbit=3, + orbitIndex=22, + skill=7218, + stats={ + [1]="+8 to Strength" + } + }, + [7246]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=39204, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Mana Regeneration", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=8, + orbitIndex=54, + skill=7246, + stats={ + [1]="12% increased Mana Regeneration Rate" + } + }, + [7251]={ + connections={ + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=665, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength and Spell Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=7, + orbitIndex=5, + skill=7258, + stats={ + [1]="10% increased Spell Damage", + [2]="+10 to Strength" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [7275]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Electrocuting Exposure", + orbit=4, + orbitIndex=64, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Ire" + }, + 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=1349, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=1300, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="Echoing Pulse", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Ire" + }, + skill=7302, + stats={ + [1]="Final Repeat of Spells has 30% increased Area of Effect" + } + }, + [7333]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + }, + group=696, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=7333, + stats={ + } + }, + [7338]={ + connections={ + [1]={ + id=52060, + orbit=0 + } + }, + group=1209, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Abasement", + orbit=7, + orbitIndex=23, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Fear" + }, + 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=337, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Ignore Pain", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Suffering" + }, + 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=955, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + 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=1131, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=5, + skill=7353, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [7378]={ + connections={ + [1]={ + id=65016, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=3, + orbitIndex=20, + skill=7378, + stats={ + [1]="12% increased Fire Damage" + } + }, + [7390]={ + connections={ + [1]={ + id=17150, + orbit=7 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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.dds", + isNotable=true, + name="Retaliation", + orbit=3, + orbitIndex=10, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Suffering" + }, + skill=7395, + stats={ + [1]="75% increased Thorns damage if you've Blocked Recently" + } + }, + [7405]={ + connections={ + [1]={ + id=4850, + orbit=0 + } + }, + group=949, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1190, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=647, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=4, + orbitIndex=0, + skill=7424, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [7449]={ + connections={ + [1]={ + id=53696, + orbit=0 + } + }, + group=1062, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Splinters", + orbit=7, + orbitIndex=18, + recipe={ + [1]="Envy", + [2]="Paranoia", + [3]="Despair" + }, + skill=7449, + stats={ + [1]="30% increased Stun Buildup", + [2]="Hits Break 50% increased Armour on targets with Ailments" + } + }, + [7465]={ + connections={ + [1]={ + id=11509, + orbit=0 + } + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=3, + orbitIndex=16, + 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=539, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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", + connections={ + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds", + isOnlyImage=true, + name="Leech Mastery", + orbit=0, + orbitIndex=0, + skill=7488, + stats={ + } + }, + [7526]={ + connections={ + [1]={ + id=9411, + orbit=0 + }, + [2]={ + id=17447, + orbit=0 + }, + [3]={ + id=22972, + orbit=0 + }, + [4]={ + id=43044, + orbit=0 + }, + [5]={ + id=24210, + orbit=0 + } + }, + group=1139, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=7526, + stats={ + [1]="+5 to any Attribute" + } + }, + [7542]={ + connections={ + }, + group=239, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="Encompassing Domain", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Fear", + [2]="Disgust", + [3]="Envy" + }, + 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.dds", + isNotable=true, + name="Trusted Partner", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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 + } + } + }, + [7576]={ + connections={ + [1]={ + id=33866, + orbit=0 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Rapid Strike", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Fear" + }, + skill=7604, + stats={ + [1]="+30 to Accuracy Rating", + [2]="8% increased Melee Attack Speed" + } + }, + [7621]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=55611, + orbit=0 + } + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds", + isNotable=true, + name="I am the Thunder...", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + 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=651, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=449, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds", + isOnlyImage=true, + name="Physical Mastery", + orbit=7, + orbitIndex=8, + skill=7642, + stats={ + } + }, + [7651]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern", + connections={ + [1]={ + id=21788, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Pierce the Heart", + orbit=6, + orbitIndex=21, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Paranoia" + }, + skill=7651, + stats={ + [1]="Arrows Pierce an additional Target" + } + }, + [7668]={ + connections={ + [1]={ + id=62015, + orbit=0 + } + }, + group=355, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Internal Bleeding", + orbit=2, + orbitIndex=3, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Paranoia" + }, + 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=320, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=487, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=631, + icon="Art/2DArt/SkillIcons/passives/Warrior.dds", + 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=771, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Breaking Point", + orbit=4, + orbitIndex=18, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Fear" + }, + 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=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Rupturing Pins", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Guilt" + }, + skill=7782, + stats={ + [1]="40% increased Magnitude of Bleeding you inflict against Pinned Enemies" + } + }, + [7788]={ + connections={ + [1]={ + id=57805, + orbit=5 + } + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/knockback.dds", + name="Knockback", + orbit=7, + orbitIndex=4, + skill=7788, + stats={ + [1]="8% increased Knockback Distance" + } + }, + [7793]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=18348, + orbit=6 + } + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Life", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=9, + orbitIndex=130, + skill=7793, + stats={ + [1]="3% increased maximum Life" + } + }, + [7809]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1305, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Wild Storm", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Isolation" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=1362, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds", + isNotable=true, + name="The Fabled Stag", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Fear" + }, + 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=446, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=1372, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds", + 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=507, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + name="Flask Duration", + orbit=2, + orbitIndex=17, + skill=7922, + stats={ + [1]="10% increased Flask Effect Duration" + } + }, + [7947]={ + connections={ + [1]={ + id=26061, + orbit=2 + } + }, + group=865, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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={ + [1]={ + id=35408, + orbit=0 + } + }, + group=362, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=2, + skill=7960, + stats={ + } + }, + [7971]={ + connections={ + [1]={ + id=1468, + orbit=-7 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=277, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=1470, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds", + isNotable=true, + name="Elemental Surge", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Shock Chance", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + 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=1218, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=766, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=276, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Glory Generation", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=7, + orbitIndex=10, + skill=8107, + stats={ + [1]="20% increased Glory generation" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [8115]={ + connections={ + }, + group=640, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds", + isNotable=true, + name="Lead me through Grace...", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + 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=255, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + 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", + connections={ + [1]={ + id=3921, + orbit=0 + }, + [2]={ + id=38398, + orbit=0 + } + }, + group=539, + icon="Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds", + isOnlyImage=true, + name="Herald Mastery", + orbit=0, + orbitIndex=0, + skill=8154, + stats={ + } + }, + [8157]={ + connections={ + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Presence Area", + orbit=7, + orbitIndex=22, + skill=8171, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [8194]={ + connections={ + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold if no recent Stun", + orbit=7, + orbitIndex=10, + skill=8194, + stats={ + [1]="25% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [8246]={ + connections={ + [1]={ + id=37548, + orbit=0 + }, + [2]={ + id=64462, + orbit=0 + } + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=515, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleed Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1048, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=205, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break Duration", + orbit=7, + orbitIndex=0, + skill=8260, + stats={ + [1]="20% increased Armour Break Duration" + } + }, + [8272]={ + ascendancyName="Witchhunter", + connections={ + }, + group=215, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds", + isNotable=true, + name="Weapon Master", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=8272, + stats={ + [1]="100 Passive Skill Points become Weapon Set Skill Points" + } + }, + [8273]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + [1]={ + id=25565, + orbit=0 + } + }, + group=1325, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Endless Circuit", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Despair" + }, + skill=8273, + stats={ + [1]="25% chance on Consuming a Shock on an Enemy to reapply it" + } + }, + [8302]={ + connections={ + [1]={ + id=4467, + orbit=-3 + } + }, + group=1395, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds", + 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=593, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Disciple of Varashta", + nodeOverlay={ + alloc="Disciple of VarashtaFrameSmallAllocated", + path="Disciple of VarashtaFrameSmallCanAllocate", + unalloc="Disciple of VarashtaFrameSmallNormal" + }, + orbit=6, + orbitIndex=0, + skill=8305, + stats={ + } + }, + [8349]={ + connections={ + [1]={ + id=31644, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=19, + skill=8349, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [8357]={ + connections={ + [1]={ + id=10742, + orbit=0 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=700, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Cold Damage and Energy Shield Recharge Rate", + orbit=3, + orbitIndex=9, + skill=8382, + stats={ + [1]="8% increased Energy Shield Recharge Rate", + [2]="8% increased Elemental Damage" + } + }, + [8397]={ + connections={ + [1]={ + id=41130, + orbit=0 + }, + [2]={ + id=1220, + orbit=0 + } + }, + group=660, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isNotable=true, + name="Empowering Remains", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Fear" + }, + 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=580, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds", + isFreeAllocate=true, + isNotable=true, + name="Sanguimancy", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + 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=144, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.dds", + 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.dds", + name="Bow Attack Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Damage against Enemies on Low Life", + orbit=1, + orbitIndex=7, + skill=8440, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [8456]={ + connections={ + [1]={ + id=38329, + orbit=2147483647 + } + }, + group=1251, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Attack Cold Damage and Freeze Buildup", + orbit=7, + orbitIndex=20, + skill=8456, + stats={ + [1]="8% increased Freeze Buildup", + [2]="8% increased Attack Cold Damage" + } + }, + [8460]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern", + connections={ + }, + group=190, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=8460, + stats={ + } + }, + [8483]={ + connections={ + [1]={ + id=6588, + orbit=0 + } + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="Ruin", + orbit=7, + orbitIndex=7, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Suffering" + }, + 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=602, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=214, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1049, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Energy", + orbit=7, + orbitIndex=16, + skill=8522, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [8525]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=27, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds", + isNotable=true, + name="Leather Bindings", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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=545, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Leaping Ambush", + orbit=3, + orbitIndex=11, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Guilt" + }, + skill=8531, + stats={ + [1]="50% increased Critical Hit Chance against Enemies that are on Full Life" + } + }, + [8535]={ + connections={ + }, + group=169, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + 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=916, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=260, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Burning Nature", + orbit=4, + orbitIndex=54, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Greed" + }, + skill=8554, + stats={ + [1]="25% increased Fire Damage", + [2]="15% increased Ignite Duration on Enemies" + } + }, + [8556]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=8556, + stats={ + } + }, + [8560]={ + connections={ + [1]={ + id=31273, + orbit=0 + } + }, + group=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=903, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=352, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=985, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=8606, + stats={ + } + }, + [8607]={ + connections={ + [1]={ + id=46665, + orbit=0 + } + }, + group=250, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + isNotable=true, + name="Lavianga's Brew", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Fear", + [2]="Isolation", + [3]="Ire" + }, + 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=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Curse Area", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=28740, + name="Curse Area", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=742, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=382, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=8629, + stats={ + } + }, + [8631]={ + connections={ + [1]={ + id=32660, + orbit=0 + }, + [2]={ + id=59256, + orbit=0 + }, + [3]={ + id=30979, + orbit=0 + } + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + name="Trap Damage", + orbit=6, + orbitIndex=51, + skill=8644, + stats={ + [1]="10% increased Trap Damage" + } + }, + [8660]={ + connections={ + [1]={ + id=18846, + orbit=0 + } + }, + group=380, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="Reverberation", + orbit=3, + orbitIndex=14, + recipe={ + [1]="Paranoia", + [2]="Guilt", + [3]="Fear" + }, + skill=8660, + stats={ + [1]="Spell Skills have 15% increased Area of Effect" + } + }, + [8693]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=35393, + orbit=0 + } + }, + group=399, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour while Bleeding", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=7, + orbitIndex=7, + skill=8693, + stats={ + [1]="30% increased Armour while Bleeding" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [8697]={ + connections={ + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Flesh Withstands", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1309, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=14, + skill=8734, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [8737]={ + connections={ + [1]={ + id=41511, + orbit=0 + }, + [2]={ + id=25927, + orbit=-7 + }, + [3]={ + id=6077, + orbit=-2 + }, + [4]={ + id=56284, + orbit=-2 + } + }, + group=516, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + orbit=0, + orbitIndex=0, + skill=8737, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [8782]={ + connections={ + [1]={ + id=13882, + orbit=0 + } + }, + group=706, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + name="Empowering Infusions", + orbit=7, + orbitIndex=14, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Guilt" + }, + 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", + connections={ + }, + group=983, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.dds", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=8785, + stats={ + } + }, + [8789]={ + connections={ + [1]={ + id=63182, + orbit=3 + } + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Sturdy Ally", + orbit=3, + orbitIndex=7, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Despair" + }, + skill=8791, + stats={ + [1]="Companions gain your Strength", + [2]="+15 to Strength" + } + }, + [8800]={ + connections={ + [1]={ + id=28982, + orbit=0 + } + }, + group=134, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=3, + orbitIndex=15, + skill=8800, + stats={ + [1]="15% increased Melee Damage with Hits at Close Range" + } + }, + [8810]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern", + connections={ + [1]={ + id=33751, + orbit=2 + } + }, + group=1034, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + isNotable=true, + name="Multitasking", + orbit=1, + orbitIndex=4, + recipe={ + [1]="Paranoia", + [2]="Disgust", + [3]="Fear" + }, + skill=8810, + stats={ + [1]="15% increased Skill Effect Duration", + [2]="12% increased Cooldown Recovery Rate" + } + }, + [8821]={ + connections={ + [1]={ + id=63863, + orbit=0 + } + }, + group=827, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=422, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + isNotable=true, + name="Fast Metabolism", + orbit=7, + orbitIndex=11, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Suffering" + }, + skill=8827, + stats={ + [1]="Life Leech effects are not removed when Unreserved Life is Filled" + } + }, + [8831]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + [1]={ + id=14082, + orbit=0 + } + }, + group=1137, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Tempered Mind", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Paranoia" + }, + skill=8831, + stats={ + [1]="20% increased Critical Damage Bonus", + [2]="+10 to Strength", + [3]="20% increased Physical Damage" + } + }, + [8850]={ + connections={ + }, + group=108, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds", + name="Shapeshifted Critical Chance", + orbit=0, + orbitIndex=0, + skill=8850, + stats={ + [1]="10% increased Critical Hit Chance while Shapeshifted" + } + }, + [8852]={ + connections={ + }, + group=137, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech and Slower Leech", + orbit=2, + orbitIndex=17, + skill=8852, + stats={ + [1]="15% increased amount of Life Leeched", + [2]="Leech Life 5% slower" + } + }, + [8854]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=46644, + orbit=0 + } + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Life", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=8, + orbitIndex=54, + skill=8854, + stats={ + [1]="3% increased maximum Life" + } + }, + [8867]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=7246, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds", + isNotable=true, + name="Constant Gale", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + orbit=8, + orbitIndex=60, + skill=8867, + stats={ + [1]="You have Arcane Surge" + } + }, + [8872]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern", + connections={ + [1]={ + id=2394, + orbit=0 + }, + [2]={ + id=45488, + orbit=0 + } + }, + group=794, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds", + isOnlyImage=true, + name="Dual Wielding Mastery", + orbit=0, + orbitIndex=0, + skill=8872, + stats={ + } + }, + [8875]={ + connections={ + [1]={ + id=50687, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Electrocute Buildup", + orbit=1, + orbitIndex=8, + skill=8875, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [8881]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern", + connections={ + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Unforgiving", + orbit=4, + orbitIndex=6, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Greed" + }, + skill=8881, + stats={ + [1]="+4 to Maximum Rage", + [2]="Inherent loss of Rage is 20% slower" + } + }, + [8896]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=1312, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + isNotable=true, + name="Agile Sprinter", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Ire" + }, + skill=8896, + stats={ + [1]="100% increased Evasion Rating while Sprinting" + } + }, + [8904]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds", + isNotable=true, + name="Death from Afar", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Guilt" + }, + 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 + }, + [2]={ + id=3203, + orbit=-5 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=410, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds", + isNotable=true, + name="Bashing Beast", + orbit=1, + orbitIndex=8, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Disgust" + }, + skill=8916, + stats={ + [1]="Enemies you Heavy Stun while Shapeshifted are Intimidated for 6 seconds" + } + }, + [8938]={ + connections={ + [1]={ + id=33229, + orbit=-4 + } + }, + group=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Right Hand of Darkness", + orbit=4, + orbitIndex=44, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Suffering" + }, + 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=956, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=322, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + orbit=3, + orbitIndex=12, + skill=8983, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [9009]={ + connections={ + }, + group=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Return to Nature", + orbit=5, + orbitIndex=1, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Ire" + }, + skill=9009, + stats={ + [1]="Overgrown Plant Skills Break 50% increased Armour" + } + }, + [9018]={ + connections={ + [1]={ + id=35918, + orbit=2 + } + }, + group=525, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=936, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + isNotable=true, + name="Giantslayer", + orbit=1, + orbitIndex=11, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Despair" + }, + 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=325, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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", + connections={ + [1]={ + id=45751, + orbit=0 + } + }, + group=246, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds", + isOnlyImage=true, + name="Shield Mastery", + orbit=0, + orbitIndex=0, + skill=9040, + stats={ + } + }, + [9046]={ + connections={ + [1]={ + id=56776, + orbit=5 + } + }, + group=1131, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=6, + orbitIndex=36, + skill=9050, + stats={ + [1]="3% increased Attack Speed" + } + }, + [9065]={ + connections={ + [1]={ + id=752, + orbit=5 + } + }, + group=267, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + name="Minion Damage", + orbit=4, + orbitIndex=23, + skill=9065, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [9069]={ + connections={ + [1]={ + id=42245, + orbit=0 + } + }, + group=1119, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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", + connections={ + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.dds", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=0, + orbitIndex=0, + skill=9083, + stats={ + } + }, + [9085]={ + connections={ + }, + group=1052, + icon="Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds", + isKeystone=true, + name="Crimson Assault", + orbit=0, + orbitIndex=0, + skill=9085, + stats={ + [1]="Bleeding you inflict is Aggravated", + [2]="Base Bleeding Duration is 1 second", + [3]="50% more Magnitude of Bleeding you inflict" + } + }, + [9089]={ + connections={ + [1]={ + id=41020, + orbit=0 + } + }, + group=1302, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Evasion Rating", + orbit=1, + orbitIndex=1, + skill=9089, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [9106]={ + connections={ + [1]={ + id=54937, + orbit=7 + } + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=1030, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + 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=1022, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=4, + orbitIndex=12, + skill=9141, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [9151]={ + connections={ + [1]={ + id=42302, + orbit=0 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Forking Projectiles", + orbit=2, + orbitIndex=18, + skill=9151, + stats={ + [1]="Projectiles have 25% chance for an additional Projectile when Forking" + } + }, + [9163]={ + connections={ + }, + group=160, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=7, + orbitIndex=8, + skill=9163, + stats={ + [1]="18% increased Armour" + } + }, + [9164]={ + connections={ + [1]={ + id=25513, + orbit=0 + } + }, + group=720, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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=880, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=5, + skill=9185, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [9187]={ + connections={ + [1]={ + id=20015, + orbit=0 + } + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Escalation", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Guilt" + }, + skill=9187, + stats={ + [1]="25% increased Warcry Speed", + [2]="20% increased Damage for each different Warcry you've used Recently" + } + }, + [9199]={ + connections={ + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=291, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Mastery", + orbit=1, + orbitIndex=3, + skill=9212, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [9217]={ + connections={ + [1]={ + id=5108, + orbit=0 + }, + [2]={ + id=16538, + orbit=0 + }, + [3]={ + id=47733, + orbit=0 + } + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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", + connections={ + }, + group=263, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=9221, + stats={ + } + }, + [9226]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=509, + icon="Art/2DArt/SkillIcons/passives/damage_blue.dds", + isNotable=true, + name="Mental Perseverance", + orbit=1, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Disgust", + [3]="Greed" + }, + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.dds", + isNotable=true, + name="Focused Thrust", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Greed" + }, + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + name="Spear Damage", + orbit=2, + orbitIndex=16, + skill=9240, + stats={ + [1]="10% increased Damage with Spears" + } + }, + [9272]={ + connections={ + [1]={ + id=12906, + orbit=0 + } + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + 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=1126, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy and Attack Speed", + orbit=2, + orbitIndex=16, + skill=9275, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Accuracy Rating" + } + }, + [9290]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + }, + group=716, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + isNotable=true, + name="Rusted Pins", + orbit=4, + orbitIndex=57, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Fear" + }, + 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=1469, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds", + isNotable=true, + name="Critical Strike", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=9294, + stats={ + [1]="Chance to Hit with Attacks can exceed 100%", + [2]="Gain 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.dds", + isNotable=true, + name="Craving Slaughter", + orbit=2, + orbitIndex=23, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Fear" + }, + skill=9323, + stats={ + [1]="+8 maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds" + } + }, + [9324]={ + connections={ + }, + group=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=138, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds", + isNotable=true, + name="Spirit of the Bear", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Envy", + [3]="Despair" + }, + 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=134, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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", + connections={ + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=1, + orbitIndex=8, + skill=9393, + stats={ + } + }, + [9405]={ + connections={ + [1]={ + id=59720, + orbit=6 + } + }, + group=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=7, + orbitIndex=12, + skill=9405, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [9411]={ + connections={ + [1]={ + id=49466, + orbit=0 + } + }, + group=1149, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=276, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=447, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Life", + orbit=0, + orbitIndex=0, + skill=9417, + stats={ + [1]="16% increased Totem Life" + } + }, + [9421]={ + connections={ + [1]={ + id=60170, + orbit=0 + } + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + isNotable=true, + name="Snowpiercer", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Disgust" + }, + skill=9421, + stats={ + [1]="Damage Penetrates 15% Cold Resistance", + [2]="+10 to Intelligence" + } + }, + [9441]={ + connections={ + [1]={ + id=5077, + orbit=0 + } + }, + group=996, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=263, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds", + name="Warcry Speed", + orbit=2, + orbitIndex=18, + skill=9442, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [9444]={ + connections={ + }, + group=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + isNotable=true, + name="One with the Storm", + orbit=6, + orbitIndex=39, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Disgust" + }, + 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", + connections={ + }, + group=922, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=9458, + stats={ + } + }, + [9472]={ + connections={ + [1]={ + id=31991, + orbit=0 + }, + [2]={ + id=41062, + orbit=0 + } + }, + group=1046, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Catapult", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Guilt" + }, + skill=9472, + stats={ + [1]="15% increased Projectile Speed", + [2]="12% increased Area of Effect for Attacks" + } + }, + [9485]={ + connections={ + [1]={ + id=60685, + orbit=0 + } + }, + group=801, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1090, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=190, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=1343, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds", + name="Strength and Dexterity", + orbit=7, + orbitIndex=22, + skill=9532, + stats={ + [1]="+4 to Strength", + [2]="+4 to Dexterity" + } + }, + [9554]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=8723, + orbit=9 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Life", + orbit=2, + orbitIndex=1, + skill=9568, + stats={ + [1]="16% increased Totem Life" + } + }, + [9572]={ + connections={ + [1]={ + id=12822, + orbit=0 + } + }, + group=1005, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=422, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech and Physical Damage", + orbit=7, + orbitIndex=0, + skill=9583, + stats={ + [1]="10% increased amount of Life Leeched", + [2]="10% increased Physical Damage" + } + }, + [9586]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=1099, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=4, + orbitIndex=10, + skill=9586, + stats={ + } + }, + [9604]={ + connections={ + [1]={ + id=20015, + orbit=0 + } + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + isNotable=true, + name="Thirst of Kitava", + orbit=4, + orbitIndex=60, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Despair" + }, + skill=9604, + stats={ + [1]="Life Leeched from Empowered Attacks is Instant" + } + }, + [9638]={ + connections={ + [1]={ + id=39083, + orbit=-7 + } + }, + group=451, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=782, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=1237, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Mending Deflection", + orbit=2, + orbitIndex=18, + recipe={ + [1]="Despair", + [2]="Envy", + [3]="Fear" + }, + skill=9652, + stats={ + [1]="15% of Damage taken from Deflected Hits Recouped as Life" + } + }, + [9663]={ + connections={ + [1]={ + id=19359, + orbit=-5 + } + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.dds", + name="Chaos Resistance", + orbit=2, + orbitIndex=8, + skill=9663, + stats={ + [1]="+5% to Chaos Resistance" + } + }, + [9698]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=2, + orbitIndex=22, + skill=9698, + stats={ + } + }, + [9703]={ + connections={ + [1]={ + id=6030, + orbit=0 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=1441, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds", + isMultipleChoiceOption=true, + name="Bleeding Concoction", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + 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=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + isNotable=true, + name="Insulated Treads", + orbit=4, + orbitIndex=42, + recipe={ + [1]="Ire", + [2]="Ire", + [3]="Ire" + }, + skill=9736, + stats={ + [1]="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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Attack Area", + orbit=4, + orbitIndex=51, + skill=9737, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [9745]={ + connections={ + [1]={ + id=58513, + orbit=2147483647 + } + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds", + name="Movement Speed", + orbit=7, + orbitIndex=12, + skill=9745, + stats={ + [1]="2% increased Movement Speed" + } + }, + [9750]={ + connections={ + [1]={ + id=1169, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=548, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + name="Sword Damage", + orbit=6, + orbitIndex=5, + skill=9762, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [9782]={ + connections={ + [1]={ + id=20677, + orbit=0 + } + }, + group=1116, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=0, + orbitIndex=0, + skill=9782, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [9796]={ + connections={ + [1]={ + id=62310, + orbit=-4 + } + }, + group=542, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=1438, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Skill Speed", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + 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=729, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + name="Ailment Threshold", + orbit=3, + orbitIndex=0, + skill=9825, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [9843]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds", + name="Mana", + nodeOverlay={ + alloc="Disciple of VarashtaFrameSmallAllocated", + path="Disciple of VarashtaFrameSmallCanAllocate", + unalloc="Disciple of VarashtaFrameSmallNormal" + }, + orbit=4, + orbitIndex=66, + skill=9843, + stats={ + [1]="3% increased maximum Mana" + } + }, + [9857]={ + connections={ + [1]={ + id=54990, + orbit=0 + } + }, + group=693, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleeding Chance", + orbit=2, + orbitIndex=8, + skill=9857, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [9896]={ + connections={ + [1]={ + id=292, + orbit=0 + } + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Heartstopping Presence", + orbit=3, + orbitIndex=4, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Suffering" + }, + skill=9896, + stats={ + [1]="Enemies in your Presence have 75% reduced Life Regeneration rate" + } + }, + [9908]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=368, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + isNotable=true, + name="Price of Freedom", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Ire" + }, + 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=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Area Damage", + orbit=2, + orbitIndex=4, + skill=9918, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [9928]={ + connections={ + [1]={ + id=50403, + orbit=0 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Embracing Frost", + orbit=4, + orbitIndex=36, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Guilt" + }, + skill=9928, + stats={ + [1]="+1% to Maximum Cold Resistance", + [2]="+10% to Cold Resistance" + } + }, + [9941]={ + connections={ + [1]={ + id=38888, + orbit=0 + } + }, + group=848, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=1217, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + isNotable=true, + name="Feel the Earth", + orbit=4, + orbitIndex=69, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Disgust" + }, + 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.dds", + isFreeAllocate=true, + isNotable=true, + name="Smith's Masterwork", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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=2147483647 + }, + [6]={ + id=17268, + orbit=0 + } + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Master of the Elements", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=9, + orbitIndex=24, + skill=9994, + stats={ + } + }, + [9997]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=32, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds", + isNotable=true, + name="Molten Symbol", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=9997, + stats={ + [1]="Body Armour grants 25% of Physical Damage from Hits taken as Fire Damage" + } + }, + [10011]={ + connections={ + }, + group=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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=380, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="Repulsion", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Despair" + }, + 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=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=233, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + 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=922, + icon="Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds", + 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=149, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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", + connections={ + [1]={ + id=55149, + orbit=0 + }, + [2]={ + id=44373, + orbit=0 + } + }, + group=1241, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.dds", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=10058, + stats={ + } + }, + [10072]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=52068, + orbit=-7 + } + }, + group=59, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds", + name="Block Chance", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=10072, + stats={ + [1]="6% increased Block chance" + } + }, + [10079]={ + connections={ + [1]={ + id=5314, + orbit=0 + } + }, + group=777, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=16, + skill=10079, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [10100]={ + connections={ + [1]={ + id=47263, + orbit=0 + }, + [2]={ + id=25300, + orbit=0 + } + }, + group=185, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1016, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=648, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=1341, + icon="Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds", + isOnlyImage=true, + name="Power Charge Mastery", + orbit=0, + orbitIndex=0, + skill=10162, + stats={ + } + }, + [10192]={ + connections={ + [1]={ + id=3823, + orbit=0 + } + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + id=61436, + name="Minion Damage", + stats={ + [1]="Minions deal 10% increased Damage" + } + } + }, + orbit=3, + orbitIndex=0, + skill=10192, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [10208]={ + connections={ + [1]={ + id=22909, + orbit=0 + }, + [2]={ + id=60013, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Stun and Ailment Threshold from Energy Shield", + orbit=3, + orbitIndex=11, + skill=10208, + 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" + } + }, + [10242]={ + connections={ + [1]={ + id=38111, + orbit=0 + } + }, + group=1156, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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", + connections={ + }, + group=444, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=10245, + stats={ + } + }, + [10247]={ + connections={ + [1]={ + id=28370, + orbit=0 + } + }, + group=751, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=236, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=2, + orbitIndex=16, + skill=10251, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [10260]={ + connections={ + [1]={ + id=33730, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.dds", + isNotable=true, + name="Javelin", + orbit=6, + orbitIndex=48, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Disgust" + }, + skill=10265, + stats={ + [1]="40% increased Critical Damage Bonus with Spears" + } + }, + [10267]={ + connections={ + [1]={ + id=8456, + orbit=2147483647 + } + }, + group=1251, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Attack Cold Damage and Freeze Buildup", + orbit=7, + orbitIndex=2, + skill=10267, + stats={ + [1]="8% increased Freeze Buildup", + [2]="8% increased Attack Cold Damage" + } + }, + [10271]={ + connections={ + [1]={ + id=58038, + orbit=0 + } + }, + group=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=7, + orbitIndex=2, + skill=10273, + stats={ + [1]="+3 to all Attributes" + } + }, + [10277]={ + connections={ + [1]={ + id=64064, + orbit=0 + } + }, + group=1249, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=7, + skill=10277, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [10286]={ + connections={ + [1]={ + id=38066, + orbit=-4 + } + }, + group=205, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=266, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Overzealous", + orbit=5, + orbitIndex=30, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Isolation" + }, + 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=413, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=1422, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Easy Going", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Isolation" + }, + skill=10315, + stats={ + [1]="25% increased Reservation Efficiency of Companion Skills" + } + }, + [10320]={ + connections={ + [1]={ + id=14548, + orbit=3 + } + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=160, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=871, + icon="Art/2DArt/SkillIcons/passives/Harrier.dds", + name="Skill Speed", + orbit=4, + orbitIndex=48, + skill=10364, + stats={ + [1]="4% increased Skill Speed" + } + }, + [10371]={ + ascendancyName="Tactician", + connections={ + }, + group=298, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds", + isNotable=true, + name="Whoever Pays Best", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + 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=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=1108, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=699, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + isNotable=true, + name="Sudden Escalation", + orbit=7, + orbitIndex=18, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Fear" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern", + connections={ + [1]={ + id=37905, + orbit=-7 + } + }, + group=1364, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + isNotable=true, + name="Exposed to the Inferno", + orbit=1, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Disgust" + }, + 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", + connections={ + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=1, + orbitIndex=11, + skill=10429, + stats={ + } + }, + [10452]={ + connections={ + [1]={ + id=44213, + orbit=0 + }, + [2]={ + id=1878, + orbit=0 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=2147483647 + }, + [2]={ + id=27422, + orbit=3 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + name="Mana Flask Recovery", + orbit=4, + orbitIndex=32, + skill=10472, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [10474]={ + connections={ + [1]={ + id=64443, + orbit=0 + }, + [2]={ + id=53785, + orbit=0 + } + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=221, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Maximum Rage", + orbit=2, + orbitIndex=14, + skill=10484, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [10495]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=7, + orbitIndex=18, + skill=10495, + stats={ + } + }, + [10499]={ + connections={ + [1]={ + id=42583, + orbit=2147483647 + }, + [2]={ + id=51788, + orbit=8 + } + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + isNotable=true, + name="Necromantic Ward", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Fear" + }, + 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=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Dazing Blocks", + orbit=4, + orbitIndex=12, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Despair" + }, + 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=174, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=942, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds", + isNotable=true, + name="Navira's Fracturing", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=7, + orbitIndex=17, + skill=10561, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [10571]={ + connections={ + [1]={ + id=48240, + orbit=0 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=3, + orbitIndex=17, + skill=10571, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [10576]={ + connections={ + [1]={ + id=58644, + orbit=0 + } + }, + group=1240, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=386, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + isNotable=true, + name="Reaving", + orbit=4, + orbitIndex=9, + recipe={ + [1]="Despair", + [2]="Ire", + [3]="Envy" + }, + skill=10602, + stats={ + [1]="8% increased Attack Speed with One Handed Weapons", + [2]="+15 to Dexterity" + } + }, + [10612]={ + connections={ + [1]={ + id=52003, + orbit=0 + } + }, + group=700, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Embodiment of Frost", + orbit=2, + orbitIndex=5, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Ire" + }, + skill=10612, + stats={ + [1]="Immune to Freeze and Chill while affected by an Archon Buff" + } + }, + [10635]={ + connections={ + [1]={ + id=31724, + orbit=0 + } + }, + group=405, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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.dds", + name="Block Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1278, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=1007, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Attack Damage", + orbit=2, + orbitIndex=1, + skill=10671, + stats={ + [1]="10% increased Attack Damage" + } + }, + [10677]={ + connections={ + [1]={ + id=56638, + orbit=3 + } + }, + group=948, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=117, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Defensive Stance", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Fear", + [3]="Isolation" + }, + skill=10681, + stats={ + [1]="+4% to maximum Block chance" + } + }, + [10694]={ + ascendancyName="Infernalist", + connections={ + }, + group=770, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds", + isNotable=true, + name="Seething Body", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + 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.dds", + name="Armour", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=165, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + isNotable=true, + name="Emboldening Casts", + orbit=3, + orbitIndex=11, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Disgust" + }, + 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", + connections={ + }, + group=1101, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=10729, + stats={ + } + }, + [10731]={ + ascendancyName="Chronomancer", + connections={ + }, + group=318, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds", + isNotable=true, + name="Quicksand Hourglass", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=10731, + stats={ + [1]="Grants Sands of Time" + } + }, + [10738]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=10738, + stats={ + } + }, + [10742]={ + connections={ + [1]={ + id=41991, + orbit=0 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Attack and Cast Speed", + orbit=3, + orbitIndex=4, + skill=10742, + stats={ + [1]="Minions have 3% increased Attack and Cast Speed" + } + }, + [10772]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern", + connections={ + [1]={ + id=2119, + orbit=0 + } + }, + group=632, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + isNotable=true, + name="Bloodthirsty", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Fear" + }, + skill=10772, + stats={ + [1]="20% increased amount of Life Leeched", + [2]="Leech Life 25% faster" + } + }, + [10774]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + [1]={ + id=35863, + orbit=0 + } + }, + group=424, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Unyielding", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Envy", + [3]="Disgust" + }, + 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=548, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + name="Sword Damage", + orbit=2, + orbitIndex=16, + skill=10783, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [10830]={ + connections={ + [1]={ + id=59589, + orbit=0 + } + }, + group=160, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=7, + orbitIndex=2, + skill=10830, + stats={ + [1]="18% increased Armour" + } + }, + [10835]={ + connections={ + [1]={ + id=48026, + orbit=0 + }, + [2]={ + id=53367, + orbit=2147483647 + } + }, + group=491, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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", + connections={ + }, + group=1051, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=7, + orbitIndex=15, + skill=10841, + stats={ + } + }, + [10873]={ + connections={ + [1]={ + id=32777, + orbit=0 + } + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Bestial Rage", + orbit=3, + orbitIndex=12, + recipe={ + [1]="Ire", + [2]="Disgust", + [3]="Fear" + }, + 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=1021, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + 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=842, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + name="Pin Duration", + orbit=3, + orbitIndex=3, + skill=10927, + stats={ + [1]="10% increased Pin duration" + } + }, + [10944]={ + connections={ + }, + group=1157, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=359, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds", + isNotable=true, + name="Now and Again", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=10987, + stats={ + [1]="Skills have 33% chance to not consume a Cooldown when used" + } + }, + [10998]={ + connections={ + [1]={ + id=21438, + orbit=0 + }, + [2]={ + id=62235, + orbit=0 + } + }, + group=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + isNotable=true, + name="Strong Chin", + orbit=4, + orbitIndex=30, + recipe={ + [1]="Paranoia", + [2]="Ire", + [3]="Guilt" + }, + skill=10998, + stats={ + [1]="Gain Stun Threshold equal to the lowest of Evasion and Armour on your Helmet" + } + }, + [11014]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connections={ + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/MasteryTotem.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=11014, + stats={ + } + }, + [11015]={ + connections={ + [1]={ + id=45329, + orbit=0 + } + }, + group=1185, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Damage", + orbit=0, + orbitIndex=0, + skill=11015, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [11027]={ + connections={ + [1]={ + id=59433, + orbit=0 + } + }, + group=219, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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" + } + }, + [11030]={ + connections={ + [1]={ + id=59596, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=3, + orbitIndex=10, + skill=11030, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [11032]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern", + connections={ + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=11032, + stats={ + } + }, + [11037]={ + connections={ + [1]={ + id=57039, + orbit=0 + } + }, + group=731, + icon="Art/2DArt/SkillIcons/ExplosiveGrenade.dds", + 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=267, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=788, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=265, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + 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=1219, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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=603, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Relinquish Your Life", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + 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 + } + }, + group=867, + icon="Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds", + isKeystone=true, + name="Ritual Cadence", + orbit=0, + orbitIndex=0, + skill=11230, + stats={ + [1]="Invocation Skills instead Trigger Spells every 2 seconds", + [2]="Invocation Skills cannot gain Energy while Triggering Spells", + [3]="Invoked 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=299, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1321, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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.dds", + 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=427, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + 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=168, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + 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=768, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=884, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=11315, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [11329]={ + connections={ + [1]={ + id=54676, + orbit=0 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=2, + orbitIndex=22, + skill=11329, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [11330]={ + connections={ + [1]={ + id=22185, + orbit=0 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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.dds", + name="Passive Point", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + 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=749, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=685, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Volcanic Skin", + orbit=5, + orbitIndex=2, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Paranoia" + }, + 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=735, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Necrotic Touch", + orbit=1, + orbitIndex=10, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Suffering" + }, + 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.dds", + isNotable=true, + name="Molten Being", + orbit=5, + orbitIndex=8, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Disgust" + }, + skill=11392, + stats={ + [1]="Gain 5% of Damage as Extra Fire Damage", + [2]="5% of Physical Damage taken as Fire Damage" + } + }, + [11428]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Exhaust All Power", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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.dds", + name="Fire Damage", + orbit=7, + orbitIndex=0, + skill=11433, + stats={ + [1]="12% increased Fire Damage" + } + }, + [11463]={ + connections={ + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/auraareaofeffect.dds", + name="Presence Area", + orbit=2, + orbitIndex=1, + skill=11463, + stats={ + [1]="25% reduced Presence Area of Effect" + } + }, + [11464]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=27405, + orbit=0 + } + }, + group=294, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + name="Movement Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1145, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + 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" + } + }, + [11504]={ + connections={ + [1]={ + id=30839, + orbit=7 + }, + [2]={ + id=35696, + orbit=0 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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", + connections={ + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=11505, + stats={ + } + }, + [11509]={ + connections={ + [1]={ + id=17664, + orbit=0 + } + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=16, + 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=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability and Ignite Magnitude", + orbit=2, + orbitIndex=8, + skill=11525, + stats={ + [1]="15% increased Flammability Magnitude", + [2]="8% increased Ignite Magnitude" + } + }, + [11526]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern", + connections={ + [1]={ + id=38993, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Sniper", + orbit=5, + orbitIndex=30, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Despair" + }, + skill=11526, + stats={ + [1]="Arrows gain Critical Hit Chance as they travel farther, up to", + [2]="40% increased Critical Hit Chance after 7 metres" + } + }, + [11572]={ + connections={ + [1]={ + id=32923, + orbit=-7 + } + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=997, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Spreading Shocks", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Disgust" + }, + 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=477, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration Rate", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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=1075, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=400, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillGemQuality.dds", + isNotable=true, + name="Crystalline Potential", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=11641, + stats={ + [1]="+10% to Quality of all Skills" + } + }, + [11656]={ + connections={ + [1]={ + id=53822, + orbit=0 + }, + [2]={ + id=9106, + orbit=-3 + } + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=2147483647 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + name="Reduced Movement Penalty", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=854, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + 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=845, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=616, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=951, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + name="Seal Generation Frequency", + orbit=2, + orbitIndex=16, + skill=11722, + stats={ + [1]="Skills Supported by Unleash have 10% increased Seal gain frequency" + } + }, + [11736]={ + connections={ + [1]={ + id=62677, + orbit=0 + } + }, + group=827, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=209, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=656, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=1159, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Skill Speed", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=5, + orbitIndex=22, + skill=11771, + stats={ + [1]="4% increased Skill Speed" + } + }, + [11774]={ + connections={ + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds", + isNotable=true, + name="The Spring Hare", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Isolation" + }, + 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=1497, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Physical Damage", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=11776, + stats={ + [1]="15% increased Physical Damage" + } + }, + [11786]={ + connections={ + [1]={ + id=7716, + orbit=2147483647 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=819, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=1111, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=7, + orbitIndex=12, + skill=11813, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [11825]={ + connections={ + [1]={ + id=8194, + orbit=0 + }, + [2]={ + id=42794, + orbit=4 + }, + [3]={ + id=54984, + orbit=0 + }, + [4]={ + id=47374, + orbit=0 + }, + [5]={ + id=10648, + orbit=0 + } + }, + group=1225, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=883, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Heavy Ammunition", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Greed" + }, + 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=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Critical vs Blinded", + orbit=2, + orbitIndex=7, + skill=11836, + stats={ + [1]="12% increased Critical Hit Chance against Blinded Enemies" + } + }, + [11838]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + [1]={ + id=33112, + orbit=-4 + } + }, + group=1021, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + isNotable=true, + name="Dreamcatcher", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Fear" + }, + 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=924, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=16, + skill=11855, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [11861]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=59795, + orbit=0 + } + }, + group=665, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength and Spell Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Blind Chance", + orbit=3, + orbitIndex=1, + skill=11871, + stats={ + [1]="5% chance to Blind Enemies on Hit" + } + }, + [11873]={ + connections={ + [1]={ + id=62677, + orbit=0 + }, + [2]={ + id=50150, + orbit=0 + } + }, + group=799, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Lightning 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=1082, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + name="Ailment Chance", + orbit=4, + orbitIndex=3, + skill=11882, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [11886]={ + connections={ + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Mauling Stuns", + orbit=7, + orbitIndex=23, + recipe={ + [1]="Paranoia", + [2]="Guilt", + [3]="Suffering" + }, + 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=767, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=878, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=0, + orbitIndex=0, + skill=11938, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [11980]={ + connections={ + [1]={ + id=20504, + orbit=-5 + } + }, + group=959, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block", + orbit=4, + orbitIndex=71, + skill=11980, + stats={ + [1]="5% increased Block chance" + } + }, + [11984]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=42762, + orbit=2147483647 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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.dds", + isNotable=true, + name="Mysterious Lineage", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=12000, + stats={ + [1]="15% more Maximum Life" + } + }, + [12005]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=2, + orbitIndex=23, + skill=12005, + stats={ + } + }, + [12033]={ + ascendancyName="Deadeye", + connections={ + }, + group=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds", + isNotable=true, + name="Endless Munitions", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + orbit=2, + orbitIndex=8, + skill=12033, + stats={ + [1]="Skills fire an additional Projectile" + } + }, + [12054]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=37523, + orbit=0 + } + }, + group=393, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Totem Damage", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=12054, + stats={ + [1]="20% increased Totem Damage" + } + }, + [12066]={ + connections={ + [1]={ + id=48734, + orbit=0 + } + }, + group=1378, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds", + 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=1267, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=1368, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=1177, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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", + connections={ + }, + group=369, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=12125, + stats={ + } + }, + [12166]={ + connections={ + }, + group=1191, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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", + connections={ + [1]={ + id=60138, + orbit=0 + } + }, + group=1183, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds", + isOnlyImage=true, + name="Physical Mastery", + orbit=2, + orbitIndex=13, + skill=12169, + stats={ + } + }, + [12174]={ + connections={ + [1]={ + id=18864, + orbit=0 + } + }, + group=1255, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds", + 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=1451, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Passive Points", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=12183, + stats={ + [1]="Grants 1 Passive Skill Point" + } + }, + [12189]={ + connections={ + [1]={ + id=32859, + orbit=-4 + } + }, + group=449, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=265, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds", + name="Channelling Damage and Defences", + orbit=2, + orbitIndex=21, + skill=12232, + stats={ + [1]="Channelling Skills deal 6% increased Damage", + [2]="4% increased Global Defences while Channelling" + } + }, + [12239]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + [1]={ + id=39881, + orbit=0 + }, + [2]={ + id=41811, + orbit=0 + } + }, + group=1286, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds", + isOnlyImage=true, + name="Physical Mastery", + orbit=0, + orbitIndex=0, + skill=12239, + stats={ + } + }, + [12245]={ + connections={ + [1]={ + id=13610, + orbit=0 + }, + [2]={ + id=19749, + orbit=0 + } + }, + group=961, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Arsonist", + orbit=3, + orbitIndex=14, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Despair" + }, + skill=12245, + stats={ + [1]="Ignites you inflict deal Damage 18% faster" + } + }, + [12249]={ + connections={ + [1]={ + id=12761, + orbit=-3 + } + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=1274, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=279, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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.dds", + 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=838, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=927, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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=427, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + name="Infusion Chance", + orbit=1, + orbitIndex=7, + skill=12324, + stats={ + [1]="5% chance when collecting an Elemental Infusion to gain an", + [2]="additional Elemental Infusion of the same type" + } + }, + [12329]={ + connections={ + [1]={ + id=17523, + orbit=4 + } + }, + group=1369, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Damage", + orbit=7, + orbitIndex=0, + skill=12329, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [12337]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + [1]={ + id=5295, + orbit=0 + } + }, + group=947, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Flash Storm", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Ire", + [3]="Isolation" + }, + skill=12337, + stats={ + [1]="30% increased chance to Shock", + [2]="Damage Penetrates 15% Lightning Resistance" + } + }, + [12367]={ + connections={ + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=3, + orbitIndex=0, + skill=12367, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [12382]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + [1]={ + id=35849, + orbit=0 + } + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=1, + orbitIndex=11, + skill=12382, + stats={ + } + }, + [12412]={ + connections={ + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Temporal Mastery", + orbit=1, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Disgust" + }, + skill=12412, + stats={ + [1]="16% increased Cooldown Recovery Rate" + } + }, + [12418]={ + connections={ + [1]={ + id=51832, + orbit=0 + }, + [2]={ + id=3988, + orbit=0 + } + }, + group=184, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Empowered Attack Damage", + orbit=2, + orbitIndex=21, + skill=12418, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [12419]={ + connections={ + [1]={ + id=56063, + orbit=-1 + } + }, + group=905, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=626, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isSwitchable=true, + name="Melee Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=1034, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=551, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isSwitchable=true, + name="Aura Effect", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.dds", + 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=943, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break", + orbit=7, + orbitIndex=14, + skill=12465, + stats={ + [1]="Break 20% increased Armour" + } + }, + [12471]={ + connections={ + [1]={ + id=19942, + orbit=0 + } + }, + group=303, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Remnant Range", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=9, + orbitIndex=8, + skill=12488, + stats={ + [1]="Remnants can be collected from 25% further away" + } + }, + [12498]={ + connections={ + [1]={ + id=30341, + orbit=0 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + 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=729, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + 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.dds", + 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=2147483647 + } + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + name="Gain Maximum Endurance Charges on Gaining Endurance Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=571, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Energy", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=7, + orbitIndex=20, + skill=12610, + stats={ + [1]="Meta Skills gain 20% increased Energy" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [12611]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + [1]={ + id=32155, + orbit=3 + }, + [2]={ + id=44204, + orbit=3 + } + }, + group=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Harness the Elements", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Isolation" + }, + skill=12611, + stats={ + [1]="20% increased Damage for each type of Elemental Ailment on Enemy" + } + }, + [12661]={ + connections={ + [1]={ + id=34984, + orbit=0 + } + }, + group=942, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Asceticism", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Guilt" + }, + 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=571, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Power of the Storm", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern", + connections={ + }, + group=968, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.dds", + isNotable=true, + name="Vale Shelter", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Despair" + }, + skill=12750, + stats={ + [1]="Charms gain 0.15 charges per Second" + } + }, + [12751]={ + connections={ + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=1058, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=645, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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", + connections={ + [1]={ + id=5777, + orbit=0 + }, + [2]={ + id=18465, + orbit=0 + }, + [3]={ + id=64299, + orbit=0 + } + }, + group=540, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=12786, + stats={ + } + }, + [12795]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=44871, + orbit=0 + }, + [2]={ + id=4739, + orbit=0 + } + }, + group=1454, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds", + isMultipleChoiceOption=true, + name="Path of the Sorceress", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=12795, + stats={ + [1]="Can Allocate Passives from the Sorceress's starting point", + [2]="Grants 4 Passive Skill Point" + } + }, + [12800]={ + connections={ + [1]={ + id=8896, + orbit=0 + } + }, + group=1301, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + 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=306, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Defences", + orbit=7, + orbitIndex=4, + skill=12817, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [12821]={ + connections={ + }, + group=491, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=1005, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Adaptable Assault", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Envy" + }, + skill=12822, + stats={ + [1]="+4 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=654, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + name="Physical Damage", + orbit=7, + orbitIndex=5, + skill=12851, + stats={ + [1]="10% increased Physical Damage" + } + }, + [12876]={ + ascendancyName="Invoker", + connections={ + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds", + isNotable=true, + name="Faith is a Choice", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + orbit=6, + orbitIndex=7, + skill=12876, + stats={ + [1]="Grants Skill: Meditate" + } + }, + [12882]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=25618, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds", + isNotable=true, + name="Tempest Caller", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + 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=1177, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=12, + skill=12890, + stats={ + [1]="+5 to any Attribute" + } + }, + [12906]={ + connections={ + [1]={ + id=3234, + orbit=0 + } + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + isNotable=true, + name="Sitting Duck", + orbit=7, + orbitIndex=20, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Guilt" + }, + 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=777, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=8, + skill=12918, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [12925]={ + connections={ + [1]={ + id=61196, + orbit=5 + } + }, + group=934, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=521, + icon="Art/2DArt/SkillIcons/passives/damage_blue.dds", + isNotable=true, + name="Cower Before the First Ones", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern", + connections={ + }, + group=264, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Lone Warrior", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Disgust" + }, + 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=255, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1217, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + isNotable=true, + name="Warm the Heart", + orbit=4, + orbitIndex=21, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Fear" + }, + skill=12998, + stats={ + [1]="25% reduced Freeze Duration on you", + [2]="60% increased Freeze Threshold" + } + }, + [13030]={ + connections={ + [1]={ + id=55, + orbit=-3 + } + }, + group=1040, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Triggered Spell Damage", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=8, + orbitIndex=14, + skill=13065, + stats={ + [1]="Triggered Spells deal 16% increased Spell Damage" + } + }, + [13075]={ + connections={ + [1]={ + id=50392, + orbit=0 + } + }, + group=218, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength", + orbit=0, + orbitIndex=0, + skill=13075, + stats={ + [1]="+12 to Strength" + } + }, + [13081]={ + connections={ + [1]={ + id=14254, + orbit=-5 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=5, + orbitIndex=17, + skill=13081, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [13108]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/minionattackspeed.dds", + name="Ally Attack and Cast Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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 + } + } + }, + [13157]={ + connections={ + [1]={ + id=30392, + orbit=3 + } + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=450, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds", + isNotable=true, + name="Pyromantic Pact", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + orbit=6, + orbitIndex=3, + skill=13174, + stats={ + [1]="Maximum Mana is replaced by twice as much Maximum Infernal Flame", + [2]="Gain Infernal Flame instead of spending Mana for Skill costs", + [3]="Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum", + [4]="Lose all Infernal Flame on reaching maximum Infernal Flame", + [5]="25% of Infernal Flame lost per second if none was gained in the past 2 seconds" + } + }, + [13228]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=43486, + orbit=2147483647 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + name="Gain Maximum Power Charges on Gaining Power Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=2, + orbitIndex=19, + skill=13228, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to", + [2]="your maximum number of Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [13233]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=577, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=623, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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 + } + }, + group=599, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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={ + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds", + isNotable=true, + name="Barya of Kelari", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=8, + orbitIndex=15, + skill=13289, + stats={ + [1]="Grants Skill: Kelari, the Tainted Sands" + } + }, + [13293]={ + connections={ + [1]={ + id=30457, + orbit=4 + } + }, + group=152, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=571, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Duration", + orbit=1, + orbitIndex=7, + skill=13294, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [13307]={ + connections={ + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=689, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=952, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=4, + skill=13341, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [13352]={ + connections={ + [1]={ + id=59180, + orbit=2147483647 + }, + [2]={ + id=38010, + orbit=0 + } + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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=483, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=700, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Cold Damage and Energy Shield Recharge Rate", + orbit=3, + orbitIndex=15, + skill=13359, + stats={ + [1]="8% increased Energy Shield Recharge Rate", + [2]="8% increased Elemental Damage" + } + }, + [13367]={ + connections={ + [1]={ + id=38969, + orbit=0 + }, + [2]={ + id=21713, + orbit=0 + } + }, + group=1100, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=14, + skill=13367, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [13379]={ + connections={ + [1]={ + id=27761, + orbit=0 + } + }, + group=1027, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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", + connections={ + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=5, + orbitIndex=0, + skill=13387, + stats={ + } + }, + [13397]={ + connections={ + [1]={ + id=1207, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Heartbreaking", + orbit=2, + orbitIndex=9, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Fear" + }, + skill=13407, + stats={ + [1]="25% increased Critical Damage Bonus", + [2]="+10 to Strength" + } + }, + [13411]={ + connections={ + [1]={ + id=34136, + orbit=7 + } + }, + group=986, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1006, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=7, + orbitIndex=14, + skill=13419, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [13425]={ + connections={ + [1]={ + id=315, + orbit=0 + } + }, + group=690, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + isNotable=true, + name="Shadow Dancing", + orbit=4, + orbitIndex=60, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Despair" + }, + skill=13457, + stats={ + [1]="30% increased Evasion Rating if you have been Hit Recently", + [2]="60% faster start of Energy Shield Recharge if you've been Stunned Recently" + } + }, + [13468]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=51454, + orbit=0 + } + }, + group=477, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + isNotable=true, + name="Give Up Your Essence", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=385, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=193, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds", + isNotable=true, + name="Punctured Lung", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Greed" + }, + skill=13482, + stats={ + [1]="Enemies you Fully Armour Break cannot Regenerate Life", + [2]="Enemies you Fully Armour Break are Maimed" + } + }, + [13500]={ + connections={ + [1]={ + id=41044, + orbit=-3 + }, + [2]={ + id=44733, + orbit=0 + } + }, + group=509, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=563, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=669, + icon="Art/2DArt/SkillIcons/passives/stormborn.dds", + isNotable=true, + name="Stormwalker", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Fear" + }, + 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=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + isNotable=true, + name="Everlasting Glory", + orbit=4, + orbitIndex=27, + recipe={ + [1]="Disgust", + [2]="Ire", + [3]="Suffering" + }, + skill=13524, + stats={ + [1]="Skills have a 15% chance to not consume Glory" + } + }, + [13537]={ + connections={ + [1]={ + id=49455, + orbit=0 + } + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=4, + orbitIndex=10, + skill=13537, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [13542]={ + connections={ + [1]={ + id=27658, + orbit=7 + }, + [2]={ + id=44850, + orbit=0 + } + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Loose Flesh", + orbit=7, + orbitIndex=2, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Greed" + }, + skill=13542, + stats={ + [1]="20% of Elemental Damage taken Recouped as Life" + } + }, + [13562]={ + connections={ + [1]={ + id=23650, + orbit=3 + } + }, + group=572, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=944, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=961, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + name="Mark Duration", + orbit=2, + orbitIndex=23, + skill=13624, + stats={ + [1]="Mark Skills have 25% increased Skill Effect Duration" + } + }, + [13634]={ + connections={ + }, + group=787, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Chill Duration", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=8, + orbitIndex=1, + skill=13673, + stats={ + [1]="25% increased Chill Duration on Enemies" + } + }, + [13691]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/MasteryTotem.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=13691, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [13701]={ + connections={ + [1]={ + id=17871, + orbit=0 + }, + [2]={ + id=59538, + orbit=0 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=720, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + isNotable=true, + name="Curved Weapon", + orbit=4, + orbitIndex=40, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Greed" + }, + skill=13708, + stats={ + [1]="15% increased Accuracy Rating", + [2]="+10 to Dexterity" + } + }, + [13711]={ + connections={ + [1]={ + id=30562, + orbit=4 + } + }, + group=1064, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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.dds", + name="Stun Buildup", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + 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=1094, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Deadly Force", + orbit=4, + orbitIndex=54, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Envy" + }, + skill=13724, + stats={ + [1]="25% increased Damage if you've dealt a Critical Hit in the past 8 seconds", + [2]="10% increased Critical Hit Chance" + } + }, + [13738]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=929, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Lightning Quick", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Isolation" + }, + 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=1022, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=3, + orbitIndex=0, + skill=13748, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [13769]={ + connections={ + [1]={ + id=2254, + orbit=-4 + } + }, + group=745, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=8, + skill=13769, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [13772]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=39, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds", + isNotable=true, + name="Flowing Metal", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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=206, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=966, + icon="Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds", + isSwitchable=true, + name="Ailment Chance", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=1318, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=1013, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + isNotable=true, + name="Controlling Magic", + orbit=3, + orbitIndex=13, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Isolation" + }, + 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=835, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=0, + orbitIndex=0, + skill=13828, + stats={ + [1]="+16 to Evasion Rating" + } + }, + [13839]={ + connections={ + [1]={ + id=65287, + orbit=0 + } + }, + group=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=5, + orbitIndex=6, + skill=13839, + stats={ + [1]="15% increased Totem Damage" + } + }, + [13845]={ + connections={ + [1]={ + id=28408, + orbit=-7 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=673, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=249, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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", + connections={ + }, + group=1059, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=13862, + stats={ + } + }, + [13882]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern", + connections={ + }, + group=703, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Infusion Mastery", + orbit=0, + orbitIndex=0, + skill=13882, + stats={ + } + }, + [13893]={ + connections={ + [1]={ + id=42390, + orbit=-5 + } + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.dds", + isNotable=true, + name="Precise Point", + orbit=5, + orbitIndex=10, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Despair" + }, + 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=791, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + 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.dds", + name="Mace Damage", + orbit=7, + orbitIndex=7, + skill=13937, + stats={ + [1]="14% increased Damage with Maces" + } + }, + [13942]={ + connections={ + [1]={ + id=65023, + orbit=0 + } + }, + group=649, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=3, + orbitIndex=3, + skill=13942, + stats={ + [1]="15% increased Armour" + } + }, + [13950]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=11666, + orbit=2147483647 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + name="Reduced Movement Penalty", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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.dds", + isNotable=true, + name="Split the Earth", + orbit=4, + orbitIndex=33, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Disgust" + }, + 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=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=1202, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + name="Charm Charges Used", + orbit=2, + orbitIndex=22, + skill=14001, + stats={ + [1]="6% reduced Charm Charges used" + } + }, + [14026]={ + connections={ + }, + group=145, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=660, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1046, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=5, + orbitIndex=48, + skill=14045, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [14048]={ + connections={ + [1]={ + id=34717, + orbit=7 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=1137, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=640, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=636, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + 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=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=3, + orbitIndex=22, + skill=14110, + stats={ + [1]="15% increased Totem Damage" + } + }, + [14113]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + [1]={ + id=10029, + orbit=0 + }, + [2]={ + id=8660, + orbit=0 + } + }, + group=380, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=14113, + stats={ + } + }, + [14127]={ + connections={ + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds", + isNotable=true, + name="Ruzhan's Fury", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=8, + orbitIndex=53, + skill=14131, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [14176]={ + connections={ + [1]={ + id=18004, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Later Rage Loss Start", + orbit=2, + orbitIndex=0, + skill=14176, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [14205]={ + connections={ + [1]={ + id=25753, + orbit=0 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=1105, + icon="Art/2DArt/SkillIcons/passives/Trap.dds", + isNotable=true, + name="Shredding Contraptions", + orbit=1, + orbitIndex=10, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Envy" + }, + 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={ + }, + group=1333, + icon="Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds", + 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", + [2]="a One-Handed Martial Weapon equipped in your Main Hand" + } + }, + [14231]={ + connections={ + [1]={ + id=40453, + orbit=-7 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=753, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=4, + skill=14254, + stats={ + [1]="3% increased Attack Speed" + } + }, + [14262]={ + connections={ + [1]={ + id=32763, + orbit=0 + }, + [2]={ + id=21945, + orbit=0 + } + }, + group=1367, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1389, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=1124, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=2, + orbitIndex=7, + skill=14272, + stats={ + } + }, + [14294]={ + connections={ + [1]={ + id=43818, + orbit=0 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + isNotable=true, + name="Sacrificial Blood", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Envy", + [2]="Greed", + [3]="Suffering" + }, + skill=14294, + stats={ + [1]="15% increased Life Cost of Skills", + [2]="40% increased Spell Damage with Spells that cost Life" + } + }, + [14324]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + [1]={ + id=1468, + orbit=-2 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Arcane Blossom", + orbit=7, + orbitIndex=3, + recipe={ + [1]="Envy", + [2]="Despair", + [3]="Despair" + }, + skill=14324, + stats={ + [1]="15% increased Mana Recovery rate" + } + }, + [14328]={ + connections={ + [1]={ + id=18959, + orbit=0 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + name="Energy Shield and Armour applies to Elemental Resistance", + 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=860, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=117, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=16, + skill=14342, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [14343]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern", + connections={ + }, + group=1035, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + isNotable=true, + name="Deterioration", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Isolation" + }, + 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=819, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=696, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Penetration", + orbit=3, + orbitIndex=2, + skill=14363, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [14383]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern", + connections={ + [1]={ + id=46601, + orbit=0 + } + }, + group=1169, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + isNotable=true, + name="Suffusion", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Guilt" + }, + skill=14383, + stats={ + [1]="30% increased amount of Mana Leeched", + [2]="Unaffected by Chill while Leeching Mana" + } + }, + [14418]={ + connections={ + [1]={ + id=16602, + orbit=2147483647 + } + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds", + name="Evasion", + orbit=7, + orbitIndex=6, + skill=14418, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [14428]={ + connections={ + [1]={ + id=6287, + orbit=0 + } + }, + group=724, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + name="Intelligence", + orbit=3, + orbitIndex=14, + skill=14428, + stats={ + [1]="+8 to Intelligence" + } + }, + [14429]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=381, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds", + isNotable=true, + name="Advanced Thaumaturgy", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=14429, + stats={ + [1]="Grants Thaumaturgical Dynamism" + } + }, + [14432]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=113, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds", + isNotable=true, + name="Lunar Boon", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=117, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=1224, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=305, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + 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", + connections={ + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=14505, + stats={ + } + }, + [14508]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=29074, + orbit=0 + } + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Poison Effect", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + 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.dds", + 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.dds", + 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=283, + icon="Art/2DArt/SkillIcons/icongroundslam.dds", + 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=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Deflection and Evasion", + orbit=7, + orbitIndex=4, + skill=14539, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 3% of Evasion Rating" + } + }, + [14540]={ + connections={ + [1]={ + id=31903, + orbit=0 + } + }, + group=445, + icon="Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds", + isKeystone=true, + name="Unwavering Stance", + orbit=0, + orbitIndex=0, + skill=14540, + stats={ + [1]="Cannot be Light Stunned", + [2]="Cannot Dodge Roll or Sprint" + } + }, + [14548]={ + connections={ + [1]={ + id=59541, + orbit=7 + } + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=731, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + name="Cooldown Recovery Rate", + orbit=3, + orbitIndex=8, + skill=14572, + stats={ + [1]="5% increased Cooldown Recovery Rate" + } + }, + [14575]={ + connections={ + }, + group=587, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.dds", + 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" + } + }, + [14601]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=7, + orbitIndex=0, + skill=14601, + stats={ + } + }, + [14602]={ + connections={ + [1]={ + id=42737, + orbit=0 + } + }, + group=553, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Specialised Shots", + orbit=7, + orbitIndex=3, + recipe={ + [1]="Guilt", + [2]="Guilt", + [3]="Suffering" + }, + 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=328, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=356, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=1221, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=14658, + stats={ + [1]="+5 to any Attribute" + } + }, + [14666]={ + connections={ + }, + group=782, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=3, + orbitIndex=18, + skill=14666, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [14693]={ + connections={ + [1]={ + id=13937, + orbit=0 + } + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + name="Mace Damage", + orbit=4, + orbitIndex=27, + skill=14693, + stats={ + [1]="14% increased Damage with Maces" + } + }, + [14712]={ + connections={ + [1]={ + id=3866, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=1242, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=938, + icon="Art/2DArt/SkillIcons/passives/Harrier.dds", + name="Skill Speed", + orbit=2, + orbitIndex=18, + skill=14725, + stats={ + [1]="3% increased Skill Speed" + } + }, + [14739]={ + connections={ + [1]={ + id=49235, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=3, + skill=14739, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [14761]={ + connections={ + [1]={ + id=45215, + orbit=0 + }, + [2]={ + id=57775, + orbit=0 + } + }, + group=413, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Warlord Leader", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Paranoia" + }, + 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=1362, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds", + name="Dexterity", + orbit=7, + orbitIndex=20, + skill=14769, + stats={ + [1]="+8 to Dexterity" + } + }, + [14777]={ + connections={ + [1]={ + id=59466, + orbit=4 + }, + [2]={ + id=20015, + orbit=0 + } + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Bravado", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Despair" + }, + 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", + connections={ + }, + group=126, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds", + isOnlyImage=true, + name="Mace Mastery", + orbit=0, + orbitIndex=0, + skill=14832, + stats={ + } + }, + [14882]={ + connections={ + [1]={ + id=5048, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=1038, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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", + connections={ + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=14923, + stats={ + } + }, + [14926]={ + connections={ + [1]={ + id=50609, + orbit=0 + }, + [2]={ + id=56910, + orbit=-6 + } + }, + group=767, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=610, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Spiral into Mania", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Ire", + [2]="Envy", + [3]="Suffering" + }, + 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=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Growing Swarm", + orbit=3, + orbitIndex=16, + recipe={ + [1]="Guilt", + [2]="Paranoia", + [3]="Fear" + }, + 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=322, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=1006, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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.dds", + name="Fire Resistance", + nodeOverlay={ + alloc="Smith of KitavaFrameSmallAllocated", + path="Smith of KitavaFrameSmallCanAllocate", + unalloc="Smith of KitavaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=14960, + stats={ + [1]="+8% to Fire Resistance" + } + }, + [14980]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=276, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=14980, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [14996]={ + connections={ + [1]={ + id=41620, + orbit=-7 + } + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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=722, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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=1056, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + isNotable=true, + name="Consistent Intake", + orbit=7, + orbitIndex=5, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Ire" + }, + 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=302, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds", + isNotable=true, + name="A Solid Plan", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=15044, + stats={ + [1]="Persistent Buffs have 50% less Reservation" + } + }, + [15083]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=803, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Power Conduction", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Suffering" + }, + 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=449, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Boundless Growth", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Greed" + }, + skill=15114, + stats={ + [1]="Plants have a 20% chance to immediately Overgrow" + } + }, + [15141]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Impale Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=482, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + 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=707, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=569, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.dds", + 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=1260, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=140, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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", + connections={ + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=15270, + stats={ + } + }, + [15275]={ + ascendancyName="Oracle", + connections={ + [1]={ + id=52374, + orbit=-6 + } + }, + group=7, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds", + name="Totem Cast and Attack Speed", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + 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=1249, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=13, + skill=15301, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [15304]={ + connections={ + [1]={ + id=16466, + orbit=0 + } + }, + group=1098, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=2, + orbitIndex=14, + skill=15304, + stats={ + [1]="3% increased Cast Speed" + } + }, + [15356]={ + connections={ + [1]={ + id=18815, + orbit=0 + } + }, + group=1330, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=893, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + name="Minion Life", + orbit=3, + orbitIndex=15, + skill=15358, + stats={ + [1]="Minions have 10% increased maximum Life" + } + }, + [15374]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + [1]={ + id=48035, + orbit=0 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + isNotable=true, + name="Hale Heart", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Greed" + }, + skill=15374, + stats={ + [1]="15% increased Life Recovery rate" + } + }, + [15408]={ + connections={ + [1]={ + id=2254, + orbit=4 + }, + [2]={ + id=6338, + orbit=0 + } + }, + group=775, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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=1235, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.dds", + name="Stun Threshold", + orbit=2, + orbitIndex=20, + skill=15424, + stats={ + [1]="15% increased Stun Threshold" + } + }, + [15427]={ + connections={ + [1]={ + id=57379, + orbit=0 + } + }, + group=134, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=3, + orbitIndex=6, + skill=15427, + stats={ + [1]="12% increased Melee Damage" + } + }, + [15443]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + }, + group=1001, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Endured Suffering", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Guilt", + [3]="Fear" + }, + 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=601, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=847, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + 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=354, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Damage and Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + isNotable=true, + name="Thrill of the Fight", + orbit=4, + orbitIndex=30, + recipe={ + [1]="Despair", + [2]="Envy", + [3]="Suffering" + }, + skill=15606, + stats={ + [1]="Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60%" + } + }, + [15617]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=507, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Heavy Drinker", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Envy" + }, + 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=744, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds", + name="Spell Critical Damage", + orbit=3, + orbitIndex=0, + skill=15618, + stats={ + [1]="15% increased Critical Spell Damage Bonus" + } + }, + [15625]={ + connections={ + [1]={ + id=22811, + orbit=0 + } + }, + group=1327, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds", + name="Evasion", + orbit=2, + orbitIndex=10, + skill=15625, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [15628]={ + connections={ + [1]={ + id=36880, + orbit=3 + } + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=1030, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + isNotable=true, + name="Shedding Skin", + orbit=3, + orbitIndex=10, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Paranoia" + }, + 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=2147483647 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Elemental Resistance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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.dds", + 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 + } + }, + group=1371, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=429, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=15782, + stats={ + [1]="+5 to any Attribute" + } + }, + [15809]={ + connections={ + [1]={ + id=31175, + orbit=0 + }, + [2]={ + id=26945, + orbit=7 + }, + [3]={ + id=18485, + orbit=0 + } + }, + group=644, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1313, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + name="Evasion while Sprinting", + orbit=0, + orbitIndex=0, + skill=15814, + stats={ + [1]="25% increased Evasion Rating while Sprinting" + } + }, + [15829]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern", + connections={ + [1]={ + id=46146, + orbit=0 + } + }, + group=1037, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + isNotable=true, + name="Siphon", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Guilt" + }, + 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=635, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + 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=854, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=88, + icon="", + isOnlyImage=true, + name="Minion Mastery", + orbit=3, + orbitIndex=10, + skill=15842, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [15855]={ + connections={ + [1]={ + id=37963, + orbit=0 + } + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + 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=865, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=661, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=15885, + stats={ + [1]="+5 to any Attribute" + } + }, + [15892]={ + connections={ + }, + group=179, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=716, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=239, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=635, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + 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=955, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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", + connections={ + }, + group=798, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds", + isOnlyImage=true, + name="Lightning Mastery", + orbit=0, + orbitIndex=0, + skill=15984, + stats={ + } + }, + [15986]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + [1]={ + id=6030, + orbit=0 + } + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Building Toxins", + orbit=2, + orbitIndex=5, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Isolation" + }, + 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=799, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Embodiment of Lightning", + orbit=2, + orbitIndex=19, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Ire" + }, + skill=15991, + stats={ + [1]="Immune to Shock while affected by an Archon Buff" + } + }, + [16013]={ + connections={ + [1]={ + id=41811, + orbit=0 + } + }, + group=1289, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=1119, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Invocation Critical Damage", + orbit=2, + orbitIndex=22, + skill=16024, + stats={ + [1]="Invocation Spells have 20% increased Critical Damage Bonus" + } + }, + [16051]={ + connections={ + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=384, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=396, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Evasion", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + 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=642, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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", + connections={ + }, + group=430, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=16114, + stats={ + } + }, + [16121]={ + connections={ + [1]={ + id=56334, + orbit=7 + } + }, + group=1366, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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", + connections={ + }, + group=938, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=3, + orbitIndex=22, + skill=16123, + stats={ + } + }, + [16140]={ + connections={ + [1]={ + id=16013, + orbit=0 + } + }, + group=1289, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + name="Daze on Hit", + orbit=2, + orbitIndex=10, + skill=16140, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [16142]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + }, + group=1384, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Deep Freeze", + orbit=3, + orbitIndex=10, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Ire" + }, + 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=1418, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Inspiring Ally", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Despair" + }, + 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=662, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + isNotable=true, + name="Sacred Flow", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=16204, + stats={ + [1]="+40 to Spirit for each of your empty Charm slots" + } + }, + [16249]={ + ascendancyName="Tactician", + connections={ + }, + group=289, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds", + isNotable=true, + name="Watch How I Do It", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=16249, + stats={ + [1]="Allies in your Presence gain added Attack Damage equal", + [2]="to 25% of your main hand Weapon's Damage" + } + }, + [16256]={ + connections={ + [1]={ + id=53188, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Ether Flow", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Envy", + [2]="Greed", + [3]="Envy" + }, + 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]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=57, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds", + isNotable=true, + name="Kitavan Imprint", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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=369, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=2, + orbitIndex=20, + skill=16311, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [16329]={ + connections={ + [1]={ + id=39607, + orbit=-2 + } + }, + group=1282, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=364, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Maximum Rage", + orbit=2, + orbitIndex=2, + skill=16347, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [16367]={ + connections={ + }, + group=1022, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=0, + orbitIndex=0, + skill=16367, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [16385]={ + connections={ + [1]={ + id=53320, + orbit=2147483647 + } + }, + group=643, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=1292, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=221, + icon="Art/2DArt/SkillIcons/passives/minionstr.dds", + 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=1450, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds", + isMultipleChoice=true, + isNotable=true, + name="Path Seeker", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=16433, + stats={ + } + }, + [16460]={ + connections={ + [1]={ + id=28992, + orbit=0 + }, + [2]={ + id=6772, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1098, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Mental Alacrity", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Paranoia" + }, + 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=988, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=255, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=842, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=814, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + isNotable=true, + name="Lingering Whispers", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Envy" + }, + skill=16499, + stats={ + [1]="40% increased Curse Duration", + [2]="10% increased Curse Magnitudes" + } + }, + [16506]={ + connections={ + [1]={ + id=35417, + orbit=-2 + } + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + name="Shapeshifting Elemental Ailment Chance", + orbit=7, + orbitIndex=10, + skill=16506, + stats={ + [1]="20% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently" + } + }, + [16538]={ + connections={ + [1]={ + id=44330, + orbit=0 + } + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + name="One Handed Damage", + orbit=2, + orbitIndex=2, + skill=16538, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [16568]={ + connections={ + [1]={ + id=31129, + orbit=-2 + } + }, + group=1280, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Companion Revive Speed", + orbit=3, + orbitIndex=2, + skill=16568, + stats={ + [1]="Minions Revive 15% faster if all your Minions are Companions" + } + }, + [16596]={ + connections={ + [1]={ + id=38535, + orbit=7 + }, + [2]={ + id=5088, + orbit=0 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=1232, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds", + 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.dds", + isNotable=true, + name="Unmoving Craiceann", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + isNotable=true, + name="Jack of all Trades", + orbit=5, + orbitIndex=24, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Envy" + }, + skill=16618, + stats={ + [1]="2% increased Damage per 5 of your lowest Attribute" + } + }, + [16620]={ + connections={ + [1]={ + id=21161, + orbit=4 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Impact Area", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Disgust" + }, + 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", + connections={ + }, + group=529, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=16647, + stats={ + } + }, + [16680]={ + connections={ + [1]={ + id=48137, + orbit=0 + } + }, + group=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=422, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech Speed", + orbit=7, + orbitIndex=6, + skill=16691, + stats={ + [1]="Leech Life 15% faster" + } + }, + [16695]={ + connections={ + [1]={ + id=61926, + orbit=0 + } + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=465, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=649, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=3, + orbitIndex=12, + skill=16744, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [16784]={ + connections={ + [1]={ + id=31650, + orbit=0 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Life", + orbit=5, + orbitIndex=68, + skill=16784, + stats={ + [1]="16% increased Totem Life" + } + }, + [16786]={ + connections={ + [1]={ + id=20467, + orbit=0 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + name="Immobilisation Buildup", + orbit=7, + orbitIndex=14, + skill=16786, + stats={ + [1]="15% increased Immobilisation buildup" + } + }, + [16790]={ + connections={ + [1]={ + id=27234, + orbit=0 + } + }, + group=862, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Efficient Casting", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Envy" + }, + skill=16790, + stats={ + [1]="15% increased Mana Regeneration Rate", + [2]="20% increased Mana Cost Efficiency" + } + }, + [16816]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + }, + group=1048, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Pinpoint Shot", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Envy" + }, + skill=16816, + stats={ + [1]="Attacks gain increased Accuracy Rating equal to their Critical Hit Chance" + } + }, + [16861]={ + connections={ + [1]={ + id=27303, + orbit=-5 + } + }, + group=327, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=3, + orbitIndex=22, + skill=16861, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [16871]={ + connections={ + [1]={ + id=9532, + orbit=2 + } + }, + group=1343, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds", + 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=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=390, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Arcane Nature", + orbit=7, + orbitIndex=1, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Ire" + }, + 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.dds", + isNotable=true, + name="Shelter from the Rain", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + orbit=4, + orbitIndex=54, + skill=16947, + stats={ + [1]="40% 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=926, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=669, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=2, + orbitIndex=18, + skill=17025, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [17026]={ + connections={ + [1]={ + id=23373, + orbit=0 + } + }, + group=613, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=453, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Blade Catcher", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Guilt" + }, + skill=17029, + stats={ + [1]="Defend with 200% of Armour against Critical Hits", + [2]="+15 to Strength" + } + }, + [17045]={ + connections={ + [1]={ + id=55131, + orbit=6 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + name="Movement Speed ", + orbit=4, + orbitIndex=42, + skill=17045, + stats={ + [1]="2% increased Movement Speed" + } + }, + [17057]={ + connections={ + [1]={ + id=17025, + orbit=2 + } + }, + group=669, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=1, + orbitIndex=0, + skill=17057, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [17058]={ + ascendancyName="Ritualist", + connections={ + }, + group=1486, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Reduced Resistances", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=17058, + stats={ + [1]="-20% to all Elemental Resistances" + } + }, + [17059]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6874, + orbit=7 + } + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + name="Channelling Stun Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=3, + orbitIndex=17, + skill=17059, + stats={ + [1]="25% increased Stun Threshold while Channelling" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [17061]={ + connections={ + [1]={ + id=31773, + orbit=2 + } + }, + group=534, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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=1053, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=221, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Maximum Rage", + orbit=2, + orbitIndex=18, + skill=17092, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [17101]={ + connections={ + [1]={ + id=25362, + orbit=-2 + } + }, + group=1372, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds", + name="Attack Damage", + orbit=3, + orbitIndex=17, + skill=17101, + stats={ + [1]="10% increased Attack Damage" + } + }, + [17107]={ + connections={ + [1]={ + id=11788, + orbit=3 + } + }, + group=810, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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.dds", + 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=967, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=208, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=0, + orbitIndex=0, + skill=17138, + stats={ + [1]="10% increased Melee Damage" + } + }, + [17146]={ + connections={ + [1]={ + id=57518, + orbit=4 + }, + [2]={ + id=3843, + orbit=-4 + } + }, + group=1284, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Parry Damage", + orbit=3, + orbitIndex=5, + skill=17146, + stats={ + [1]="20% increased Parry Damage" + } + }, + [17150]={ + connections={ + [1]={ + id=53647, + orbit=7 + }, + [2]={ + id=19750, + orbit=0 + } + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + isNotable=true, + name="General's Bindings", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Envy" + }, + skill=17150, + stats={ + [1]="Gain 8% of Evasion Rating as extra Armour" + } + }, + [17215]={ + connections={ + [1]={ + id=4552, + orbit=2 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.dds", + 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=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + isNotable=true, + name="Silent Guardian", + orbit=3, + orbitIndex=9, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Disgust" + }, + 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=871, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1124, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Spell Haste", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Isolation" + }, + 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=325, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Piercing Claw", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Greed", + [2]="Ire", + [3]="Despair" + }, + skill=17260, + stats={ + [1]="Damage Penetrates 15% of Enemy Elemental Resistances while Shapeshifted" + } + }, + [17268]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=7621, + orbit=3 + } + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Shock Effect", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=6, + orbitIndex=13, + skill=17268, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [17282]={ + connections={ + [1]={ + id=47252, + orbit=0 + } + }, + group=237, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=17283, + stats={ + } + }, + [17294]={ + connections={ + [1]={ + id=19330, + orbit=-5 + }, + [2]={ + id=27501, + orbit=4 + } + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=613, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + isNotable=true, + name="Utility Ordnance", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Envy" + }, + 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=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=283, + icon="Art/2DArt/SkillIcons/icongroundslam.dds", + isNotable=true, + name="Perforation", + orbit=2, + orbitIndex=23, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Suffering" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=62051, + orbit=-4 + } + }, + group=772, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + isNotable=true, + name="Adrenaline Rush", + orbit=4, + orbitIndex=9, + recipe={ + [1]="Disgust", + [2]="Ire", + [3]="Fear" + }, + 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.dds", + 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=117, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=0, + skill=17349, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [17366]={ + connections={ + [1]={ + id=29361, + orbit=0 + } + }, + group=878, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=1058, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Reaching Strike", + orbit=3, + orbitIndex=4, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Guilt" + }, + skill=17372, + stats={ + [1]="25% increased Melee Damage", + [2]="+2 to Melee Strike Range" + } + }, + [17378]={ + connections={ + [1]={ + id=40894, + orbit=0 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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", + connections={ + [1]={ + id=41972, + orbit=0 + }, + [2]={ + id=23427, + orbit=0 + }, + [3]={ + id=47270, + orbit=0 + }, + [4]={ + id=19955, + orbit=0 + } + }, + group=749, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=1, + orbitIndex=6, + skill=17380, + stats={ + } + }, + [17394]={ + connections={ + [1]={ + id=45530, + orbit=-3 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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", + connections={ + }, + group=482, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=17411, + stats={ + } + }, + [17417]={ + connections={ + [1]={ + id=3652, + orbit=3 + }, + [2]={ + id=27999, + orbit=0 + } + }, + group=468, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=1334, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1155, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Stun Threshold during Parry", + orbit=2, + orbitIndex=14, + skill=17447, + stats={ + [1]="20% increased Stun Threshold while Parrying" + } + }, + [17468]={ + connections={ + }, + group=455, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=48, + skill=17468, + stats={ + [1]="+5 to any Attribute" + } + }, + [17501]={ + connections={ + }, + group=644, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=266, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + 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=577, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=1369, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Damage", + orbit=7, + orbitIndex=8, + skill=17523, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [17532]={ + connections={ + [1]={ + id=61934, + orbit=0 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=1006, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Moment of Truth", + orbit=7, + orbitIndex=2, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Disgust" + }, + 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=875, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=626, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isSwitchable=true, + name="Attack Area", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=164, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=1, + orbitIndex=9, + skill=17587, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [17589]={ + connections={ + [1]={ + id=36085, + orbit=0 + }, + [2]={ + id=64462, + orbit=7 + } + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Thirsting Ally", + orbit=3, + orbitIndex=19, + recipe={ + [1]="Ire", + [2]="Greed", + [3]="Suffering" + }, + 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=1209, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=313, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Rage on Hit", + orbit=7, + orbitIndex=9, + skill=17625, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [17646]={ + ascendancyName="Witchhunter", + connections={ + }, + group=240, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds", + isNotable=true, + name="Judge, Jury, and Executioner", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=17646, + stats={ + [1]="Decimating Strike" + } + }, + [17655]={ + connections={ + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isSwitchable=true, + name="Aura Effect", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.dds", + id=14942, + name="Damage", + stats={ + [1]="8% increased Damage" + } + } + }, + orbit=2, + orbitIndex=8, + skill=17655, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [17664]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + [1]={ + id=11463, + orbit=0 + }, + [2]={ + id=33348, + orbit=0 + } + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Decisive Retreat", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Ire" + }, + 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=1171, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.dds", + 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=866, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=839, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage ", + orbit=7, + orbitIndex=19, + skill=17686, + stats={ + [1]="10% increased Melee Damage" + } + }, + [17687]={ + connections={ + [1]={ + id=27422, + orbit=-3 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + name="Mana Flask Charges", + orbit=4, + orbitIndex=40, + 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=2147483647 + } + }, + group=1085, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=849, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge and Mana Flask Recovery", + orbit=2, + orbitIndex=20, + skill=17706, + stats={ + [1]="10% increased Energy Shield Recharge Rate", + [2]="10% increased Mana Recovery from Flasks" + } + }, + [17711]={ + connections={ + [1]={ + id=46989, + orbit=3 + } + }, + group=813, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=1372, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds", + name="Attack Damage", + orbit=3, + orbitIndex=13, + skill=17724, + stats={ + [1]="10% increased Attack Damage" + } + }, + [17725]={ + connections={ + [1]={ + id=9221, + orbit=0 + } + }, + group=263, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Bonded Precision", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Disgust", + [2]="Envy", + [3]="Suffering" + }, + 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=883, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=589, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Chance to Poison and Spell Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=463, + icon="Art/2DArt/SkillIcons/passives/MasteryTotem.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=17745, + stats={ + } + }, + [17754]={ + ascendancyName="Infernalist", + connections={ + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds", + isNotable=true, + name="Loyal Hellhound", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + 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=478, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.dds", + isNotable=true, + name="Vengeance", + orbit=2, + orbitIndex=23, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Envy" + }, + skill=17762, + stats={ + [1]="10% of Thorns Damage Leeched as Life" + } + }, + [17788]={ + ascendancyName="Lich", + connections={ + }, + containJewelSocket=true, + group=1120, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isNotable=true, + isSwitchable=true, + name="Crystalline Phylactery", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds" + } + } + }, + orbit=6, + orbitIndex=0, + skill=17788, + stats={ + [1]="Can Socket a non-Unique Basic Jewel into the Phylactery", + [2]="100% increased Effect of the 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.dds", + 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=1378, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds", + name="Presence Area", + orbit=2, + orbitIndex=9, + skill=17792, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [17796]={ + connections={ + [1]={ + id=12412, + orbit=2147483647 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + isNotable=true, + name="Tactical Retreat", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Disgust", + [3]="Despair" + }, + skill=17825, + stats={ + [1]="+0.5 metres to Dodge Roll distance while Surrounded", + [2]="10% increased Movement Speed while Surrounded" + } + }, + [17854]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=55275, + orbit=7 + } + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + isNotable=true, + name="Escape Velocity", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Suffering" + }, + skill=17854, + stats={ + [1]="3% increased Movement Speed", + [2]="30% increased Evasion Rating" + } + }, + [17867]={ + connections={ + [1]={ + id=37092, + orbit=0 + } + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1311, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=838, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + isNotable=true, + name="Volatile Grenades", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Ire", + [3]="Despair" + }, + skill=17882, + stats={ + [1]="25% reduced Grenade Detonation Time" + } + }, + [17885]={ + connections={ + [1]={ + id=11392, + orbit=-7 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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.dds", + isNotable=true, + name="Her Final Bite", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=259, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + name="Thorns", + orbit=7, + orbitIndex=8, + skill=17903, + stats={ + [1]="16% increased Thorns damage" + } + }, + [17906]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern", + connections={ + }, + group=1369, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=17906, + stats={ + } + }, + [17923]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=18826, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Volatility", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=9, + orbitIndex=16, + skill=17923, + stats={ + [1]="10% chance to gain Volatility on Kill" + } + }, + [17924]={ + connections={ + [1]={ + id=51867, + orbit=-7 + } + }, + group=374, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=1043, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + isNotable=true, + name="Careful Consideration", + orbit=3, + orbitIndex=6, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Greed" + }, + 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=782, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + isSwitchable=true, + name="Rapid Recharge", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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]="25% increased Energy Shield Recharge Rate", + [2]="25% faster start of Energy Shield Recharge" + } + }, + [17994]={ + connections={ + [1]={ + id=22565, + orbit=0 + } + }, + group=774, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=5, + skill=17994, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [17999]={ + connections={ + [1]={ + id=51561, + orbit=0 + }, + [2]={ + id=42026, + orbit=0 + }, + [3]={ + id=63979, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=286, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Later Rage Loss Start", + orbit=3, + orbitIndex=3, + skill=18004, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [18049]={ + connections={ + [1]={ + id=5802, + orbit=0 + } + }, + group=1247, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=249, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=276, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Call Upon the Deep", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=696, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + isNotable=true, + name="Breath of Ice", + orbit=4, + orbitIndex=54, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Suffering" + }, + skill=18086, + stats={ + [1]="Damage Penetrates 15% Cold Resistance", + [2]="+10 to Intelligence" + } + }, + [18115]={ + connections={ + [1]={ + id=48856, + orbit=0 + } + }, + group=838, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + name="Grenade Damage", + orbit=7, + orbitIndex=7, + skill=18115, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [18121]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=18121, + stats={ + } + }, + [18146]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=57819, + orbit=2147483647 + } + }, + group=470, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Reduced Attribute Requirements", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=18146, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [18157]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + [1]={ + id=29447, + orbit=-8 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Tempered Defences", + orbit=2, + orbitIndex=17, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Envy" + }, + skill=18157, + stats={ + [1]="25% increased Armour", + [2]="+15% of Armour also applies to Elemental Damage" + } + }, + [18158]={ + ascendancyName="Infernalist", + connections={ + }, + group=701, + icon="Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds", + isNotable=true, + name="Bringer of Flame", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=18158, + stats={ + [1]="All Damage from you and Allies in your Presence", + [2]="contributes to Flammability and Ignite Magnitudes" + } + }, + [18160]={ + connections={ + [1]={ + id=26945, + orbit=0 + } + }, + group=644, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1119, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=649, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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.dds", + 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" + } + }, + [18240]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=18240, + stats={ + } + }, + [18245]={ + connections={ + [1]={ + id=30554, + orbit=0 + }, + [2]={ + id=21164, + orbit=0 + } + }, + group=149, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Plant Skill Damage", + orbit=5, + orbitIndex=55, + skill=18270, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [18280]={ + ascendancyName="Ritualist", + connections={ + }, + group=1484, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds", + isNotable=true, + name="Mind Phylacteries", + nodeOverlay={ + alloc="RitualistFrameLargeAllocated", + path="RitualistFrameLargeCanAllocate", + unalloc="RitualistFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=18280, + stats={ + [1]="Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges" + } + }, + [18308]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + }, + group=716, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Bleeding Out", + orbit=4, + orbitIndex=48, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Fear" + }, + skill=18308, + stats={ + [1]="+250 to Accuracy against Bleeding Enemies", + [2]="Bleeding you inflict deals Damage 10% faster" + } + }, + [18348]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=19482, + orbit=5 + }, + [2]={ + id=8854, + orbit=0 + }, + [3]={ + id=46016, + orbit=8 + } + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds", + isNotable=true, + name="Altered Flesh", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + orbit=8, + orbitIndex=60, + skill=18348, + stats={ + [1]="20% of Cold Damage taken as Fire Damage", + [2]="20% of Lightning Damage taken as Fire Damage", + [3]="20% of Physical Damage taken as Chaos Damage" + } + }, + [18353]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=20496, + orbit=0 + }, + [2]={ + id=3544, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Physical and Lightning Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=478, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + 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=137, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + isNotable=true, + name="Savoured Blood", + orbit=3, + orbitIndex=5, + recipe={ + [1]="Despair", + [2]="Ire", + [3]="Ire" + }, + skill=18397, + stats={ + [1]="35% increased amount of Life Leeched", + [2]="Leech Life 20% slower" + } + }, + [18407]={ + connections={ + }, + group=698, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Ancestral Mending", + orbit=7, + orbitIndex=18, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Paranoia" + }, + 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=408, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Maximum Rage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=153, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=18448, + stats={ + [1]="+5 to any Attribute" + } + }, + [18451]={ + connections={ + }, + group=952, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + 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=551, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + isSwitchable=true, + name="Cruel Fate", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds", + 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=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + name="Pin Buildup", + orbit=1, + orbitIndex=4, + skill=18470, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [18472]={ + connections={ + [1]={ + id=46533, + orbit=0 + } + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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=644, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds", + isNotable=true, + name="Unstable Bond", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Despair" + }, + 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=483, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=249, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + isNotable=true, + name="Lasting Trauma", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Envy" + }, + 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=249, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + isNotable=true, + name="Crushing Verdict", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Ire" + }, + 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=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=882, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=7, + orbitIndex=8, + skill=18548, + stats={ + [1]="3% increased Attack Speed" + } + }, + [18568]={ + connections={ + [1]={ + id=46887, + orbit=-5 + } + }, + group=1169, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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.dds", + name="Armour", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=18585, + stats={ + [1]="20% increased Armour" + } + }, + [18624]={ + connections={ + [1]={ + id=39608, + orbit=-2 + }, + [2]={ + id=12329, + orbit=2 + } + }, + group=1369, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Damage", + orbit=3, + orbitIndex=22, + skill=18624, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [18629]={ + connections={ + [1]={ + id=64327, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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=816, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=18651, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [18678]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=26638, + orbit=9 + } + }, + group=308, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Buff Expiry Rate", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=18678, + stats={ + [1]="Buffs on you expire 10% slower" + } + }, + [18684]={ + connections={ + }, + group=127, + icon="Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds", + isKeystone=true, + name="Avatar of Fire", + orbit=0, + orbitIndex=0, + skill=18684, + stats={ + [1]="75% of Damage Converted to Fire Damage", + [2]="Deal no Non-Fire Damage" + } + }, + [18713]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=91, + icon="Art/2DArt/SkillIcons/passives/MasteryArmourandEnergyShield.dds", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=18713, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [18717]={ + connections={ + [1]={ + id=60483, + orbit=0 + } + }, + group=1323, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=18717, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [18737]={ + connections={ + [1]={ + id=17725, + orbit=0 + } + }, + group=263, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=567, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=3, + orbitIndex=6, + skill=18742, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [18744]={ + connections={ + [1]={ + id=60324, + orbit=2 + } + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + 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.dds", + name="Shield Block", + orbit=0, + orbitIndex=0, + skill=18746, + stats={ + [1]="5% increased Block chance" + } + }, + [18793]={ + connections={ + [1]={ + id=33639, + orbit=0 + } + }, + group=706, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + 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=2147483647 + }, + [2]={ + id=63360, + orbit=0 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=1335, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1072, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=313, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds", + isNotable=true, + name="Inner Turmoil", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + 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=1056, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Block", + orbit=2, + orbitIndex=19, + skill=18831, + stats={ + [1]="5% increased Block chance" + } + }, + [18845]={ + connections={ + [1]={ + id=55807, + orbit=-5 + } + }, + group=723, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + id=27384, + name="Spell and Minion Damage", + stats={ + [1]="8% increased Spell Damage", + [2]="Minions deal 8% increased Damage" + } + } + }, + orbit=7, + orbitIndex=11, + skill=18845, + stats={ + [1]="10% increased Spell Damage" + } + }, + [18846]={ + connections={ + }, + group=380, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds", + isNotable=true, + name="Shaper of Winter", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + orbit=5, + orbitIndex=2, + skill=18849, + stats={ + [1]="All Damage from Hits Contributes to Chill Magnitude" + } + }, + [18856]={ + connections={ + [1]={ + id=24491, + orbit=0 + } + }, + group=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=1255, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds", + 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=913, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=942, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=1375, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds", + name="Evasion Rating", + orbit=2, + orbitIndex=4, + skill=18897, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [18910]={ + connections={ + [1]={ + id=10265, + orbit=0 + } + }, + group=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + 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=905, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=1036, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1442, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds", + isMultipleChoiceOption=true, + name="Shattering Concoction", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=18940, + stats={ + [1]="Grants Skill: Shattering Concoction" + } + }, + [18959]={ + connections={ + [1]={ + id=55843, + orbit=0 + } + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + isNotable=true, + name="Ruinic Helm", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Fear" + }, + skill=18959, + stats={ + [1]="+1 to Maximum Energy Shield per 8 Item Armour on Equipped Helmet" + } + }, + [18969]={ + connections={ + }, + group=1392, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=878, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=154, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds", + isNotable=true, + name="Echoes of Ferocity", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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=1193, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=19003, + stats={ + [1]="10% increased Cold Damage" + } + }, + [19006]={ + connections={ + [1]={ + id=39461, + orbit=0 + } + }, + group=617, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=512, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=1362, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds", + 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=954, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Arcane Intensity", + orbit=1, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Fear", + [3]="Despair" + }, + skill=19044, + stats={ + [1]="3% increased Spell Damage per 100 maximum Mana" + } + }, + [19074]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1314, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=7, + orbitIndex=6, + skill=19074, + stats={ + } + }, + [19104]={ + connections={ + [1]={ + id=29582, + orbit=0 + } + }, + group=940, + icon="Art/2DArt/SkillIcons/passives/eagleeye.dds", + isNotable=true, + isSwitchable=true, + name="Eagle Eye", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + 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=678, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=3, + orbitIndex=8, + skill=19112, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [19122]={ + connections={ + [1]={ + id=28432, + orbit=0 + } + }, + group=425, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=726, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isNotable=true, + name="Potent Incantation", + orbit=1, + orbitIndex=8, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Disgust" + }, + 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=716, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + 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=1058, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + isNotable=true, + name="Immaterial", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Ire", + [2]="Disgust", + [3]="Envy" + }, + 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=2147483647 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=433, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + 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=800, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=7, + orbitIndex=18, + skill=19223, + stats={ + [1]="10% increased Attack Damage" + } + }, + [19233]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=42441, + orbit=0 + } + }, + group=1466, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=19233, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [19236]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=152, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Projectile Bulwark", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Despair" + }, + 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=622, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Supportive Ancestors", + orbit=6, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Disgust", + [3]="Isolation" + }, + 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=380, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + name="Area Damage", + orbit=2, + orbitIndex=12, + skill=19277, + stats={ + [1]="10% increased Spell Area Damage" + } + }, + [19288]={ + connections={ + }, + group=917, + icon="Art/2DArt/SkillIcons/passives/GlancingBlows.dds", + isKeystone=true, + name="Glancing Blows", + orbit=0, + orbitIndex=0, + skill=19288, + stats={ + [1]="Chance to Evade is Unlucky", + [2]="Chance to Deflect is Lucky" + } + }, + [19330]={ + connections={ + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=4, + orbitIndex=52, + skill=19330, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [19337]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + }, + group=1126, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Precision Salvo", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Envy", + [3]="Envy" + }, + 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=1316, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + name="Dexterity", + orbit=3, + orbitIndex=0, + skill=19338, + stats={ + [1]="+8 to Dexterity" + } + }, + [19341]={ + connections={ + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Damage against Enemies on Low Life", + orbit=3, + orbitIndex=16, + 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=875, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=3, + orbitIndex=8, + skill=19342, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [19355]={ + connections={ + }, + group=953, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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=1356, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.dds", + name="Chaos Damage and Resistance", + orbit=3, + orbitIndex=2, + skill=19359, + stats={ + [1]="5% increased Chaos Damage", + [2]="+3% to Chaos Resistance" + } + }, + [19424]={ + ascendancyName="Titan", + connections={ + [1]={ + id=60634, + orbit=0 + } + }, + group=77, + icon="Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds", + name="Strength", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=6, + orbitIndex=48, + skill=19424, + stats={ + [1]="4% increased Strength" + } + }, + [19426]={ + connections={ + [1]={ + id=15443, + orbit=0 + } + }, + group=1001, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=985, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Prolonged Assault", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Suffering" + }, + 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=1295, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=922, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Life", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=9, + orbitIndex=109, + skill=19482, + stats={ + [1]="3% increased maximum Life" + } + }, + [19546]={ + connections={ + [1]={ + id=5681, + orbit=0 + } + }, + group=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + isNotable=true, + name="Favourable Odds", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Despair", + [2]="Greed", + [3]="Disgust" + }, + 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=154, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=875, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=460, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + isNotable=true, + name="Left Hand of Darkness", + orbit=4, + orbitIndex=29, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Envy" + }, + 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=317, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=685, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + isNotable=true, + name="Cremation", + orbit=4, + orbitIndex=66, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Isolation" + }, + skill=19715, + stats={ + [1]="Damage Penetrates 18% Fire Resistance", + [2]="Gain 6% of Elemental Damage as Extra Fire Damage" + } + }, + [19722]={ + connections={ + }, + group=1193, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Thin Ice", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Greed" + }, + 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", + connections={ + }, + group=961, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=1, + orbitIndex=6, + skill=19749, + stats={ + } + }, + [19750]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern", + connections={ + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=19750, + stats={ + } + }, + [19751]={ + connections={ + [1]={ + id=35618, + orbit=0 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + 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=881, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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.dds", + 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=716, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=528, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Attack Critical Damage", + orbit=2, + orbitIndex=8, + skill=19802, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [19808]={ + connections={ + }, + group=992, + icon="Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds", + isSwitchable=true, + name="Ailment Chance", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=199, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour and Applies to Cold Damage", + orbit=2, + orbitIndex=18, + 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", + connections={ + }, + group=346, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=1, + orbitIndex=6, + skill=19846, + stats={ + } + }, + [19873]={ + connections={ + [1]={ + id=13233, + orbit=4 + }, + [2]={ + id=17655, + orbit=-9 + } + }, + group=577, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=1145, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + 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=303, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=2147483647 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=7, + orbitIndex=2, + skill=19953, + stats={ + [1]="15% increased Lightning Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [19955]={ + connections={ + }, + group=749, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Endless Blizzard", + orbit=4, + orbitIndex=6, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Fear" + }, + skill=19955, + stats={ + [1]="+1 to Level of all Cold Skills" + } + }, + [19966]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=829, + orbit=2147483647 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=844, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Crossbow Damage", + orbit=0, + orbitIndex=0, + skill=19998, + stats={ + [1]="12% increased Damage with Crossbows" + } + }, + [20008]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=1112, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Unleash Fire", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Greed" + }, + 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", + connections={ + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=3, + orbitIndex=1, + skill=20015, + stats={ + } + }, + [20024]={ + connections={ + [1]={ + id=44223, + orbit=0 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=401, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Erraticism", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Greed", + [3]="Guilt" + }, + 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=1398, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=7, + skill=20044, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [20049]={ + connections={ + [1]={ + id=32818, + orbit=5 + } + }, + group=968, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + name="Charm Charges", + orbit=7, + orbitIndex=0, + skill=20049, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [20091]={ + connections={ + [1]={ + id=46565, + orbit=0 + } + }, + group=548, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + name="Sword Damage", + orbit=5, + orbitIndex=43, + skill=20091, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [20105]={ + connections={ + [1]={ + id=13895, + orbit=0 + } + }, + group=1357, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + 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=232, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=644, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=20119, + stats={ + } + }, + [20140]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=869, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=20140, + stats={ + } + }, + [20195]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=56, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds", + isNotable=true, + name="Spiked Plates", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=20195, + stats={ + [1]="Body Armour grants 100% increased Thorns damage" + } + }, + [20205]={ + connections={ + [1]={ + id=33059, + orbit=0 + } + }, + group=894, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=1068, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=0, + orbitIndex=0, + skill=20236, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [20251]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=114, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="Splitting Ground", + orbit=3, + orbitIndex=23, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Isolation" + }, + 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.dds", + isNotable=true, + name="Frozen Claw", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Ire" + }, + skill=20289, + stats={ + [1]="Gain 8% of Damage as Extra Cold Damage while Shapeshifted" + } + }, + [20303]={ + connections={ + [1]={ + id=9908, + orbit=0 + } + }, + group=368, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=370, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=919, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=20387, + stats={ + [1]="15% increased chance to Shock" + } + }, + [20388]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern", + connections={ + }, + group=581, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + isNotable=true, + name="Regenerative Flesh", + orbit=2, + orbitIndex=22, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Greed" + }, + 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.dds", + name="Block Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Authority", + orbit=7, + orbitIndex=11, + recipe={ + [1]="Greed", + [2]="Envy", + [3]="Suffering" + }, + 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=1368, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + isNotable=true, + name="Reprisal", + orbit=4, + orbitIndex=31, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Despair" + }, + skill=20414, + stats={ + [1]="25% increased Parried Debuff Magnitude" + } + }, + [20416]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=425, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + isNotable=true, + name="Grit", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Envy" + }, + 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=1394, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + name="Dagger Speed", + orbit=6, + orbitIndex=62, + skill=20429, + stats={ + [1]="3% increased Attack Speed with Daggers" + } + }, + [20467]={ + connections={ + [1]={ + id=58312, + orbit=0 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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=2147483647 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=390, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=959, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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=222, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + isNotable=true, + name="Cremating Cries", + orbit=3, + orbitIndex=14, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Paranoia" + }, + 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=410, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=7, + orbitIndex=11, + skill=20547, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [20558]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=225, + icon="Art/2DArt/SkillIcons/passives/minionstr.dds", + isNotable=true, + name="Among the Hordes", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Suffering" + }, + 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=1342, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=521, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds", + isOnlyImage=true, + name="Damage Mastery", + orbit=0, + orbitIndex=0, + skill=20637, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [20641]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + [1]={ + id=51934, + orbit=0 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=1, + orbitIndex=1, + skill=20641, + stats={ + } + }, + [20645]={ + connections={ + [1]={ + id=64284, + orbit=4 + } + }, + group=512, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1363, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=1109, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="For the Jugular", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Guilt" + }, + skill=20677, + stats={ + [1]="25% increased Critical Damage Bonus", + [2]="+10 to Intelligence" + } + }, + [20691]={ + connections={ + [1]={ + id=41739, + orbit=0 + } + }, + group=552, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=2, + orbitIndex=10, + skill=20691, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [20701]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=35880, + orbit=3 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds", + isNotable=true, + name="Instruments of Power", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + 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=571, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Duration", + orbit=7, + orbitIndex=12, + skill=20718, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [20744]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=1, + orbitIndex=3, + skill=20744, + stats={ + } + }, + [20772]={ + ascendancyName="Lich", + connections={ + [1]={ + id=2877, + orbit=-4 + } + }, + group=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Mana", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=15028, + name="Minion Duration", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + stats={ + [1]="15% increased Minion Duration" + } + } + }, + orbit=9, + orbitIndex=114, + skill=20772, + stats={ + [1]="3% increased maximum Mana" + } + }, + [20782]={ + connections={ + [1]={ + id=52191, + orbit=-3 + }, + [2]={ + id=42361, + orbit=0 + } + }, + group=1206, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=3, + orbitIndex=8, + skill=20782, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [20787]={ + connections={ + [1]={ + id=5390, + orbit=2147483647 + } + }, + group=1384, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=206, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=1106, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=20, + skill=20820, + stats={ + [1]="3% increased Attack Speed" + } + }, + [20830]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=37078, + orbit=8 + } + }, + group=311, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Area of Effect", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + 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=935, + icon="Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds", + 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=998, + icon="Art/2DArt/SkillIcons/passives/knockback.dds", + 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=2147483647 + } + }, + group=491, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + name="Banner Area", + orbit=3, + orbitIndex=12, + skill=20842, + stats={ + [1]="Banner Skills have 15% increased Area of Effect" + } + }, + [20848]={ + connections={ + [1]={ + id=16721, + orbit=2147483647 + } + }, + group=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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.dds", + name="Strength", + nodeOverlay={ + alloc="Smith of KitavaFrameSmallAllocated", + path="Smith of KitavaFrameSmallCanAllocate", + unalloc="Smith of KitavaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=20895, + stats={ + [1]="5% increased Strength" + } + }, + [20909]={ + connections={ + [1]={ + id=44891, + orbit=2147483647 + } + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=2, + orbitIndex=1, + skill=20909, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [20916]={ + connections={ + [1]={ + id=59355, + orbit=0 + } + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Blinding Strike", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Envy" + }, + 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=164, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Calculated Hunter", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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.dds", + 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=327, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=5, + orbitIndex=0, + skill=21017, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [21070]={ + connections={ + [1]={ + id=57388, + orbit=0 + } + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=1038, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=7, + orbitIndex=19, + skill=21080, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [21081]={ + connections={ + [1]={ + id=25745, + orbit=5 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=259, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + 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=656, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + name="Banner Area", + orbit=4, + orbitIndex=69, + skill=21096, + stats={ + [1]="Banner Skills have 15% increased Area of Effect" + } + }, + [21111]={ + connections={ + [1]={ + id=33099, + orbit=-5 + } + }, + group=1208, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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", + connections={ + }, + group=287, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=4, + orbitIndex=30, + skill=21127, + stats={ + } + }, + [21142]={ + connections={ + [1]={ + id=55829, + orbit=7 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1362, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds", + 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=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=149, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + isNotable=true, + name="Fleshcrafting", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Fear" + }, + skill=21164, + stats={ + [1]="4% of Maximum Life Converted to Energy Shield", + [2]="Minions gain 15% of their maximum Life as Extra maximum Energy Shield" + } + }, + [21184]={ + connections={ + [1]={ + id=20251, + orbit=0 + } + }, + group=114, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + name="Attack Area", + orbit=7, + orbitIndex=3, + skill=21184, + stats={ + [1]="6% increased Area of Effect" + } + }, + [21205]={ + connections={ + [1]={ + id=44176, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + 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=586, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Explosive Impact", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Fear" + }, + skill=21206, + stats={ + [1]="15% increased Area of Effect", + [2]="Burning Enemies you kill have a 5% chance to Explode, dealing a", + [3]="tenth of their maximum Life as Fire Damage" + } + }, + [21208]={ + connections={ + }, + group=1186, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Activation Speed and Effect", + orbit=7, + orbitIndex=14, + skill=21208, + stats={ + [1]="3% increased Curse Magnitudes", + [2]="10% faster Curse Activation" + } + }, + [21218]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=7066, + orbit=0 + }, + [2]={ + id=13950, + orbit=0 + } + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Bow Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + name="Spear Damage", + orbit=3, + orbitIndex=16, + skill=21225, + stats={ + [1]="10% increased Damage with Spears" + } + }, + [21227]={ + connections={ + [1]={ + id=36290, + orbit=-2 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=4, + orbitIndex=39, + skill=21227, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [21245]={ + connections={ + }, + group=503, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=823, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1296, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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=995, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=2147483647 + } + }, + group=8, + icon="Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds", + name="Life and Mana Regeneration Rate", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + 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=453, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=3, + orbitIndex=14, + skill=21286, + stats={ + [1]="15% increased Armour" + } + }, + [21314]={ + connections={ + [1]={ + id=50912, + orbit=-4 + } + }, + group=1072, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=2, + orbitIndex=17, + skill=21314, + stats={ + [1]="10% increased Attack Damage" + } + }, + [21324]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern", + connections={ + }, + group=1056, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds", + isOnlyImage=true, + name="Buckler Mastery", + orbit=2, + orbitIndex=7, + skill=21324, + stats={ + } + }, + [21327]={ + connections={ + [1]={ + id=56876, + orbit=0 + } + }, + group=312, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=955, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=1107, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds", + isNotable=true, + name="The Cunning Fox", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Suffering" + }, + skill=21349, + stats={ + [1]="+5% to Quality of all Skills" + } + }, + [21374]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=7, + orbitIndex=21, + skill=21374, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [21380]={ + connections={ + }, + group=1160, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Preemptive Strike", + orbit=7, + orbitIndex=9, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Greed" + }, + 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=178, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=277, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=472, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=18, + skill=21404, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [21413]={ + connections={ + [1]={ + id=28408, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Later Rage Loss Start ", + orbit=7, + orbitIndex=19, + skill=21413, + stats={ + [1]="Inherent Rage loss starts 1 second later" + } + }, + [21415]={ + connections={ + [1]={ + id=61493, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Stun and Ailment Threshold from Energy Shield", + orbit=3, + orbitIndex=16, + skill=21415, + 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" + } + }, + [21438]={ + connections={ + [1]={ + id=1019, + orbit=0 + } + }, + group=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + name="Armour and Evasion", + orbit=7, + orbitIndex=7, + skill=21438, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [21453]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + [1]={ + id=10286, + orbit=0 + } + }, + group=216, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds", + isNotable=true, + name="Breakage", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Greed" + }, + 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=632, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=3, + orbitIndex=12, + skill=21468, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [21495]={ + connections={ + }, + group=1210, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + name="Elemental Attack Damage", + orbit=3, + orbitIndex=14, + skill=21495, + stats={ + [1]="12% increased Elemental Damage with Attacks" + } + }, + [21537]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=1400, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + isNotable=true, + name="Fervour", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Isolation" + }, + skill=21537, + stats={ + [1]="+2 to Maximum Frenzy Charges" + } + }, + [21540]={ + connections={ + [1]={ + id=34367, + orbit=0 + }, + [2]={ + id=40783, + orbit=0 + } + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + name="Life Recoup", + orbit=7, + orbitIndex=10, + skill=21540, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [21549]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=2147483647 + } + }, + group=521, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=313, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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=0 + } + }, + group=284, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1165, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + 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=581, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=716, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=150, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=1, + orbitIndex=7, + skill=21670, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [21684]={ + connections={ + [1]={ + id=1214, + orbit=5 + } + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block and Shield Defences", + orbit=2, + orbitIndex=6, + skill=21684, + stats={ + [1]="4% increased Block chance", + [2]="15% increased Defences from Equipped Shield" + } + }, + [21713]={ + connections={ + [1]={ + id=11604, + orbit=0 + }, + [2]={ + id=50588, + orbit=0 + } + }, + group=1100, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=20, + skill=21713, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [21716]={ + connections={ + [1]={ + id=9583, + orbit=-5 + } + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=4, + orbitIndex=9, + skill=21716, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [21721]={ + connections={ + [1]={ + id=15899, + orbit=0 + }, + [2]={ + id=55066, + orbit=0 + }, + [3]={ + id=62194, + orbit=2147483647 + } + }, + group=716, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1041, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1186, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + isNotable=true, + name="Impending Doom", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Ire" + }, + 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=756, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=880, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + isNotable=true, + name="Pack Encouragement", + orbit=7, + orbitIndex=11, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Despair" + }, + 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=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Bow Damage", + orbit=5, + orbitIndex=21, + skill=21788, + stats={ + [1]="12% increased Damage with Bows" + } + }, + [21792]={ + connections={ + [1]={ + id=29899, + orbit=2 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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", + connections={ + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.dds", + isOnlyImage=true, + name="Chaos Mastery", + orbit=1, + orbitIndex=10, + skill=21801, + stats={ + } + }, + [21809]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=19162, + orbit=-6 + } + }, + group=177, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=304, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=800, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=253, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold and Strength", + orbit=7, + orbitIndex=14, + skill=21885, + stats={ + [1]="10% increased Stun Threshold", + [2]="+5 to Strength" + } + }, + [21935]={ + connections={ + [1]={ + id=18240, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + isNotable=true, + name="Calibration", + orbit=3, + orbitIndex=23, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Despair" + }, + skill=21935, + stats={ + [1]="30% increased maximum Energy Shield", + [2]="4% increased maximum Mana" + } + }, + [21945]={ + connections={ + [1]={ + id=61718, + orbit=0 + }, + [2]={ + id=26572, + orbit=0 + }, + [3]={ + id=39128, + orbit=0 + }, + [4]={ + id=54545, + orbit=0 + } + }, + group=1376, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=355, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=1133, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=4, + skill=21984, + stats={ + } + }, + [21985]={ + connections={ + [1]={ + id=48925, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=563, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=1008, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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=1140, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Shield Defences", + orbit=7, + orbitIndex=21, + skill=22057, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [22063]={ + connections={ + [1]={ + id=5797, + orbit=0 + } + }, + group=1295, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=1113, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds", + name="Intelligence", + orbit=1, + orbitIndex=10, + skill=22115, + stats={ + [1]="+8 to Intelligence" + } + }, + [22133]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=39857, + orbit=0 + } + }, + group=376, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Command Skill Cooldown", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=591, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=348, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Chronomancer", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + orbit=9, + orbitIndex=0, + skill=22147, + stats={ + } + }, + [22152]={ + connections={ + [1]={ + id=10382, + orbit=0 + }, + [2]={ + id=15304, + orbit=0 + } + }, + group=1098, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=2, + orbitIndex=10, + skill=22152, + stats={ + [1]="3% increased Cast Speed" + } + }, + [22185]={ + connections={ + [1]={ + id=17796, + orbit=5 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=824, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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=1260, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=1039, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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.dds", + name="Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=303, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=13, + skill=22270, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [22271]={ + connections={ + [1]={ + id=15083, + orbit=0 + } + }, + group=807, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=744, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=711, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1201, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=7, + orbitIndex=11, + skill=22329, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [22331]={ + connections={ + [1]={ + id=8983, + orbit=0 + }, + [2]={ + id=40200, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=1022, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=4, + orbitIndex=5, + skill=22368, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [22393]={ + connections={ + [1]={ + id=28458, + orbit=0 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=715, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=3, + orbitIndex=12, + skill=22439, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [22484]={ + connections={ + [1]={ + id=5398, + orbit=-4 + } + }, + group=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=1222, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=818, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + isNotable=true, + name="Fearful Paralysis", + orbit=2, + orbitIndex=1, + recipe={ + [1]="Disgust", + [2]="Fear", + [3]="Ire" + }, + 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=788, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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.dds", + isNotable=true, + name="Heat of the Forge", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=22541, + stats={ + [1]="Grants Skill: Fire Spell on Melee Hit" + } + }, + [22556]={ + connections={ + [1]={ + id=11257, + orbit=0 + }, + [2]={ + id=35028, + orbit=7 + } + }, + group=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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=455, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=774, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=1, + skill=22565, + stats={ + [1]="Gain Deflection Rating equal to 6% 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=455, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=194, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds", + isNotable=true, + name="Irreparable", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Disgust" + }, + skill=22626, + stats={ + [1]="100% increased Armour Break Duration" + } + }, + [22661]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=30233, + orbit=8 + } + }, + group=1496, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Movement Speed", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=22661, + stats={ + [1]="3% increased Movement Speed" + } + }, + [22682]={ + connections={ + }, + group=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=792, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + id=19990, + name="Minion Life", + stats={ + [1]="Minions have 10% increased maximum Life" + } + } + }, + orbit=0, + orbitIndex=0, + skill=22691, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [22697]={ + connections={ + [1]={ + id=43250, + orbit=2 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.dds", + name="Lightning Resistance", + orbit=2, + orbitIndex=10, + skill=22697, + stats={ + [1]="+5% to Lightning Resistance" + } + }, + [22710]={ + connections={ + [1]={ + id=45111, + orbit=0 + } + }, + group=1207, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=1191, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=644, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=669, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=966, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=1327, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds", + isNotable=true, + name="The Wild Cat", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Disgust", + [2]="Fear", + [3]="Guilt" + }, + skill=22811, + stats={ + [1]="Gain Deflection Rating equal to 10% 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=1240, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Inevitable Rupture", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Greed", + [2]="Ire", + [3]="Paranoia" + }, + 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=711, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=2147483647 + } + }, + group=1118, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds", + 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=987, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Tainted Strike", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Greed" + }, + 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=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Penetration", + orbit=3, + orbitIndex=4, + skill=22873, + stats={ + [1]="Damage Penetrates 4% of Enemy Elemental Resistances" + } + }, + [22908]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=24, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds", + isNotable=true, + name="Tribute to Utula", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=22908, + stats={ + [1]="Body Armour grants 30% increased Spirit" + } + }, + [22909]={ + connections={ + [1]={ + id=21415, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Stun and Ailment Threshold from Energy Shield", + orbit=3, + orbitIndex=14, + skill=22909, + 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" + } + }, + [22927]={ + connections={ + [1]={ + id=20582, + orbit=0 + } + }, + group=1342, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=512, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=380, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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", + connections={ + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.dds", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=22959, + stats={ + } + }, + [22962]={ + connections={ + [1]={ + id=22817, + orbit=0 + } + }, + group=1240, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=306, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Vigilance", + orbit=3, + orbitIndex=1, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Guilt" + }, + 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=1105, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + 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=301, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=22975, + stats={ + [1]="+5 to any Attribute" + } + }, + [23005]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=10072, + orbit=0 + } + }, + group=54, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds", + isNotable=true, + name="Renly's Training", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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", + connections={ + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=4, + orbitIndex=42, + skill=23013, + stats={ + } + }, + [23036]={ + connections={ + [1]={ + id=3339, + orbit=0 + }, + [2]={ + id=59208, + orbit=2 + } + }, + group=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + name="Attack Damage while Surrounded", + orbit=3, + orbitIndex=15, + skill=23036, + stats={ + [1]="25% increased Attack Damage while Surrounded" + } + }, + [23040]={ + connections={ + [1]={ + id=38493, + orbit=4 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=7, + orbitIndex=14, + skill=23040, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [23046]={ + connections={ + [1]={ + id=47976, + orbit=5 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=4, + orbitIndex=27, + skill=23046, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [23062]={ + connections={ + [1]={ + id=19122, + orbit=0 + } + }, + group=425, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + isNotable=true, + name="Holy Protector", + orbit=3, + orbitIndex=16, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Suffering" + }, + 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=685, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=3, + orbitIndex=10, + skill=23091, + stats={ + [1]="12% increased Fire Damage" + } + }, + [23105]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1373, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=23105, + stats={ + } + }, + [23153]={ + connections={ + [1]={ + id=23996, + orbit=0 + }, + [2]={ + id=39298, + orbit=0 + } + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + name="Ballista Damage", + orbit=7, + orbitIndex=14, + skill=23153, + stats={ + [1]="15% increased Ballista damage" + } + }, + [23192]={ + connections={ + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block", + orbit=4, + orbitIndex=42, + skill=23192, + stats={ + [1]="5% increased Block chance" + } + }, + [23195]={ + connections={ + [1]={ + id=55375, + orbit=0 + } + }, + group=323, + icon="Art/2DArt/SkillIcons/passives/LifeandMana.dds", + 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=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Trick Shot", + orbit=3, + orbitIndex=23, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Guilt" + }, + skill=23221, + stats={ + [1]="Projectiles have 15% chance to Chain an additional time from terrain" + } + }, + [23227]={ + connections={ + }, + group=596, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Initiative", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Ire", + [3]="Envy" + }, + 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=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + isNotable=true, + name="Bounty Hunter", + orbit=7, + orbitIndex=3, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Guilt" + }, + 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=65161, + orbit=0 + }, + [3]={ + id=34015, + orbit=0 + } + }, + group=1327, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds", + name="Evasion", + orbit=2, + orbitIndex=4, + skill=23253, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [23259]={ + connections={ + [1]={ + id=22864, + orbit=0 + } + }, + group=987, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds", + isNotable=true, + name="Kelari's Deception", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=9, + orbitIndex=38, + skill=23265, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [23305]={ + connections={ + [1]={ + id=21279, + orbit=-3 + }, + [2]={ + id=51602, + orbit=0 + } + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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=186, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=255, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + name="Fire Penetration", + orbit=1, + orbitIndex=3, + skill=23331, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [23343]={ + connections={ + [1]={ + id=58388, + orbit=3 + } + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds", + isNotable=true, + isSwitchable=true, + name="Rupture the Soul", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds", + id=390, + name="Rupture the Flesh", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=1053, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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=1311, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Slippery Ice", + orbit=3, + orbitIndex=9, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Greed" + }, + 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=525, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=613, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + name="Grenade Damage", + orbit=3, + orbitIndex=22, + skill=23373, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [23374]={ + connections={ + [1]={ + id=2500, + orbit=0 + } + }, + group=1412, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=316, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Evasion and Energy Shield", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=9, + orbitIndex=14, + skill=23415, + stats={ + [1]="15% increased Evasion Rating", + [2]="15% increased maximum Energy Shield" + } + }, + [23416]={ + ascendancyName="Blood Mage", + connections={ + }, + group=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds", + isNotable=true, + name="Vitality Siphon", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + orbit=6, + orbitIndex=64, + skill=23416, + stats={ + [1]="10% of Spell Damage Leeched as Life" + } + }, + [23419]={ + connections={ + [1]={ + id=55930, + orbit=0 + } + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Glory Generation", + orbit=2, + orbitIndex=20, + skill=23419, + stats={ + [1]="15% increased Glory generation" + } + }, + [23427]={ + connections={ + [1]={ + id=62914, + orbit=5 + } + }, + group=749, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Chilled to the Bone", + orbit=4, + orbitIndex=54, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Despair" + }, + 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=613, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=243, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Archon Duration and Critical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=685, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + 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=1012, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=23455, + stats={ + [1]="10% increased Cold Damage" + } + }, + [23508]={ + ascendancyName="Deadeye", + connections={ + }, + group=1436, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds", + isNotable=true, + name="Thrilling Chase", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + 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", + connections={ + }, + group=1220, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.dds", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=23547, + stats={ + } + }, + [23570]={ + connections={ + [1]={ + id=41031, + orbit=0 + } + }, + group=631, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds", + isNotable=true, + name="I am the Blizzard...", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + 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=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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.dds", + isNotable=true, + name="Self Immolation", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Fear" + }, + 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=573, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=804, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=3, + orbitIndex=10, + skill=23702, + stats={ + [1]="3% increased Attack Speed" + } + }, + [23708]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=3896, + orbit=2147483647 + } + }, + group=399, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour while Bleeding", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1120, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + isSwitchable=true, + name="Necromancer", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + } + } + }, + orbit=9, + orbitIndex=0, + skill=23710, + stats={ + } + }, + [23724]={ + connections={ + [1]={ + id=7275, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Lightning Damage", + orbit=7, + orbitIndex=22, + skill=23724, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [23736]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=1053, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + isNotable=true, + name="Spray and Pray", + orbit=4, + orbitIndex=38, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Suffering" + }, + 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=925, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + isNotable=true, + name="Madness in the Bones", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Paranoia", + [3]="Suffering" + }, + skill=23738, + stats={ + [1]="Gain 8% of Physical Damage as extra Chaos Damage" + } + }, + [23764]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=914, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Alternating Current", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Ire", + [3]="Suffering" + }, + 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=1076, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=2147483647 + } + }, + group=588, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour and Applies to Lightning Damage", + orbit=2, + orbitIndex=20, + skill=23797, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Lightning Damage" + } + }, + [23822]={ + connections={ + [1]={ + id=9652, + orbit=0 + } + }, + group=1237, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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=440, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=1227, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + name="Mana Flask Charges Used", + orbit=2, + orbitIndex=2, + skill=23839, + stats={ + [1]="4% reduced Flask Charges used from Mana Flasks" + } + }, + [23861]={ + connections={ + }, + group=428, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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", + connections={ + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=0, + orbitIndex=0, + skill=23879, + stats={ + } + }, + [23880]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=13174, + orbit=3 + } + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Mana", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + 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=676, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=1150, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Shock Effect", + orbit=0, + orbitIndex=0, + skill=23905, + stats={ + [1]="15% increased Magnitude of Shock you inflict" + } + }, + [23915]={ + connections={ + [1]={ + id=41529, + orbit=-1 + } + }, + group=1160, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=269, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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.dds", + name="Bow Attack Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=591, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Glazed Flesh", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Fear" + }, + 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=117, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + isNotable=true, + name="Adamant Recovery", + orbit=7, + orbitIndex=20, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Ire" + }, + skill=23940, + stats={ + [1]="Increases and Reductions to Armour also apply to Energy Shield", + [2]="Recharge Rate at 40% of their value" + } + }, + [23961]={ + connections={ + [1]={ + id=8791, + orbit=-2 + } + }, + group=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=640, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=886, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + 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=649, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=841, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=2, + orbitIndex=18, + skill=24035, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [24039]={ + ascendancyName="Infernalist", + connections={ + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds", + isNotable=true, + name="Beidat's Hand", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + 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=912, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + 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=706, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + isNotable=true, + name="Immortal Infamy", + orbit=5, + orbitIndex=21, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Fear" + }, + skill=24062, + stats={ + [1]="10% increased Energy Shield Recharge Rate", + [2]="Recover 2% of maximum Life on Kill", + [3]="+10 to Intelligence" + } + }, + [24070]={ + connections={ + [1]={ + id=58397, + orbit=0 + } + }, + group=1294, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + name="Dexterity", + orbit=0, + orbitIndex=0, + skill=24070, + stats={ + [1]="+8 to Dexterity" + } + }, + [24087]={ + connections={ + [1]={ + id=13882, + orbit=0 + } + }, + group=706, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + name="Everlasting Infusions", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Despair" + }, + 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=1236, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Mental Toughness", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Greed" + }, + 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", + connections={ + }, + group=1131, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=24129, + stats={ + } + }, + [24135]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=34419, + orbit=0 + } + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Critical Chance", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=9, + orbitIndex=6, + skill=24135, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [24150]={ + connections={ + [1]={ + id=44369, + orbit=-7 + } + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + 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=44628, + orbit=0 + }, + [4]={ + id=4328, + orbit=-6 + }, + [5]={ + id=6079, + orbit=0 + } + }, + group=1132, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1230, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1121, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds", + 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", + connections={ + }, + group=172, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds", + isOnlyImage=true, + name="Axe Mastery", + orbit=0, + orbitIndex=0, + skill=24224, + stats={ + } + }, + [24226]={ + ascendancyName="Deadeye", + connections={ + }, + group=1426, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds", + isNotable=true, + name="Bullseye", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + 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=1009, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + name="Life on Kill", + orbit=1, + orbitIndex=9, + skill=24239, + stats={ + [1]="Gain 5 Life per enemy killed" + } + }, + [24240]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern", + connections={ + [1]={ + id=11764, + orbit=-7 + } + }, + group=1159, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Time Manipulation", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Envy" + }, + 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=774, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Evasion", + orbit=2, + orbitIndex=15, + skill=24256, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [24259]={ + connections={ + [1]={ + id=62609, + orbit=0 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Attack Speed", + orbit=5, + orbitIndex=32, + skill=24259, + stats={ + [1]="Attacks used by Totems have 4% increased Attack Speed" + } + }, + [24287]={ + connections={ + [1]={ + id=34015, + orbit=0 + }, + [2]={ + id=14226, + orbit=0 + } + }, + group=1324, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=2147483647 + } + }, + group=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Frenzy Charge Duration", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=8, + orbitIndex=20, + skill=24295, + stats={ + [1]="25% increased Frenzy Charge Duration" + } + }, + [24325]={ + connections={ + [1]={ + id=40006, + orbit=7 + } + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=635, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + 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=250, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + name="Ballista Damage", + orbit=7, + orbitIndex=0, + skill=24368, + stats={ + [1]="15% increased Ballista damage" + } + }, + [24401]={ + connections={ + [1]={ + id=63759, + orbit=0 + } + }, + group=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=263, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=260, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=474, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Hardened Wood", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Greed", + [3]="Despair" + }, + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Chaos Resistance", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=8, + orbitIndex=8, + skill=24475, + stats={ + [1]="+7% to Chaos Resistance" + } + }, + [24477]={ + connections={ + [1]={ + id=17532, + orbit=0 + } + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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", + connections={ + }, + group=1009, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Recovery Mastery", + orbit=0, + orbitIndex=0, + skill=24481, + stats={ + } + }, + [24483]={ + connections={ + [1]={ + id=32660, + orbit=0 + }, + [2]={ + id=62661, + orbit=0 + } + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Direct Approach", + orbit=3, + orbitIndex=17, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Paranoia" + }, + skill=24483, + stats={ + [1]="35% increased Critical Hit Chance against Enemies that are affected", + [2]="by no Elemental Ailments" + } + }, + [24491]={ + connections={ + [1]={ + id=20140, + orbit=0 + } + }, + group=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Invocated Echoes", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Isolation" + }, + skill=24491, + stats={ + [1]="Invocated Spells have 40% chance to consume half as much Energy" + } + }, + [24511]={ + connections={ + [1]={ + id=49696, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=7, + orbitIndex=6, + skill=24511, + stats={ + [1]="+3 to all Attributes" + } + }, + [24551]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=280, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=24551, + stats={ + } + }, + [24570]={ + connections={ + [1]={ + id=28441, + orbit=0 + } + }, + group=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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.dds", + isNotable=true, + name="Fulmination", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Greed" + }, + 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=213, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + 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=1042, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=696, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + isNotable=true, + name="Breath of Fire", + orbit=4, + orbitIndex=30, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Isolation" + }, + 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=1299, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + 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=426, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Totem Damage", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=24696, + stats={ + [1]="20% increased Totem Damage" + } + }, + [24748]={ + connections={ + [1]={ + id=4716, + orbit=0 + } + }, + group=649, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=3, + orbitIndex=15, + skill=24748, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [24753]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + [1]={ + id=34747, + orbit=0 + }, + [2]={ + id=56567, + orbit=0 + }, + [3]={ + id=151, + orbit=0 + } + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Determined Precision", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Greed", + [3]="Envy" + }, + skill=24753, + stats={ + [1]="30% increased Accuracy Rating at Close Range", + [2]="+10 to Dexterity" + } + }, + [24764]={ + connections={ + [1]={ + id=65226, + orbit=0 + } + }, + group=427, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + name="Infusing Power", + orbit=7, + orbitIndex=17, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Suffering" + }, + skill=24764, + stats={ + [1]="10% chance when collecting an Elemental Infusion to gain an", + [2]="additional Elemental Infusion of the same type" + } + }, + [24766]={ + connections={ + [1]={ + id=11257, + orbit=-3 + }, + [2]={ + id=31566, + orbit=-7 + }, + [3]={ + id=51974, + orbit=0 + } + }, + group=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + isNotable=true, + name="Paranoia", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Ire", + [3]="Suffering" + }, + skill=24766, + stats={ + [1]="50% increased Surrounded Area of Effect" + } + }, + [24767]={ + connections={ + [1]={ + id=35408, + orbit=4 + } + }, + group=406, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + name="Focus Energy Shield", + orbit=4, + orbitIndex=34, + 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 + } + }, + group=1283, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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.dds", + isNotable=true, + name="Stone Skin", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=24807, + stats={ + [1]="50% more Armour from Equipped Body Armour" + } + }, + [24812]={ + connections={ + [1]={ + id=64643, + orbit=0 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=976, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1155, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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", + connections={ + [1]={ + id=39347, + orbit=0 + }, + [2]={ + id=48014, + orbit=0 + } + }, + group=208, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=4, + orbitIndex=58, + skill=24855, + stats={ + } + }, + [24868]={ + ascendancyName="Pathfinder", + connections={ + [1]={ + id=33736, + orbit=0 + } + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds", + isNotable=true, + name="Relentless Pursuit", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + orbit=9, + orbitIndex=72, + skill=24868, + stats={ + [1]="Your speed is unaffected by Slows" + } + }, + [24871]={ + connections={ + [1]={ + id=10602, + orbit=0 + } + }, + group=386, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=662, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=5, + orbitIndex=36, + skill=24880, + stats={ + [1]="3% increased Attack Speed" + } + }, + [24883]={ + connections={ + [1]={ + id=44573, + orbit=1 + } + }, + group=1259, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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", + connections={ + }, + group=1280, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Companion Mastery", + orbit=7, + orbitIndex=2, + skill=24889, + stats={ + } + }, + [24922]={ + connections={ + [1]={ + id=18923, + orbit=0 + }, + [2]={ + id=64345, + orbit=0 + }, + [3]={ + id=17077, + orbit=0 + } + }, + group=1060, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=188, + icon="", + isOnlyImage=true, + name="Minion Mastery", + orbit=2, + orbitIndex=19, + skill=24929, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [24958]={ + connections={ + [1]={ + id=52464, + orbit=-4 + }, + [2]={ + id=41877, + orbit=6 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=30, + skill=24958, + stats={ + [1]="+5 to any Attribute" + } + }, + [24993]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=54297, + orbit=6 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=552, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=25011, + stats={ + } + }, + [25014]={ + connections={ + [1]={ + id=50228, + orbit=0 + } + }, + group=222, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Speed", + orbit=3, + orbitIndex=6, + skill=25014, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [25026]={ + connections={ + [1]={ + id=3567, + orbit=6 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds", + isOnlyImage=true, + name="Charms Mastery", + orbit=5, + orbitIndex=51, + skill=25029, + stats={ + } + }, + [25031]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern", + connections={ + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=25031, + stats={ + } + }, + [25055]={ + connections={ + [1]={ + id=41580, + orbit=3 + } + }, + group=1318, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=2147483647 + }, + [2]={ + id=4681, + orbit=2147483647 + } + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + name="Gain Maximum Frenzy Charges on Gaining Frenzy Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1321, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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.dds", + name="Critical Damage Bonus on You", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=25092, + stats={ + [1]="Hits against you have 12% reduced Critical Damage Bonus" + } + }, + [25100]={ + connections={ + }, + group=1014, + icon="Art/2DArt/SkillIcons/passives/OasisKeystone2.dds", + isKeystone=true, + name="Oasis", + orbit=0, + orbitIndex=0, + skill=25100, + stats={ + [1]="Cannot use Charms", + [2]="30% more Recovery from Flasks" + } + }, + [25101]={ + connections={ + [1]={ + id=22439, + orbit=5 + }, + [2]={ + id=52199, + orbit=0 + }, + [3]={ + id=44498, + orbit=-5 + } + }, + group=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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.dds", + 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=985, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=272, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=25172, + stats={ + [1]="6% increased Cooldown Recovery Rate" + } + }, + [25211]={ + connections={ + [1]={ + id=11330, + orbit=0 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Waning Hindrances", + orbit=3, + orbitIndex=3, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Fear" + }, + skill=25211, + stats={ + [1]="Debuffs on you expire 25% faster" + } + }, + [25213]={ + connections={ + [1]={ + id=19223, + orbit=0 + } + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=277, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds", + isNotable=true, + name="Demonic Possession", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + orbit=8, + orbitIndex=66, + skill=25239, + stats={ + [1]="Grants Skill: Demon Form" + } + }, + [25281]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=948, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=1, + orbitIndex=10, + skill=25281, + stats={ + } + }, + [25300]={ + connections={ + [1]={ + id=61796, + orbit=0 + } + }, + group=196, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break", + orbit=0, + orbitIndex=0, + skill=25300, + stats={ + [1]="Break 20% increased Armour" + } + }, + [25303]={ + connections={ + }, + group=557, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.dds", + 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=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=5, + orbitIndex=36, + skill=25312, + stats={ + [1]="15% increased Totem Damage" + } + }, + [25315]={ + connections={ + [1]={ + id=19820, + orbit=0 + } + }, + group=199, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour and Applies to Cold Damage", + orbit=2, + orbitIndex=0, + 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=421, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=7, + orbitIndex=19, + skill=25337, + stats={ + [1]="10% chance to Poison on Hit" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [25361]={ + connections={ + }, + group=1321, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1372, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds", + isNotable=true, + name="Chakra of Impact", + orbit=2, + orbitIndex=13, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Despair" + }, + 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=647, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=662, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=604, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Chill Effect", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=6, + orbitIndex=11, + skill=25434, + stats={ + [1]="15% increased Magnitude of Chill you inflict" + } + }, + [25438]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=48, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds", + isNotable=true, + name="Heatproofing", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=25438, + stats={ + [1]="Body Armour grants Unaffected by Damaging Ailments" + } + }, + [25446]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=390, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=25446, + stats={ + } + }, + [25458]={ + connections={ + [1]={ + id=37568, + orbit=3 + } + }, + group=1179, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connections={ + [1]={ + id=61472, + orbit=0 + }, + [2]={ + id=51702, + orbit=0 + }, + [3]={ + id=60620, + orbit=0 + } + }, + group=373, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + isNotable=true, + name="Beef", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Disgust", + [3]="Fear" + }, + skill=25482, + stats={ + [1]="+25 to Strength" + } + }, + [25503]={ + connections={ + [1]={ + id=27068, + orbit=0 + }, + [2]={ + id=45632, + orbit=0 + } + }, + group=280, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=7, + orbitIndex=16, + skill=25503, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [25513]={ + connections={ + }, + group=720, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + isNotable=true, + name="Overwhelm", + orbit=6, + orbitIndex=45, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Envy" + }, + skill=25513, + stats={ + [1]="5% reduced Attack Speed", + [2]="20% increased Stun Buildup", + [3]="40% increased Damage with Two Handed Weapons" + } + }, + [25520]={ + connections={ + }, + group=1162, + icon="Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds", + isKeystone=true, + name="Resonance", + orbit=0, + orbitIndex=0, + skill=25520, + stats={ + [1]="Gain Power Charges instead of Frenzy Charges", + [2]="Gain Frenzy Charges instead of Endurance Charges", + [3]="Gain Endurance Charges instead of Power Charges" + } + }, + [25528]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=3, + orbitIndex=15, + skill=25528, + stats={ + } + }, + [25557]={ + connections={ + [1]={ + id=29763, + orbit=0 + }, + [2]={ + id=4059, + orbit=0 + }, + [3]={ + id=26804, + orbit=0 + } + }, + group=994, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1336, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=521, + icon="Art/2DArt/SkillIcons/passives/damage_blue.dds", + name="Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=20115, + orbit=0 + } + }, + group=199, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour and Applies to Cold Damage", + orbit=2, + orbitIndex=6, + skill=25591, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Cold Damage" + } + }, + [25594]={ + connections={ + [1]={ + id=34030, + orbit=0 + } + }, + group=787, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Spell Critical Chance", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=8, + orbitIndex=18, + skill=25618, + stats={ + [1]="12% increased Critical Hit Chance for Spells" + } + }, + [25619]={ + connections={ + [1]={ + id=43562, + orbit=3 + } + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Sand in the Eyes", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Despair" + }, + 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=1015, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + isNotable=true, + name="Meat Recycling", + orbit=7, + orbitIndex=14, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Guilt" + }, + skill=25620, + stats={ + [1]="15% chance to not destroy Corpses when Consuming Corpses" + } + }, + [25653]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=13289, + orbit=0 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds", + isNotable=true, + name="Kelari's Judgment", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=8, + orbitIndex=19, + skill=25653, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [25678]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49258, + orbit=2147483647 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds", + isNotable=true, + name="Ruzhan's Reckoning", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=6, + orbitIndex=53, + skill=25683, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [25700]={ + connections={ + [1]={ + id=41096, + orbit=4 + } + }, + group=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + isNotable=true, + name="Thrill of Battle", + orbit=2, + orbitIndex=5, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Ire" + }, + skill=25711, + stats={ + [1]="20% increased Attack Speed while Surrounded" + } + }, + [25729]={ + connections={ + [1]={ + id=33093, + orbit=0 + } + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=7, + orbitIndex=12, + skill=25729, + stats={ + [1]="3% increased Cast Speed" + } + }, + [25745]={ + connections={ + [1]={ + id=31890, + orbit=4 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=487, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Blazing Arms", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Despair" + }, + 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=653, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Darkness", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=9, + orbitIndex=34, + skill=25779, + stats={ + [1]="10% increased maximum Darkness" + } + }, + [25781]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds", + isNotable=true, + name="Sap of Nightmares", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + 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=856, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=962, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=638, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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", + connections={ + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=3, + orbitIndex=12, + skill=25857, + stats={ + } + }, + [25885]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=31116, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Damage as Chaos", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=8, + orbitIndex=18, + skill=25885, + stats={ + [1]="Gain 4% of Damage as Extra Chaos Damage" + } + }, + [25890]={ + connections={ + [1]={ + id=54378, + orbit=0 + } + }, + group=339, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=759, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=18, + skill=25893, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [25915]={ + connections={ + [1]={ + id=8916, + orbit=2 + } + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + name="Shapeshifted Damage", + orbit=2, + orbitIndex=2, + skill=25915, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [25927]={ + connections={ + [1]={ + id=32847, + orbit=-2 + } + }, + group=520, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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", + connections={ + }, + group=389, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=7, + orbitIndex=12, + skill=25934, + stats={ + } + }, + [25935]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=23005, + orbit=0 + } + }, + group=45, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds", + name="Block Chance", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=25935, + stats={ + [1]="6% increased Block chance" + } + }, + [25971]={ + connections={ + }, + group=1158, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Tenfold Attacks", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Guilt" + }, + 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=487, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=865, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=2147483647 + } + }, + group=73, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=26063, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [26068]={ + connections={ + [1]={ + id=37389, + orbit=0 + } + }, + group=1062, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=3, + orbitIndex=4, + skill=26068, + stats={ + [1]="10% increased Attack Damage" + } + }, + [26070]={ + connections={ + [1]={ + id=35977, + orbit=0 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Bolstering Yell", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Paranoia" + }, + 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=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds", + isNotable=true, + isSwitchable=true, + name="Necromantic Conduit", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds", + id=41162, + name="Umbral Well", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=389, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds", + isNotable=true, + name="Spirit of the Wyvern", + orbit=4, + orbitIndex=51, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Greed" + }, + 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=1267, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Kite Runner", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Despair" + }, + 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=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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", + connections={ + }, + group=303, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds", + isOnlyImage=true, + name="Accuracy Mastery", + orbit=0, + orbitIndex=0, + skill=26148, + stats={ + } + }, + [26176]={ + connections={ + [1]={ + id=43650, + orbit=0 + } + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Attack Critical Damage", + orbit=2, + orbitIndex=8, + skill=26176, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [26194]={ + connections={ + [1]={ + id=37872, + orbit=0 + } + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=258, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=26196, + stats={ + } + }, + [26211]={ + connections={ + [1]={ + id=24883, + orbit=0 + } + }, + group=1259, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=466, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + isNotable=true, + name="Prize of the Hunt", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Energy", + orbit=7, + orbitIndex=20, + skill=26236, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [26268]={ + connections={ + [1]={ + id=22710, + orbit=0 + } + }, + group=1207, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Duration", + orbit=7, + orbitIndex=12, + skill=26268, + stats={ + [1]="20% increased Curse Duration" + } + }, + [26282]={ + ascendancyName="Blood Mage", + connections={ + }, + group=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds", + isNotable=true, + name="Blood Barbs", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + orbit=5, + orbitIndex=66, + skill=26282, + stats={ + [1]="Bleeding you inflict on Cursed targets is Aggravated", + [2]="Elemental Damage also Contributes to Bleeding Magnitude" + } + }, + [26283]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1462, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds", + isMultipleChoiceOption=true, + name="Choice of Mana", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=26283, + stats={ + [1]="Remnants 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=269, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Electrifying Nature", + orbit=4, + orbitIndex=28, + recipe={ + [1]="Envy", + [2]="Greed", + [3]="Paranoia" + }, + skill=26291, + stats={ + [1]="25% increased Lightning Damage", + [2]="15% increased Shock Duration" + } + }, + [26300]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=23436, + orbit=-4 + } + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Archon Duration and Critical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1107, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds", + name="All Attributes", + orbit=2, + orbitIndex=10, + skill=26308, + stats={ + [1]="+3 to all Attributes" + } + }, + [26319]={ + connections={ + [1]={ + id=30990, + orbit=-7 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=0, + skill=26319, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [26324]={ + connections={ + [1]={ + id=46023, + orbit=0 + } + }, + group=452, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=1193, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Harsh Winter", + orbit=7, + orbitIndex=18, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Ire" + }, + 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=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Ancestral Artifice", + orbit=1, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Suffering" + }, + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Primed to Explode", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Disgust" + }, + 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=1189, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds", + isNotable=true, + name="Sunder the Flesh", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + orbit=8, + orbitIndex=59, + skill=26383, + stats={ + [1]="Base Critical Hit Chance for Spells is 15%" + } + }, + [26400]={ + connections={ + [1]={ + id=8904, + orbit=0 + } + }, + group=1278, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=279, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1212, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=179, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=777, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Refocus", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Ire" + }, + skill=26447, + stats={ + [1]="30% increased Energy Shield Recharge Rate", + [2]="20% increased Mana Regeneration Rate" + } + }, + [26479]={ + connections={ + [1]={ + id=64324, + orbit=4 + }, + [2]={ + id=9040, + orbit=0 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Steadfast Resolve", + orbit=4, + orbitIndex=60, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Paranoia" + }, + skill=26479, + stats={ + [1]="You cannot be Light Stunned if you've been Stunned Recently" + } + }, + [26490]={ + connections={ + [1]={ + id=12751, + orbit=0 + } + }, + group=483, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=244, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Cold Nature", + orbit=4, + orbitIndex=5, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Guilt" + }, + 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=851, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=2, + orbitIndex=11, + skill=26520, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [26532]={ + connections={ + [1]={ + id=46023, + orbit=-3 + }, + [2]={ + id=41657, + orbit=3 + }, + [3]={ + id=36629, + orbit=0 + } + }, + group=452, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=2, + orbitIndex=6, + skill=26532, + stats={ + [1]="15% increased Armour" + } + }, + [26563]={ + connections={ + [1]={ + id=12778, + orbit=-4 + }, + [2]={ + id=6161, + orbit=0 + } + }, + group=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Bone Chains", + orbit=4, + orbitIndex=12, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Fear" + }, + skill=26563, + stats={ + [1]="Physical Spell Critical Hits build Pin" + } + }, + [26565]={ + connections={ + [1]={ + id=40024, + orbit=-2 + } + }, + group=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=424, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1376, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + name="Criticals vs Dazed Enemies", + orbit=2, + orbitIndex=12, + skill=26572, + stats={ + [1]="12% increased Critical Hit Chance against Dazed Enemies" + } + }, + [26596]={ + connections={ + [1]={ + id=5766, + orbit=5 + }, + [2]={ + id=51416, + orbit=-5 + } + }, + group=1124, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + 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=1146, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=591, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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={ + [1]={ + id=63002, + orbit=9 + } + }, + group=332, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds", + isNotable=true, + name="Footprints in the Sand", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + 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=774, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=21, + skill=26648, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [26663]={ + connections={ + [1]={ + id=44765, + orbit=0 + } + }, + group=788, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=699, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds", + 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", + connections={ + [1]={ + id=59263, + orbit=0 + }, + [2]={ + id=27290, + orbit=0 + }, + [3]={ + id=46565, + orbit=0 + } + }, + group=535, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds", + isOnlyImage=true, + name="Sword Mastery", + orbit=0, + orbitIndex=0, + skill=26697, + stats={ + } + }, + [26725]={ + connections={ + [1]={ + id=57703, + orbit=0 + } + }, + group=281, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=26725, + stats={ + } + }, + [26726]={ + connections={ + [1]={ + id=48103, + orbit=0 + } + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/knockback.dds", + 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=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=3, + orbitIndex=8, + skill=26739, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [26762]={ + connections={ + [1]={ + id=35380, + orbit=-2 + } + }, + group=1238, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=1159, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=913, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=454, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=1015, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + name="Corpses", + orbit=7, + orbitIndex=2, + skill=26804, + stats={ + [1]="15% increased Damage if you have Consumed a Corpse Recently" + } + }, + [26830]={ + connections={ + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=339, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=1206, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=4, + orbitIndex=60, + skill=26885, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [26895]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern", + connections={ + }, + group=481, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.dds", + isOnlyImage=true, + name="Duration Mastery", + orbit=0, + orbitIndex=0, + skill=26895, + stats={ + } + }, + [26905]={ + connections={ + [1]={ + id=8821, + orbit=0 + } + }, + group=826, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=3, + orbitIndex=2, + skill=26905, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [26931]={ + connections={ + [1]={ + id=48198, + orbit=5 + } + }, + group=955, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + 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=1121, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=6, + skill=26932, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [26945]={ + connections={ + }, + group=644, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=961, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=7, + orbitIndex=20, + skill=26952, + stats={ + [1]="20% increased Flammability Magnitude" + } + }, + [26969]={ + connections={ + [1]={ + id=16861, + orbit=2 + } + }, + group=327, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=4, + orbitIndex=69, + skill=26969, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [27009]={ + connections={ + [1]={ + id=30459, + orbit=0 + } + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + isNotable=true, + name="Lust for Sacrifice", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Paranoia" + }, + 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=1107, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds", + name="All Attributes", + orbit=2, + orbitIndex=22, + skill=27017, + stats={ + [1]="+3 to all Attributes" + } + }, + [27048]={ + connections={ + [1]={ + id=47375, + orbit=8 + } + }, + group=1401, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=0, + orbitIndex=0, + skill=27048, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [27068]={ + connections={ + [1]={ + id=35831, + orbit=0 + } + }, + group=280, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=187, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1038, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=7, + orbitIndex=7, + skill=27095, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [27096]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=33423, + orbit=2147483647 + }, + [2]={ + id=13691, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Rustle of the Leaves", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + [1]={ + id=47796, + orbit=0 + } + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Mass Hysteria", + orbit=4, + orbitIndex=36, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Envy" + }, + skill=27108, + stats={ + [1]="Allies in your Presence have 6% increased Attack Speed", + [2]="6% increased Attack Speed" + } + }, + [27176]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + isNotable=true, + name="The Power Within", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Paranoia", + [3]="Suffering" + }, + 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=653, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + name="Shapeshifted Energy Shield Delay", + orbit=7, + orbitIndex=4, + skill=27216, + stats={ + [1]="15% faster start of Energy Shield Recharge while Shapeshifted" + } + }, + [27234]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=858, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=27234, + stats={ + } + }, + [27262]={ + connections={ + [1]={ + id=49110, + orbit=7 + } + }, + group=1070, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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", + connections={ + }, + group=1012, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=1, + orbitIndex=2, + skill=27274, + stats={ + } + }, + [27290]={ + connections={ + [1]={ + id=38564, + orbit=0 + } + }, + group=513, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + 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=135, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=327, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Vulgar Methods", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Despair" + }, + 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", + connections={ + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=27307, + stats={ + } + }, + [27373]={ + connections={ + [1]={ + id=53405, + orbit=-6 + }, + [2]={ + id=51369, + orbit=-6 + } + }, + group=512, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=280, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Aspiring Genius", + orbit=7, + orbitIndex=23, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Greed" + }, + 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=294, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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.dds", + name="Strength", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=4, + orbitIndex=48, + skill=27418, + stats={ + [1]="4% increased Strength" + } + }, + [27422]={ + connections={ + [1]={ + id=2021, + orbit=0 + } + }, + group=1340, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + name="Mana Flask Recovery", + orbit=0, + orbitIndex=0, + skill=27422, + stats={ + [1]="10% increased Mana Recovery from Flasks" + } + }, + [27434]={ + connections={ + [1]={ + id=15984, + orbit=0 + } + }, + group=799, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Archon of the Storm", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Fear", + [2]="Isolation", + [3]="Guilt" + }, + skill=27434, + stats={ + [1]="Gain Elemental Archon after spending 100% of your Maximum Mana" + } + }, + [27439]={ + connections={ + [1]={ + id=21982, + orbit=0 + } + }, + group=319, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=647, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + isNotable=true, + name="Heavy Buffer", + orbit=4, + orbitIndex=24, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Isolation" + }, + skill=27491, + stats={ + [1]="40% increased maximum Energy Shield", + [2]="5% of Damage taken bypasses Energy Shield" + } + }, + [27493]={ + connections={ + [1]={ + id=17118, + orbit=0 + } + }, + group=875, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=4, + orbitIndex=24, + skill=27493, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [27501]={ + connections={ + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=4, + orbitIndex=44, + skill=27501, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [27513]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + }, + group=1349, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + isNotable=true, + name="Material Solidification", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Isolation" + }, + 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=333, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=2147483647 + } + }, + group=521, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage.dds", + name="Chaos Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=117, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + name="Shapeshifted Elemental Damage", + orbit=7, + orbitIndex=18, + skill=27611, + stats={ + [1]="12% increased Elemental Damage while Shapeshifted" + } + }, + [27626]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + [1]={ + id=15628, + orbit=0 + } + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Touch the Arcane", + orbit=5, + orbitIndex=54, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Suffering" + }, + skill=27626, + stats={ + [1]="40% increased effect of Arcane Surge on you" + } + }, + [27638]={ + connections={ + [1]={ + id=38010, + orbit=0 + } + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Glory Generation", + orbit=7, + orbitIndex=3, + skill=27638, + stats={ + [1]="15% increased Glory generation" + } + }, + [27658]={ + connections={ + [1]={ + id=21540, + orbit=7 + } + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + name="Life Recoup", + orbit=7, + orbitIndex=6, + skill=27658, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [27662]={ + connections={ + }, + group=962, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds", + isNotable=true, + name="Whispers of the Flesh", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + 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=2147483647 + } + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds", + name="Energy Shield Recharge", + orbit=7, + orbitIndex=15, + skill=27671, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [27674]={ + connections={ + [1]={ + id=44082, + orbit=0 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=10, + skill=27674, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [27686]={ + ascendancyName="Invoker", + connections={ + [1]={ + id=12876, + orbit=0 + } + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Energy Shield Recharge Rate", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=8, + orbitIndex=10, + skill=27686, + stats={ + [1]="20% increased Energy Shield Recharge Rate" + } + }, + [27687]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern", + connections={ + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Greatest Defence", + orbit=3, + orbitIndex=4, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Disgust" + }, + skill=27687, + stats={ + [1]="4% increased Attack Damage per 75 Item Armour and Evasion Rating 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=1380, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=579, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=2, + orbitIndex=8, + skill=27726, + stats={ + [1]="15% increased Armour" + } + }, + [27733]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + [1]={ + id=44005, + orbit=0 + }, + [2]={ + id=2999, + orbit=0 + } + }, + group=266, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=4, + orbitIndex=30, + skill=27733, + stats={ + } + }, + [27740]={ + connections={ + [1]={ + id=35792, + orbit=0 + } + }, + group=279, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=1018, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + isNotable=true, + name="Counterstancing", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Guilt", + [3]="Fear" + }, + 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" + } + }, + [27785]={ + connections={ + [1]={ + id=63863, + orbit=0 + } + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=818, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + 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=824, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + name="Herald Damage", + orbit=7, + orbitIndex=12, + skill=27859, + stats={ + [1]="Herald Skills deal 20% increased Damage" + } + }, + [27875]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + [1]={ + id=32123, + orbit=0 + } + }, + group=1163, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="General Electric", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Greed" + }, + 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=407, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=1024, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=452, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Polished Iron", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Guilt", + [3]="Despair" + }, + 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=182, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=375, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Slow Effect", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + 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", + connections={ + }, + group=612, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=27992, + stats={ + } + }, + [27999]={ + connections={ + [1]={ + id=45777, + orbit=0 + } + }, + group=468, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=403, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1127, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=8, + orbitIndex=33, + skill=28022, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [28038]={ + connections={ + [1]={ + id=56488, + orbit=0 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=7, + orbitIndex=12, + skill=28038, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [28044]={ + connections={ + [1]={ + id=28835, + orbit=0 + }, + [2]={ + id=178, + orbit=0 + }, + [3]={ + id=6988, + orbit=0 + } + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + isNotable=true, + name="Coming Calamity", + orbit=3, + orbitIndex=12, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Suffering" + }, + 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=1000, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1062, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=1188, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=2, + orbitIndex=14, + skill=28086, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [28092]={ + connections={ + [1]={ + id=17061, + orbit=7 + } + }, + group=534, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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=1364, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + name="Fire Penetration", + orbit=2, + orbitIndex=12, + skill=28101, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [28106]={ + connections={ + [1]={ + id=3775, + orbit=0 + } + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + name="Life Flask Charges", + orbit=2, + orbitIndex=8, + skill=28106, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [28153]={ + ascendancyName="Chronomancer", + connections={ + }, + group=347, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds", + isNotable=true, + name="The Rapid River", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + orbit=2, + orbitIndex=9, + skill=28153, + stats={ + [1]="Recoup Effects instead occur over 4 seconds" + } + }, + [28175]={ + connections={ + [1]={ + id=64471, + orbit=0 + }, + [2]={ + id=21716, + orbit=0 + }, + [3]={ + id=48026, + orbit=0 + } + }, + group=462, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1203, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + 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.dds", + name="Armour and Block Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=250, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + 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=164, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=916, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Area", + orbit=2, + orbitIndex=0, + skill=28229, + stats={ + [1]="10% increased Area of Effect of Curses" + } + }, + [28258]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern", + connections={ + [1]={ + id=36976, + orbit=0 + }, + [2]={ + id=59064, + orbit=0 + }, + [3]={ + id=36927, + orbit=2 + } + }, + group=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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=214, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Desensitisation", + orbit=3, + orbitIndex=4, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Greed" + }, + 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=991, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=398, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1215, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds", + isNotable=true, + name="Pressure Points", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Ire" + }, + skill=28329, + stats={ + [1]="35% increased Stun Buildup", + [2]="35% increased Freeze Buildup" + } + }, + [28361]={ + connections={ + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=751, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1303, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Invigorating Hate", + orbit=3, + orbitIndex=22, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Despair" + }, + skill=28408, + stats={ + [1]="Consume all Rage when Shapeshifting to Human form to recover 1% of maximum life per Rage Consumed" + } + }, + [28431]={ + ascendancyName="Lich", + connections={ + }, + group=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds", + isNotable=true, + isSwitchable=true, + name="Eternal Life", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + } + } + }, + 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=425, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Frantic Swings", + orbit=7, + orbitIndex=15, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Despair" + }, + 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=626, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isSwitchable=true, + name="Attack Area", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + orbit=3, + orbitIndex=10, + skill=28458, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [28476]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern", + connections={ + }, + group=478, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Thorns Mastery", + orbit=0, + orbitIndex=0, + skill=28476, + stats={ + } + }, + [28482]={ + connections={ + [1]={ + id=19846, + orbit=0 + } + }, + group=346, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Total Incineration", + orbit=7, + orbitIndex=1, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Suffering" + }, + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + name="Shapeshifted Skill Effect Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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 + } + }, + group=691, + icon="Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds", + 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=727, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=239, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + name="Area of Effect", + orbit=2, + orbitIndex=8, + skill=28516, + stats={ + [1]="6% increased Area of Effect" + } + }, + [28542]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + [1]={ + id=62785, + orbit=7 + } + }, + group=370, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + isNotable=true, + name="The Molten One's Gift", + orbit=1, + orbitIndex=5, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Greed" + }, + 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=842, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=190, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Speed", + orbit=2, + orbitIndex=8, + skill=28564, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [28573]={ + connections={ + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + name="Minion Revive Speed", + orbit=7, + orbitIndex=6, + skill=28573, + stats={ + [1]="Minions Revive 5% faster" + } + }, + [28578]={ + connections={ + }, + group=280, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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.dds", + 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=140, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Roaring Cries", + orbit=2, + orbitIndex=2, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Greed" + }, + skill=28613, + stats={ + [1]="Warcries have a minimum of 10 Power" + } + }, + [28623]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern", + connections={ + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=0, + orbitIndex=0, + skill=28623, + stats={ + } + }, + [28625]={ + connections={ + [1]={ + id=32135, + orbit=5 + }, + [2]={ + id=35848, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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", + connections={ + [1]={ + id=37514, + orbit=0 + }, + [2]={ + id=2113, + orbit=0 + } + }, + group=1390, + icon="Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds", + isOnlyImage=true, + name="Quarterstaff Mastery", + orbit=0, + orbitIndex=0, + skill=28638, + stats={ + } + }, + [28680]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=28680, + stats={ + } + }, + [28693]={ + connections={ + [1]={ + id=49280, + orbit=7 + } + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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", + connections={ + }, + group=627, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=28718, + stats={ + } + }, + [28745]={ + ascendancyName="Shaman", + connections={ + }, + group=72, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds", + isNotable=true, + name="Bringer of the Apocalypse", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=28745, + stats={ + [1]="Grants Skill: Apocalypse" + } + }, + [28770]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=479, + orbit=-7 + } + }, + group=326, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + name="Shapeshifted Elemental Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=266, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=6, + orbitIndex=26, + skill=28774, + stats={ + [1]="3% increased Cast Speed" + } + }, + [28797]={ + connections={ + [1]={ + id=632, + orbit=0 + } + }, + group=1394, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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=404, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds", + 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=1219, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + [1]={ + id=56847, + orbit=0 + }, + [2]={ + id=60480, + orbit=0 + }, + [3]={ + id=8157, + orbit=0 + } + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + name="Herald Damage", + orbit=0, + orbitIndex=0, + skill=28835, + stats={ + [1]="12% increased Damage while affected by a Herald" + } + }, + [28839]={ + connections={ + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=2, + orbitIndex=16, + skill=28839, + stats={ + [1]="3% increased Cast Speed" + } + }, + [28859]={ + connections={ + [1]={ + id=45382, + orbit=0 + } + }, + group=1317, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Ailment Chance and Elemental Damage", + orbit=4, + orbitIndex=51, + skill=28859, + stats={ + [1]="10% increased Elemental Damage", + [2]="6% increased chance to inflict Ailments" + } + }, + [28860]={ + connections={ + [1]={ + id=56104, + orbit=0 + } + }, + group=640, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break", + orbit=7, + orbitIndex=18, + skill=28860, + stats={ + [1]="Break 20% increased Armour" + } + }, + [28862]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern", + connections={ + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds", + isOnlyImage=true, + name="Leech Mastery", + orbit=0, + orbitIndex=0, + skill=28862, + stats={ + } + }, + [28863]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=28863, + stats={ + } + }, + [28892]={ + connections={ + [1]={ + id=13845, + orbit=7 + }, + [2]={ + id=65042, + orbit=0 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Primal Rage", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Paranoia" + }, + skill=28892, + stats={ + [1]="+12 to maximum Rage while Shapeshifted" + } + }, + [28903]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + }, + group=1222, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.dds", + isOnlyImage=true, + name="Poison Mastery", + orbit=0, + orbitIndex=0, + skill=28903, + stats={ + } + }, + [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=619, + icon="Art/2DArt/SkillIcons/passives/bodysoul.dds", + isNotable=true, + isSwitchable=true, + name="Devoted Protector", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + id=7130, + name="Bastion of the Forest", + stats={ + [1]="15% increased Armour", + [2]="+15% of Armour also applies to Elemental Damage", + [3]="15% 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]="15% faster start of Energy Shield Recharge", + [4]="+5 to Strength and Intelligence" + } + }, + [28963]={ + connections={ + [1]={ + id=23105, + orbit=0 + } + }, + group=1372, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds", + isNotable=true, + name="Chakra of Rhythm", + orbit=2, + orbitIndex=1, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Despair" + }, + skill=28963, + stats={ + [1]="6% increased Attack Speed", + [2]="20% Chance to build an additional Combo on Hit" + } + }, + [28975]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + [1]={ + id=26905, + orbit=0 + } + }, + group=827, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Pure Power", + orbit=6, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Suffering" + }, + skill=28975, + stats={ + [1]="10% more Maximum Lightning Damage" + } + }, + [28976]={ + connections={ + [1]={ + id=23374, + orbit=0 + }, + [2]={ + id=29458, + orbit=0 + } + }, + group=1406, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=182, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=882, + icon="Art/2DArt/SkillIcons/passives/Hunter.dds", + isNotable=true, + isSwitchable=true, + name="Honed Instincts", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/LethalAssault.dds", + 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=739, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=282, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1202, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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", + connections={ + }, + group=1240, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.dds", + isOnlyImage=true, + name="Bleeding Mastery", + orbit=1, + orbitIndex=7, + skill=29065, + stats={ + } + }, + [29074]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1438, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds", + isNotable=true, + name="Overwhelming Toxicity", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + 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]="35% less Poison Duration" + } + }, + [29098]={ + connections={ + [1]={ + id=43588, + orbit=0 + }, + [2]={ + id=10727, + orbit=-2 + } + }, + group=165, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=326, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + name="Shapeshifted Elemental Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=4, + orbitIndex=9, + skill=29133, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [29148]={ + connections={ + [1]={ + id=34840, + orbit=0 + } + }, + group=575, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=321, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Spirit", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=29162, + stats={ + [1]="8% increased Spirit" + } + }, + [29197]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=11428, + orbit=-7 + } + }, + group=243, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Archon Duration and Critical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=984, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1342, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=550, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=7, + orbitIndex=20, + skill=29270, + stats={ + [1]="10% increased Attack Damage" + } + }, + [29285]={ + connections={ + [1]={ + id=9745, + orbit=2147483647 + }, + [2]={ + id=38463, + orbit=0 + } + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds", + name="Movement Speed", + orbit=7, + orbitIndex=19, + skill=29285, + stats={ + [1]="2% increased Movement Speed" + } + }, + [29288]={ + connections={ + [1]={ + id=36759, + orbit=0 + } + }, + group=1119, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Deadly Invocations", + orbit=3, + orbitIndex=1, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Envy" + }, + skill=29288, + stats={ + [1]="Invocation Spells have 50% increased Critical Damage Bonus" + } + }, + [29306]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + [1]={ + id=17668, + orbit=1 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.dds", + isNotable=true, + name="Chakra of Thought", + orbit=1, + orbitIndex=1, + recipe={ + [1]="Fear", + [2]="Disgust", + [3]="Guilt" + }, + 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=1155, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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.dds", + name="Armour", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=6, + orbitIndex=53, + skill=29323, + stats={ + [1]="20% increased Armour" + } + }, + [29328]={ + connections={ + [1]={ + id=43201, + orbit=0 + } + }, + group=732, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=150, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=2, + orbitIndex=7, + skill=29358, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [29361]={ + connections={ + }, + group=878, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=749, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Chill Magnitude", + orbit=4, + orbitIndex=42, + skill=29369, + stats={ + [1]="15% increased Magnitude of Chill you inflict" + } + }, + [29372]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern", + connections={ + [1]={ + id=7720, + orbit=0 + }, + [2]={ + id=63268, + orbit=0 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Sudden Infuriation", + orbit=5, + orbitIndex=60, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Isolation" + }, + 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=719, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Chill Duration", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + 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=676, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=709, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Electrocute Buildup", + orbit=7, + orbitIndex=3, + skill=29402, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [29408]={ + connections={ + [1]={ + id=31888, + orbit=0 + } + }, + group=1059, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + 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=647, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=4, + orbitIndex=48, + skill=29432, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [29447]={ + connections={ + [1]={ + id=11786, + orbit=2147483647 + } + }, + group=320, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=976, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=745, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=2, + orbitIndex=20, + skill=29502, + stats={ + [1]="3% increased Cast Speed" + } + }, + [29514]={ + connections={ + [1]={ + id=39431, + orbit=0 + } + }, + group=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + isNotable=true, + name="Cluster Bombs", + orbit=3, + orbitIndex=3, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Disgust" + }, + 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=1041, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1303, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="First Approach", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Paranoia", + [2]="Ire", + [3]="Fear" + }, + 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=922, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isSwitchable=true, + name="Accuracy", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=482, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + name="Spell Damage", + orbit=2, + orbitIndex=11, + skill=29652, + stats={ + [1]="10% increased Spell Damage" + } + }, + [29663]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=294, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Movement Mastery", + orbit=2, + orbitIndex=6, + skill=29663, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [29695]={ + connections={ + }, + group=775, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + id=31204, + name="Mana Regeneration", + stats={ + [1]="10% increased Mana Regeneration Rate" + } + } + }, + orbit=2, + orbitIndex=7, + skill=29695, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [29762]={ + connections={ + [1]={ + id=8460, + orbit=0 + }, + [2]={ + id=40328, + orbit=-2 + } + }, + group=190, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Guttural Roar", + orbit=3, + orbitIndex=1, + recipe={ + [1]="Paranoia", + [2]="Ire", + [3]="Disgust" + }, + 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=1096, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=29763, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [29788]={ + connections={ + [1]={ + id=46060, + orbit=-2 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=7, + orbitIndex=4, + skill=29788, + stats={ + [1]="12% increased amount of Life Leeched" + } + }, + [29800]={ + connections={ + [1]={ + id=50383, + orbit=0 + } + }, + group=719, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + name="Shocking Limit", + orbit=7, + orbitIndex=15, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Fear" + }, + skill=29800, + stats={ + [1]="+1 to maximum Lightning Infusions" + } + }, + [29843]={ + connections={ + [1]={ + id=35987, + orbit=0 + } + }, + group=935, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=1429, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Mark Effect", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=29871, + stats={ + [1]="12% increased Effect of your Mark Skills" + } + }, + [29881]={ + connections={ + [1]={ + id=25446, + orbit=0 + } + }, + group=390, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds", + isNotable=true, + name="Surging Beast", + orbit=1, + orbitIndex=8, + recipe={ + [1]="Disgust", + [2]="Ire", + [3]="Disgust" + }, + skill=29881, + stats={ + [1]="Gain Arcane Surge when you Shapeshift to Human form after", + [2]="being Shapeshifted for at least 8 seconds" + } + }, + [29899]={ + connections={ + [1]={ + id=19001, + orbit=0 + }, + [2]={ + id=6912, + orbit=0 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + isNotable=true, + name="Finish Them", + orbit=7, + orbitIndex=21, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Guilt" + }, + skill=29899, + stats={ + [1]="40% increased Culling Strike Threshold against Immobilised Enemies" + } + }, + [29914]={ + connections={ + [1]={ + id=46931, + orbit=0 + } + }, + group=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=991, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1377, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=291, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=15775, + orbit=0 + } + }, + group=1360, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + name="Volatility on Kill", + orbit=7, + orbitIndex=2, + skill=29990, + stats={ + [1]="5% chance to gain Volatility on Kill" + } + }, + [29993]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern", + connections={ + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.dds", + isOnlyImage=true, + name="Duration Mastery", + orbit=1, + orbitIndex=8, + skill=29993, + stats={ + } + }, + [30007]={ + connections={ + [1]={ + id=3188, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + name="Thorns", + orbit=1, + orbitIndex=7, + skill=30007, + stats={ + [1]="16% increased Thorns damage" + } + }, + [30040]={ + connections={ + [1]={ + id=56016, + orbit=0 + } + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=971, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=982, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Curse Effect", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + orbit=6, + orbitIndex=4, + skill=30071, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [30077]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=1298, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=30077, + stats={ + } + }, + [30082]={ + connections={ + [1]={ + id=43155, + orbit=0 + } + }, + group=887, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Crossbow Reload Speed", + orbit=0, + orbitIndex=0, + skill=30082, + stats={ + [1]="15% increased Crossbow Reload Speed" + } + }, + [30102]={ + connections={ + [1]={ + id=43944, + orbit=2147483647 + }, + [2]={ + id=53177, + orbit=0 + } + }, + group=1220, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + 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.dds", + isNotable=true, + name="Hulking Form", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + 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=855, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Spell Critical Chance", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + 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=389, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + name="Two Handed Damage", + orbit=3, + orbitIndex=12, + skill=30123, + stats={ + [1]="10% increased Damage with Two Handed Weapons" + } + }, + [30132]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern", + connections={ + [1]={ + id=58416, + orbit=2147483647 + }, + [2]={ + id=49130, + orbit=2147483647 + } + }, + group=1252, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + isNotable=true, + name="Wrapped Quiver", + orbit=7, + orbitIndex=15, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Envy" + }, + skill=30132, + stats={ + [1]="20% increased bonuses gained from Equipped Quiver" + } + }, + [30136]={ + connections={ + [1]={ + id=22626, + orbit=0 + } + }, + group=194, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1140, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block", + orbit=7, + orbitIndex=0, + skill=30143, + stats={ + [1]="5% increased Block chance" + } + }, + [30151]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=32637, + orbit=0 + } + }, + group=366, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Armour and Evasion", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=30151, + stats={ + [1]="15% increased Armour and Evasion Rating" + } + }, + [30197]={ + connections={ + [1]={ + id=52415, + orbit=0 + } + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1086, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Evasion Rating", + orbit=2, + orbitIndex=6, + skill=30210, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [30219]={ + connections={ + [1]={ + id=45177, + orbit=-2 + } + }, + group=574, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=1, + orbitIndex=10, + skill=30219, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [30233]={ + ascendancyName="Ritualist", + connections={ + }, + group=1495, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds", + isNotable=true, + name="As the Whispers Demand", + nodeOverlay={ + alloc="RitualistFrameLargeAllocated", + path="RitualistFrameLargeCanAllocate", + unalloc="RitualistFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=30233, + stats={ + [1]="Ritual Sacrifice can be used on yourself to remove 20% of maximum Life and grant a random Monster Modifier", + [2]="A maximum of one Modifer can be granted this way", + [3]="Grants Skill: Ritual Sacrifice" + } + }, + [30252]={ + connections={ + [1]={ + id=20049, + orbit=4 + }, + [2]={ + id=48135, + orbit=-4 + } + }, + group=968, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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.dds", + name="Attack Speed and Minion Attack Speed", + orbit=2, + orbitIndex=0, + skill=30258, + stats={ + [1]="3% increased Attack Speed", + [2]="Minions have 3% increased Attack Speed" + } + }, + [30265]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=565, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds", + name="Energy Shield", + nodeOverlay={ + alloc="Disciple of VarashtaFrameSmallAllocated", + path="Disciple of VarashtaFrameSmallCanAllocate", + unalloc="Disciple of VarashtaFrameSmallNormal" + }, + 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.dds", + name="Thorns", + orbit=2, + orbitIndex=2, + skill=30300, + stats={ + [1]="16% increased Thorns damage" + } + }, + [30334]={ + connections={ + [1]={ + id=9324, + orbit=0 + } + }, + group=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Ignite Duration", + orbit=3, + orbitIndex=0, + skill=30334, + stats={ + [1]="8% increased Ignite Duration on Enemies" + } + }, + [30341]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern", + connections={ + [1]={ + id=1995, + orbit=0 + }, + [2]={ + id=37946, + orbit=0 + } + }, + group=1102, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + isNotable=true, + name="Master Fletching", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Despair", + [3]="Disgust" + }, + 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=775, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=7, + orbitIndex=13, + skill=30346, + stats={ + [1]="+10 to maximum Energy Shield" + } + }, + [30371]={ + connections={ + [1]={ + id=27687, + orbit=-4 + } + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=1166, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Penetration", + orbit=2, + orbitIndex=23, + skill=30372, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [30390]={ + connections={ + [1]={ + id=33978, + orbit=3 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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=1095, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Succour", + orbit=2, + orbitIndex=3, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Guilt" + }, + skill=30392, + stats={ + [1]="30% increased Life Regeneration rate during Effect of any Life Flask" + } + }, + [30395]={ + connections={ + [1]={ + id=9221, + orbit=0 + } + }, + group=263, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds", + isNotable=true, + name="Howling Beast", + orbit=1, + orbitIndex=2, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Envy" + }, + skill=30395, + stats={ + [1]="Warcries inflict 3 Critical Weakness on Enemies" + } + }, + [30408]={ + connections={ + [1]={ + id=17906, + orbit=0 + } + }, + group=1369, + icon="Art/2DArt/SkillIcons/passives/Trap.dds", + isNotable=true, + name="Efficient Contraptions", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Guilt" + }, + skill=30408, + stats={ + [1]="Hazards have 15% chance to rearm after they are triggered" + } + }, + [30456]={ + connections={ + [1]={ + id=38044, + orbit=-5 + } + }, + group=1122, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + isNotable=true, + name="High Alert", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Ire", + [3]="Greed" + }, + 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=152, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=7, + orbitIndex=12, + skill=30457, + stats={ + [1]="15% increased Armour" + } + }, + [30459]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=1, + orbitIndex=3, + skill=30459, + stats={ + } + }, + [30463]={ + connections={ + [1]={ + id=58971, + orbit=-7 + }, + [2]={ + id=9968, + orbit=-6 + } + }, + group=1217, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + name="Ailment Threshold", + orbit=2, + orbitIndex=3, + skill=30463, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [30523]={ + connections={ + [1]={ + id=35492, + orbit=0 + } + }, + group=735, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Dead can Dance", + orbit=5, + orbitIndex=61, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Ire" + }, + 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=1015, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds", + isNotable=true, + name="Electrified Claw", + orbit=7, + orbitIndex=23, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Suffering" + }, + skill=30546, + stats={ + [1]="Gain 8% of Damage as Extra Lightning Damage while Shapeshifted" + } + }, + [30553]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern", + connections={ + }, + group=151, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=30553, + stats={ + } + }, + [30554]={ + connections={ + [1]={ + id=29611, + orbit=0 + } + }, + group=149, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=857, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1064, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + isNotable=true, + name="Inner Faith", + orbit=2, + orbitIndex=18, + recipe={ + [1]="Envy", + [2]="Greed", + [3]="Isolation" + }, + 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=1341, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=970, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=6, + skill=30634, + stats={ + [1]="15% 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=1239, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=269, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=966, + icon="Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds", + isNotable=true, + isSwitchable=true, + name="Vile Wounds", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/eagleeye.dds", + 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=404, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds", + name="Reduced Projectile Speed", + orbit=2, + orbitIndex=8, + skill=30701, + stats={ + [1]="6% reduced Projectile Speed" + } + }, + [30704]={ + connections={ + [1]={ + id=22045, + orbit=0 + } + }, + group=563, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=644, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + isNotable=true, + name="Entropic Incarnation", + orbit=2, + orbitIndex=2, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Envy" + }, + 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=1398, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=13, + skill=30736, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [30748]={ + connections={ + [1]={ + id=21801, + orbit=0 + } + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds", + isNotable=true, + name="Controlled Chaos", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Envy", + [3]="Guilt" + }, + 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.dds", + 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=2147483647 + } + }, + group=294, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + name="Movement Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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 + } + }, + group=1379, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=985, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=924, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=592, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=2, + skill=30834, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [30839]={ + connections={ + [1]={ + id=35671, + orbit=-3 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=1149, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=433, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds", + 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.dds", + isNotable=true, + name="Harmony Within", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + 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=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=255, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=2, + orbitIndex=14, + skill=30959, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [30973]={ + connections={ + [1]={ + id=49320, + orbit=0 + } + }, + group=1370, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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=564, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=427, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + name="Infusion Chance", + orbit=2, + orbitIndex=10, + skill=30985, + stats={ + [1]="5% chance when collecting an Elemental Infusion to gain an", + [2]="additional Elemental Infusion of the same type" + } + }, + [30990]={ + connections={ + [1]={ + id=58939, + orbit=0 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=498, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds", + isNotable=true, + name="Gem Studded", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=30996, + stats={ + [1]="For each colour of Socketed Support Gem that is most numerous, gain:", + [2]="Red: Hits against you have no Critical Damage Bonus", + [3]="Blue: Skills have 30% less cost", + [4]="Green: 40% less Movement Speed Penalty from using Skills while Moving" + } + }, + [31010]={ + connections={ + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + name="Shapeshifted Energy Shield Delay", + orbit=4, + orbitIndex=23, + skill=31010, + stats={ + [1]="15% faster start of Energy Shield Recharge while Shapeshifted" + } + }, + [31017]={ + connections={ + [1]={ + id=26339, + orbit=0 + } + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=3, + orbitIndex=0, + skill=31017, + stats={ + [1]="15% increased Totem Damage" + } + }, + [31037]={ + connections={ + [1]={ + id=34866, + orbit=0 + } + }, + group=791, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + name="Remnant Effect", + orbit=2, + orbitIndex=22, + skill=31037, + stats={ + [1]="Remnants have 10% increased effect" + } + }, + [31039]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=1006, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=31039, + stats={ + } + }, + [31055]={ + connections={ + [1]={ + id=18969, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Bow Speed", + orbit=2, + orbitIndex=19, + skill=31055, + stats={ + [1]="3% increased Attack Speed with Bows" + } + }, + [31112]={ + connections={ + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds", + isNotable=true, + name="Grasp of the Void", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + orbit=8, + orbitIndex=24, + skill=31116, + stats={ + [1]="Grants Skill: Void Illusion" + } + }, + [31129]={ + connections={ + [1]={ + id=24889, + orbit=0 + } + }, + group=1280, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Lifelong Friend", + orbit=1, + orbitIndex=1, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Ire" + }, + skill=31129, + stats={ + [1]="Minions Revive 35% faster if all your Minions are Companions" + } + }, + [31159]={ + connections={ + [1]={ + id=46017, + orbit=0 + } + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration while Stationary", + orbit=7, + orbitIndex=20, + skill=31159, + stats={ + [1]="15% increased Life Regeneration Rate while stationary" + } + }, + [31172]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Falcon Technique", + orbit=5, + orbitIndex=51, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Despair" + }, + skill=31172, + stats={ + [1]="1% increased Attack Speed per 25 Dexterity" + } + }, + [31175]={ + connections={ + [1]={ + id=20119, + orbit=0 + } + }, + group=644, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Grip of Evil", + orbit=2, + orbitIndex=22, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Ire" + }, + skill=31175, + stats={ + [1]="Minions have 40% increased Critical Damage Bonus" + } + }, + [31189]={ + connections={ + [1]={ + id=28863, + orbit=0 + } + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + isNotable=true, + name="Unexpected Finesse", + orbit=4, + orbitIndex=12, + recipe={ + [1]="Despair", + [2]="Greed", + [3]="Isolation" + }, + skill=31189, + stats={ + [1]="10% increased Attack Damage", + [2]="30% increased Accuracy Rating while moving" + } + }, + [31223]={ + ascendancyName="Blood Mage", + connections={ + }, + group=931, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds", + isNotable=true, + name="Crimson Power", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + 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=432, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=2, + orbitIndex=4, + skill=31273, + stats={ + [1]="10% increased Melee Damage" + } + }, + [31284]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + [1]={ + id=21380, + orbit=0 + } + }, + group=1160, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=1, + orbitIndex=3, + skill=31284, + stats={ + } + }, + [31286]={ + connections={ + [1]={ + id=16140, + orbit=0 + } + }, + group=1289, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical", + orbit=3, + orbitIndex=14, + skill=31286, + stats={ + [1]="10% increased Physical Damage" + } + }, + [31292]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern", + connections={ + }, + group=512, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds", + isOnlyImage=true, + name="Mace Mastery", + orbit=0, + orbitIndex=0, + skill=31292, + stats={ + } + }, + [31295]={ + connections={ + [1]={ + id=9352, + orbit=0 + } + }, + group=134, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=586, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Slow Burn", + orbit=2, + orbitIndex=18, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Paranoia" + }, + skill=31326, + stats={ + [1]="20% increased Ignite Magnitude", + [2]="20% increased Ignite Duration on Enemies" + } + }, + [31345]={ + connections={ + [1]={ + id=55400, + orbit=0 + } + }, + group=1166, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Penetration", + orbit=2, + orbitIndex=11, + skill=31345, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [31364]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern", + connections={ + }, + group=1329, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.dds", + isNotable=true, + name="Primal Protection", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Paranoia" + }, + skill=31364, + stats={ + [1]="40% increased Charm Effect Duration", + [2]="40% increased Charm Charges gained" + } + }, + [31366]={ + connections={ + [1]={ + id=3843, + orbit=4 + } + }, + group=1284, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Parry Stun Buildup", + orbit=3, + orbitIndex=17, + skill=31366, + stats={ + [1]="Parry has 20% increased Stun Buildup" + } + }, + [31370]={ + connections={ + [1]={ + id=32448, + orbit=2147483647 + } + }, + group=588, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour and Applies to Lightning Damage", + orbit=2, + orbitIndex=8, + 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=184, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Vocal Empowerment", + orbit=4, + orbitIndex=63, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Despair" + }, + skill=31373, + stats={ + [1]="Warcries Empower an additional Attack" + } + }, + [31388]={ + connections={ + [1]={ + id=51394, + orbit=0 + } + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=863, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=431, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1210, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + isNotable=true, + name="Catalysis", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Paranoia" + }, + 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=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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=951, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + name="Seal Generation Frequency", + orbit=2, + orbitIndex=4, + skill=31517, + stats={ + [1]="Skills Supported by Unleash have 10% increased Seal gain frequency" + } + }, + [31545]={ + connections={ + [1]={ + id=8171, + orbit=0 + }, + [2]={ + id=3446, + orbit=0 + } + }, + group=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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=136, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Increased Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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=442, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Shield Defences", + orbit=3, + orbitIndex=0, + skill=31609, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [31626]={ + connections={ + [1]={ + id=50516, + orbit=0 + } + }, + group=961, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1101, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=7, + skill=31630, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [31644]={ + connections={ + [1]={ + id=14739, + orbit=0 + }, + [2]={ + id=34058, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=23, + skill=31644, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [31647]={ + connections={ + [1]={ + id=23305, + orbit=0 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + 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=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=5, + orbitIndex=0, + skill=31650, + stats={ + [1]="15% increased Totem Damage" + } + }, + [31673]={ + connections={ + [1]={ + id=48649, + orbit=0 + } + }, + group=500, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + name="Energy Shield Delay while Shapeshifted", + orbit=2, + orbitIndex=14, + skill=31673, + stats={ + [1]="15% faster start of Energy Shield Recharge while Shapeshifted" + } + }, + [31692]={ + connections={ + [1]={ + id=46197, + orbit=0 + } + }, + group=1250, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=3, + skill=31692, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [31697]={ + connections={ + [1]={ + id=51303, + orbit=0 + } + }, + group=427, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + name="Infusion Duration", + orbit=2, + orbitIndex=4, + skill=31697, + stats={ + [1]="10% increased Elemental Infusion duration" + } + }, + [31724]={ + connections={ + [1]={ + id=2074, + orbit=0 + } + }, + group=405, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + isNotable=true, + name="Iron Slippers", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Guilt" + }, + skill=31724, + stats={ + [1]="+3 to Armour per 1 Item Energy Shield on Equipped Boots", + [2]="10% reduced Slowing Potency of Debuffs on You" + } + }, + [31745]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=939, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + isNotable=true, + name="Lockdown", + orbit=4, + orbitIndex=48, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Despair" + }, + 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.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=136, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds", + isOnlyImage=true, + name="Physical Mastery", + orbit=6, + orbitIndex=9, + skill=31757, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [31763]={ + connections={ + [1]={ + id=43155, + orbit=0 + } + }, + group=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=1346, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=534, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Resurging Archon", + orbit=7, + orbitIndex=1, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Disgust" + }, + skill=31773, + stats={ + [1]="Archon recovery period expires 25% faster" + } + }, + [31778]={ + connections={ + [1]={ + id=2344, + orbit=-2 + } + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + 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", + connections={ + }, + group=206, + icon="Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds", + isOnlyImage=true, + name="Power Charge Mastery", + orbit=0, + orbitIndex=0, + skill=31779, + stats={ + } + }, + [31805]={ + connections={ + [1]={ + id=44461, + orbit=-3 + } + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Increased Duration", + orbit=3, + orbitIndex=15, + skill=31805, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [31825]={ + connections={ + [1]={ + id=16142, + orbit=2147483647 + } + }, + group=1384, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=1280, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Long Distance Relationship", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Paranoia" + }, + 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=259, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + name="Thorns Ignore Armour", + orbit=7, + orbitIndex=0, + skill=31848, + stats={ + [1]="Thorns Damage has 25% chance to ignore Enemy Armour" + } + }, + [31855]={ + connections={ + }, + group=1031, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1059, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + 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=610, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=539, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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=484, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=982, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Pierce Chance", + orbit=7, + orbitIndex=15, + skill=31918, + stats={ + [1]="15% chance to Pierce an Enemy" + } + }, + [31925]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + [1]={ + id=24767, + orbit=5 + } + }, + group=406, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + isNotable=true, + name="Warding Fetish", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Envy" + }, + 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=1001, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=700, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Cold Damage and Energy Shield Recharge Rate", + orbit=3, + orbitIndex=12, + skill=31943, + stats={ + [1]="8% increased Energy Shield Recharge Rate", + [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=903, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=12, + skill=31950, + stats={ + [1]="+5 to any Attribute" + } + }, + [31977]={ + connections={ + [1]={ + id=4828, + orbit=0 + }, + [2]={ + id=10314, + orbit=6 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=5, + orbitIndex=36, + skill=31977, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [31991]={ + connections={ + [1]={ + id=36070, + orbit=0 + } + }, + group=1046, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=814, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + 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", + connections={ + }, + group=1091, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=32040, + stats={ + } + }, + [32054]={ + connections={ + [1]={ + id=62153, + orbit=0 + } + }, + group=1013, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=134, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Primal Growth", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Fear" + }, + 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=390, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=1032, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=32096, + stats={ + } + }, + [32123]={ + connections={ + [1]={ + id=54678, + orbit=0 + } + }, + group=1163, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Shock Chance", + orbit=3, + orbitIndex=4, + skill=32123, + stats={ + [1]="15% increased chance to Shock" + } + }, + [32135]={ + connections={ + [1]={ + id=12322, + orbit=5 + }, + [2]={ + id=16484, + orbit=-9 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + name="Flask Charges Gained", + orbit=4, + orbitIndex=12, + skill=32135, + stats={ + [1]="10% increased Flask Charges gained" + } + }, + [32148]={ + connections={ + }, + group=169, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + isNotable=true, + name="Rattling Ball", + orbit=2, + orbitIndex=2, + skill=32148, + stats={ + [1]="25% increased Damage with Flails" + } + }, + [32151]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connections={ + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + isNotable=true, + name="Crystalline Resistance", + orbit=4, + orbitIndex=60, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Despair" + }, + skill=32151, + stats={ + [1]="+1% to all Maximum Elemental Resistances if you have at", + [2]="least 5 Red, Green and Blue Support Gems Socketed" + } + }, + [32155]={ + connections={ + [1]={ + id=25700, + orbit=4 + } + }, + group=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=1273, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=32183, + stats={ + [1]="+5 to any Attribute" + } + }, + [32186]={ + connections={ + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + 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=551, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=788, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.dds", + isOnlyImage=true, + name="Duration Mastery", + orbit=2, + orbitIndex=21, + skill=32233, + stats={ + } + }, + [32239]={ + connections={ + [1]={ + id=9009, + orbit=-3 + } + }, + group=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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", + connections={ + }, + group=1156, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=32241, + stats={ + } + }, + [32258]={ + connections={ + [1]={ + id=19644, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=346, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=7, + orbitIndex=15, + skill=32271, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [32274]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=863, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=32274, + stats={ + } + }, + [32278]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=486, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=7, + orbitIndex=11, + skill=32278, + stats={ + } + }, + [32301]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + [1]={ + id=50277, + orbit=0 + } + }, + group=1248, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Frazzled", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Paranoia" + }, + 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=534, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Archon Duration", + orbit=3, + orbitIndex=16, + skill=32309, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [32319]={ + connections={ + [1]={ + id=33542, + orbit=0 + } + }, + group=1417, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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 + } + }, + group=203, + icon="Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds", + 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", + [2]="Triple Attribute requirements of Martial Weapons", + [3]="Inherent Life granted by Strength is halved" + } + }, + [32353]={ + connections={ + [1]={ + id=41180, + orbit=0 + } + }, + group=325, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Swift Claw", + orbit=3, + orbitIndex=23, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Despair" + }, + skill=32353, + stats={ + [1]="10% increased Skill Speed while Shapeshifted" + } + }, + [32354]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern", + connections={ + [1]={ + id=6626, + orbit=-2 + } + }, + group=649, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + isNotable=true, + name="Defiance", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Ire" + }, + skill=32354, + stats={ + [1]="120% increased Armour and Evasion Rating when on Low Life" + } + }, + [32364]={ + connections={ + [1]={ + id=32858, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Ignite Magnitude", + orbit=2, + orbitIndex=7, + skill=32364, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [32404]={ + connections={ + [1]={ + id=15618, + orbit=6 + }, + [2]={ + id=5501, + orbit=0 + }, + [3]={ + id=22290, + orbit=-6 + } + }, + group=744, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=579, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=696, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=2, + orbitIndex=18, + skill=32427, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [32436]={ + connections={ + [1]={ + id=5332, + orbit=2147483647 + } + }, + group=796, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + name="Intelligence", + orbit=2, + orbitIndex=14, + skill=32436, + stats={ + [1]="+8 to Intelligence" + } + }, + [32438]={ + connections={ + [1]={ + id=55149, + orbit=4 + } + }, + group=1216, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=32438, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [32442]={ + connections={ + [1]={ + id=2361, + orbit=0 + } + }, + group=1397, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=588, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Shockproof", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Disgust" + }, + skill=32448, + stats={ + [1]="+30% of Armour also applies to Lightning Damage", + [2]="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=142, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=32474, + stats={ + [1]="+5 to any Attribute" + } + }, + [32507]={ + connections={ + }, + group=654, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + isNotable=true, + name="Cut to the Bone", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Envy", + [3]="Isolation" + }, + 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", + connections={ + }, + group=1039, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=32509, + stats={ + } + }, + [32523]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + [1]={ + id=1546, + orbit=0 + } + }, + group=609, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=32523, + stats={ + } + }, + [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.dds", + isAscendancyStart=true, + name="Titan", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=9, + orbitIndex=96, + skill=32534, + stats={ + } + }, + [32543]={ + connections={ + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Unhindered", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Paranoia" + }, + 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=938, + icon="Art/2DArt/SkillIcons/passives/Harrier.dds", + 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=165, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + name="Attack and Spell Damage", + orbit=2, + orbitIndex=14, + skill=32549, + stats={ + [1]="8% increased Spell Damage", + [2]="8% increased Attack Damage" + } + }, + [32559]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=46535, + orbit=0 + } + }, + group=274, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=32559, + stats={ + [1]="6% increased Cooldown Recovery Rate" + } + }, + [32560]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=16249, + orbit=0 + } + }, + group=296, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Presence Area", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=32560, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [32561]={ + connections={ + [1]={ + id=51825, + orbit=0 + } + }, + group=720, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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=645, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=239, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=369, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=2, + orbitIndex=12, + skill=32600, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [32637]={ + ascendancyName="Tactician", + connections={ + }, + group=365, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds", + isNotable=true, + name="Stay Light, Use Cover", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + 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=1230, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Hunting Companion", + orbit=7, + orbitIndex=18, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Ire" + }, + skill=32655, + stats={ + [1]="20% increased Culling Strike Threshold", + [2]="Culling Strike against Beasts while your Companion is in your Presence" + } + }, + [32660]={ + connections={ + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=21, + skill=32660, + stats={ + [1]="10% increased Critical Hit Chance if you have Killed Recently" + } + }, + [32664]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds", + isNotable=true, + name="Chakra of Breathing", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Guilt" + }, + skill=32664, + stats={ + [1]="1% increased Energy Shield Recharge Rate per 4 Dexterity", + [2]="20% increased Evasion Rating while you have Energy Shield" + } + }, + [32672]={ + connections={ + [1]={ + id=4031, + orbit=0 + }, + [2]={ + id=9928, + orbit=0 + } + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=2147483647 + } + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds", + name="Energy Shield Recharge and Delay", + orbit=7, + orbitIndex=7, + skill=32681, + stats={ + [1]="8% increased Energy Shield Recharge Rate", + [2]="8% faster start of Energy Shield Recharge" + } + }, + [32683]={ + connections={ + [1]={ + id=53149, + orbit=0 + }, + [2]={ + id=54413, + orbit=0 + } + }, + group=972, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Infernalist", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=9, + orbitIndex=0, + skill=32699, + stats={ + } + }, + [32701]={ + connections={ + [1]={ + id=21746, + orbit=0 + }, + [2]={ + id=26598, + orbit=0 + }, + [3]={ + id=22115, + orbit=0 + }, + [4]={ + id=43877, + orbit=0 + } + }, + group=1041, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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={ + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds", + isNotable=true, + name="Barya of Navira", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=3, + orbitIndex=0, + skill=32705, + stats={ + [1]="Grants Skill: Navira, the Last Mirage" + } + }, + [32721]={ + connections={ + [1]={ + id=10011, + orbit=0 + } + }, + group=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Distracted Target", + orbit=7, + orbitIndex=11, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Despair" + }, + skill=32721, + stats={ + [1]="30% increased Critical Hit Chance against Blinded Enemies" + } + }, + [32727]={ + connections={ + }, + group=654, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=473, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + name="Physical Damage", + orbit=0, + orbitIndex=0, + skill=32745, + stats={ + [1]="10% increased Physical Damage" + } + }, + [32763]={ + connections={ + }, + group=1399, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=6, + skill=32763, + stats={ + } + }, + [32768]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=8107, + orbit=0 + } + }, + group=276, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Glory Generation", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Darkness", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=9, + orbitIndex=55, + skill=32771, + stats={ + [1]="10% increased maximum Darkness" + } + }, + [32777]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=2, + orbitIndex=15, + skill=32777, + stats={ + } + }, + [32799]={ + connections={ + [1]={ + id=23961, + orbit=0 + }, + [2]={ + id=32096, + orbit=0 + } + }, + group=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Captivating Companionship", + orbit=3, + orbitIndex=1, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Greed" + }, + skill=32799, + stats={ + [1]="5% of Damage from Hits is taken from your Damageable Companion's Life before you", + [2]="20% increased Defences while your Companion is in your Presence" + } + }, + [32813]={ + connections={ + [1]={ + id=59600, + orbit=-7 + }, + [2]={ + id=35809, + orbit=0 + } + }, + group=1147, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=968, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + name="Charm Charges", + orbit=7, + orbitIndex=6, + skill=32818, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [32845]={ + connections={ + [1]={ + id=64819, + orbit=4 + } + }, + group=92, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Fire Damage", + orbit=5, + orbitIndex=36, + skill=32845, + stats={ + [1]="10% increased Fire Damage" + } + }, + [32847]={ + connections={ + }, + group=501, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=3605, + orbit=0 + }, + [2]={ + id=10987, + orbit=9 + } + }, + group=392, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + 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=1351, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Dread Engineer's Concoction", + orbit=3, + orbitIndex=9, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Guilt" + }, + skill=32858, + stats={ + [1]="35% increased Magnitude of Ignite against Poisoned enemies" + } + }, + [32859]={ + connections={ + [1]={ + id=15114, + orbit=-4 + } + }, + group=449, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=677, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=1201, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection and Evasion", + orbit=7, + orbitIndex=7, + skill=32891, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 3% of Evasion Rating" + } + }, + [32896]={ + connections={ + }, + group=1222, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=1321, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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.dds", + isNotable=true, + name="Entwined Realities", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + 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=440, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=487, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Ichlotl's Inferno", + orbit=7, + orbitIndex=21, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Paranoia" + }, + 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=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1020, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Preservation", + orbit=3, + orbitIndex=17, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Ire" + }, + skill=32951, + stats={ + [1]="25% increased Skill Effect Duration" + } + }, + [32952]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=353, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds", + isMultipleChoiceOption=true, + name="Bolstering Implants", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=32952, + stats={ + [1]="+2 to Level of all Skills with a Strength requirement" + } + }, + [32976]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connections={ + [1]={ + id=14428, + orbit=0 + }, + [2]={ + id=38776, + orbit=0 + }, + [3]={ + id=34202, + orbit=0 + } + }, + group=724, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + isNotable=true, + name="Gem Enthusiast", + orbit=4, + orbitIndex=48, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Suffering" + }, + 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=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=290, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=908, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=7, + orbitIndex=22, + skill=33053, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [33059]={ + connections={ + [1]={ + id=2841, + orbit=0 + } + }, + group=894, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Back in Action", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Greed" + }, + skill=33059, + stats={ + [1]="80% increased Stun Recovery" + } + }, + [33080]={ + connections={ + [1]={ + id=43254, + orbit=0 + } + }, + group=996, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=1300, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Effervescent", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Envy" + }, + skill=33093, + stats={ + [1]="4% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + } + }, + [33099]={ + connections={ + [1]={ + id=25029, + orbit=0 + } + }, + group=1208, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.dds", + isNotable=true, + name="Hunter's Talisman", + orbit=4, + orbitIndex=27, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Paranoia" + }, + skill=33099, + stats={ + [1]="+1 Charm Slot" + } + }, + [33112]={ + connections={ + [1]={ + id=10881, + orbit=-7 + } + }, + group=1021, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + 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=283, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Life", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=30732, + name="Life", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=819, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=4 + } + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + name="Channelling Stun Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=4, + orbitIndex=9, + skill=33203, + stats={ + [1]="25% increased Stun Threshold while Channelling" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [33209]={ + connections={ + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + }, + group=695, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Deep Wounds", + orbit=2, + orbitIndex=10, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Paranoia" + }, + 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", + connections={ + [1]={ + id=26331, + orbit=0 + }, + [2]={ + id=19722, + orbit=0 + }, + [3]={ + id=4959, + orbit=0 + } + }, + group=1192, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=33221, + stats={ + } + }, + [33225]={ + connections={ + }, + group=879, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.dds", + 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=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Haemorrhaging Cuts", + orbit=4, + orbitIndex=60, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Paranoia" + }, + skill=33229, + stats={ + [1]="Enemies you inflict Bleeding on cannot Regenerate Life" + } + }, + [33240]={ + connections={ + [1]={ + id=14505, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Lord of Horrors", + orbit=5, + orbitIndex=71, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Ire" + }, + skill=33240, + stats={ + [1]="12% increased Reservation Efficiency of Minion Skills" + } + }, + [33242]={ + connections={ + [1]={ + id=15838, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + 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", + connections={ + }, + group=364, + icon="Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds", + isOnlyImage=true, + name="Rage Mastery", + orbit=0, + orbitIndex=0, + skill=33244, + stats={ + } + }, + [33245]={ + connections={ + [1]={ + id=9151, + orbit=0 + }, + [2]={ + id=31918, + orbit=-7 + }, + [3]={ + id=45331, + orbit=7 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=1, + orbitIndex=3, + skill=33245, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [33254]={ + connections={ + }, + group=726, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + name="Spell Damage", + orbit=2, + orbitIndex=1, + skill=33254, + stats={ + [1]="10% increased Spell Damage" + } + }, + [33340]={ + connections={ + [1]={ + id=51267, + orbit=0 + } + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + 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=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=4, + orbitIndex=14, + skill=33345, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [33348]={ + connections={ + }, + group=1307, + icon="Art/2DArt/SkillIcons/passives/auraareaofeffect.dds", + 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=1157, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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={ + }, + group=652, + icon="Art/2DArt/SkillIcons/passives/vaalpact.dds", + isKeystone=true, + name="Vaal Pact", + orbit=0, + orbitIndex=0, + skill=33369, + stats={ + [1]="Life Leech is Instant", + [2]="Cannot use Life Flasks" + } + }, + [33391]={ + connections={ + [1]={ + id=56330, + orbit=0 + }, + [2]={ + id=49661, + orbit=0 + } + }, + group=1076, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=141, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + name="Flail Damage", + orbit=5, + orbitIndex=15, + skill=33393, + stats={ + [1]="10% increased Damage with Flails" + } + }, + [33397]={ + connections={ + [1]={ + id=39594, + orbit=0 + } + }, + group=530, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=2, + orbitIndex=21, + skill=33397, + stats={ + [1]="12% increased Fire Damage" + } + }, + [33400]={ + connections={ + }, + group=996, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + 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=117, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Defences", + orbit=4, + orbitIndex=54, + skill=33402, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [33404]={ + connections={ + [1]={ + id=57821, + orbit=0 + } + }, + group=1264, + icon="Art/2DArt/SkillIcons/passives/EternalYouth.dds", + isKeystone=true, + name="Eternal Youth", + orbit=0, + orbitIndex=0, + skill=33404, + stats={ + [1]="Life Recharges instead of Energy Shield", + [2]="50% less Life Recovery from Flasks" + } + }, + [33408]={ + connections={ + }, + group=119, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds", + 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=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=2147483647 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Cast and Attack Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1140, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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=174, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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 + }, + [4]={ + id=28859, + orbit=0 + } + }, + group=1271, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=33514, + stats={ + } + }, + [33518]={ + connections={ + [1]={ + id=63579, + orbit=6 + } + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + name="Slow Effect on You", + orbit=4, + orbitIndex=34, + skill=33518, + stats={ + [1]="8% reduced Slowing Potency of Debuffs on You" + } + }, + [33542]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern", + connections={ + }, + group=1417, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Quick Fingers", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Envy" + }, + skill=33542, + stats={ + [1]="+24% Surpassing chance to fire an additional Arrow" + } + }, + [33556]={ + connections={ + [1]={ + id=55473, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + 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=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds", + isNotable=true, + isSwitchable=true, + name="Soulless Form", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + } + } + }, + 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=1280, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Unspoken Bond", + orbit=3, + orbitIndex=7, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Envy" + }, + 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", + connections={ + }, + group=131, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=33590, + stats={ + } + }, + [33596]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern", + connections={ + }, + group=838, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=33596, + stats={ + } + }, + [33601]={ + connections={ + [1]={ + id=35708, + orbit=-2 + }, + [2]={ + id=2863, + orbit=0 + } + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=2, + orbitIndex=20, + skill=33601, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [33604]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=33604, + stats={ + } + }, + [33612]={ + connections={ + [1]={ + id=8983, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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", + connections={ + [1]={ + id=39990, + orbit=0 + } + }, + group=571, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.dds", + isOnlyImage=true, + name="Duration Mastery", + orbit=2, + orbitIndex=10, + skill=33618, + stats={ + } + }, + [33639]={ + connections={ + [1]={ + id=8782, + orbit=0 + } + }, + group=706, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + 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=1267, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=183, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=433, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + isNotable=true, + name="Focused Channel", + orbit=7, + orbitIndex=5, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Fear" + }, + 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=1438, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Skill Speed", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=9, + orbitIndex=86, + skill=33736, + stats={ + [1]="4% increased Skill Speed" + } + }, + [33751]={ + connections={ + [1]={ + id=12451, + orbit=7 + } + }, + group=1034, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=525, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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.dds", + isAscendancyStart=true, + name="Brute", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + orbit=6, + orbitIndex=48, + skill=33812, + stats={ + } + }, + [33815]={ + connections={ + [1]={ + id=35644, + orbit=6 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Duration", + orbit=2, + orbitIndex=5, + skill=33815, + stats={ + [1]="10% increased Poison Duration" + } + }, + [33823]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=1066, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=33823, + stats={ + } + }, + [33824]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=42253, + orbit=0 + } + }, + group=63, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds", + name="Defences", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=33824, + stats={ + [1]="10% increased Defences" + } + }, + [33829]={ + connections={ + [1]={ + id=18737, + orbit=0 + } + }, + group=263, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=7, + orbitIndex=2, + skill=33829, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [33830]={ + connections={ + [1]={ + id=35031, + orbit=-2 + } + }, + group=1404, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds", + name="Life Regeneration", + orbit=2, + orbitIndex=5, + skill=33830, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [33838]={ + connections={ + [1]={ + id=46182, + orbit=-4 + } + }, + group=1082, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=1046, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Speed", + orbit=4, + orbitIndex=51, + skill=33848, + stats={ + [1]="8% increased Projectile Speed" + } + }, + [33866]={ + connections={ + [1]={ + id=49220, + orbit=0 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=2, + orbitIndex=4, + skill=33866, + stats={ + [1]="8% increased Attack Damage" + } + }, + [33887]={ + connections={ + [1]={ + id=61432, + orbit=0 + } + }, + group=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Full Salvo", + orbit=4, + orbitIndex=7, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Greed" + }, + skill=33887, + stats={ + [1]="25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds" + } + }, + [33914]={ + connections={ + [1]={ + id=21935, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield and Mana Regeneration", + orbit=3, + orbitIndex=2, + skill=33914, + stats={ + [1]="10% increased maximum Energy Shield", + [2]="6% increased Mana Regeneration Rate" + } + }, + [33922]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + [1]={ + id=6950, + orbit=0 + } + }, + group=841, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Stripped Defences", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Disgust" + }, + skill=33922, + stats={ + [1]="Exposure you inflict lowers Resistances by an additional 5%" + } + }, + [33939]={ + connections={ + [1]={ + id=62034, + orbit=0 + } + }, + group=143, + icon="Art/2DArt/SkillIcons/passives/coldresist.dds", + 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=987, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=800, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + name="Attack Damage and Accuracy", + orbit=4, + orbitIndex=18, + skill=33974, + stats={ + [1]="6% increased Attack Damage", + [2]="5% increased Accuracy Rating" + } + }, + [33978]={ + connections={ + [1]={ + id=31609, + orbit=7 + }, + [2]={ + id=62581, + orbit=0 + } + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + isNotable=true, + name="Unstoppable Barrier", + orbit=7, + orbitIndex=21, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Ire" + }, + skill=33978, + stats={ + [1]="10% increased Block chance", + [2]="15% reduced Slowing Potency of Debuffs on You" + } + }, + [33979]={ + connections={ + }, + group=1074, + icon="Art/2DArt/SkillIcons/passives/KeystoneConduit.dds", + 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=775, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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 + } + }, + group=1348, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=787, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=670, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=768, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=987, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1140, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block Recovery", + orbit=7, + orbitIndex=12, + skill=34076, + stats={ + [1]="25% increased Block Recovery" + } + }, + [34084]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern", + connections={ + }, + group=604, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.dds", + isOnlyImage=true, + name="Duration Mastery", + orbit=1, + orbitIndex=4, + skill=34084, + stats={ + } + }, + [34090]={ + connections={ + [1]={ + id=14655, + orbit=7 + }, + [2]={ + id=64870, + orbit=-7 + } + }, + group=356, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=482, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + name="Spell Damage", + orbit=3, + orbitIndex=23, + skill=34096, + stats={ + [1]="12% increased Spell Damage" + } + }, + [34136]={ + connections={ + [1]={ + id=29479, + orbit=-5 + } + }, + group=976, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=177, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=932, + icon="Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds", + isNotable=true, + name="Crashing Wave", + orbit=7, + orbitIndex=22, + skill=34168, + stats={ + [1]="36% increased Damage if you've dealt a Critical Hit in the past 8 seconds" + } + }, + [34181]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=45422, + orbit=0 + } + }, + group=408, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Maximum Rage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Plant Skill Damage", + orbit=4, + orbitIndex=60, + skill=34187, + stats={ + [1]="12% increased Damage with Plant Skills" + } + }, + [34199]={ + connections={ + }, + group=735, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1093, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=724, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength", + orbit=3, + orbitIndex=18, + skill=34202, + stats={ + [1]="+8 to Strength" + } + }, + [34207]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds", + isNotable=true, + name="Barya of Ruzhan", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + 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=388, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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=938, + icon="Art/2DArt/SkillIcons/passives/Harrier.dds", + 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=522, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=3, + orbitIndex=20, + skill=34248, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [34290]={ + connections={ + [1]={ + id=57832, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=1059, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Conservative Casting", + orbit=2, + orbitIndex=22, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Ire" + }, + skill=34300, + stats={ + [1]="20% increased Mana Regeneration Rate", + [2]="15% increased Mana Cost Efficiency" + } + }, + [34305]={ + connections={ + [1]={ + id=31545, + orbit=0 + } + }, + group=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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=444, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds", + isNotable=true, + name="Personal Touch", + orbit=3, + orbitIndex=19, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Ire" + }, + 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.dds", + isNotable=true, + name="The Lesser Harm", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + 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=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + isNotable=true, + name="One with the River", + orbit=6, + orbitIndex=3, + recipe={ + [1]="Guilt", + [2]="Paranoia", + [3]="Isolation" + }, + skill=34316, + stats={ + [1]="10% chance to Daze on Hit", + [2]="30% increased Defences 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", + connections={ + }, + group=255, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=34317, + stats={ + } + }, + [34324]={ + connections={ + [1]={ + id=56838, + orbit=-5 + }, + [2]={ + id=52445, + orbit=0 + } + }, + group=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + isNotable=true, + name="Spectral Ward", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Suffering" + }, + skill=34324, + stats={ + [1]="+1 to Maximum Energy Shield per 12 Item Evasion Rating on Equipped Body Armour" + } + }, + [34327]={ + connections={ + [1]={ + id=32078, + orbit=0 + } + }, + group=390, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Arcane Surge Spell Damage", + orbit=7, + orbitIndex=17, + skill=34327, + stats={ + [1]="15% increased Spell Damage while you have Arcane Surge" + } + }, + [34340]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + [1]={ + id=17294, + orbit=0 + } + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + isNotable=true, + name="Mass Rejuvenation", + orbit=4, + orbitIndex=48, + recipe={ + [1]="Ire", + [2]="Paranoia", + [3]="Greed" + }, + 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=58090, + orbit=7 + }, + [2]={ + id=57710, + orbit=0 + } + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + name="Life Recoup", + orbit=7, + orbitIndex=14, + skill=34367, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [34375]={ + connections={ + [1]={ + id=48745, + orbit=-2 + } + }, + group=446, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Defences", + orbit=2, + orbitIndex=8, + skill=34375, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [34401]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern", + connections={ + }, + group=1328, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Blind Mastery", + orbit=0, + orbitIndex=0, + skill=34401, + stats={ + } + }, + [34412]={ + connections={ + [1]={ + id=25915, + orbit=0 + } + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + name="Shapeshifted Damage", + orbit=2, + orbitIndex=7, + skill=34412, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [34415]={ + connections={ + [1]={ + id=55422, + orbit=4 + } + }, + group=407, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + orbit=4, + orbitIndex=61, + skill=34415, + stats={ + [1]="12% increased Physical Damage" + } + }, + [34419]={ + ascendancyName="Infernalist", + connections={ + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds", + isNotable=true, + name="Grinning Immolation", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern", + connections={ + [1]={ + id=47021, + orbit=2 + } + }, + group=1360, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + isNotable=true, + name="Precise Volatility", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Envy", + [2]="Despair", + [3]="Greed" + }, + skill=34425, + stats={ + [1]="Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded" + } + }, + [34433]={ + connections={ + [1]={ + id=32354, + orbit=7 + } + }, + group=649, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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", + connections={ + }, + group=198, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=34443, + stats={ + } + }, + [34449]={ + connections={ + [1]={ + id=37688, + orbit=0 + } + }, + group=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=1206, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Spaghettification", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Fear" + }, + 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" + } + }, + [34487]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connections={ + }, + group=511, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=34487, + stats={ + } + }, + [34490]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=18972, + orbit=0 + } + }, + group=154, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + name="Shapeshifted Aftershock Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + name="Sentinels", + orbit=2, + orbitIndex=9, + skill=34493, + stats={ + [1]="10% increased Damage", + [2]="Minions deal 10% increased Damage" + } + }, + [34497]={ + connections={ + }, + group=1262, + icon="Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds", + 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", + [2]="Take 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=271, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Armour and Evasion", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + 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=925, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + name="Physical Damage", + orbit=7, + orbitIndex=15, + skill=34520, + stats={ + [1]="10% increased Physical Damage" + } + }, + [34531]={ + connections={ + [1]={ + id=3471, + orbit=0 + } + }, + group=647, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Hallowed", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Disgust" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=63762, + orbit=0 + } + }, + group=1309, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Energising Deflection", + orbit=1, + orbitIndex=3, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Suffering" + }, + skill=34541, + stats={ + [1]="30% increased Energy Shield Recharge Rate", + [2]="5% increased Deflection Rating" + } + }, + [34543]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=1121, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds", + isNotable=true, + name="The Frenzied Bear", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Fear" + }, + 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", + connections={ + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=34552, + stats={ + } + }, + [34553]={ + connections={ + [1]={ + id=1220, + orbit=0 + } + }, + group=660, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Emboldening Lead", + orbit=7, + orbitIndex=20, + recipe={ + [1]="Ire", + [2]="Envy", + [3]="Fear" + }, + skill=34553, + stats={ + [1]="Minions deal 30% increased Damage if you've Hit Recently" + } + }, + [34612]={ + connections={ + [1]={ + id=60764, + orbit=0 + } + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Bow Damage", + orbit=5, + orbitIndex=16, + skill=34612, + stats={ + [1]="12% increased Damage with Bows" + } + }, + [34621]={ + connections={ + [1]={ + id=38541, + orbit=0 + } + }, + group=1128, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1362, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds", + 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=204, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + name="Recover Life on consuming Endurance Charge", + orbit=2, + orbitIndex=6, + 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=555, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=1280, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1236, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=570, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=7, + orbitIndex=23, + skill=34747, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [34769]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=52115, + orbit=0 + } + }, + group=477, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration Rate", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=154, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=7, + orbitIndex=0, + skill=34782, + stats={ + } + }, + [34785]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=58574, + orbit=-9 + }, + [2]={ + id=42017, + orbit=0 + }, + [3]={ + id=17058, + orbit=9 + } + }, + group=1483, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds", + isNotable=true, + name="Unfurled Finger", + nodeOverlay={ + alloc="RitualistFrameLargeAllocated", + path="RitualistFrameLargeCanAllocate", + unalloc="RitualistFrameLargeNormal" + }, + 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=796, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=4, + orbitIndex=60, + skill=34813, + stats={ + [1]="+3 to all Attributes" + } + }, + [34817]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds", + isNotable=true, + name="Deepening Shadows", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + orbit=9, + orbitIndex=64, + skill=34817, + stats={ + [1]="1% increased maximum Darkness per 1% Chaos Resistance" + } + }, + [34818]={ + connections={ + [1]={ + id=43250, + orbit=2 + } + }, + group=144, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.dds", + 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=523, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1199, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + 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=1179, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds", + 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=791, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + name="Remnant Effect", + orbit=2, + orbitIndex=2, + skill=34866, + stats={ + [1]="Remnants have 10% increased effect" + } + }, + [34871]={ + connections={ + [1]={ + id=52764, + orbit=2 + } + }, + group=182, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=2147483647 + } + }, + group=415, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Skill Gem Quality", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=34882, + stats={ + [1]="+2% to Quality of all Skills" + } + }, + [34892]={ + connections={ + [1]={ + id=12066, + orbit=0 + } + }, + group=1378, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds", + 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=1159, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Debuff Expiry", + orbit=5, + orbitIndex=31, + skill=34898, + stats={ + [1]="Debuffs on you expire 10% faster" + } + }, + [34908]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=1302, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Staunch Deflection", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Fear" + }, + 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=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + name="Trap Damage", + orbit=6, + orbitIndex=45, + skill=34912, + stats={ + [1]="10% increased Trap Damage" + } + }, + [34927]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern", + connections={ + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=34927, + stats={ + } + }, + [34940]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + isNotable=true, + name="Meditative Focus", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + orbit=0, + orbitIndex=0, + 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=1358, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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", + connections={ + }, + group=942, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=34984, + stats={ + } + }, + [34990]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6088, + orbit=0 + } + }, + group=421, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=413, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=659, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + isNotable=true, + name="In the Thick of It", + orbit=2, + orbitIndex=17, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Greed" + }, + skill=35028, + stats={ + [1]="Regenerate 2.5% of maximum Life per second while Surrounded" + } + }, + [35031]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=1404, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds", + isNotable=true, + name="Chakra of Life", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Isolation", + [3]="Fear" + }, + skill=35031, + stats={ + [1]="3% increased maximum Life", + [2]="10% increased Life Recovery rate" + } + }, + [35033]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=55796, + orbit=0 + } + }, + group=1472, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Skill Speed", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=35033, + stats={ + [1]="4% increased Skill Speed" + } + }, + [35043]={ + connections={ + }, + group=1368, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=223, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1086, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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", + connections={ + }, + group=214, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=35085, + stats={ + } + }, + [35095]={ + connections={ + [1]={ + id=41886, + orbit=2 + } + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.dds", + name="Chaos Damage", + orbit=2, + orbitIndex=20, + skill=35095, + stats={ + [1]="10% increased Chaos Damage" + } + }, + [35118]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern", + connections={ + }, + group=936, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=35118, + stats={ + } + }, + [35151]={ + connections={ + [1]={ + id=44453, + orbit=0 + } + }, + group=1235, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.dds", + name="Stun Threshold", + orbit=7, + orbitIndex=23, + skill=35151, + stats={ + [1]="15% increased Stun Threshold" + } + }, + [35171]={ + connections={ + [1]={ + id=18846, + orbit=0 + } + }, + group=380, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=1289, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=1457, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds", + isNotable=true, + name="In for the Kill", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + 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=882, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=518, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=539, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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=685, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Burnout", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Paranoia" + }, + skill=35324, + stats={ + [1]="Ignites you inflict deal Damage 15% faster" + } + }, + [35369]={ + connections={ + [1]={ + id=1459, + orbit=0 + } + }, + group=237, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Investing Energies", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Ire", + [3]="Envy" + }, + skill=35369, + stats={ + [1]="35% increased Mana Regeneration Rate while stationary" + } + }, + [35380]={ + connections={ + [1]={ + id=44373, + orbit=-2 + } + }, + group=1241, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=399, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour while Bleeding", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=144, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.dds", + name="Cold Resistance", + orbit=7, + orbitIndex=2, + skill=35404, + stats={ + [1]="+5% to Cold Resistance" + } + }, + [35408]={ + connections={ + [1]={ + id=36474, + orbit=4 + } + }, + group=406, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + name="Focus Energy Shield", + orbit=2, + orbitIndex=12, + skill=35408, + stats={ + [1]="40% increased Energy Shield from Equipped Focus" + } + }, + [35417]={ + connections={ + [1]={ + id=28770, + orbit=3 + }, + [2]={ + id=23879, + orbit=0 + } + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Wyvern's Breath", + orbit=3, + orbitIndex=13, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Paranoia" + }, + skill=35417, + stats={ + [1]="40% increased chance to inflict Elemental Ailments if you have Shapeshifted to an Animal form Recently" + } + }, + [35426]={ + connections={ + [1]={ + id=8406, + orbit=6 + } + }, + group=580, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + name="Slam Area of Effect", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=5, + orbitIndex=52, + skill=35453, + stats={ + [1]="Slam Skills have 8% increased Area of Effect" + } + }, + [35477]={ + connections={ + [1]={ + id=10277, + orbit=0 + } + }, + group=1249, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Far Sighted", + orbit=2, + orbitIndex=1, + recipe={ + [1]="Guilt", + [2]="Ire", + [3]="Fear" + }, + skill=35477, + stats={ + [1]="30% reduced penalty to Accuracy Rating at range" + } + }, + [35492]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=735, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=7, + orbitIndex=21, + skill=35492, + stats={ + } + }, + [35503]={ + connections={ + [1]={ + id=23764, + orbit=0 + } + }, + group=937, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1296, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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.dds", + isAscendancyStart=true, + name="Shaman", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=35535, + stats={ + } + }, + [35558]={ + connections={ + [1]={ + id=46726, + orbit=0 + } + }, + group=594, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + name="Minion Revive Speed", + orbit=3, + orbitIndex=3, + skill=35558, + stats={ + [1]="Minions Revive 5% faster" + } + }, + [35560]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=562, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="At your Command", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Envy" + }, + 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=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + isNotable=true, + name="Turn the Clock Back", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Despair" + }, + skill=35564, + stats={ + [1]="15% increased Spell Damage", + [2]="10% reduced Projectile Speed for Spell Skills" + } + }, + [35581]={ + connections={ + [1]={ + id=26895, + orbit=0 + } + }, + group=499, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Near at Hand", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Paranoia" + }, + skill=35581, + stats={ + [1]="16% reduced Skill Effect Duration", + [2]="10% reduced Slowing Potency of Debuffs on You" + } + }, + [35594]={ + connections={ + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break Effect", + orbit=2, + orbitIndex=8, + skill=35594, + stats={ + [1]="10% increased effect of Fully Broken Armour" + } + }, + [35602]={ + connections={ + }, + group=779, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + name="Offering Life", + orbit=2, + orbitIndex=12, + skill=35602, + stats={ + [1]="Offerings have 30% reduced Maximum Life" + } + }, + [35618]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + [1]={ + id=36504, + orbit=0 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Cold Coat", + orbit=7, + orbitIndex=15, + recipe={ + [1]="Envy", + [2]="Despair", + [3]="Envy" + }, + skill=35618, + stats={ + [1]="25% increased Freeze Buildup", + [2]="25% reduced Freeze Duration on you", + [3]="25% increased Freeze Threshold" + } + }, + [35644]={ + connections={ + [1]={ + id=45193, + orbit=6 + }, + [2]={ + id=65009, + orbit=0 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Damage", + orbit=3, + orbitIndex=23, + skill=35644, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [35645]={ + connections={ + }, + group=495, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=805, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + name="Grenade Damage", + orbit=0, + orbitIndex=0, + skill=35653, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [35660]={ + connections={ + [1]={ + id=18548, + orbit=0 + } + }, + group=882, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=13, + skill=35660, + stats={ + [1]="3% increased Attack Speed" + } + }, + [35671]={ + connections={ + [1]={ + id=31172, + orbit=3 + } + }, + group=1243, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + 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=1121, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds", + 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 + } + }, + group=1275, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=524, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=665, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength and Spell Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Crushing Judgement", + orbit=7, + orbitIndex=23, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Ire" + }, + skill=35739, + stats={ + [1]="25% increased Armour Break Duration", + [2]="25% increased Attack Area Damage" + } + }, + [35745]={ + connectionArt="CharacterPlanned", + connections={ + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + name="Gain Maximum Endurance Charges on Gaining Endurance Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1402, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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=1022, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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.dds", + isNotable=true, + name="Furious Wellspring", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + 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=431, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Increased Duration", + orbit=1, + orbitIndex=0, + skill=35787, + stats={ + [1]="10% increased Skill Effect Duration" + } + }, + [35792]={ + connections={ + }, + group=279, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Blood of Rage", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Isolation" + }, + skill=35792, + stats={ + [1]="Gain 8 Rage when you use a Life Flask" + } + }, + [35801]={ + ascendancyName="Deadeye", + connections={ + [1]={ + id=23508, + orbit=0 + } + }, + group=1437, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Frenzy Charge Duration", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=35801, + stats={ + [1]="25% increased Frenzy Charge Duration" + } + }, + [35809]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Reinvigoration", + orbit=1, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Envy", + [3]="Ire" + }, + 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=280, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=7, + orbitIndex=9, + skill=35831, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [35848]={ + connections={ + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + name="Flask Recovery", + orbit=7, + orbitIndex=20, + skill=35848, + stats={ + [1]="10% increased Life and Mana Recovery from Flasks" + } + }, + [35849]={ + connections={ + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + isNotable=true, + name="Thickened Arteries", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Greed" + }, + 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=851, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + isNotable=true, + name="Fortifying Blood", + orbit=2, + orbitIndex=3, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Fear" + }, + skill=35855, + stats={ + [1]="20% increased amount of Life Leeched", + [2]="40% increased Armour and Evasion Rating while Leeching" + } + }, + [35859]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern", + connections={ + }, + group=851, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds", + isOnlyImage=true, + name="Leech Mastery", + orbit=0, + orbitIndex=0, + skill=35859, + stats={ + } + }, + [35863]={ + connections={ + [1]={ + id=51732, + orbit=0 + } + }, + group=424, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=333, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Admonisher", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Disgust" + }, + skill=35876, + stats={ + [1]="25% increased Warcry Speed", + [2]="25% increased Warcry Cooldown Recovery Rate" + } + }, + [35878]={ + connections={ + [1]={ + id=50884, + orbit=0 + } + }, + group=1062, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds", + name="Cast Speed", + nodeOverlay={ + alloc="Disciple of VarashtaFrameSmallAllocated", + path="Disciple of VarashtaFrameSmallCanAllocate", + unalloc="Disciple of VarashtaFrameSmallNormal" + }, + 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=928, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1177, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=525, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="One For All", + orbit=7, + orbitIndex=19, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Suffering" + }, + skill=35918, + stats={ + [1]="40% increased Presence Area of Effect", + [2]="8% reduced Area of Effect" + } + }, + [35920]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=35762, + orbit=2147483647 + } + }, + group=67, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds", + name="Maximum Rage", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=35920, + stats={ + [1]="+3 to Maximum Rage" + } + }, + [35921]={ + connections={ + [1]={ + id=5642, + orbit=0 + } + }, + group=234, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Attack Area", + orbit=2, + orbitIndex=12, + skill=35921, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [35966]={ + connections={ + [1]={ + id=41105, + orbit=0 + }, + [2]={ + id=44316, + orbit=0 + } + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Heart Tissue", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Ire" + }, + skill=35966, + stats={ + [1]="8% of Damage taken Recouped as Life", + [2]="Regenerate 0.5% of maximum Life per second if you have been Hit Recently" + } + }, + [35974]={ + connections={ + [1]={ + id=51105, + orbit=0 + } + }, + group=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Life", + orbit=2, + orbitIndex=22, + skill=35974, + stats={ + [1]="16% increased Totem Life" + } + }, + [35977]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern", + connections={ + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=35977, + stats={ + } + }, + [35980]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds", + isOnlyImage=true, + name="Lightning Mastery", + orbit=0, + orbitIndex=0, + skill=35980, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [35985]={ + connections={ + }, + group=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=6, + 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=863, + icon="Art/2DArt/SkillIcons/passives/finesse.dds", + 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=2147483647 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=249, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + name="Attack Damage", + orbit=7, + orbitIndex=22, + skill=36027, + stats={ + [1]="12% increased Attack Damage" + } + }, + [36070]={ + connections={ + [1]={ + id=14045, + orbit=0 + } + }, + group=1046, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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", + connections={ + }, + group=1322, + icon="Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds", + isOnlyImage=true, + name="Spear Mastery", + orbit=5, + orbitIndex=12, + skill=36071, + stats={ + } + }, + [36085]={ + connections={ + [1]={ + id=37548, + orbit=0 + }, + [2]={ + id=15270, + orbit=0 + } + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Serrated Edges", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Disgust", + [3]="Greed" + }, + 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=156, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds", + isNotable=true, + name="Molten Claw", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Paranoia" + }, + 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 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds", + isNotable=true, + name="Kelari's Malediction", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=6, + orbitIndex=19, + skill=36109, + stats={ + [1]="Grants Skill: Kelari's Malediction" + } + }, + [36114]={ + connections={ + [1]={ + id=23360, + orbit=0 + } + }, + group=1053, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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=442, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block", + orbit=2, + orbitIndex=9, + skill=36163, + stats={ + [1]="5% increased Block chance" + } + }, + [36169]={ + connections={ + [1]={ + id=29514, + orbit=0 + } + }, + group=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=667, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=2, + orbitIndex=21, + skill=36191, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [36197]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=27096, + orbit=2147483647 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Placement Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=3, + orbitIndex=19, + skill=36197, + stats={ + [1]="30% increased Totem Placement speed" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [36217]={ + connections={ + }, + group=1360, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + name="Volatility Detonation Time", + orbit=1, + orbitIndex=11, + skill=36217, + stats={ + [1]="15% increased Volatility Explosion delay" + } + }, + [36231]={ + connections={ + [1]={ + id=3336, + orbit=0 + }, + [2]={ + id=31765, + orbit=0 + } + }, + group=1341, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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.dds", + 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=349, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Tactician", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=6, + orbitIndex=36, + skill=36252, + stats={ + } + }, + [36270]={ + connections={ + [1]={ + id=5009, + orbit=0 + } + }, + group=1183, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=660, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1234, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=4, + orbitIndex=33, + skill=36290, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [36293]={ + connections={ + [1]={ + id=27785, + orbit=0 + }, + [2]={ + id=55708, + orbit=0 + } + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1065, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=745, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + 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=542, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + 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=222, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Explosive Empowerment", + orbit=3, + orbitIndex=22, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Despair" + }, + 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=936, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + isNotable=true, + name="Cull the Hordes", + orbit=2, + orbitIndex=10, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Suffering" + }, + skill=36341, + stats={ + [1]="40% increased Culling Strike Threshold against Rare or Unique Enemies" + } + }, + [36358]={ + connections={ + [1]={ + id=12367, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=3, + orbitIndex=4, + skill=36358, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [36364]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1339, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Electrocution", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Greed" + }, + 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=1490, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Ritualist", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=6, + orbitIndex=27, + skill=36365, + stats={ + } + }, + [36379]={ + connections={ + [1]={ + id=25026, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=4, + orbitIndex=58, + skill=36379, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [36389]={ + connections={ + [1]={ + id=53989, + orbit=8 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=177, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Deadly Thorns", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=640, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + name="Pin Buildup", + orbit=7, + orbitIndex=6, + skill=36449, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [36450]={ + connections={ + [1]={ + id=11838, + orbit=-4 + } + }, + group=1021, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + 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=38596, + orbit=4 + } + }, + group=406, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + name="Curse Effect on Self", + orbit=2, + orbitIndex=4, + skill=36474, + stats={ + [1]="15% reduced effect of Curses on you" + } + }, + [36478]={ + connections={ + [1]={ + id=43014, + orbit=2147483647 + }, + [2]={ + id=48714, + orbit=2147483647 + } + }, + group=444, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds", + name="Attack Damage", + orbit=2, + orbitIndex=4, + skill=36478, + stats={ + [1]="10% increased Attack Damage" + } + }, + [36479]={ + connections={ + [1]={ + id=12925, + orbit=0 + } + }, + group=934, + icon="Art/2DArt/SkillIcons/passives/Storm Weaver.dds", + 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=2147483647 + } + }, + group=93, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=2, + orbitIndex=11, + skill=36504, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [36507]={ + connections={ + [1]={ + id=60313, + orbit=0 + } + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds", + isNotable=true, + name="Vile Mending", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Fear" + }, + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1320, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Resistance", + orbit=0, + orbitIndex=0, + skill=36540, + stats={ + [1]="+5% to Lightning Resistance" + } + }, + [36556]={ + connections={ + [1]={ + id=1502, + orbit=0 + } + }, + group=265, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds", + name="Channelling Defences", + orbit=2, + orbitIndex=12, + skill=36556, + stats={ + [1]="8% increased Global Defences while Channelling" + } + }, + [36564]={ + ascendancyName="Infernalist", + connections={ + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds", + isNotable=true, + name="Beidat's Gaze", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + 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=1318, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=7, + orbitIndex=14, + skill=36576, + stats={ + [1]="10% increased Attack Damage" + } + }, + [36596]={ + connections={ + [1]={ + id=45013, + orbit=-3 + } + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Damage against Enemies on Low Life", + orbit=3, + orbitIndex=4, + skill=36596, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [36602]={ + connections={ + [1]={ + id=18465, + orbit=0 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isSwitchable=true, + name="Critical Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds", + 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=1101, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Convalescence", + orbit=2, + orbitIndex=3, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Greed" + }, + skill=36623, + stats={ + [1]="15% reduced Energy Shield Recharge Rate", + [2]="40% faster start of Energy Shield Recharge" + } + }, + [36629]={ + connections={ + [1]={ + id=44659, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=45, + skill=36629, + stats={ + [1]="+5 to any Attribute" + } + }, + [36630]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + [1]={ + id=49473, + orbit=0 + } + }, + group=991, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Incision", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Greed" + }, + skill=36630, + stats={ + [1]="50% increased effect of Incision" + } + }, + [36639]={ + connections={ + [1]={ + id=62677, + orbit=-6 + }, + [2]={ + id=32009, + orbit=0 + } + }, + group=814, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Duration", + orbit=7, + orbitIndex=22, + skill=36639, + stats={ + [1]="20% increased Curse Duration" + } + }, + [36659]={ + ascendancyName="Warbringer", + connections={ + }, + group=31, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds", + isNotable=true, + name="Imploding Impacts", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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=1453, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Passive Points", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + 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=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Life", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=31398, + name="Life", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + stats={ + [1]="3% increased maximum Life" + } + } + }, + orbit=9, + orbitIndex=30, + skill=36696, + stats={ + [1]="3% increased maximum Life" + } + }, + [36709]={ + connections={ + }, + group=631, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=7, + orbitIndex=6, + skill=36709, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [36723]={ + connections={ + [1]={ + id=3700, + orbit=0 + } + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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=519, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds", + isNotable=true, + name="Thaumaturgical Infusion", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + 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=239, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + name="Area Damage", + orbit=2, + orbitIndex=0, + skill=36737, + stats={ + [1]="10% increased Area Damage" + } + }, + [36746]={ + connections={ + [1]={ + id=40691, + orbit=-3 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=3, + orbitIndex=16, + skill=36746, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [36759]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=1129, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=36759, + stats={ + } + }, + [36778]={ + connections={ + [1]={ + id=36479, + orbit=0 + } + }, + group=934, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Shock Chance", + orbit=4, + orbitIndex=58, + skill=36778, + stats={ + [1]="15% increased chance to Shock" + } + }, + [36782]={ + connections={ + [1]={ + id=1151, + orbit=0 + } + }, + group=784, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Leech", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + 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=1140, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + isNotable=true, + name="Spiked Shield", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Fear" + }, + skill=36808, + stats={ + [1]="2% increased Attack Damage per 75 Item Armour and Evasion Rating on Equipped Shield", + [2]="50% increased Defences from Equipped Shield" + } + }, + [36814]={ + connections={ + }, + group=814, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=527, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Attributes", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=36822, + stats={ + [1]="3% increased Attributes" + } + }, + [36880]={ + connections={ + [1]={ + id=43036, + orbit=3 + } + }, + group=419, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds", + isNotable=true, + name="Baryanic Leylines", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + 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=283, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + name="Mark Use Speed", + orbit=2, + orbitIndex=11, + skill=36927, + stats={ + [1]="Mark Skills have 10% increased Use Speed" + } + }, + [36931]={ + connections={ + }, + group=1024, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Concussive Attack", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Greed" + }, + skill=36931, + stats={ + [1]="25% increased Attack Damage", + [2]="5% chance to Daze on Hit" + } + }, + [36976]={ + connections={ + }, + group=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + isNotable=true, + name="Marked for Death", + orbit=3, + orbitIndex=9, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Guilt" + }, + skill=36976, + stats={ + [1]="Culling Strike against Enemies you Mark" + } + }, + [36994]={ + connections={ + [1]={ + id=27491, + orbit=0 + } + }, + group=647, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=4, + orbitIndex=12, + skill=36994, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [36997]={ + connections={ + [1]={ + id=27761, + orbit=0 + } + }, + group=1004, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=1349, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=1493, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds", + isNotable=true, + name="Corrupted Lifeforce", + nodeOverlay={ + alloc="RitualistFrameLargeAllocated", + path="RitualistFrameLargeCanAllocate", + unalloc="RitualistFrameLargeNormal" + }, + 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=335, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds", + isNotable=true, + name="Zealous Inquisition", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=37078, + stats={ + [1]="10% chance for Enemies you Kill to Explode, dealing 100%", + [2]="of their maximum Life as Physical Damage", + [3]="Chance is doubled against Undead and Demons" + } + }, + [37092]={ + connections={ + [1]={ + id=55817, + orbit=0 + } + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=2147483647 + } + }, + group=1118, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds", + 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=146, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=851, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=2, + orbitIndex=7, + skill=37190, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [37220]={ + connections={ + [1]={ + id=17955, + orbit=0 + } + }, + group=1043, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=383, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=1343, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds", + 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=1140, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + isNotable=true, + name="Shield Expertise", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Fear" + }, + skill=37244, + stats={ + [1]="12% increased Block chance", + [2]="40% increased Block Recovery" + } + }, + [37250]={ + connections={ + [1]={ + id=1420, + orbit=0 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=423, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=263, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds", + name="Warcry Speed", + orbit=2, + orbitIndex=13, + skill=37260, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [37266]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern", + connections={ + [1]={ + id=29930, + orbit=0 + } + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Nourishing Ally", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Guilt" + }, + 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=364, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Battle Trance", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Fear" + }, + skill=37276, + stats={ + [1]="+8 to Maximum Rage" + } + }, + [37279]={ + connections={ + [1]={ + id=41159, + orbit=0 + } + }, + group=799, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Lightning 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=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Maximum Rage while Shapeshifted", + orbit=7, + orbitIndex=5, + skill=37290, + stats={ + [1]="+3 to maximum Rage while Shapeshifted" + } + }, + [37302]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connections={ + }, + group=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + isNotable=true, + name="Kept at Bay", + orbit=3, + orbitIndex=20, + recipe={ + [1]="Guilt", + [2]="Paranoia", + [3]="Suffering" + }, + 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=1245, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=522, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=1439, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds", + isNotable=true, + name="Avidity", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + 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=2147483647 + } + }, + group=693, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=946, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1062, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=2, + orbitIndex=4, + skill=37389, + stats={ + [1]="10% increased Attack Damage" + } + }, + [37397]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=360, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds", + isMultipleChoiceOption=true, + name="Neurological Implants", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + 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=1031, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Staunching", + orbit=2, + orbitIndex=13, + recipe={ + [1]="Envy", + [2]="Despair", + [3]="Disgust" + }, + skill=37408, + stats={ + [1]="Life Flasks gain 0.1 charges per Second", + [2]="+10 to Strength" + } + }, + [37414]={ + connections={ + [1]={ + id=65193, + orbit=0 + } + }, + group=444, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds", + name="Accuracy", + orbit=2, + orbitIndex=16, + skill=37414, + stats={ + [1]="10% increased Accuracy Rating" + } + }, + [37450]={ + connections={ + }, + group=732, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + name="Ailment Chance", + orbit=4, + orbitIndex=46, + skill=37450, + stats={ + [1]="10% increased chance to inflict Ailments" + } + }, + [37484]={ + connections={ + }, + group=133, + icon="Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds", + isKeystone=true, + name="Primal Hunger", + orbit=0, + orbitIndex=0, + skill=37484, + stats={ + [1]="100% more Maximum Rage", + [2]="Regenerate 1 Rage per second per 4 Rage spent Recently", + [3]="No Rage effect" + } + }, + [37509]={ + connections={ + [1]={ + id=57921, + orbit=-2 + } + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + isNotable=true, + name="Whirling Assault", + orbit=3, + orbitIndex=1, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Greed" + }, + 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=621, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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=417, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds", + isNotable=true, + name="Cannons, Ready!", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + 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", + connections={ + }, + group=1166, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds", + isOnlyImage=true, + name="Lightning Mastery", + orbit=0, + orbitIndex=0, + skill=37532, + stats={ + } + }, + [37543]={ + connections={ + [1]={ + id=16647, + orbit=0 + } + }, + group=529, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isNotable=true, + name="Full Recovery", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Despair", + [2]="Envy", + [3]="Guilt" + }, + 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=1337, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=1179, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds", + 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=802, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + 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=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + orbit=5, + orbitIndex=38, + skill=37594, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [37608]={ + connections={ + [1]={ + id=53524, + orbit=0 + }, + [2]={ + id=61042, + orbit=0 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + name="Physical Damage", + orbit=4, + orbitIndex=51, + skill=37608, + stats={ + [1]="10% increased Physical Damage" + } + }, + [37612]={ + connections={ + [1]={ + id=13279, + orbit=0 + }, + [2]={ + id=17532, + orbit=0 + }, + [3]={ + id=60191, + orbit=0 + } + }, + group=544, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=1347, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=5, + orbitIndex=45, + skill=37616, + stats={ + } + }, + [37629]={ + connections={ + [1]={ + id=55933, + orbit=0 + }, + [2]={ + id=41338, + orbit=-7 + }, + [3]={ + id=8248, + orbit=0 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=37641, + stats={ + } + }, + [37644]={ + connections={ + [1]={ + id=46874, + orbit=0 + } + }, + group=1062, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=521, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + name="Fire Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1104, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=1337, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + isNotable=true, + name="Manifold Method", + orbit=3, + orbitIndex=6, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Fear" + }, + 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=409, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=936, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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" + } + }, + [37778]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=24929, + orbit=0 + }, + [2]={ + id=13108, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Self Sacrificing", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1372, + icon="Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds", + 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.dds", + isNotable=true, + name="Fateful Vision", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=37782, + stats={ + [1]="Grants Skill: Align Fate" + } + }, + [37795]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern", + connections={ + }, + group=1140, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds", + isOnlyImage=true, + name="Shield Mastery", + orbit=0, + orbitIndex=0, + skill=37795, + stats={ + } + }, + [37806]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=963, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Branching Bolts", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Ire" + }, + 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=1253, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=800, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Presence Present", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Isolation" + }, + 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=1300, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + 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=294, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + isNotable=true, + name="Limitless Pursuit", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1364, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + name="Flammability Magnitude", + orbit=3, + orbitIndex=2, + skill=37905, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [37946]={ + connections={ + }, + group=1114, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + name="Projectile Stun Buildup", + orbit=0, + orbitIndex=0, + skill=37946, + stats={ + [1]="20% increased Projectile Stun Buildup" + } + }, + [37951]={ + connections={ + [1]={ + id=41020, + orbit=0 + } + }, + group=1302, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=1, + orbitIndex=7, + skill=37951, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [37956]={ + connections={ + [1]={ + id=35581, + orbit=3 + } + }, + group=494, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Reduced Duration", + orbit=0, + orbitIndex=0, + skill=37956, + stats={ + [1]="8% reduced Skill Effect Duration" + } + }, + [37963]={ + connections={ + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + 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", + connections={ + }, + group=1414, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Companion Mastery", + orbit=0, + orbitIndex=0, + skill=37971, + stats={ + } + }, + [37972]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=4891, + orbit=-4 + }, + [2]={ + id=18280, + orbit=5 + } + }, + group=1489, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Charm Charges", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=37972, + stats={ + [1]="15% increased Charm Charges gained" + } + }, + [37974]={ + connections={ + [1]={ + id=62230, + orbit=0 + } + }, + group=953, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=6, + orbitIndex=68, + skill=37974, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [37991]={ + connections={ + [1]={ + id=52254, + orbit=0 + } + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Effect", + orbit=7, + orbitIndex=18, + skill=37991, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [38003]={ + connections={ + [1]={ + id=63526, + orbit=4 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=1440, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds", + isMultipleChoiceOption=true, + name="Explosive Concoction", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=38004, + stats={ + [1]="Grants Skill: Explosive Concoction" + } + }, + [38010]={ + connections={ + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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.dds", + name="Slam Area of Effect", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=38014, + stats={ + [1]="Slam Skills have 8% increased Area of Effect" + } + }, + [38044]={ + connections={ + [1]={ + id=37695, + orbit=-4 + } + }, + group=1111, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=190, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Deafening Cries", + orbit=3, + orbitIndex=13, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Paranoia" + }, + skill=38053, + stats={ + [1]="25% increased Warcry Cooldown Recovery Rate", + [2]="8% increased Damage for each time you've Warcried Recently" + } + }, + [38057]={ + connections={ + }, + group=768, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=205, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break and Armour", + orbit=7, + orbitIndex=12, + skill=38066, + stats={ + [1]="10% increased Armour", + [2]="Break 15% increased Armour" + } + }, + [38068]={ + connections={ + }, + group=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Energy", + orbit=2, + orbitIndex=0, + skill=38069, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [38103]={ + connections={ + [1]={ + id=6898, + orbit=-8 + } + }, + group=604, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=591, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=4, + orbitIndex=67, + skill=38105, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [38111]={ + connections={ + [1]={ + id=32241, + orbit=0 + } + }, + group=1156, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Pliable Flesh", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Isolation" + }, + 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=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=4, + orbitIndex=26, + skill=38124, + stats={ + [1]="15% increased Totem Damage" + } + }, + [38130]={ + connections={ + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="Reduced Attribute Requirements", + orbit=5, + orbitIndex=36, + skill=38138, + stats={ + [1]="Equipment and Skill Gems have 4% reduced Attribute Requirements" + } + }, + [38143]={ + connections={ + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=511, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=1404, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds", + 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=1245, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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", + connections={ + }, + group=555, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=38235, + stats={ + } + }, + [38270]={ + connections={ + [1]={ + id=23724, + orbit=0 + } + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Lightning Damage", + orbit=3, + orbitIndex=0, + skill=38270, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [38292]={ + connections={ + [1]={ + id=33397, + orbit=0 + } + }, + group=530, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=576, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=0, + orbitIndex=0, + skill=38300, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [38313]={ + connections={ + }, + group=404, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds", + name="Projectile Speed", + orbit=2, + orbitIndex=16, + skill=38313, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [38320]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern", + connections={ + }, + group=90, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=38320, + stats={ + } + }, + [38323]={ + connections={ + [1]={ + id=6015, + orbit=-6 + }, + [2]={ + id=22928, + orbit=-5 + } + }, + group=559, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=38323, + stats={ + [1]="+5 to any Attribute" + } + }, + [38329]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + }, + group=1251, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Biting Frost", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Guilt" + }, + 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=1022, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=4, + orbitIndex=60, + skill=38338, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [38342]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + }, + group=1376, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + isNotable=true, + name="Stupefy", + orbit=7, + orbitIndex=20, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Paranoia" + }, + 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=204, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + name="Recover Life on consuming Endurance Charge", + orbit=2, + orbitIndex=22, + skill=38365, + stats={ + [1]="Recover 2% of maximum Life for each Endurance Charge consumed" + } + }, + [38368]={ + connections={ + [1]={ + id=35966, + orbit=-2 + }, + [2]={ + id=54288, + orbit=2 + } + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + 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=539, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + isNotable=true, + name="Apocalypse", + orbit=7, + orbitIndex=14, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Greed" + }, + skill=38398, + stats={ + [1]="30% reduced Damage", + [2]="+8% to Critical Hit Chance of Herald Skills" + } + }, + [38420]={ + connections={ + [1]={ + id=37543, + orbit=0 + } + }, + group=529, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + [1]={ + id=10499, + orbit=0 + } + }, + group=633, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=38430, + stats={ + } + }, + [38433]={ + connections={ + [1]={ + id=55375, + orbit=0 + } + }, + group=323, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=1033, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Disorientation", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Disgust" + }, + 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=1200, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=515, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.dds", + isOnlyImage=true, + name="Bleed Mastery", + orbit=7, + orbitIndex=13, + skill=38474, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [38479]={ + connections={ + [1]={ + id=17553, + orbit=-5 + } + }, + group=875, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Close Confines", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Ire", + [2]="Paranoia", + [3]="Ire" + }, + skill=38479, + stats={ + [1]="50% chance for Projectiles to Pierce Enemies within 3m distance of you" + } + }, + [38493]={ + connections={ + [1]={ + id=55621, + orbit=4 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=4, + orbitIndex=45, + skill=38493, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [38497]={ + connections={ + [1]={ + id=62803, + orbit=-5 + } + }, + group=1270, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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=662, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=4, + orbitIndex=40, + skill=38501, + stats={ + [1]="3% increased Attack Speed" + } + }, + [38532]={ + connections={ + [1]={ + id=31779, + orbit=0 + } + }, + group=206, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + isNotable=true, + name="Thirst for Power", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Despair" + }, + 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=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Stormcharged", + orbit=4, + orbitIndex=66, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Envy" + }, + skill=38535, + stats={ + [1]="40% increased Elemental Damage if you've dealt a Critical Hit Recently", + [2]="15% increased Critical Hit Chance" + } + }, + [38537]={ + connections={ + [1]={ + id=54983, + orbit=-3 + }, + [2]={ + id=51583, + orbit=0 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Heartstopping", + orbit=2, + orbitIndex=21, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Paranoia" + }, + skill=38537, + stats={ + [1]="+10 to Intelligence", + [2]="20% increased Critical Hit Chance" + } + }, + [38541]={ + connections={ + [1]={ + id=61601, + orbit=0 + } + }, + group=1136, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=0, + orbitIndex=0, + skill=38541, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [38564]={ + connections={ + [1]={ + id=20091, + orbit=0 + } + }, + group=548, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + 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", + connections={ + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Blind Mastery", + orbit=1, + orbitIndex=2, + skill=38568, + stats={ + } + }, + [38570]={ + connections={ + [1]={ + id=53895, + orbit=2 + }, + [2]={ + id=27992, + orbit=0 + } + }, + group=613, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + isNotable=true, + name="Demolitionist", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Envy" + }, + skill=38570, + stats={ + [1]="Gain 4% of Damage as Extra Fire Damage for", + [2]="every different Grenade fired in the past 8 seconds" + } + }, + [38578]={ + ascendancyName="Stormweaver", + connections={ + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds", + isNotable=true, + name="Multiplying Squalls", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + orbit=8, + orbitIndex=24, + skill=38578, + stats={ + [1]="+2 to Limit for Elemental Skills" + } + }, + [38596]={ + connections={ + [1]={ + id=31925, + orbit=5 + } + }, + group=406, + icon="Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds", + name="Curse Effect on Self", + orbit=4, + orbitIndex=14, + skill=38596, + stats={ + [1]="15% reduced effect of Curses on you" + } + }, + [38601]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=34501, + orbit=0 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds", + isNotable=true, + name="Obsessive Rituals", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + orbit=6, + orbitIndex=28, + skill=38601, + stats={ + [1]="35% less Armour and Evasion Rating", + [2]="Grants Skill: Sorcery Ward" + } + }, + [38614]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + [1]={ + id=27662, + orbit=0 + }, + [2]={ + id=44201, + orbit=0 + } + }, + group=962, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + isNotable=true, + name="Psychic Fragmentation", + orbit=3, + orbitIndex=20, + recipe={ + [1]="Paranoia", + [2]="Disgust", + [3]="Isolation" + }, + skill=38614, + stats={ + [1]="12% chance for Spell Skills to fire 2 additional Projectiles" + } + }, + [38628]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + }, + group=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Escalating Toxins", + orbit=2, + orbitIndex=19, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Disgust" + }, + 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=672, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=0, + orbitIndex=0, + skill=38646, + stats={ + [1]="+20 to Armour" + } + }, + [38663]={ + connections={ + [1]={ + id=3516, + orbit=0 + } + }, + group=597, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Critical Chance", + orbit=7, + orbitIndex=6, + skill=38663, + stats={ + [1]="10% increased Melee Critical Hit Chance" + } + }, + [38668]={ + connections={ + }, + group=1175, + icon="Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds", + name="Energy Shield Delay", + orbit=7, + orbitIndex=23, + skill=38668, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [38670]={ + connections={ + [1]={ + id=28589, + orbit=0 + } + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=1024, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=1217, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + name="Ailment Threshold", + orbit=2, + orbitIndex=19, + skill=38678, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [38694]={ + connections={ + [1]={ + id=22188, + orbit=-4 + } + }, + group=824, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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.dds", + name="Block Chance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1048, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=207, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Deflection and Evasion", + orbit=7, + orbitIndex=0, + skill=38728, + stats={ + [1]="8% increased Evasion Rating", + [2]="Gain Deflection Rating equal to 3% of Evasion Rating" + } + }, + [38732]={ + connections={ + [1]={ + id=17107, + orbit=-3 + } + }, + group=809, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=824, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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.dds", + name="Armour Break", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=38769, + stats={ + [1]="Break 25% increased Armour" + } + }, + [38776]={ + connections={ + [1]={ + id=57816, + orbit=0 + } + }, + group=724, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + 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=754, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=918, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=610, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + name="Armour and Energy Shield", + orbit=7, + orbitIndex=1, + skill=38827, + stats={ + [1]="12% increased Armour", + [2]="12% increased maximum Energy Shield" + } + }, + [38856]={ + connections={ + [1]={ + id=49357, + orbit=0 + }, + [2]={ + id=2071, + orbit=0 + }, + [3]={ + id=21081, + orbit=5 + }, + [4]={ + id=56090, + orbit=0 + } + }, + group=618, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=435, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1159, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=848, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Unerring Impact", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Ire" + }, + skill=38888, + stats={ + [1]="16% increased Accuracy Rating with One Handed Melee Weapons", + [2]="16% increased Accuracy Rating with Two Handed Melee Weapons", + [3]="+2 to Melee Strike Range" + } + }, + [38895]={ + connections={ + [1]={ + id=8697, + orbit=3 + }, + [2]={ + id=48660, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + isNotable=true, + name="Crystal Elixir", + orbit=2, + orbitIndex=7, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Greed" + }, + skill=38895, + stats={ + [1]="40% increased Elemental Damage with Attack Skills during any Flask Effect" + } + }, + [38921]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern", + connections={ + }, + group=306, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds", + isOnlyImage=true, + name="Block Mastery", + orbit=2, + orbitIndex=1, + skill=38921, + stats={ + } + }, + [38923]={ + connections={ + [1]={ + id=61429, + orbit=3 + }, + [2]={ + id=511, + orbit=-3 + } + }, + group=189, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=1295, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=427, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + name="Infused Limits", + orbit=7, + orbitIndex=21, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Paranoia" + }, + 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=1086, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + [1]={ + id=50588, + orbit=0 + } + }, + group=1100, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Finesse", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Disgust" + }, + 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=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Restless Dead", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Disgust" + }, + skill=38972, + stats={ + [1]="Minions Revive 25% faster" + } + }, + [38993]={ + connections={ + [1]={ + id=21112, + orbit=0 + } + }, + group=1396, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=781, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39037, + stats={ + [1]="+5 to any Attribute" + } + }, + [39050]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + }, + group=1165, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + isNotable=true, + name="Exploit", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Disgust", + [2]="Envy", + [3]="Isolation" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=441, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Blood Rush", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Disgust" + }, + skill=39083, + stats={ + [1]="6% increased Skill Speed", + [2]="6% of Skill Mana Costs Converted to Life Costs" + } + }, + [39102]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=13228, + orbit=2147483647 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + name="Gain Maximum Power Charges on Gaining Power Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=2, + orbitIndex=3, + skill=39102, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to", + [2]="your maximum number of Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [39116]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + }, + group=848, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds", + isOnlyImage=true, + name="Physical Mastery", + orbit=3, + orbitIndex=14, + skill=39116, + stats={ + } + }, + [39128]={ + connections={ + [1]={ + id=47514, + orbit=0 + } + }, + group=1376, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + name="Daze Magnitude", + orbit=2, + orbitIndex=4, + skill=39128, + stats={ + [1]="15% increased Magnitude of Daze" + } + }, + [39130]={ + connections={ + [1]={ + id=14294, + orbit=-5 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + 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=181, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=134, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds", + isNotable=true, + name="Force of Will", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + 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=621, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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=685, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + 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", + connections={ + }, + group=1250, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=39237, + stats={ + } + }, + [39241]={ + ascendancyName="Lich", + connections={ + [1]={ + id=58932, + orbit=-4 + } + }, + group=1097, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Energy Shield", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=59609, + name="Energy Shield", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=632, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=2, + orbitIndex=6, + skill=39274, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [39280]={ + connections={ + [1]={ + id=44669, + orbit=0 + } + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1456, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Evasion", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + 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=872, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1349, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Physical Damage", + orbit=1, + orbitIndex=6, + skill=39307, + stats={ + [1]="10% increased Physical Damage" + } + }, + [39347]={ + connections={ + }, + group=208, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Breaking Blows", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Disgust" + }, + 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.dds", + name="Totem Life", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + 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=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Struck Through", + orbit=4, + orbitIndex=9, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Greed" + }, + 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.dds", + isNotable=true, + name="Answered Call", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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" + } + }, + [39423]={ + connections={ + [1]={ + id=53207, + orbit=0 + } + }, + group=1123, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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", + connections={ + }, + group=702, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=39431, + stats={ + } + }, + [39448]={ + connections={ + [1]={ + id=11178, + orbit=0 + } + }, + group=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + 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=617, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Minion Life", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=8, + orbitIndex=3, + skill=39470, + stats={ + [1]="Minions have 12% increased maximum Life" + } + }, + [39495]={ + connections={ + [1]={ + id=46386, + orbit=2147483647 + }, + [2]={ + id=27048, + orbit=9 + } + }, + group=1403, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Companion Damage", + orbit=0, + orbitIndex=0, + skill=39495, + stats={ + [1]="Companions deal 12% increased Damage" + } + }, + [39515]={ + connections={ + [1]={ + id=23450, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=3, + orbitIndex=8, + skill=39515, + stats={ + [1]="12% increased Fire Damage" + } + }, + [39517]={ + connections={ + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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=551, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isSwitchable=true, + name="Critical Chance", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds", + 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" + } + }, + [39564]={ + connections={ + [1]={ + id=62039, + orbit=0 + }, + [2]={ + id=38663, + orbit=0 + }, + [3]={ + id=13279, + orbit=0 + } + }, + group=596, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=7, + orbitIndex=12, + skill=39564, + stats={ + [1]="10% increased Melee Damage" + } + }, + [39567]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connections={ + [1]={ + id=53188, + orbit=0 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + isNotable=true, + name="Ingenuity", + orbit=5, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Suffering" + }, + 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=1131, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=7, + orbitIndex=2, + skill=39569, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [39570]={ + connections={ + [1]={ + id=49394, + orbit=6 + } + }, + group=1076, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=614, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + 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=530, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + name="Fire Penetration", + orbit=2, + orbitIndex=3, + skill=39594, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [39598]={ + connections={ + [1]={ + id=3949, + orbit=0 + } + }, + group=140, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=1282, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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=1369, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Duration", + orbit=7, + orbitIndex=20, + skill=39608, + stats={ + [1]="20% increased Hazard Duration" + } + }, + [39621]={ + connections={ + [1]={ + id=14176, + orbit=0 + }, + [2]={ + id=26725, + orbit=0 + } + }, + group=286, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds", + isNotable=true, + name="Shaper of Storms", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + 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=1056, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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.dds", + name="Spell Damage", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + 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=251, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=586, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Projectile Damage", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=6, + orbitIndex=21, + skill=39723, + stats={ + [1]="12% increased Projectile Damage" + } + }, + [39732]={ + connections={ + [1]={ + id=30219, + orbit=-2 + } + }, + group=574, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=541, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=894, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=376, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Mentorship", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1293, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Staggering Palm", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Despair" + }, + skill=39881, + stats={ + [1]="20% increased Critical Damage Bonus", + [2]="20% increased Knockback Distance", + [3]="20% increased Physical Damage" + } + }, + [39884]={ + connections={ + [1]={ + id=40271, + orbit=0 + } + }, + group=957, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Searing Heat", + orbit=7, + orbitIndex=1, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Disgust" + }, + skill=39884, + stats={ + [1]="100% increased Flammability Magnitude", + [2]="8% reduced Skill Effect Duration" + } + }, + [39886]={ + connections={ + [1]={ + id=56935, + orbit=0 + } + }, + group=680, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=39886, + stats={ + [1]="+5 to any Attribute" + } + }, + [39911]={ + connections={ + }, + group=1321, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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 + } + }, + group=558, + icon="Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds", + 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=878, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=4, + skill=39964, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [39986]={ + connections={ + [1]={ + id=57933, + orbit=0 + } + }, + group=1408, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=905, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=571, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Chronomancy", + orbit=7, + orbitIndex=7, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Despair" + }, + 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 + } + }, + group=440, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=693, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=972, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Freeze Buildup", + orbit=4, + orbitIndex=38, + skill=40068, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [40073]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=906, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Drenched", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Ire" + }, + 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.dds", + name="Attack Speed and Minion Attack Speed", + orbit=2, + orbitIndex=20, + skill=40105, + stats={ + [1]="3% increased Attack Speed", + [2]="Minions have 3% increased Attack Speed" + } + }, + [40110]={ + connections={ + [1]={ + id=42347, + orbit=3 + } + }, + group=1395, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds", + name="Blind Effect", + orbit=7, + orbitIndex=8, + skill=40110, + stats={ + [1]="10% increased Blind Effect" + } + }, + [40117]={ + connections={ + [1]={ + id=64023, + orbit=0 + } + }, + group=259, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.dds", + isNotable=true, + name="Spiked Armour", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Disgust" + }, + skill=40117, + stats={ + [1]="Thorns Damage has 50% chance to ignore Enemy Armour" + } + }, + [40166]={ + connections={ + }, + group=1106, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Deep Trance", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Despair" + }, + skill=40166, + stats={ + [1]="8% increased Attack Speed", + [2]="15% increased Cost Efficiency" + } + }, + [40196]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=1098, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=40196, + stats={ + } + }, + [40200]={ + connections={ + [1]={ + id=33612, + orbit=0 + }, + [2]={ + id=61842, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1009, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + isNotable=true, + name="Taste for Blood", + orbit=1, + orbitIndex=1, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Greed" + }, + 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=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + name="One Handed Attack Speed", + orbit=7, + orbitIndex=16, + skill=40244, + stats={ + [1]="3% increased Attack Speed with One Handed Melee Weapons" + } + }, + [40270]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=1145, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + isNotable=true, + name="Frenetic", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Guilt" + }, + 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", + connections={ + }, + group=957, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=7, + orbitIndex=2, + skill=40271, + stats={ + } + }, + [40276]={ + connections={ + [1]={ + id=32745, + orbit=0 + }, + [2]={ + id=60241, + orbit=0 + } + }, + group=475, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + name="Bleed Chance", + orbit=0, + orbitIndex=0, + skill=40276, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [40292]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=295, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + isNotable=true, + name="Nimble Strength", + orbit=1, + orbitIndex=2, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Isolation" + }, + 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=1051, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Resolution", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Envy" + }, + skill=40325, + stats={ + [1]="25% increased Stun Threshold", + [2]="10% increased Defences" + } + }, + [40328]={ + connections={ + [1]={ + id=28564, + orbit=-5 + } + }, + group=190, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Speed", + orbit=3, + orbitIndex=3, + skill=40328, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [40333]={ + connections={ + [1]={ + id=24178, + orbit=2 + } + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=671, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=772, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + 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=811, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + isNotable=true, + name="Master of Hexes", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Suffering" + }, + skill=40345, + stats={ + [1]="25% reduced Curse Duration", + [2]="18% increased Curse Magnitudes" + } + }, + [40395]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=106, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=40395, + stats={ + } + }, + [40399]={ + connections={ + [1]={ + id=20641, + orbit=0 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Energise", + orbit=5, + orbitIndex=6, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Paranoia" + }, + skill=40399, + stats={ + [1]="25% chance for Trigger skills to refund half of Energy Spent" + } + }, + [40453]={ + connections={ + [1]={ + id=25304, + orbit=0 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=1362, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds", + name="Dexterity", + orbit=7, + orbitIndex=16, + skill=40471, + stats={ + [1]="+8 to Dexterity" + } + }, + [40480]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + [1]={ + id=1953, + orbit=0 + } + }, + group=1130, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Harmonic Generator", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Despair" + }, + 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=291, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + name="Minion Life", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=4, + orbitIndex=0, + skill=40550, + stats={ + } + }, + [40596]={ + connections={ + }, + group=300, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + 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", + connections={ + }, + group=1195, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=40626, + stats={ + } + }, + [40630]={ + connections={ + [1]={ + id=44527, + orbit=0 + } + }, + group=965, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + isSwitchable=true, + name="Flask Charges Gained", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + 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=907, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=4, + skill=40632, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [40687]={ + connections={ + }, + group=1007, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + isNotable=true, + name="Lead by Example", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Disgust", + [2]="Envy", + [3]="Despair" + }, + 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=759, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=4, + orbitIndex=62, + skill=40691, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [40719]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=17646, + orbit=0 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Damage vs Low Life Enemies", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + 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=502, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Stormweaver", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=9, + orbitIndex=0, + skill=40721, + stats={ + } + }, + [40736]={ + connections={ + [1]={ + id=34305, + orbit=0 + }, + [2]={ + id=15606, + orbit=2 + } + }, + group=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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=880, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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 + } + }, + group=808, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=244, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Sigil of Ice", + orbit=4, + orbitIndex=21, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Guilt" + }, + skill=40803, + stats={ + [1]="30% increased Damage with Hits against Chilled Enemies" + } + }, + [40894]={ + connections={ + [1]={ + id=1218, + orbit=0 + } + }, + group=461, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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.dds", + isNotable=true, + name="Wooden Wall", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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=1061, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=1051, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Archon Duration", + orbit=3, + orbitIndex=21, + skill=40929, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [40975]={ + connections={ + [1]={ + id=24368, + orbit=0 + } + }, + group=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + name="Ballista Damage", + orbit=0, + orbitIndex=0, + skill=40975, + stats={ + [1]="15% increased Ballista damage" + } + }, + [40985]={ + connections={ + [1]={ + id=62679, + orbit=0 + } + }, + group=791, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.dds", + isNotable=true, + name="Empowering Remnants", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Paranoia" + }, + skill=40985, + stats={ + [1]="15% chance for Remnants you create to grant their effects twice" + } + }, + [40990]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1331, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Exposed to the Storm", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Despair" + }, + skill=40990, + stats={ + [1]="Damage Penetrates 18% Lightning Resistance", + [2]="15% increased Critical Hit Chance against enemies with Exposure" + } + }, + [41008]={ + ascendancyName="Amazon", + connections={ + }, + group=1459, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds", + isNotable=true, + name="Penetrate", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=41008, + stats={ + [1]="Attacks using your Weapons have Added Physical Damage equal", + [2]="to 25% of the Accuracy Rating on the Weapon" + } + }, + [41012]={ + connections={ + [1]={ + id=11392, + orbit=-6 + } + }, + group=96, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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", + connections={ + }, + group=1095, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=41016, + stats={ + } + }, + [41017]={ + connections={ + [1]={ + id=14262, + orbit=0 + }, + [2]={ + id=1801, + orbit=0 + } + }, + group=1338, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=34908, + orbit=0 + } + }, + group=1302, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=8, + skill=41020, + stats={ + [1]="Gain Deflection Rating equal to 6% 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=999, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=631, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=27, + skill=41031, + stats={ + [1]="+5 to any Attribute" + } + }, + [41033]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + [1]={ + id=55872, + orbit=0 + } + }, + group=1044, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + isNotable=true, + name="Utmost Offering", + orbit=2, + orbitIndex=23, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Greed" + }, + skill=41033, + stats={ + [1]="Offerings cannot be damaged if they have been created Recently" + } + }, + [41044]={ + connections={ + [1]={ + id=47591, + orbit=-7 + } + }, + group=509, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=1046, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=4, + orbitIndex=48, + skill=41062, + stats={ + } + }, + [41076]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=32771, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds", + isNotable=true, + name="Embrace the Darkness", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + orbit=9, + orbitIndex=45, + skill=41076, + stats={ + [1]="You have no Spirit", + [2]="Base Maximum Darkness is 100", + [3]="Damage taken is Reserved from Darkness before being taken from Life or Energy Shield", + [4]="Darkness Reservation lasts for 5 seconds", + [5]="+10 to Maximum Darkness per Level" + } + }, + [41096]={ + connections={ + [1]={ + id=35901, + orbit=0 + }, + [2]={ + id=31345, + orbit=5 + } + }, + group=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=54288, + orbit=0 + } + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Area Damage", + orbit=3, + orbitIndex=4, + skill=41126, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [41129]={ + connections={ + [1]={ + id=24338, + orbit=0 + } + }, + group=635, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + 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=660, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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 + }, + [2]={ + id=13279, + orbit=0 + } + }, + group=588, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour and Applies to Lightning Damage", + orbit=2, + orbitIndex=2, + skill=41147, + stats={ + [1]="10% increased Armour", + [2]="+10% of Armour also applies to Lightning Damage" + } + }, + [41154]={ + connections={ + [1]={ + id=33601, + orbit=0 + } + }, + group=524, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=2, + orbitIndex=14, + skill=41154, + stats={ + [1]="20% increased Freeze Buildup" + } + }, + [41159]={ + connections={ + [1]={ + id=27434, + orbit=0 + } + }, + group=799, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Lightning 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", + connections={ + }, + group=1353, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=41163, + stats={ + } + }, + [41171]={ + connections={ + [1]={ + id=36341, + orbit=0 + } + }, + group=936, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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", + connections={ + }, + group=325, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=0, + orbitIndex=0, + skill=41180, + stats={ + } + }, + [41186]={ + connections={ + }, + group=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=766, + icon="Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds", + 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", + connections={ + }, + group=889, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.dds", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=0, + orbitIndex=0, + skill=41225, + stats={ + } + }, + [41298]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1318, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=41298, + stats={ + } + }, + [41338]={ + connections={ + [1]={ + id=31673, + orbit=0 + } + }, + group=500, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + name="Shapeshifting Armour applies to Elemental Resistance", + 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=238, + icon="Art/2DArt/SkillIcons/passives/lightningstr.dds", + name="Lightning Resistance", + orbit=4, + orbitIndex=9, + skill=41363, + stats={ + [1]="+5% to Lightning Resistance" + } + }, + [41372]={ + connections={ + [1]={ + id=48030, + orbit=0 + } + }, + group=836, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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" + } + }, + [41394]={ + connections={ + [1]={ + id=10841, + orbit=0 + } + }, + group=1051, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Invigorating Archon", + orbit=7, + orbitIndex=13, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Paranoia" + }, + skill=41394, + stats={ + [1]="Archon Buffs also grant +20% to all Elemental Resistances", + [2]="Archon Buffs also grant 10% increased Movement Speed" + } + }, + [41414]={ + connections={ + [1]={ + id=4547, + orbit=-7 + } + }, + group=238, + icon="Art/2DArt/SkillIcons/passives/coldresist.dds", + name="Cold Resistance", + orbit=7, + orbitIndex=23, + skill=41414, + stats={ + [1]="+5% to Cold Resistance" + } + }, + [41415]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=573, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=41415, + stats={ + } + }, + [41442]={ + connections={ + [1]={ + id=58088, + orbit=5 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=961, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=324, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=149, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=536, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Command Skill Damage", + orbit=0, + orbitIndex=0, + skill=41511, + stats={ + [1]="Minions deal 15% increased Damage with Command Skills" + } + }, + [41512]={ + connections={ + }, + group=839, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Heavy Weaponry", + orbit=7, + orbitIndex=13, + recipe={ + [1]="Paranoia", + [2]="Disgust", + [3]="Envy" + }, + 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", + connections={ + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/MasteryDuration.dds", + isOnlyImage=true, + name="Duration Mastery", + orbit=0, + orbitIndex=0, + skill=41522, + stats={ + } + }, + [41529]={ + connections={ + [1]={ + id=21380, + orbit=-2 + } + }, + group=1160, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1030, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + name="Ailment Threshold", + orbit=3, + orbitIndex=18, + skill=41538, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [41573]={ + connections={ + [1]={ + id=24655, + orbit=0 + } + }, + group=696, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + 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=1318, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Maiming Strike", + orbit=7, + orbitIndex=2, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Ire" + }, + skill=41580, + stats={ + [1]="25% increased Attack Damage", + [2]="Attacks have 25% chance to Maim on Hit" + } + }, + [41609]={ + connections={ + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + 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=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Placement Speed", + orbit=7, + orbitIndex=10, + skill=41615, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [41619]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1448, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds", + isNotable=true, + name="Enduring Elixirs", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=41619, + stats={ + [1]="Life Flask Effects are not removed when Unreserved Life is Filled", + [2]="Life Flask Effects do not Queue" + } + }, + [41620]={ + connections={ + [1]={ + id=23879, + orbit=0 + } + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Bear's Roar", + orbit=3, + orbitIndex=5, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Greed" + }, + 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=1137, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=639, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=643, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + name="Banner Area", + orbit=2, + orbitIndex=2, + skill=41651, + stats={ + [1]="Banner Skills have 15% increased Area of Effect" + } + }, + [41654]={ + connections={ + [1]={ + id=41033, + orbit=2147483647 + } + }, + group=1044, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + name="Offering Life", + orbit=2, + orbitIndex=5, + skill=41654, + stats={ + [1]="Offerings have 15% increased Maximum Life" + } + }, + [41657]={ + connections={ + }, + group=453, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=3, + orbitIndex=10, + skill=41657, + stats={ + [1]="15% increased Armour" + } + }, + [41665]={ + connections={ + [1]={ + id=50562, + orbit=6 + } + }, + group=327, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=3, + orbitIndex=2, + skill=41665, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [41669]={ + connections={ + }, + group=749, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=219, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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=1474, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Amazon", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + orbit=6, + orbitIndex=27, + skill=41736, + stats={ + } + }, + [41739]={ + connections={ + [1]={ + id=13279, + orbit=0 + } + }, + group=552, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=2, + orbitIndex=4, + skill=41739, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [41747]={ + connections={ + [1]={ + id=61847, + orbit=3 + } + }, + group=171, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + name="Flail Critical Chance", + orbit=0, + orbitIndex=0, + skill=41747, + stats={ + [1]="10% increased Critical Hit Chance with Flails" + } + }, + [41753]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + }, + group=1366, + icon="Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds", + isNotable=true, + name="Evocational Practitioner", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Suffering" + }, + 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.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=996, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=1289, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Shatter Palm", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Paranoia" + }, + skill=41811, + stats={ + [1]="30% increased Stun Buildup", + [2]="10% chance to Daze on Hit" + } + }, + [41821]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=210, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=41821, + stats={ + } + }, + [41838]={ + connections={ + [1]={ + id=25429, + orbit=-8 + } + }, + group=604, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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={ + }, + group=1361, + icon="Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds", + isKeystone=true, + name="Trusted Kinship", + orbit=0, + orbitIndex=0, + skill=41861, + stats={ + [1]="You can have two Companions of different types", + [2]="You have 30% less Defences", + [3]="Companions have +1 to each Defence for every 2 of that Defence you have" + } + }, + [41873]={ + connections={ + }, + group=1400, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + 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=1434, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds", + isMultipleChoiceOption=true, + name="Point Blank", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + 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=1229, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1356, + icon="Art/2DArt/SkillIcons/passives/ChaosDamage2.dds", + 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=893, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + isNotable=true, + name="Gravedigger", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Disgust" + }, + 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=166, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds", + isNotable=true, + name="Hide of the Bear", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Disgust" + }, + 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=723, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isSwitchable=true, + name="Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=749, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + isNotable=true, + name="Glaciation", + orbit=4, + orbitIndex=18, + recipe={ + [1]="Paranoia", + [2]="Guilt", + [3]="Isolation" + }, + 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=461, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1487, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Reduced Spirit", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=42017, + stats={ + [1]="25% reduced Spirit" + } + }, + [42026]={ + connections={ + [1]={ + id=63813, + orbit=0 + } + }, + group=292, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Speed", + orbit=7, + orbitIndex=0, + skill=42026, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [42032]={ + connections={ + [1]={ + id=17906, + orbit=0 + } + }, + group=1369, + icon="Art/2DArt/SkillIcons/passives/Trap.dds", + isNotable=true, + name="Escalating Mayhem", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Ire" + }, + skill=42032, + stats={ + [1]="10% increased Damage for each Hazard triggered Recently, up to 50%" + } + }, + [42035]={ + ascendancyName="Chronomancer", + connections={ + }, + group=347, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds", + isNotable=true, + name="Inevitability", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + orbit=2, + orbitIndex=15, + skill=42035, + stats={ + [1]="Grants Skill: Inevitable Agony" + } + }, + [42036]={ + connections={ + [1]={ + id=50146, + orbit=0 + } + }, + group=1368, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + isNotable=true, + name="Off-Balancing Retort", + orbit=4, + orbitIndex=17, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Suffering" + }, + skill=42036, + stats={ + [1]="30% increased Parried Debuff Duration" + } + }, + [42045]={ + connections={ + [1]={ + id=50535, + orbit=7 + }, + [2]={ + id=52003, + orbit=0 + } + }, + group=700, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Archon of the Blizzard", + orbit=3, + orbitIndex=3, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Ire" + }, + skill=42045, + stats={ + [1]="Gain Elemental Archon when your Energy Shield Recharge begins" + } + }, + [42059]={ + connections={ + [1]={ + id=36333, + orbit=3 + } + }, + group=222, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=1166, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Surging Currents", + orbit=2, + orbitIndex=17, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Isolation" + }, + skill=42065, + stats={ + [1]="Damage Penetrates 15% Lightning Resistance", + [2]="+10 to Dexterity" + } + }, + [42070]={ + connections={ + [1]={ + id=26148, + orbit=0 + } + }, + group=303, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Saqawal's Guidance", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Isolation" + }, + 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=849, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge and Mana Flask Recovery", + orbit=0, + orbitIndex=0, + skill=42076, + stats={ + [1]="10% increased Energy Shield Recharge Rate", + [2]="10% increased Mana Recovery from Flasks" + } + }, + [42077]={ + connections={ + [1]={ + id=56564, + orbit=0 + }, + [2]={ + id=2102, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Essence Infusion", + orbit=2, + orbitIndex=11, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Greed" + }, + skill=42077, + stats={ + [1]="40% increased Energy Shield Recharge Rate", + [2]="+10 to Intelligence" + } + }, + [42103]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=62427, + orbit=-2 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Enduring Deflection", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Despair" + }, + 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=195, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=7465, + orbit=0 + }, + [4]={ + id=43102, + orbit=0 + }, + [5]={ + id=3994, + orbit=0 + }, + [6]={ + id=10267, + orbit=0 + } + }, + group=1277, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=696, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + name="Fire Penetration", + orbit=2, + orbitIndex=10, + skill=42127, + stats={ + [1]="Damage Penetrates 6% Fire Resistance" + } + }, + [42177]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + [1]={ + id=11153, + orbit=3 + } + }, + group=603, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Blurred Motion", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Ire" + }, + 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", + connections={ + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=42205, + stats={ + } + }, + [42226]={ + connections={ + [1]={ + id=34892, + orbit=0 + }, + [2]={ + id=17792, + orbit=9 + } + }, + group=1378, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds", + 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=1119, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Efficient Inscriptions", + orbit=1, + orbitIndex=8, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Greed" + }, + 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=964, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + isNotable=true, + name="Wisdom of the Maji", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + 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.dds", + isNotable=true, + name="Earthbreaker", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + 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=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=7, + orbitIndex=22, + skill=42280, + stats={ + [1]="+3 to all Attributes" + } + }, + [42290]={ + connections={ + [1]={ + id=38732, + orbit=-8 + } + }, + group=811, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Effect", + orbit=7, + orbitIndex=10, + skill=42290, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [42302]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + [1]={ + id=45331, + orbit=4 + }, + [2]={ + id=31918, + orbit=-4 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Split Shot", + orbit=4, + orbitIndex=54, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Paranoia" + }, + skill=42302, + stats={ + [1]="Projectiles have 75% chance for an additional Projectile when Forking" + } + }, + [42339]={ + connections={ + [1]={ + id=60974, + orbit=-2 + } + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + name="Additional Remnant Chance", + orbit=2, + orbitIndex=6, + skill=42339, + stats={ + [1]="5% chance to create an additional Remnant" + } + }, + [42347]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + }, + group=1395, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds", + isNotable=true, + name="Chakra of Sight", + orbit=3, + orbitIndex=6, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Disgust" + }, + 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=727, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=804, + icon="Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds", + isNotable=true, + name="Blinding Flash", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Ire" + }, + skill=42354, + stats={ + [1]="20% increased Blind Effect", + [2]="Blind Enemies when they Stun you" + } + }, + [42361]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern", + connections={ + }, + group=1206, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.dds", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=42361, + stats={ + } + }, + [42379]={ + connections={ + [1]={ + id=16705, + orbit=0 + }, + [2]={ + id=25520, + orbit=0 + }, + [3]={ + id=3463, + orbit=0 + }, + [4]={ + id=4552, + orbit=0 + } + }, + group=1154, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + isNotable=true, + name="Overheating Blow", + orbit=4, + orbitIndex=4, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Guilt" + }, + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds", + isMultipleChoice=true, + isNotable=true, + name="Projectile Proximity Specialisation", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + orbit=5, + orbitIndex=24, + skill=42416, + stats={ + } + }, + [42441]={ + ascendancyName="Amazon", + connections={ + }, + group=1461, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds", + isNotable=true, + name="Surging Avatar", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + 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=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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=1082, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=771, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds", + isNotable=true, + name="Refracted Infusion", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + 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=174, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block", + orbit=3, + orbitIndex=11, + skill=42578, + stats={ + [1]="5% increased Block chance" + } + }, + [42583]={ + connections={ + [1]={ + id=6714, + orbit=2147483647 + } + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + 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", + connections={ + }, + group=409, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=42604, + stats={ + } + }, + [42614]={ + connections={ + }, + group=787, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=265, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + name="Channelling Damage", + orbit=2, + orbitIndex=6, + skill=42635, + stats={ + [1]="Channelling Skills deal 12% increased Damage" + } + }, + [42658]={ + connections={ + }, + group=1194, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=221, + icon="Art/2DArt/SkillIcons/passives/RageNotable.dds", + isNotable=true, + name="Commanding Rage", + orbit=2, + orbitIndex=10, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Suffering" + }, + skill=42660, + stats={ + [1]="Every Rage also grants you 1% increased Minion Attack Speed", + [2]="Every Rage also grants you 1% increased Minion Damage" + } + }, + [42680]={ + connections={ + }, + group=674, + icon="Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds", + isKeystone=true, + name="Blackflame Covenant", + orbit=0, + orbitIndex=0, + skill=42680, + stats={ + [1]="Fire Spells Convert 100% of Fire Damage to Chaos Damage", + [2]="Chaos Damage from Fire Spells Contributes to Flammability and Ignite Magnitudes", + [3]="Ignite inflicted with Fire Spells deals Chaos Damage instead of Fire Damage" + } + }, + [42710]={ + connections={ + [1]={ + id=41186, + orbit=0 + } + }, + group=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=1240, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Thousand Cuts", + orbit=5, + orbitIndex=60, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Despair" + }, + skill=42714, + stats={ + [1]="Enemies you apply Incision to take 2% increased Physical Damage per Incision" + } + }, + [42736]={ + connections={ + [1]={ + id=60685, + orbit=-3 + } + }, + group=840, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=553, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=7, + orbitIndex=4, + skill=42737, + stats={ + } + }, + [42750]={ + connections={ + [1]={ + id=17088, + orbit=4 + }, + [2]={ + id=9050, + orbit=-4 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=6, + orbitIndex=42, + skill=42750, + stats={ + [1]="10% increased Attack Damage" + } + }, + [42760]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + }, + group=1235, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.dds", + isNotable=true, + name="Chakra of Stability", + orbit=1, + orbitIndex=4, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Paranoia" + }, + 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.dds", + isAscendancyStart=true, + name="Oracle", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=42761, + stats={ + } + }, + [42762]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=58197, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=966, + icon="Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds", + isNotable=true, + isSwitchable=true, + name="Clean Shot", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=1210, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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", + connections={ + }, + group=1377, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=42802, + stats={ + } + }, + [42805]={ + connections={ + [1]={ + id=26034, + orbit=-5 + } + }, + group=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=431, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Tides of Change", + orbit=7, + orbitIndex=19, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Fear" + }, + skill=42813, + stats={ + [1]="25% increased Skill Effect Duration" + } + }, + [42825]={ + connections={ + [1]={ + id=31238, + orbit=0 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=14, + skill=42825, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [42845]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=10371, + orbit=0 + } + }, + group=310, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Banner Area", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=42845, + stats={ + [1]="Banner Skills have 20% increased Area of Effect" + } + }, + [42857]={ + connections={ + [1]={ + id=20024, + orbit=3 + }, + [2]={ + id=7576, + orbit=0 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/Harrier.dds", + 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=141, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + 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" + } + }, + [42916]={ + connections={ + [1]={ + id=11030, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=3, + orbitIndex=4, + skill=42916, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [42959]={ + connections={ + [1]={ + id=32896, + orbit=-2 + }, + [2]={ + id=28903, + orbit=0 + } + }, + group=1222, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Low Tolerance", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Isolation" + }, + skill=42959, + stats={ + [1]="60% increased Effect 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=1395, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds", + name="Blind Chance", + orbit=2, + orbitIndex=18, + skill=42974, + stats={ + [1]="5% chance to Blind Enemies on Hit" + } + }, + [42981]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + [1]={ + id=56104, + orbit=0 + } + }, + group=640, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds", + isNotable=true, + name="Cruel Methods", + orbit=4, + orbitIndex=40, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Paranoia" + }, + 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.dds", + name="Attack Area", + orbit=1, + orbitIndex=8, + skill=42984, + stats={ + [1]="6% increased Area of Effect" + } + }, + [42998]={ + connections={ + [1]={ + id=40333, + orbit=2 + } + }, + group=1230, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=881, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=3, + orbitIndex=10, + skill=42999, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [43014]={ + connections={ + [1]={ + id=34308, + orbit=0 + } + }, + group=444, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds", + 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=419, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=1178, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=43044, + stats={ + [1]="+5 to any Attribute" + } + }, + [43082]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=1297, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + isNotable=true, + name="Acceleration", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Disgust" + }, + 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=1381, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + isNotable=true, + name="Agonising Calamity", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Isolation" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1310, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Electrotherapy", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Guilt" + }, + skill=43090, + stats={ + [1]="5% increased Skill Speed", + [2]="30% increased Electrocute Buildup" + } + }, + [43095]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=35187, + orbit=0 + } + }, + group=1463, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Skill Speed", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + 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=1230, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=351, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Cast Speed and Area of Effect", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + orbit=4, + orbitIndex=60, + skill=43128, + stats={ + [1]="4% increased Cast Speed", + [2]="8% increased Area of Effect" + } + }, + [43131]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=61973, + orbit=-9 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Damage vs Low Life Enemies", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + 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=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Stormbreaker", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Despair", + [3]="Guilt" + }, + skill=43139, + stats={ + [1]="20% increased Damage for each type of Elemental Ailment on Enemy" + } + }, + [43142]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=327, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=43142, + stats={ + } + }, + [43149]={ + connections={ + [1]={ + id=40292, + orbit=0 + } + }, + group=295, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + 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=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=614, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=7, + orbitIndex=20, + skill=43164, + stats={ + [1]="8% increased Melee Damage" + } + }, + [43174]={ + connections={ + [1]={ + id=28542, + orbit=-7 + } + }, + group=370, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=603, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=732, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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=1105, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + 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=144, + icon="Art/2DArt/SkillIcons/passives/ElementalDominion2.dds", + isNotable=true, + name="Adaptive Skin", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Guilt" + }, + 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=996, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Triggered Spell Damage", + orbit=7, + orbitIndex=21, + skill=43281, + stats={ + [1]="Triggered Spells deal 16% increased Spell Damage" + } + }, + [43282]={ + connections={ + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + 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=477, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + name="Life Costs", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1295, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=568, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=732, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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.dds", + name="Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Ancestral Reach", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Ire" + }, + skill=43396, + stats={ + [1]="25% increased Totem Placement speed", + [2]="50% increased Totem Placement range" + } + }, + [43423]={ + connections={ + [1]={ + id=48660, + orbit=0 + } + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + isNotable=true, + name="Emboldened Avatar", + orbit=2, + orbitIndex=23, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Greed" + }, + 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 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds", + isNotable=true, + name="Navira's Well", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=2, + orbitIndex=12, + skill=43426, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [43443]={ + connections={ + [1]={ + id=32148, + orbit=0 + }, + [2]={ + id=49370, + orbit=0 + }, + [3]={ + id=8535, + orbit=0 + } + }, + group=169, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + name="Flail Critical Chance", + orbit=0, + orbitIndex=0, + skill=43443, + stats={ + [1]="15% increased Critical Hit Chance with Flails" + } + }, + [43444]={ + connections={ + }, + group=757, + icon="Art/2DArt/SkillIcons/passives/knockback.dds", + name="Knockback", + orbit=7, + orbitIndex=8, + skill=43444, + stats={ + [1]="8% increased Knockback Distance" + } + }, + [43453]={ + connections={ + [1]={ + id=64050, + orbit=0 + } + }, + group=1281, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + 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=162, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=487, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=2147483647 + } + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + name="Gain Maximum Power Charges on Gaining Power Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=2, + orbitIndex=11, + skill=43486, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to", + [2]="your maximum number of Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [43507]={ + connections={ + [1]={ + id=40292, + orbit=0 + } + }, + group=295, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + 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=1208, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + name="Charm Charges Used", + orbit=7, + orbitIndex=7, + skill=43522, + stats={ + [1]="6% reduced Charm Charges used" + } + }, + [43557]={ + connections={ + }, + group=735, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=804, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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=839, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage ", + orbit=7, + orbitIndex=16, + skill=43575, + stats={ + [1]="10% increased Melee Damage" + } + }, + [43576]={ + connections={ + [1]={ + id=7971, + orbit=3 + } + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=3, + orbitIndex=8, + skill=43576, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [43578]={ + connections={ + }, + group=766, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=4, + orbitIndex=26, + skill=43578, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [43579]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + [1]={ + id=35369, + orbit=0 + } + }, + group=237, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=1, + orbitIndex=9, + skill=43579, + stats={ + } + }, + [43584]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + isNotable=true, + name="Flare", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Despair" + }, + 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=165, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=1051, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Energising Archon", + orbit=7, + orbitIndex=17, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Envy" + }, + skill=43633, + stats={ + [1]="20% faster start of Energy Shield Recharge while affected by an Archon Buff", + [2]="40% increased Energy Shield Recharge Rate while affected by an Archon Buff" + } + }, + [43647]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + [1]={ + id=32507, + orbit=0 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=2, + orbitIndex=17, + skill=43647, + stats={ + } + }, + [43650]={ + connections={ + [1]={ + id=21070, + orbit=0 + }, + [2]={ + id=53386, + orbit=0 + } + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=244, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=4, + orbitIndex=9, + skill=43653, + stats={ + [1]="12% increased Cold Damage" + } + }, + [43677]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Crippling Toxins", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Envy" + }, + 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=1041, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=6, + skill=43691, + stats={ + [1]="+5 to any Attribute" + } + }, + [43711]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern", + connections={ + }, + group=305, + icon="Art/2DArt/SkillIcons/passives/ThornsNotable1.dds", + isNotable=true, + name="Thornhide", + orbit=2, + orbitIndex=18, + recipe={ + [1]="Ire", + [2]="Greed", + [3]="Fear" + }, + 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=779, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + name="Offering Area", + orbit=0, + orbitIndex=0, + skill=43713, + stats={ + [1]="Offering Skills have 20% increased Area of Effect" + } + }, + [43720]={ + connections={ + }, + group=1169, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=775, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isSwitchable=true, + name="Energy Shield Delay", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + id=38659, + name="Mana Regeneration", + stats={ + [1]="10% increased Mana Regeneration Rate" + } + } + }, + orbit=2, + orbitIndex=3, + skill=43736, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [43746]={ + connections={ + [1]={ + id=16460, + orbit=0 + }, + [2]={ + id=38143, + orbit=0 + } + }, + group=899, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=283, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleed Chance", + orbit=3, + orbitIndex=2, + skill=43778, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [43791]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern", + connections={ + }, + group=643, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds", + isNotable=true, + name="Rallying Icon", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Guilt" + }, + 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", + connections={ + }, + group=459, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=43818, + stats={ + } + }, + [43829]={ + connections={ + [1]={ + id=51944, + orbit=0 + }, + [2]={ + id=45576, + orbit=0 + } + }, + group=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Advanced Munitions", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Greed" + }, + 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=534, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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=468, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=525, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="All For One", + orbit=7, + orbitIndex=7, + recipe={ + [1]="Paranoia", + [2]="Disgust", + [3]="Suffering" + }, + skill=43854, + stats={ + [1]="20% reduced Presence Area of Effect", + [2]="12% increased Area of Effect" + } + }, + [43867]={ + connections={ + [1]={ + id=10423, + orbit=2 + } + }, + group=1364, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + 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=1110, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=3, + orbitIndex=10, + skill=43893, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [43895]={ + connections={ + [1]={ + id=48670, + orbit=-5 + } + }, + group=572, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=922, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isSwitchable=true, + name="Accuracy", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Melting Flames", + orbit=3, + orbitIndex=6, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Paranoia" + }, + 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.dds", + 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=1220, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds", + isNotable=true, + name="Instability", + orbit=2, + orbitIndex=13, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Ire" + }, + 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=1137, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break", + orbit=2, + orbitIndex=4, + skill=43964, + stats={ + [1]="Break 20% increased Armour" + } + }, + [44005]={ + connections={ + }, + group=266, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Casting Cascade", + orbit=6, + orbitIndex=38, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Isolation" + }, + skill=44005, + stats={ + [1]="15% reduced Spell Damage", + [2]="6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + } + }, + [44014]={ + connections={ + [1]={ + id=11855, + orbit=0 + } + }, + group=924, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=8, + skill=44014, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [44017]={ + connections={ + [1]={ + id=4527, + orbit=0 + } + }, + group=227, + icon="Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds", + isKeystone=true, + name="Resolute Technique", + orbit=0, + orbitIndex=0, + skill=44017, + stats={ + [1]="Accuracy Rating is Doubled", + [2]="Never deal Critical Hits" + } + }, + [44069]={ + connections={ + [1]={ + id=29358, + orbit=-7 + } + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=3, + orbitIndex=4, + skill=44069, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [44082]={ + connections={ + [1]={ + id=4931, + orbit=0 + } + }, + group=472, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=6, + skill=44082, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [44092]={ + connections={ + [1]={ + id=54911, + orbit=0 + } + }, + group=586, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=647, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=7, + orbitIndex=18, + skill=44176, + stats={ + [1]="+3 to all Attributes" + } + }, + [44179]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + }, + group=784, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=44179, + stats={ + } + }, + [44188]={ + connections={ + [1]={ + id=64427, + orbit=0 + } + }, + group=885, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=962, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=420, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + name="Armour and Energy Shield Delay", + orbit=7, + orbitIndex=5, + skill=44213, + stats={ + [1]="12% increased Armour", + [2]="12% faster start of Energy Shield Recharge" + } + }, + [44223]={ + connections={ + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=7, + orbitIndex=1, + skill=44223, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [44239]={ + connections={ + [1]={ + id=29479, + orbit=0 + } + }, + group=1050, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + name="Pin Buildup", + orbit=7, + orbitIndex=16, + skill=44239, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [44255]={ + connections={ + [1]={ + id=28573, + orbit=-3 + } + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + name="Minion Revive Speed", + orbit=7, + orbitIndex=12, + skill=44255, + stats={ + [1]="Minions Revive 5% faster" + } + }, + [44280]={ + connections={ + [1]={ + id=23305, + orbit=-3 + } + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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=636, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + isNotable=true, + name="Hastening Barrier", + orbit=2, + orbitIndex=9, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Paranoia" + }, + 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", + connections={ + [1]={ + id=46024, + orbit=0 + } + }, + group=262, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=44298, + stats={ + } + }, + [44299]={ + connections={ + [1]={ + id=38105, + orbit=0 + }, + [2]={ + id=49455, + orbit=0 + }, + [3]={ + id=857, + orbit=0 + } + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + isNotable=true, + name="Enhanced Barrier", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Isolation" + }, + 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=2147483647 + } + }, + group=88, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Companion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=1, + orbitIndex=6, + skill=44316, + stats={ + } + }, + [44330]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + isNotable=true, + name="Coated Arms", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Paranoia" + }, + 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=0 + } + }, + group=878, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=36, + skill=44343, + stats={ + [1]="+5 to any Attribute" + } + }, + [44344]={ + connections={ + [1]={ + id=28092, + orbit=4 + } + }, + group=578, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=958, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Critical Chance", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=9, + orbitIndex=34, + skill=44357, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [44359]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + }, + group=836, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=44359, + stats={ + } + }, + [44369]={ + connections={ + [1]={ + id=30748, + orbit=0 + } + }, + group=1168, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + 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=367, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds", + isNotable=true, + name="Polish That Gear", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + 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=638, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.dds", + 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=1244, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Wither Away", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Guilt", + [3]="Isolation" + }, + skill=44373, + stats={ + [1]="Unwithered enemies are Withered for 8 seconds when they enter your Presence", + [2]="20% increased Withered Magnitude" + } + }, + [44406]={ + connections={ + }, + group=395, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + 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=550, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=7, + orbitIndex=10, + skill=44419, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [44420]={ + connections={ + [1]={ + id=28021, + orbit=0 + } + }, + group=1135, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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", + connections={ + [1]={ + id=25971, + orbit=0 + } + }, + group=1158, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=2, + orbitIndex=1, + skill=44423, + stats={ + } + }, + [44430]={ + connections={ + [1]={ + id=7062, + orbit=0 + } + }, + group=877, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=177, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1235, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.dds", + 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=749, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=44455, + stats={ + [1]="12% increased Cold Damage" + } + }, + [44461]={ + connections={ + [1]={ + id=54998, + orbit=-7 + } + }, + group=282, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Remnant Range", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + 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.dds", + name="Companion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=957, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Ignite Magnitude", + orbit=7, + orbitIndex=5, + skill=44487, + stats={ + [1]="10% increased Ignite Magnitude" + } + }, + [44490]={ + connections={ + [1]={ + id=43090, + orbit=0 + } + }, + group=1285, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Exposure Effect", + orbit=3, + orbitIndex=20, + skill=44498, + stats={ + [1]="10% increased Exposure Effect" + } + }, + [44516]={ + connections={ + [1]={ + id=2113, + orbit=0 + } + }, + group=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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=1309, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=22, + skill=44522, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [44527]={ + connections={ + [1]={ + id=44875, + orbit=0 + } + }, + group=935, + icon="Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds", + isNotable=true, + isSwitchable=true, + name="Cautious Concoctions", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds", + 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", + connections={ + }, + group=1105, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=1, + orbitIndex=4, + skill=44540, + stats={ + } + }, + [44560]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=0 + } + }, + group=521, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1026, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=831, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Lightning Rod", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Isolation" + }, + skill=44566, + stats={ + [1]="30% chance for Lightning Damage with Hits to be Lucky" + } + }, + [44573]={ + connections={ + }, + group=1259, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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]="Combo count loss occurs 20% slower" + } + }, + [44605]={ + connections={ + [1]={ + id=59881, + orbit=-6 + }, + [2]={ + id=13081, + orbit=0 + } + }, + group=730, + icon="Art/2DArt/SkillIcons/passives/newnewattackspeed.dds", + 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", + connections={ + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=44608, + stats={ + } + }, + [44612]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern", + connections={ + }, + group=1030, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=0, + orbitIndex=0, + skill=44612, + stats={ + } + }, + [44628]={ + connections={ + [1]={ + id=20820, + orbit=0 + } + }, + group=1106, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=4, + skill=44628, + stats={ + [1]="3% increased Attack Speed" + } + }, + [44659]={ + connections={ + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=27, + skill=44659, + stats={ + [1]="+5 to any Attribute" + } + }, + [44669]={ + connections={ + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=5162, + orbit=0 + }, + [2]={ + id=45406, + orbit=0 + }, + [3]={ + id=50198, + orbit=0 + }, + [4]={ + id=11495, + orbit=0 + }, + [5]={ + id=9994, + orbit=0 + }, + [6]={ + id=74, + orbit=0 + }, + [7]={ + id=52980, + orbit=0 + } + }, + group=828, + icon="Art/2DArt/SkillIcons/passives/tempint.dds", + name="SIX", + orbit=0, + orbitIndex=0, + skill=44683, + stats={ + } + }, + [44690]={ + connections={ + [1]={ + id=14127, + orbit=0 + } + }, + group=1020, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Reduced Duration", + orbit=2, + orbitIndex=5, + skill=44690, + stats={ + [1]="8% reduced Skill Effect Duration" + } + }, + [44699]={ + connections={ + [1]={ + id=16150, + orbit=0 + } + }, + group=1420, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=677, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=531, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=331, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds", + isNotable=true, + name="Suppressing Fire", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + 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.dds", + isNotable=true, + name="One With Flame", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Isolation" + }, + skill=44753, + stats={ + [1]="50% reduced Magnitude of Ignite on you" + } + }, + [44756]={ + connections={ + [1]={ + id=44841, + orbit=5 + } + }, + group=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + isNotable=true, + name="Marked Agility", + orbit=3, + orbitIndex=15, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Suffering" + }, + 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=788, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + isNotable=true, + name="Distracting Presence", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Suffering" + }, + 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=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=5, + orbitIndex=18, + skill=44776, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [44783]={ + connections={ + [1]={ + id=22949, + orbit=0 + } + }, + group=380, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Placement Speed", + orbit=7, + orbitIndex=14, + skill=44787, + stats={ + [1]="20% increased Totem Placement speed" + } + }, + [44836]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern", + connections={ + [1]={ + id=47150, + orbit=0 + } + }, + group=754, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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", + connections={ + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Recovery Mastery", + orbit=0, + orbitIndex=0, + skill=44850, + stats={ + } + }, + [44871]={ + connections={ + [1]={ + id=54447, + orbit=0 + }, + [2]={ + id=56216, + orbit=0 + } + }, + group=736, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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=345, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=935, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=44875, + stats={ + } + }, + [44891]={ + connections={ + [1]={ + id=52537, + orbit=2147483647 + }, + [2]={ + id=15775, + orbit=0 + } + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=2, + orbitIndex=7, + skill=44891, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [44902]={ + connections={ + [1]={ + id=511, + orbit=3 + } + }, + group=189, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=942, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Self Mortification", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Envy", + [3]="Envy" + }, + 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=1266, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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", + connections={ + }, + group=646, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=44948, + stats={ + } + }, + [44951]={ + connections={ + [1]={ + id=5777, + orbit=0 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isSwitchable=true, + name="Minion Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + [1]={ + id=9163, + orbit=0 + } + }, + group=160, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Made to Last", + orbit=3, + orbitIndex=11, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Guilt" + }, + skill=44952, + stats={ + [1]="30% increased Armour", + [2]="5% of Physical Damage prevented Recouped as Life" + } + }, + [44974]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + }, + group=1161, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + isNotable=true, + name="Hail", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Fear", + [3]="Greed" + }, + skill=44974, + stats={ + [1]="Empowered Attacks Gain 16% of Damage as Extra Cold Damage" + } + }, + [44983]={ + connections={ + [1]={ + id=3685, + orbit=0 + } + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + 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=1337, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=3, + orbitIndex=12, + skill=45012, + stats={ + [1]="10% increased Attack Damage" + } + }, + [45013]={ + connections={ + [1]={ + id=58884, + orbit=0 + } + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Finishing Blows", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Ire" + }, + 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", + connections={ + }, + group=912, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=45019, + stats={ + } + }, + [45037]={ + connections={ + [1]={ + id=9736, + orbit=0 + } + }, + group=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=295, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + 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=925, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=249, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + name="Attack Damage", + orbit=7, + orbitIndex=19, + skill=45090, + stats={ + [1]="12% increased Attack Damage" + } + }, + [45100]={ + connections={ + [1]={ + id=56928, + orbit=-3 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=1207, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Duration", + orbit=7, + orbitIndex=2, + skill=45111, + stats={ + [1]="20% increased Curse Duration" + } + }, + [45137]={ + connections={ + [1]={ + id=44487, + orbit=0 + } + }, + group=957, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Presence Area", + orbit=7, + orbitIndex=18, + skill=45162, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [45177]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + }, + group=574, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Strike True", + orbit=2, + orbitIndex=4, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Envy" + }, + skill=45177, + stats={ + [1]="20% increased Accuracy Rating", + [2]="+10 to Dexterity" + } + }, + [45193]={ + connections={ + [1]={ + id=4083, + orbit=0 + } + }, + group=1073, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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 + } + }, + group=254, + icon="Art/2DArt/SkillIcons/passives/totemmax.dds", + isKeystone=true, + name="Ancestral Bond", + orbit=0, + orbitIndex=0, + skill=45202, + stats={ + [1]="Unlimited number of Summoned Totems", + [2]="Totems reserve 75 Spirit each" + } + }, + [45215]={ + connections={ + [1]={ + id=53187, + orbit=0 + } + }, + group=413, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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.dds", + name="Bow Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=194, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break", + orbit=3, + orbitIndex=1, + skill=45227, + stats={ + [1]="Break 20% increased Armour" + } + }, + [45230]={ + connections={ + [1]={ + id=28229, + orbit=0 + } + }, + group=916, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=1095, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Refills", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Greed", + [2]="Ire", + [3]="Isolation" + }, + skill=45244, + stats={ + [1]="Life Flasks gain 0.15 charges per Second" + } + }, + [45248]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=14429, + orbit=2147483647 + } + }, + group=394, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Skill Gem Quality", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=45248, + stats={ + [1]="+2% to Quality of all Skills" + } + }, + [45272]={ + connections={ + [1]={ + id=42280, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=5, + orbitIndex=0, + skill=45272, + stats={ + [1]="+3 to all Attributes" + } + }, + [45278]={ + connections={ + [1]={ + id=38138, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + 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=405, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1326, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + name="Spell Damage", + orbit=3, + orbitIndex=16, + skill=45319, + stats={ + [1]="8% increased Spell Damage" + } + }, + [45327]={ + connections={ + [1]={ + id=10251, + orbit=0 + } + }, + group=236, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + 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=1170, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + isNotable=true, + name="Delayed Danger", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Ire", + [3]="Disgust" + }, + 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=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Chaining Projectiles", + orbit=7, + orbitIndex=21, + skill=45331, + stats={ + [1]="Projectiles have 5% chance to Chain an additional time from terrain" + } + }, + [45343]={ + connections={ + [1]={ + id=50483, + orbit=0 + }, + [2]={ + id=14505, + orbit=0 + } + }, + group=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=870, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=264, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Aura Effect", + orbit=2, + orbitIndex=9, + skill=45354, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [45363]={ + connections={ + [1]={ + id=31292, + orbit=0 + }, + [2]={ + id=58528, + orbit=0 + } + }, + group=512, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + }, + group=1179, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds", + isNotable=true, + name="The Raging Ox", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Disgust" + }, + 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=1317, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Ailment Chance and Elemental Damage", + orbit=3, + orbitIndex=15, + 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=269, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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=2147483647 + }, + [2]={ + id=13691, + orbit=0 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Mighty Trunk", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=408, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Anger Management", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1059, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=16, + skill=45481, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [45488]={ + connections={ + [1]={ + id=4377, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + isNotable=true, + name="Cross Strike", + orbit=3, + orbitIndex=15, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Envy" + }, + skill=45488, + stats={ + [1]="20% increased Accuracy Rating while Dual Wielding", + [2]="3% increased Movement Speed while Dual Wielding" + } + }, + [45494]={ + connections={ + }, + group=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + 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=668, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=0, + orbitIndex=0, + skill=45497, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [45503]={ + connections={ + [1]={ + id=37746, + orbit=4 + } + }, + group=409, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=2, + orbitIndex=0, + skill=45503, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [45522]={ + connections={ + [1]={ + id=22314, + orbit=5 + } + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + isSwitchable=true, + name="Infused Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=868, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=214, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=779, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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", + connections={ + }, + group=790, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=7, + orbitIndex=3, + skill=45576, + stats={ + } + }, + [45585]={ + connections={ + [1]={ + id=55617, + orbit=0 + }, + [2]={ + id=37258, + orbit=5 + } + }, + group=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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=413, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Ally Attack Damage", + orbit=2, + orbitIndex=10, + skill=45586, + stats={ + [1]="Allies in your Presence deal 16% increased Damage" + } + }, + [45599]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern", + connections={ + [1]={ + id=6689, + orbit=0 + }, + [2]={ + id=32885, + orbit=0 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Lay Siege", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Fear" + }, + skill=45599, + stats={ + [1]="1% increased Damage per 1% Chance to Block" + } + }, + [45602]={ + ascendancyName="Disciple of Varashta", + connections={ + [1]={ + id=32705, + orbit=-9 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds", + isNotable=true, + name="Navira's Oasis", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=7, + orbitIndex=7, + skill=45602, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [45609]={ + connections={ + }, + group=1131, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + orbit=3, + orbitIndex=20, + skill=45609, + stats={ + [1]="15% increased Critical Damage Bonus" + } + }, + [45612]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern", + connections={ + [1]={ + id=53901, + orbit=0 + } + }, + group=446, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Defensive Reflexes", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Greed", + [2]="Ire", + [3]="Ire" + }, + skill=45612, + stats={ + [1]="12% increased Block chance", + [2]="5 Mana gained when you Block" + } + }, + [45631]={ + connections={ + [1]={ + id=3630, + orbit=-5 + } + }, + group=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + name="Evasion and Energy Shield Recharge", + orbit=7, + orbitIndex=14, + skill=45631, + stats={ + [1]="10% increased Evasion Rating", + [2]="10% increased Energy Shield Recharge Rate" + } + }, + [45632]={ + connections={ + [1]={ + id=24551, + orbit=0 + } + }, + group=280, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Mind Eraser", + orbit=7, + orbitIndex=19, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Paranoia" + }, + 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=1005, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=1056, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Shield Defences", + orbit=0, + orbitIndex=0, + skill=45693, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [45702]={ + connections={ + [1]={ + id=61333, + orbit=-3 + }, + [2]={ + id=31692, + orbit=3 + } + }, + group=1250, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=19, + skill=45702, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [45709]={ + connections={ + [1]={ + id=52803, + orbit=0 + } + }, + group=1189, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage and Flammability Magnitude", + orbit=5, + orbitIndex=60, + skill=45712, + stats={ + [1]="20% increased Flammability Magnitude", + [2]="8% increased Elemental Damage" + } + }, + [45713]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern", + connections={ + }, + group=1282, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + isNotable=true, + name="Savouring", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Ire", + [3]="Isolation" + }, + skill=45713, + stats={ + [1]="20% increased Flask Effect Duration", + [2]="20% chance for Flasks you use to not consume Charges" + } + }, + [45751]={ + connections={ + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Frightening Shield", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Disgust", + [3]="Suffering" + }, + skill=45751, + stats={ + [1]="Apply Debilitate to Enemies 3 Metres in front of you while your Shield is raised" + } + }, + [45774]={ + connections={ + [1]={ + id=54975, + orbit=3 + } + }, + group=1159, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=468, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + isNotable=true, + name="Hidden Barb", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Envy", + [2]="Paranoia", + [3]="Isolation" + }, + 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=1220, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + name="Volatility on Kill", + orbit=3, + orbitIndex=13, + skill=45798, + stats={ + [1]="3% chance to gain Volatility on Kill" + } + }, + [45824]={ + connections={ + [1]={ + id=61441, + orbit=0 + }, + [2]={ + id=8493, + orbit=0 + } + }, + group=583, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + name="Sword Damage", + orbit=0, + orbitIndex=0, + skill=45824, + stats={ + [1]="10% increased Damage with Swords" + } + }, + [45874]={ + connections={ + }, + group=307, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Proliferating Weeds", + orbit=5, + orbitIndex=48, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Paranoia" + }, + 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=692, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=586, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + 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=662, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=5, + orbitIndex=48, + skill=45916, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [45918]={ + connections={ + }, + group=411, + icon="Art/2DArt/SkillIcons/passives/heroicspirit.dds", + isKeystone=true, + name="Mind Over Matter", + orbit=0, + orbitIndex=0, + skill=45918, + stats={ + [1]="All Damage is taken from Mana before Life", + [2]="50% less Mana Recovery Rate" + } + }, + [45923]={ + connections={ + [1]={ + id=50084, + orbit=0 + }, + [2]={ + id=52319, + orbit=0 + } + }, + group=606, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=507, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=662, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + 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=453, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=3, + orbitIndex=12, + skill=45992, + stats={ + [1]="15% increased Armour" + } + }, + [46016]={ + ascendancyName="Infernalist", + connections={ + [1]={ + id=24039, + orbit=7 + } + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Life", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=6, + orbitIndex=54, + skill=46016, + stats={ + [1]="3% increased maximum Life" + } + }, + [46017]={ + connections={ + [1]={ + id=54962, + orbit=0 + } + }, + group=242, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration while Stationary", + orbit=7, + orbitIndex=0, + skill=46017, + stats={ + [1]="15% increased Life Regeneration Rate while stationary" + } + }, + [46023]={ + connections={ + }, + group=452, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=3, + orbitIndex=3, + skill=46023, + stats={ + [1]="15% increased Armour" + } + }, + [46024]={ + connections={ + }, + group=269, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Sigil of Lightning", + orbit=4, + orbitIndex=44, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Paranoia" + }, + 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=980, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=94, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Thorns Mastery", + orbit=0, + orbitIndex=0, + skill=46051, + stats={ + } + }, + [46060]={ + connections={ + [1]={ + id=29270, + orbit=-2 + }, + [2]={ + id=7488, + orbit=0 + } + }, + group=550, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + isNotable=true, + name="Voracious", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Suffering" + }, + skill=46060, + stats={ + [1]="20% of Leech is Instant" + } + }, + [46069]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=6088, + orbit=0 + } + }, + group=421, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=2, + orbitIndex=0, + skill=46069, + stats={ + [1]="12% increased Magnitude of Poison you inflict" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [46071]={ + ascendancyName="Amazon", + connections={ + [1]={ + id=9294, + orbit=0 + } + }, + group=1471, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Accuracy", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=46071, + stats={ + [1]="12% increased Accuracy Rating" + } + }, + [46088]={ + connections={ + [1]={ + id=13823, + orbit=0 + } + }, + group=1013, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds", + isNotable=true, + name="The Fourth Teaching", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + 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=802, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.dds", + isNotable=true, + name="Arcane Remnants", + orbit=7, + orbitIndex=17, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Envy" + }, + skill=46124, + stats={ + [1]="Recover 3% of Maximum Mana when you collect a Remnant" + } + }, + [46146]={ + connections={ + [1]={ + id=43691, + orbit=0 + } + }, + group=1037, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=1395, + icon="Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds", + name="Blind Effect", + orbit=1, + orbitIndex=6, + skill=46152, + stats={ + [1]="10% increased Blind Effect" + } + }, + [46157]={ + connections={ + [1]={ + id=37806, + orbit=0 + } + }, + group=960, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=1366, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Critical Chance", + orbit=7, + orbitIndex=13, + skill=46171, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [46182]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern", + connections={ + [1]={ + id=42460, + orbit=4 + } + }, + group=1082, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + isNotable=true, + name="Intense Dose", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Disgust" + }, + 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=1250, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Careful Assassin", + orbit=2, + orbitIndex=7, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Greed" + }, + 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=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=912, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + isNotable=true, + name="Arcane Alchemy", + orbit=2, + orbitIndex=2, + recipe={ + [1]="Envy", + [2]="Greed", + [3]="Greed" + }, + 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=642, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=591, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=875, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Short Shot", + orbit=1, + orbitIndex=4, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Envy" + }, + 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=685, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=2, + orbitIndex=14, + skill=46300, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [46325]={ + connections={ + [1]={ + id=3936, + orbit=0 + }, + [2]={ + id=33556, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=7, + orbitIndex=5, + skill=46325, + stats={ + [1]="10% increased Melee Damage" + } + }, + [46343]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern", + connections={ + [1]={ + id=13708, + orbit=0 + }, + [2]={ + id=25513, + orbit=0 + }, + [3]={ + id=47363, + orbit=0 + } + }, + group=697, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=46343, + stats={ + } + }, + [46358]={ + connections={ + [1]={ + id=50423, + orbit=0 + }, + [2]={ + id=59376, + orbit=0 + } + }, + group=620, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=66, + skill=46358, + stats={ + [1]="+5 to any Attribute" + } + }, + [46365]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=617, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + isNotable=true, + name="Gigantic Following", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Isolation" + }, + skill=46365, + stats={ + [1]="25% reduced Reservation Efficiency of Minion Skills", + [2]="Your Minions are Gigantic" + } + }, + [46380]={ + connections={ + [1]={ + id=21327, + orbit=0 + } + }, + group=312, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=117, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Wide Barrier", + orbit=4, + orbitIndex=24, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Isolation" + }, + skill=46384, + stats={ + [1]="30% increased Block chance", + [2]="25% reduced Defences" + } + }, + [46386]={ + connections={ + [1]={ + id=39986, + orbit=0 + } + }, + group=1411, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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.dds", + 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=1043, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=7, + orbitIndex=13, + skill=46402, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [46421]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern", + connections={ + }, + group=304, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=46421, + stats={ + } + }, + [46431]={ + connections={ + [1]={ + id=11015, + orbit=0 + }, + [2]={ + id=38463, + orbit=0 + } + }, + group=1196, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Damage", + orbit=0, + orbitIndex=0, + skill=46431, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [46454]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1452, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds", + isNotable=true, + name="Traveller's Wisdom", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=46454, + stats={ + [1]="Attribute Passive Skills can instead grant 5% increased Damage", + [2]="Attribute Passive Skills can instead grant 5% increased Defences", + [3]="Attribute 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=649, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + name="Armour and Evasion", + orbit=4, + orbitIndex=63, + skill=46475, + stats={ + [1]="12% increased Armour and Evasion Rating" + } + }, + [46499]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=204, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + isNotable=true, + name="Guts", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Ire" + }, + 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=340, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Pin Buildup", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=46522, + stats={ + [1]="20% increased Pin Buildup" + } + }, + [46533]={ + connections={ + [1]={ + id=28329, + orbit=3 + } + }, + group=1215, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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=273, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds", + isNotable=true, + name="No Mercy", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + 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=888, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=898, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Recovery Mastery", + orbit=2, + orbitIndex=6, + skill=46561, + stats={ + } + }, + [46565]={ + connections={ + [1]={ + id=15855, + orbit=0 + } + }, + group=510, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + 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=1169, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=610, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=7, + orbitIndex=17, + skill=46604, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [46615]={ + connections={ + [1]={ + id=53177, + orbit=7 + } + }, + group=1220, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + 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=60013, + orbit=0 + }, + [3]={ + id=44872, + orbit=0 + }, + [4]={ + id=50184, + orbit=0 + }, + [5]={ + id=25337, + orbit=0 + }, + [6]={ + id=20848, + orbit=-8 + } + }, + group=416, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds", + isNotable=true, + name="Beidat's Will", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + 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=2147483647 + } + }, + group=71, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds", + name="Elemental Resistances", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=46654, + stats={ + [1]="+3% to all Elemental Resistances" + } + }, + [46665]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern", + connections={ + }, + group=248, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=46665, + stats={ + } + }, + [46674]={ + connections={ + [1]={ + id=35921, + orbit=0 + }, + [2]={ + id=64807, + orbit=0 + } + }, + group=234, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=140, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Inherited Strength ", + orbit=3, + orbitIndex=4, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Despair" + }, + skill=46683, + stats={ + [1]="Warcries have 15% chance to Empower 3 additional Attacks" + } + }, + [46688]={ + connections={ + [1]={ + id=4238, + orbit=-2 + } + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=927, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + isNotable=true, + name="Efficient Alchemy", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Guilt" + }, + 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=386, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + isNotable=true, + name="Impair", + orbit=4, + orbitIndex=68, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Disgust" + }, + 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=1005, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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" + } + }, + [46726]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern", + connections={ + }, + group=594, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + isNotable=true, + name="Reformed Barrier", + orbit=7, + orbitIndex=1, + recipe={ + [1]="Envy", + [2]="Paranoia", + [3]="Fear" + }, + skill=46726, + stats={ + [1]="Your Energy Shield Recharge starts when your Minions are Reformed" + } + }, + [46741]={ + connections={ + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=2, + orbitIndex=22, + skill=46741, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [46742]={ + connections={ + }, + group=479, + icon="Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds", + isKeystone=true, + name="Elemental Equilibrium", + orbit=0, + orbitIndex=0, + skill=46742, + stats={ + [1]="Create Cold Infusion Remnants instead of Fire Infusion Remnants", + [2]="Create Fire Infusion Remnants instead of Lightning Infusion Remnants", + [3]="Create Lightning Infusion Remnants instead of Cold Infusion Remnants" + } + }, + [46748]={ + connections={ + [1]={ + id=51206, + orbit=5 + }, + [2]={ + id=60568, + orbit=-5 + } + }, + group=489, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=545, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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", + connections={ + }, + group=1031, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=46761, + stats={ + } + }, + [46782]={ + connections={ + [1]={ + id=53698, + orbit=3 + } + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=737, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Projectile Speed", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=3, + orbitIndex=8, + skill=46854, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [46857]={ + connections={ + [1]={ + id=42916, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=3, + orbitIndex=22, + skill=46857, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [46874]={ + connections={ + [1]={ + id=7449, + orbit=0 + }, + [2]={ + id=53696, + orbit=0 + } + }, + group=1062, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Attack Damage", + orbit=7, + orbitIndex=21, + skill=46874, + stats={ + [1]="12% increased Attack Physical Damage" + } + }, + [46882]={ + connections={ + }, + group=1141, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=8, + skill=46882, + stats={ + } + }, + [46887]={ + connections={ + [1]={ + id=43720, + orbit=-6 + }, + [2]={ + id=38463, + orbit=0 + } + }, + group=1169, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + name="Attack Damage while Surrounded", + orbit=3, + orbitIndex=11, + skill=46931, + stats={ + [1]="25% increased Attack Damage while Surrounded" + } + }, + [46972]={ + connections={ + [1]={ + id=54783, + orbit=0 + } + }, + group=849, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Arcane Mixtures", + orbit=7, + orbitIndex=23, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Guilt" + }, + skill=46972, + stats={ + [1]="25% increased Energy Shield Recharge Rate", + [2]="Mana Flasks gain 0.1 charges per Second" + } + }, + [46989]={ + connections={ + }, + group=819, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=1427, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Deadeye", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=9, + orbitIndex=48, + skill=46990, + stats={ + } + }, + [47006]={ + connections={ + [1]={ + id=43174, + orbit=7 + } + }, + group=370, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=1092, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Attack Area Damage", + orbit=7, + orbitIndex=11, + skill=47009, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [47021]={ + connections={ + [1]={ + id=36217, + orbit=1 + } + }, + group=1360, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + name="Volatility Detonation Time", + orbit=2, + orbitIndex=18, + skill=47021, + stats={ + [1]="15% increased Volatility Explosion delay" + } + }, + [47088]={ + connections={ + }, + group=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Sic 'Em", + orbit=4, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Disgust" + }, + 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.dds", + isNotable=true, + name="Warcaller's Bellow", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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=754, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=868, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=688, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=554, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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", + connections={ + }, + group=184, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=47173, + stats={ + } + }, + [47175]={ + classesStart={ + [1]="Marauder", + [2]="Warrior" + }, + connections={ + [1]={ + id=16732, + orbit=0 + }, + [2]={ + id=51916, + orbit=0 + }, + [3]={ + id=54579, + orbit=0 + }, + [4]={ + id=5852, + orbit=0 + }, + [5]={ + id=33812, + orbit=0 + }, + [6]={ + id=32534, + orbit=0 + }, + [7]={ + id=3936, + orbit=0 + }, + [8]={ + id=38646, + orbit=0 + } + }, + group=683, + icon="Art/2DArt/SkillIcons/passives/blankStr.dds", + name="MARAUDER", + orbit=0, + orbitIndex=0, + skill=47175, + stats={ + } + }, + [47177]={ + connections={ + }, + group=890, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + isNotable=true, + name="Living Weapon", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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.dds", + name="Passive Point", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=47190, + stats={ + [1]="Grants 1 Passive Skill Point" + } + }, + [47191]={ + connections={ + }, + group=260, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=4, + orbitIndex=58, + skill=47191, + stats={ + [1]="12% increased Fire Damage" + } + }, + [47212]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=468, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=47212, + stats={ + } + }, + [47235]={ + connections={ + [1]={ + id=24570, + orbit=0 + } + }, + group=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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.dds", + name="Melee Damage", + nodeOverlay={ + alloc="Smith of KitavaFrameSmallAllocated", + path="Smith of KitavaFrameSmallCanAllocate", + unalloc="Smith of KitavaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=47236, + stats={ + [1]="20% increased Melee Damage" + } + }, + [47242]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=257, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=47242, + stats={ + } + }, + [47252]={ + connections={ + }, + group=237, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=191, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=47263, + stats={ + [1]="+5 to any Attribute" + } + }, + [47270]={ + connections={ + }, + group=749, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Inescapable Cold", + orbit=4, + orbitIndex=66, + recipe={ + [1]="Ire", + [2]="Paranoia", + [3]="Isolation" + }, + skill=47270, + stats={ + [1]="40% increased Freeze Buildup", + [2]="20% increased Freeze Duration on Enemies" + } + }, + [47284]={ + connections={ + [1]={ + id=3332, + orbit=0 + } + }, + group=600, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.dds", + 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=745, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=2, + orbitIndex=4, + skill=47307, + stats={ + [1]="3% increased Cast Speed" + } + }, + [47312]={ + ascendancyName="Amazon", + connections={ + }, + group=1480, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds", + isNotable=true, + name="Azmeri Brew", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=47312, + stats={ + [1]="Life Flasks also recover Mana", + [2]="Mana Flasks also recover Life" + } + }, + [47316]={ + connections={ + [1]={ + id=2888, + orbit=0 + }, + [2]={ + id=28862, + orbit=0 + } + }, + group=422, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + isNotable=true, + name="Goring", + orbit=7, + orbitIndex=19, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Isolation" + }, + skill=47316, + stats={ + [1]="3% reduced maximum Life", + [2]="30% increased amount of Life Leeched", + [3]="40% increased Physical Damage" + } + }, + [47344]={ + ascendancyName="Acolyte of Chayula", + connections={ + [1]={ + id=3781, + orbit=0 + } + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds", + name="Chaos Damage", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=9, + orbitIndex=0, + skill=47344, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [47359]={ + connections={ + [1]={ + id=14231, + orbit=-7 + } + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Triggered Spell Damage", + orbit=7, + orbitIndex=17, + skill=47359, + stats={ + [1]="Triggered Spells deal 16% increased Spell Damage" + } + }, + [47363]={ + connections={ + }, + group=720, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + isNotable=true, + name="Colossal Weapon", + orbit=4, + orbitIndex=50, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Ire" + }, + skill=47363, + stats={ + [1]="12% increased Area of Effect for Attacks", + [2]="+10 to Strength" + } + }, + [47371]={ + connections={ + [1]={ + id=7668, + orbit=0 + } + }, + group=355, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=1247, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=1407, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=0, + orbitIndex=0, + skill=47375, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [47418]={ + connections={ + [1]={ + id=23839, + orbit=0 + }, + [2]={ + id=10738, + orbit=0 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + isNotable=true, + name="Warding Potions", + orbit=2, + orbitIndex=9, + recipe={ + [1]="Greed", + [2]="Envy", + [3]="Paranoia" + }, + skill=47418, + stats={ + [1]="10% reduced Flask Charges used from Mana Flasks", + [2]="Remove a Curse when you use a Mana Flask" + } + }, + [47420]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + [1]={ + id=11048, + orbit=0 + }, + [2]={ + id=52676, + orbit=7 + } + }, + group=267, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + isNotable=true, + name="Expendable Army", + orbit=1, + orbitIndex=9, + recipe={ + [1]="Ire", + [2]="Greed", + [3]="Isolation" + }, + skill=47420, + stats={ + [1]="20% increased Minion Duration", + [2]="Temporary Minion Skills have +2 to Limit of Minions summoned" + } + }, + [47429]={ + connections={ + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=787, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + isNotable=true, + name="Stigmata", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Fear" + }, + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Life Flasks", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + orbit=5, + orbitIndex=2, + skill=47442, + stats={ + [1]="15% increased Life Flask Charges gained" + } + }, + [47443]={ + connections={ + [1]={ + id=60992, + orbit=0 + } + }, + group=1419, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Companion Reservation", + orbit=0, + orbitIndex=0, + skill=47443, + stats={ + [1]="8% increased Reservation Efficiency of Companion Skills" + } + }, + [47477]={ + connections={ + [1]={ + id=51774, + orbit=1 + } + }, + group=1360, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + name="Volatility Detonation Time", + orbit=1, + orbitIndex=3, + skill=47477, + stats={ + [1]="15% reduced Volatility Explosion delay" + } + }, + [47514]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + }, + group=1376, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + isNotable=true, + name="Dizzying Hits", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Envy" + }, + skill=47514, + stats={ + [1]="10% chance to Daze on Hit", + [2]="25% increased Critical Hit Chance against Dazed Enemies" + } + }, + [47555]={ + connections={ + [1]={ + id=51184, + orbit=0 + }, + [2]={ + id=18407, + orbit=0 + }, + [3]={ + id=39886, + orbit=0 + } + }, + group=648, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=22, + skill=47555, + stats={ + [1]="+5 to any Attribute" + } + }, + [47560]={ + connections={ + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Multi Shot", + orbit=8, + orbitIndex=54, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Disgust" + }, + skill=47560, + stats={ + [1]="+24% Surpassing chance to fire an additional Projectile" + } + }, + [47591]={ + connections={ + [1]={ + id=9226, + orbit=-2 + } + }, + group=509, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=182, + icon="Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds", + isOnlyImage=true, + name="Rage Mastery", + orbit=0, + orbitIndex=0, + skill=47606, + stats={ + } + }, + [47614]={ + connections={ + [1]={ + id=22219, + orbit=-7 + } + }, + group=1039, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=613, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=464, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + name="Thorns", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=2, + orbitIndex=4, + skill=47633, + stats={ + [1]="20% increased Thorns damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [47635]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1123, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Overload", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Envy" + }, + 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=1046, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Speed", + orbit=7, + orbitIndex=17, + skill=47677, + stats={ + [1]="8% increased Projectile Speed" + } + }, + [47683]={ + connections={ + }, + group=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=682, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=184, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Damage", + orbit=3, + orbitIndex=4, + skill=47722, + stats={ + [1]="16% increased Damage with Warcries" + } + }, + [47733]={ + connections={ + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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.dds", + name="Fire Penetration", + orbit=0, + orbitIndex=0, + skill=47753, + stats={ + [1]="Damage Penetrates 8% Fire Resistance" + } + }, + [47754]={ + connections={ + [1]={ + id=23455, + orbit=0 + } + }, + group=1012, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=7, + orbitIndex=16, + skill=47754, + stats={ + [1]="10% increased Cold Damage" + } + }, + [47759]={ + connections={ + [1]={ + id=62677, + orbit=2147483647 + } + }, + group=837, + icon="Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds", + isKeystone=true, + name="Whispers of Doom", + orbit=0, + orbitIndex=0, + skill=47759, + stats={ + [1]="You can apply an additional Curse", + [2]="Double Activation Delay of Curses" + } + }, + [47782]={ + connections={ + [1]={ + id=38003, + orbit=4 + }, + [2]={ + id=28361, + orbit=-4 + } + }, + group=758, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Steady Footing", + orbit=4, + orbitIndex=54, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Ire" + }, + 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=313, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=662, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=12, + skill=47796, + stats={ + [1]="3% increased Attack Speed" + } + }, + [47821]={ + connections={ + [1]={ + id=41033, + orbit=9 + } + }, + group=1044, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=1309, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=18, + skill=47831, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [47833]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=880, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=47833, + stats={ + } + }, + [47856]={ + connections={ + [1]={ + id=32561, + orbit=0 + } + }, + group=720, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + 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=1110, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=155, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1269, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=608, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Devastation", + orbit=7, + orbitIndex=9, + recipe={ + [1]="Ire", + [2]="Ire", + [3]="Despair" + }, + 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", + connections={ + [1]={ + id=36302, + orbit=0 + } + }, + group=745, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=48007, + stats={ + } + }, + [48014]={ + connections={ + }, + group=208, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Honourless", + orbit=5, + orbitIndex=63, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Fear" + }, + 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=491, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=836, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=7, + orbitIndex=1, + skill=48030, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [48035]={ + connections={ + [1]={ + id=11329, + orbit=0 + } + }, + group=541, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=515, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleed Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1291, + icon="Art/2DArt/SkillIcons/passives/knockback.dds", + isNotable=true, + name="Forcewave", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Paranoia" + }, + 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=10472, + orbit=0 + }, + [4]={ + id=18624, + orbit=0 + } + }, + group=1359, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=471, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=968, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + name="Charm Charges", + orbit=7, + orbitIndex=12, + skill=48135, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [48137]={ + connections={ + [1]={ + id=33887, + orbit=0 + } + }, + group=874, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=2147483647 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Ally Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=244, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=878, + icon="Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds", + 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=688, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Headshot", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Suffering" + }, + 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=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Quick Recovery", + orbit=3, + orbitIndex=15, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Greed" + }, + 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=264, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Aura Effect", + orbit=2, + orbitIndex=3, + skill=48264, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [48267]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern", + connections={ + }, + group=175, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=48267, + stats={ + } + }, + [48290]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern", + connections={ + [1]={ + id=55180, + orbit=0 + }, + [2]={ + id=49088, + orbit=0 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.dds", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=2, + orbitIndex=15, + skill=48290, + stats={ + } + }, + [48305]={ + connections={ + [1]={ + id=37629, + orbit=6 + } + }, + group=560, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + 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=407, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=847, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=555, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Hefty Unit", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Ire", + [2]="Disgust", + [3]="Suffering" + }, + skill=48418, + stats={ + [1]="+3 to Stun Threshold per Strength" + } + }, + [48429]={ + connections={ + [1]={ + id=58714, + orbit=0 + }, + [2]={ + id=36169, + orbit=0 + } + }, + group=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=1270, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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", + connections={ + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=2, + orbitIndex=18, + skill=48505, + stats={ + } + }, + [48524]={ + connections={ + [1]={ + id=43818, + orbit=0 + } + }, + group=458, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + isNotable=true, + name="Blood Transfusion", + orbit=2, + orbitIndex=10, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Suffering" + }, + 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=458, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + 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=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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.dds", + isNotable=true, + name="Forged in Flame", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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", + connections={ + [1]={ + id=40166, + orbit=0 + } + }, + group=1106, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=48544, + stats={ + } + }, + [48551]={ + ascendancyName="Blood Mage", + connections={ + [1]={ + id=52703, + orbit=9 + } + }, + group=864, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Spell Critical Chance", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + 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=418, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + isNotable=true, + name="Bringer of Order", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Envy", + [2]="Fear", + [3]="Disgust" + }, + skill=48565, + stats={ + [1]="20% increased Damage", + [2]="Minions deal 20% increased Damage" + } + }, + [48568]={ + connections={ + [1]={ + id=16489, + orbit=0 + } + }, + group=896, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=635, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + isNotable=true, + name="Exploit the Elements", + orbit=6, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Isolation" + }, + 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=851, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech. Armour and Evasion while Leeching", + orbit=2, + orbitIndex=23, + skill=48583, + stats={ + [1]="8% 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=950, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=730, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=5, + orbitIndex=14, + skill=48588, + stats={ + [1]="8% increased Projectile Damage" + } + }, + [48589]={ + connections={ + [1]={ + id=7922, + orbit=-6 + } + }, + group=507, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=889, + icon="Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds", + 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=525, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=854, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + isNotable=true, + name="Hunter", + orbit=7, + orbitIndex=3, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Disgust" + }, + 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=522, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=457, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=755, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=500, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + isNotable=true, + name="Insulating Hide", + orbit=2, + orbitIndex=22, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Suffering" + }, + 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=1038, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Shattering", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Despair" + }, + 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", + connections={ + }, + group=1010, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=0, + orbitIndex=0, + skill=48660, + stats={ + } + }, + [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=629, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + name="Totem Life", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=48682, + stats={ + [1]="20% increased Totem Life" + } + }, + [48699]={ + connections={ + [1]={ + id=14601, + orbit=0 + } + }, + group=689, + icon="Art/2DArt/SkillIcons/passives/frostborn.dds", + isNotable=true, + name="Frostwalker", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Suffering" + }, + 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=444, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds", + name="Attack Speed", + orbit=2, + orbitIndex=10, + skill=48714, + stats={ + [1]="3% increased Attack Speed" + } + }, + [48717]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=195, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds", + isOnlyImage=true, + name="Armour Mastery", + orbit=7, + orbitIndex=16, + skill=48717, + stats={ + } + }, + [48734]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern", + connections={ + }, + group=1378, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds", + isNotable=true, + name="The Howling Primate", + orbit=3, + orbitIndex=4, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Greed" + }, + 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=446, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Block", + orbit=0, + orbitIndex=0, + skill=48745, + stats={ + [1]="5% increased Block chance" + } + }, + [48761]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=464, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds", + isOnlyImage=true, + name="Thorns Mastery", + orbit=0, + orbitIndex=0, + skill=48761, + stats={ + }, + 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=1386, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=44850, + orbit=0 + } + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Taut Flesh", + orbit=7, + orbitIndex=22, + recipe={ + [1]="Disgust", + [2]="Ire", + [3]="Paranoia" + }, + 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=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=744, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds", + 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=466, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + name="Gain Maximum Frenzy Charges on Gaining Frenzy Charge", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=977, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=48833, + stats={ + [1]="10% increased Lightning Damage" + } + }, + [48836]={ + connections={ + [1]={ + id=33542, + orbit=0 + } + }, + group=1417, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=852, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=48846, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [48856]={ + connections={ + [1]={ + id=17882, + orbit=0 + } + }, + group=838, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=907, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=7, + orbitIndex=8, + skill=48889, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [48925]={ + connections={ + [1]={ + id=54887, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + isNotable=true, + name="Blessing of the Moon", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Despair" + }, + 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=2147483647 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Attack Added Lighting Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1227, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + isNotable=true, + name="Altered Brain Chemistry", + orbit=2, + orbitIndex=15, + recipe={ + [1]="Ire", + [2]="Envy", + [3]="Guilt" + }, + 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=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=306, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Block", + orbit=1, + orbitIndex=6, + skill=49023, + stats={ + [1]="5% increased Block chance" + } + }, + [49046]={ + connections={ + [1]={ + id=8569, + orbit=0 + } + }, + group=897, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=379, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds", + isNotable=true, + name="Apex of the Moment", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=49049, + stats={ + [1]="Enemies in your Presence are Slowed by 20%" + } + }, + [49088]={ + connections={ + [1]={ + id=17394, + orbit=7 + } + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Splintering Force", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Paranoia", + [3]="Guilt" + }, + skill=49088, + stats={ + [1]="Minions Break Armour equal to 3% of Physical damage dealt" + } + }, + [49107]={ + connections={ + [1]={ + id=54562, + orbit=0 + } + }, + group=1255, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds", + name="Critical Chance", + orbit=2, + orbitIndex=14, + skill=49107, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [49110]={ + connections={ + [1]={ + id=54746, + orbit=-7 + } + }, + group=1055, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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", + connections={ + }, + group=134, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=49111, + stats={ + } + }, + [49130]={ + connections={ + }, + group=1252, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + name="Reduced Projectile Speed", + orbit=2, + orbitIndex=19, + skill=49130, + stats={ + [1]="6% reduced Projectile Speed" + } + }, + [49136]={ + connections={ + [1]={ + id=9604, + orbit=4 + }, + [2]={ + id=59466, + orbit=-3 + } + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=4, + orbitIndex=70, + skill=49136, + stats={ + [1]="12% increased amount of Life Leeched" + } + }, + [49150]={ + connections={ + [1]={ + id=36759, + orbit=0 + } + }, + group=1119, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Precise Invocations", + orbit=3, + orbitIndex=7, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Isolation" + }, + skill=49150, + stats={ + [1]="Invocated Spells have 30% increased Critical Hit Chance" + } + }, + [49153]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Comradery", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Mark Effect", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=8, + orbitIndex=27, + skill=49165, + stats={ + [1]="12% increased Effect of your Mark Skills" + } + }, + [49172]={ + connections={ + [1]={ + id=33730, + orbit=0 + } + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds", + name="Channelling Speed", + orbit=2, + orbitIndex=9, + skill=49172, + stats={ + [1]="3% increased Skill Speed with Channelling Skills" + } + }, + [49189]={ + ascendancyName="Stormweaver", + connections={ + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds", + isNotable=true, + name="Storm's Recollection", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + 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=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=306, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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.dds", + isNotable=true, + name="Blood of the Wolf", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Despair" + }, + 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=871, + icon="Art/2DArt/SkillIcons/passives/Harrier.dds", + 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=603, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=7, + orbitIndex=0, + skill=49231, + stats={ + [1]="3% increased Attack Speed" + } + }, + [49235]={ + connections={ + [1]={ + id=42077, + orbit=0 + } + }, + group=679, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=7, + skill=49235, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [49256]={ + connections={ + [1]={ + id=14439, + orbit=4 + } + }, + group=117, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=222, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=49259, + stats={ + } + }, + [49280]={ + connections={ + [1]={ + id=36170, + orbit=3 + } + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=724, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength", + orbit=2, + orbitIndex=22, + skill=49285, + stats={ + [1]="+8 to Strength" + } + }, + [49291]={ + connections={ + [1]={ + id=57945, + orbit=0 + } + }, + group=1190, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1370, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + name="Dagger Critical Chance", + orbit=6, + orbitIndex=31, + skill=49320, + stats={ + [1]="10% increased Critical Hit Chance with Daggers" + } + }, + [49340]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=49, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds", + isNotable=true, + name="Support Straps", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=49340, + stats={ + [1]="Body Armour grants 20% increased Strength" + } + }, + [49357]={ + connections={ + [1]={ + id=32194, + orbit=0 + }, + [2]={ + id=51618, + orbit=-9 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=0, + skill=49357, + stats={ + [1]="+5 to any Attribute" + } + }, + [49363]={ + connections={ + }, + group=532, + icon="Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds", + isKeystone=true, + name="Wildsurge Incantation", + orbit=0, + orbitIndex=0, + skill=49363, + stats={ + [1]="Storm and Plant Spells:", + [2]="deal 50% more damage", + [3]="cost 50% less", + [4]="have 75% less duration" + } + }, + [49370]={ + connections={ + [1]={ + id=6502, + orbit=0 + } + }, + group=169, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + 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.dds", + name="Armour Break", + nodeOverlay={ + alloc="WarbringerFrameSmallAllocated", + path="WarbringerFrameSmallCanAllocate", + unalloc="WarbringerFrameSmallNormal" + }, + 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=1245, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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", + connections={ + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds", + isOnlyImage=true, + name="Block Mastery", + orbit=0, + orbitIndex=0, + skill=49391, + stats={ + } + }, + [49394]={ + connections={ + [1]={ + id=23786, + orbit=0 + } + }, + group=1076, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=4, + orbitIndex=45, + skill=49406, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [49455]={ + connections={ + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=4, + orbitIndex=5, + skill=49455, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [49461]={ + connections={ + [1]={ + id=50912, + orbit=2 + } + }, + group=1072, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Speed", + orbit=2, + orbitIndex=23, + skill=49461, + stats={ + [1]="3% increased Attack Speed" + } + }, + [49466]={ + connections={ + [1]={ + id=30871, + orbit=0 + } + }, + group=1149, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=1011, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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 + }, + [3]={ + id=12890, + orbit=0 + } + }, + group=1255, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds", + name="Dexterity", + orbit=2, + orbitIndex=18, + skill=49485, + stats={ + [1]="+8 to Dexterity" + } + }, + [49497]={ + connections={ + [1]={ + id=23244, + orbit=0 + } + }, + group=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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=1444, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds", + name="Mana Flask Charges", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + 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=704, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=49512, + stats={ + [1]="+5 to any Attribute" + } + }, + [49537]={ + connections={ + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=188, + icon="Art/2DArt/SkillIcons/passives/minionattackspeed.dds", + name="Ally Attack and Cast Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1056, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Parry Damage", + orbit=7, + orbitIndex=13, + skill=49545, + stats={ + [1]="20% increased Parry Damage" + } + }, + [49547]={ + connections={ + }, + group=412, + icon="Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds", + 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", + [2]="Energy Shield does not Recharge", + [3]="You cannot Recover Energy Shield from Regeneration", + [4]="You cannot Recover Energy Shield to above Armour" + } + }, + [49550]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern", + connections={ + }, + group=533, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Prolonged Fury", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Ire", + [2]="Greed", + [3]="Despair" + }, + skill=49550, + stats={ + [1]="Inherent loss of Rage is 25% slower" + } + }, + [49593]={ + connections={ + [1]={ + id=4725, + orbit=0 + } + }, + group=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + 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=597, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="Deadly Flourish", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Guilt" + }, + skill=49618, + stats={ + [1]="25% increased Melee Critical Hit Chance" + } + }, + [49633]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + }, + group=777, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=49633, + stats={ + } + }, + [49642]={ + connections={ + [1]={ + id=4882, + orbit=0 + } + }, + group=511, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=750, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=33, + skill=49657, + stats={ + [1]="+5 to any Attribute" + } + }, + [49661]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + }, + group=1076, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Perfectly Placed Knife", + orbit=1, + orbitIndex=2, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Isolation" + }, + 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=863, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=7, + orbitIndex=21, + skill=49691, + stats={ + [1]="+16 to Evasion Rating" + } + }, + [49696]={ + connections={ + [1]={ + id=10273, + orbit=0 + } + }, + group=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + 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 + }, + [4]={ + id=33203, + orbit=0 + } + }, + group=224, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1012, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + isNotable=true, + name="Shattered Crystal", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Ire" + }, + skill=49740, + stats={ + [1]="60% reduced Ice Crystal Life" + } + }, + [49759]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=2857, + orbit=6 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Shock Chance", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=8, + orbitIndex=71, + skill=49759, + stats={ + [1]="20% increased chance to Shock" + } + }, + [49769]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=21374, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Corruption Endures", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=912, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + 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=841, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=136, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Everlasting Bloom", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=338, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=249, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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=1112, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=1234, + icon="Art/2DArt/SkillIcons/passives/damage_blue.dds", + name="Damage from Mana", + orbit=7, + orbitIndex=5, + skill=49976, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [49984]={ + connections={ + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isNotable=true, + name="Spellblade", + orbit=5, + orbitIndex=57, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Fear" + }, + 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=38814, + orbit=0 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=7, + orbitIndex=0, + skill=49993, + stats={ + [1]="Gain Deflection Rating equal to 6% 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=1272, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + isNotable=true, + name="Invigorating Grandeur", + orbit=4, + orbitIndex=39, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Fear" + }, + skill=50023, + stats={ + [1]="Recover 1% of maximum Life per Glory consumed" + } + }, + [50062]={ + connections={ + [1]={ + id=37641, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + isNotable=true, + name="Reinforced Barrier", + orbit=2, + orbitIndex=2, + recipe={ + [1]="Despair", + [2]="Greed", + [3]="Envy" + }, + skill=50062, + stats={ + [1]="20% increased maximum Energy Shield", + [2]="Defend with 120% of Armour while not on Low Energy Shield" + } + }, + [50084]={ + connections={ + [1]={ + id=61525, + orbit=0 + } + }, + group=663, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds", + isNotable=true, + name="Waking Dream", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + 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=467, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=982, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1164, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=0, + orbitIndex=0, + skill=50121, + stats={ + [1]="10% increased Cold Damage" + } + }, + [50142]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=58197, + orbit=0 + } + }, + group=89, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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", + connections={ + }, + group=1368, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Buckler Mastery", + orbit=3, + orbitIndex=8, + skill=50146, + stats={ + } + }, + [50150]={ + connections={ + [1]={ + id=37279, + orbit=0 + } + }, + group=799, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Lightning 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=421, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=969, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Life", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + 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=592, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=347, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Curse Delay", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + orbit=2, + orbitIndex=21, + skill=50219, + stats={ + [1]="Curse zones erupt after 10% reduced delay" + } + }, + [50228]={ + connections={ + [1]={ + id=20511, + orbit=0 + } + }, + group=222, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + name="Fire Damage", + orbit=3, + orbitIndex=10, + skill=50228, + stats={ + [1]="10% increased Fire Damage" + } + }, + [50253]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=341, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Aftershocks", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Greed" + }, + skill=50253, + stats={ + [1]="Slam Skills you use yourself have 30% increased Aftershock Area of Effect" + } + }, + [50268]={ + connections={ + [1]={ + id=2446, + orbit=0 + } + }, + group=1118, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds", + 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=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + 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=1265, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=396, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + 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=922, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + name="Life and Mana Flask Recovery", + orbit=3, + orbitIndex=23, + skill=50328, + stats={ + [1]="10% increased Life and Mana Recovery from Flasks" + } + }, + [50342]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=5227, + orbit=0 + } + }, + group=1043, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=2, + orbitIndex=17, + skill=50342, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [50383]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern", + connections={ + }, + group=718, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Infusion Mastery", + orbit=0, + orbitIndex=0, + skill=50383, + stats={ + } + }, + [50392]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connections={ + }, + group=202, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + isNotable=true, + name="Brute Strength", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Isolation" + }, + skill=50392, + stats={ + [1]="10% reduced maximum Mana", + [2]="1% increased Damage per 15 Strength" + } + }, + [50403]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern", + connections={ + }, + group=1311, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=50403, + stats={ + } + }, + [50420]={ + connections={ + [1]={ + id=51241, + orbit=-2 + }, + [2]={ + id=31364, + orbit=0 + } + }, + group=1329, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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=620, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=863, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=24665, + orbit=0 + }, + [4]={ + id=41736, + orbit=0 + }, + [5]={ + id=63493, + orbit=0 + }, + [6]={ + id=36365, + orbit=0 + }, + [7]={ + id=13828, + orbit=0 + }, + [8]={ + id=56651, + orbit=0 + } + }, + group=829, + icon="Art/2DArt/SkillIcons/passives/blankDex.dds", + name="RANGER", + orbit=0, + orbitIndex=0, + skill=50459, + stats={ + } + }, + [50469]={ + connections={ + [1]={ + id=32701, + orbit=0 + } + }, + group=1054, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=916, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + isNotable=true, + name="Zone of Control", + orbit=2, + orbitIndex=18, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Envy" + }, + 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=117, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Block", + orbit=4, + orbitIndex=18, + skill=50510, + stats={ + [1]="5% increased Block chance" + } + }, + [50516]={ + connections={ + [1]={ + id=2814, + orbit=0 + } + }, + group=961, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=700, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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", + connections={ + [1]={ + id=16499, + orbit=0 + } + }, + group=812, + icon="Art/2DArt/SkillIcons/passives/MasteryCurse.dds", + isOnlyImage=true, + name="Curse Mastery", + orbit=0, + orbitIndex=0, + skill=50540, + stats={ + } + }, + [50558]={ + connections={ + [1]={ + id=32194, + orbit=0 + }, + [2]={ + id=12462, + orbit=0 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isSwitchable=true, + name="Aura Effect", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.dds", + 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=184, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=327, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Barbaric Strength", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Guilt", + [2]="Despair", + [3]="Envy" + }, + 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=1001, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=1100, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=2, + orbitIndex=2, + skill=50588, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [50609]={ + connections={ + [1]={ + id=11916, + orbit=0 + } + }, + group=767, + icon="Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds", + 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", + connections={ + }, + group=247, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=50616, + stats={ + } + }, + [50626]={ + connections={ + [1]={ + id=32597, + orbit=0 + } + }, + group=645, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=261, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=1158, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=3, + orbitIndex=13, + skill=50635, + stats={ + [1]="3% increased Attack Speed" + } + }, + [50673]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=58526, + orbit=-2 + }, + [2]={ + id=62427, + orbit=-2 + } + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Avoiding Deflection", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Suffering" + }, + skill=50673, + stats={ + [1]="-5% to amount of Damage Prevented by Deflection", + [2]="20% increased Deflection Rating" + } + }, + [50687]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=709, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Coursing Energy", + orbit=7, + orbitIndex=14, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Paranoia" + }, + skill=50687, + stats={ + [1]="40% increased Electrocute Buildup", + [2]="30% increased Shock Chance against Electrocuted Enemies" + } + }, + [50701]={ + connections={ + [1]={ + id=44932, + orbit=0 + } + }, + group=1268, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=719, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + name="Frozen Limit", + orbit=7, + orbitIndex=21, + recipe={ + [1]="Greed", + [2]="Envy", + [3]="Fear" + }, + 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=735, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=954, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + name="Intelligence", + orbit=5, + orbitIndex=5, + skill=50755, + stats={ + [1]="+8 to Intelligence" + } + }, + [50757]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=290, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=50757, + stats={ + } + }, + [50767]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=112, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=2, + orbitIndex=0, + skill=50767, + stats={ + } + }, + [50795]={ + connections={ + [1]={ + id=58013, + orbit=0 + }, + [2]={ + id=20744, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Careful Aim", + orbit=7, + orbitIndex=7, + recipe={ + [1]="Guilt", + [2]="Guilt", + [3]="Paranoia" + }, + 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=954, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + name="Intelligence", + orbit=5, + orbitIndex=67, + skill=50816, + stats={ + [1]="+8 to Intelligence" + } + }, + [50817]={ + connections={ + [1]={ + id=61355, + orbit=2 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.dds", + 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.dds", + name="Glory Generation", + orbit=7, + orbitIndex=17, + skill=50820, + stats={ + [1]="15% increased Glory generation" + } + }, + [50847]={ + connections={ + [1]={ + id=1130, + orbit=0 + } + }, + group=141, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + name="Flail Damage", + orbit=7, + orbitIndex=5, + skill=50847, + stats={ + [1]="10% increased Damage with Flails" + } + }, + [50879]={ + connections={ + [1]={ + id=14211, + orbit=7 + } + }, + group=1105, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Hazard Damage", + orbit=7, + orbitIndex=4, + skill=50879, + stats={ + [1]="16% increased Hazard Damage" + } + }, + [50881]={ + connections={ + [1]={ + id=55420, + orbit=0 + } + }, + group=982, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=1062, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + isNotable=true, + name="Primal Sundering", + orbit=7, + orbitIndex=14, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Ire" + }, + skill=50884, + stats={ + [1]="Damage Penetrates 12% Elemental Resistances", + [2]="8% increased Area of Effect for Attacks" + } + }, + [50908]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=611, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + isNotable=true, + name="Strength of the Deep", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1072, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Imbibed Power", + orbit=7, + orbitIndex=20, + recipe={ + [1]="Ire", + [2]="Disgust", + [3]="Paranoia" + }, + 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=39383, + orbit=0 + }, + [2]={ + id=10889, + orbit=0 + }, + [3]={ + id=62386, + orbit=0 + }, + [4]={ + id=36252, + orbit=0 + }, + [5]={ + id=7120, + orbit=0 + }, + [6]={ + id=55536, + orbit=0 + }, + [7]={ + id=59915, + orbit=0 + } + }, + group=752, + icon="Art/2DArt/SkillIcons/passives/damagedualwield.dds", + name="DUELIST", + orbit=0, + orbitIndex=0, + skill=50986, + stats={ + } + }, + [51006]={ + connections={ + [1]={ + id=41877, + orbit=0 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + 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=1237, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=0, + orbitIndex=0, + skill=51040, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [51048]={ + connections={ + [1]={ + id=17702, + orbit=0 + }, + [2]={ + id=58814, + orbit=0 + }, + [3]={ + id=33946, + orbit=0 + }, + [4]={ + id=30910, + orbit=0 + } + }, + group=1017, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=455, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Spirit Bond", + orbit=1, + orbitIndex=5, + recipe={ + [1]="Greed", + [2]="Ire", + [3]="Fear" + }, + 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=179, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds", + isNotable=true, + name="Pile On", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Isolation", + [2]="Ire", + [3]="Ire" + }, + skill=51129, + stats={ + [1]="30% increased effect of Fully Broken Armour" + } + }, + [51142]={ + ascendancyName="Lich", + connections={ + [1]={ + id=26085, + orbit=-4 + } + }, + group=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Mana", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=15373, + name="Minion Reservation Efficiency", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + stats={ + [1]="6% increased Reservation Efficiency of Minion Skills" + } + } + }, + orbit=9, + orbitIndex=135, + skill=51142, + stats={ + [1]="3% increased maximum Mana" + } + }, + [51169]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + }, + group=759, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Soul Bloom", + orbit=7, + orbitIndex=21, + recipe={ + [1]="Despair", + [2]="Ire", + [3]="Isolation" + }, + skill=51169, + stats={ + [1]="20% increased Energy Shield Recovery rate" + } + }, + [51183]={ + connections={ + [1]={ + id=45301, + orbit=0 + }, + [2]={ + id=10635, + orbit=0 + } + }, + group=405, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=712, + icon="Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds", + isNotable=true, + isSwitchable=true, + name="Raw Power", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds", + 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=706, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + name="Infusion Duration", + orbit=2, + orbitIndex=0, + skill=51194, + stats={ + [1]="10% increased Elemental Infusion duration" + } + }, + [51206]={ + connections={ + [1]={ + id=49642, + orbit=-6 + } + }, + group=511, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=3, + orbitIndex=17, + skill=51206, + stats={ + [1]="15% increased Totem Damage" + } + }, + [51210]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=192, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=51210, + stats={ + } + }, + [51213]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern", + connections={ + [1]={ + id=64747, + orbit=5 + } + }, + group=1071, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + isNotable=true, + name="Wasting", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Despair" + }, + 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=799, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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=1329, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + 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=530, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=2, + orbitIndex=9, + skill=51248, + stats={ + [1]="10% increased Fire Damage" + } + }, + [51267]={ + connections={ + [1]={ + id=11886, + orbit=0 + } + }, + group=410, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + 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=549, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=427, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + 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=713, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + isNotable=true, + isSwitchable=true, + name="Affliction Enforcer", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=409, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + 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=282, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Unimpeded", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Isolation" + }, + skill=51394, + stats={ + [1]="24% reduced Slowing Potency of Debuffs on You" + } + }, + [51416]={ + connections={ + [1]={ + id=32016, + orbit=-6 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + 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=676, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + isNotable=true, + name="Leather Bound Gauntlets", + orbit=3, + orbitIndex=16, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Ire" + }, + skill=51446, + stats={ + [1]="+1 to Evasion Rating per 1 Item Armour on Equipped Gloves" + } + }, + [51454]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=477, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=51454, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [51463]={ + connections={ + [1]={ + id=4364, + orbit=0 + } + }, + group=1053, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + 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", + connections={ + }, + group=500, + icon="Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds", + isOnlyImage=true, + name="Shapeshifting Mastery", + orbit=0, + orbitIndex=0, + skill=51485, + stats={ + } + }, + [51509]={ + connections={ + [1]={ + id=35848, + orbit=7 + }, + [2]={ + id=9393, + orbit=0 + } + }, + group=927, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + isNotable=true, + name="Waters of Life", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Disgust" + }, + 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=1110, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=22, + skill=51522, + stats={ + [1]="3% increased Attack Speed" + } + }, + [51534]={ + connections={ + [1]={ + id=24483, + orbit=0 + } + }, + group=545, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=137, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech and Slower Leech", + orbit=2, + orbitIndex=13, + skill=51535, + stats={ + [1]="15% increased amount of Life Leeched", + [2]="Leech Life 5% slower" + } + }, + [51561]={ + connections={ + [1]={ + id=25312, + orbit=0 + }, + [2]={ + id=2491, + orbit=0 + }, + [3]={ + id=7716, + orbit=0 + } + }, + group=315, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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", + connections={ + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=51583, + stats={ + } + }, + [51602]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern", + connections={ + }, + group=1296, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + isNotable=true, + name="Unsight", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Disgust", + [3]="Despair" + }, + skill=51602, + stats={ + [1]="Enemies near Enemies you Mark are Blinded", + [2]="Enemies you Mark cannot deal Critical Hits" + } + }, + [51606]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=65207, + orbit=-7 + } + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Freedom of Movement", + orbit=4, + orbitIndex=48, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Envy" + }, + 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=477, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + name="Life Costs and Regeneration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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 + } + } + }, + [51683]={ + connections={ + }, + group=363, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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.dds", + name="Life Regeneration", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=6, + orbitIndex=43, + skill=51690, + stats={ + [1]="Regenerate 0.5% of maximum Life per second" + } + }, + [51702]={ + connections={ + }, + group=373, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength", + orbit=7, + orbitIndex=16, + skill=51702, + stats={ + [1]="+8 to Strength" + } + }, + [51707]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=38728, + orbit=5 + }, + [2]={ + id=41163, + orbit=0 + } + }, + group=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + isNotable=true, + name="Enhanced Reflexes", + orbit=5, + orbitIndex=66, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Envy" + }, + 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", + connections={ + }, + group=1043, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=51708, + stats={ + } + }, + [51728]={ + connections={ + [1]={ + id=6505, + orbit=0 + } + }, + group=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=424, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=16, + skill=51732, + stats={ + [1]="3% increased Attack Speed" + } + }, + [51735]={ + connections={ + [1]={ + id=44707, + orbit=0 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=230, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + 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=1172, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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 + } + }, + group=129, + icon="Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds", + isKeystone=true, + name="Blood Magic", + orbit=0, + orbitIndex=0, + skill=51749, + stats={ + [1]="You have no Mana", + [2]="Skill Mana Costs Converted to Life Costs" + } + }, + [51774]={ + connections={ + [1]={ + id=34425, + orbit=2 + } + }, + group=1360, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + name="Volatility Detonation Time", + orbit=2, + orbitIndex=10, + skill=51774, + stats={ + [1]="15% reduced Volatility Explosion delay" + } + }, + [51788]={ + connections={ + [1]={ + id=5066, + orbit=-2 + } + }, + group=630, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + 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=346, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=591, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=2, + orbitIndex=0, + skill=51807, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [51812]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=51812, + stats={ + } + }, + [51820]={ + connections={ + [1]={ + id=21127, + orbit=0 + } + }, + group=287, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Ancestral Conduits", + orbit=6, + orbitIndex=30, + recipe={ + [1]="Despair", + [2]="Suffering", + [3]="Suffering" + }, + skill=51820, + stats={ + [1]="12% increased Attack and Cast Speed if you've summoned a Totem Recently" + } + }, + [51821]={ + connections={ + [1]={ + id=46857, + orbit=0 + }, + [2]={ + id=20115, + orbit=0 + }, + [3]={ + id=25014, + orbit=0 + }, + [4]={ + id=39102, + orbit=0 + } + }, + group=241, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=720, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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=184, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Damage", + orbit=2, + orbitIndex=6, + skill=51832, + stats={ + [1]="16% increased Damage with Warcries" + } + }, + [51847]={ + connections={ + [1]={ + id=33974, + orbit=0 + } + }, + group=800, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + name="Attack Damage and Accuracy", + orbit=4, + orbitIndex=24, + skill=51847, + stats={ + [1]="6% increased Attack Damage", + [2]="5% increased Accuracy Rating" + } + }, + [51867]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=374, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Finality", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Guilt", + [3]="Envy" + }, + 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.dds", + isNotable=true, + name="Molten Carapace", + orbit=5, + orbitIndex=64, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Suffering" + }, + 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=1218, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + isNotable=true, + name="Immortal Thirst", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Guilt" + }, + skill=51871, + stats={ + [1]="15% increased maximum Energy Shield", + [2]="25% increased amount of Mana Leeched" + } + }, + [51891]={ + connections={ + [1]={ + id=25528, + orbit=0 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Lucidity", + orbit=7, + orbitIndex=17, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Suffering" + }, + 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=885, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=208, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=3, + orbitIndex=17, + skill=51903, + stats={ + [1]="10% increased Melee Damage" + } + }, + [51921]={ + connections={ + [1]={ + id=36629, + orbit=-4 + } + }, + group=607, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=54, + skill=51921, + stats={ + [1]="+5 to any Attribute" + } + }, + [51934]={ + connections={ + }, + group=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Invocated Efficiency", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Paranoia" + }, + 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=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=3, + orbitIndex=15, + skill=51944, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [51968]={ + connections={ + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + isSwitchable=true, + name="Elemental Ailment Chance", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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", + connections={ + [1]={ + id=25711, + orbit=0 + } + }, + group=717, + icon="Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds", + isOnlyImage=true, + name="Fortify Mastery", + orbit=0, + orbitIndex=0, + skill=51974, + stats={ + } + }, + [52003]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=708, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=2, + orbitIndex=18, + skill=52003, + stats={ + } + }, + [52038]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern", + connections={ + }, + group=526, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=52038, + stats={ + } + }, + [52053]={ + connections={ + [1]={ + id=14048, + orbit=3 + }, + [2]={ + id=24120, + orbit=-4 + } + }, + group=1236, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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", + connections={ + }, + group=1209, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=52060, + stats={ + } + }, + [52068]={ + ascendancyName="Warbringer", + connections={ + }, + group=60, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds", + isNotable=true, + name="Turtle Charm", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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=266, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + 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=477, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + isNotable=true, + name="Nurturing Nature", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=747, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=253, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold and Strength", + orbit=2, + orbitIndex=0, + skill=52126, + stats={ + [1]="10% increased Stun Threshold", + [2]="+5 to Strength" + } + }, + [52180]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=1398, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Trained Deflection", + orbit=1, + orbitIndex=9, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Suffering" + }, + skill=52180, + stats={ + [1]="Prevent +6% of Damage from Deflected Hits" + } + }, + [52191]={ + connections={ + [1]={ + id=57724, + orbit=-7 + } + }, + group=1187, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Event Horizon", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Guilt" + }, + skill=52191, + stats={ + [1]="53% increased Chaos Damage", + [2]="Lose 3% of maximum Life and Energy Shield when you use a Chaos Skill" + } + }, + [52199]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + [1]={ + id=44498, + orbit=0 + } + }, + group=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Overexposure", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Greed" + }, + skill=52199, + stats={ + [1]="30% increased Exposure Effect" + } + }, + [52215]={ + connections={ + [1]={ + id=56366, + orbit=0 + } + }, + group=1393, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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", + connections={ + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds", + isOnlyImage=true, + name="Physical Mastery", + orbit=0, + orbitIndex=0, + skill=52220, + stats={ + } + }, + [52229]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=638, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.dds", + isNotable=true, + name="Secrets of the Orb", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Suffering", + [3]="Despair" + }, + skill=52229, + stats={ + [1]="Orb Skills have +1 to Limit" + } + }, + [52241]={ + connections={ + [1]={ + id=94, + orbit=2 + } + }, + group=862, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + name="Mana on Kill", + orbit=1, + orbitIndex=3, + skill=52241, + stats={ + [1]="Recover 1% of maximum Mana on Kill" + } + }, + [52245]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern", + connections={ + }, + group=1356, + icon="Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds", + isNotable=true, + name="Distant Dreamer", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Envy" + }, + 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=811, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Effect", + orbit=7, + orbitIndex=14, + skill=52254, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [52257]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1344, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Conductive Embrace", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Isolation", + [3]="Guilt" + }, + 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=1039, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + name="Grenade Damage", + orbit=3, + orbitIndex=9, + skill=52274, + stats={ + [1]="12% increased Grenade Damage" + } + }, + [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=252, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + 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=606, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=511, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Carved Earth", + orbit=7, + orbitIndex=15, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Ire" + }, + 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=1039, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Energy", + orbit=2, + orbitIndex=12, + skill=52351, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [52354]={ + connections={ + [1]={ + id=41171, + orbit=0 + } + }, + group=930, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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=1267, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=364, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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.dds", + isNotable=true, + name="Unnamed Heartwood", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + 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=389, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + isNotable=true, + name="Singular Purpose", + orbit=3, + orbitIndex=17, + recipe={ + [1]="Disgust", + [2]="Envy", + [3]="Fear" + }, + 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=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds", + isMultipleChoice=true, + isNotable=true, + name="Lucid Dreaming", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + orbit=5, + orbitIndex=27, + skill=52395, + stats={ + } + }, + [52399]={ + connections={ + [1]={ + id=9444, + orbit=0 + } + }, + group=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + name="Quarterstaff Critical Damage", + orbit=5, + orbitIndex=38, + skill=52399, + stats={ + [1]="18% increased Critical Damage Bonus with Quarterstaves" + } + }, + [52410]={ + connections={ + }, + group=1368, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=1230, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=610, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=3, + orbitIndex=13, + skill=52429, + stats={ + [1]="3% increased Cast Speed" + } + }, + [52440]={ + connections={ + [1]={ + id=53893, + orbit=0 + } + }, + group=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=753, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=2, + orbitIndex=20, + skill=52442, + stats={ + [1]="3% increased Attack Speed" + } + }, + [52445]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern", + connections={ + }, + group=1256, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Evasion and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=52445, + stats={ + } + }, + [52448]={ + ascendancyName="Invoker", + connections={ + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds", + isNotable=true, + name="...and Scatter Them to the Winds", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + 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=610, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=3, + orbitIndex=21, + skill=52454, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [52462]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=452, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=52462, + stats={ + } + }, + [52464]={ + connections={ + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + 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=2147483647 + } + }, + group=1161, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Empowered Attack Freeze Buildup", + orbit=7, + orbitIndex=8, + skill=52501, + stats={ + [1]="20% increased Freeze Buildup with Empowered Attacks" + } + }, + [52537]={ + connections={ + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=364, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Maximum Rage", + orbit=2, + orbitIndex=8, + skill=52556, + stats={ + [1]="+2 to Maximum Rage" + } + }, + [52574]={ + connections={ + [1]={ + id=55478, + orbit=-7 + } + }, + group=608, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=818, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Damage vs Immobilised", + orbit=2, + orbitIndex=9, + skill=52576, + stats={ + [1]="20% increased Damage against Immobilised Enemies" + } + }, + [52615]={ + connections={ + }, + group=1300, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=313, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Boon of the Beast", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Paranoia" + }, + 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=1303, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=160, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=7, + orbitIndex=20, + skill=52659, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [52676]={ + connections={ + }, + group=267, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + name="Minion Duration", + orbit=7, + orbitIndex=3, + skill=52676, + stats={ + [1]="16% increased Minion Duration" + } + }, + [52684]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + [1]={ + id=8115, + orbit=0 + } + }, + group=640, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + isNotable=true, + name="Eroding Chains", + orbit=4, + orbitIndex=32, + recipe={ + [1]="Guilt", + [2]="Fear", + [3]="Guilt" + }, + skill=52684, + stats={ + [1]="Break 50% of Armour on Pinning an Enemy" + } + }, + [52695]={ + connections={ + [1]={ + id=57230, + orbit=-6 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + name="Physical Damage", + orbit=7, + orbitIndex=1, + skill=52695, + stats={ + [1]="10% increased Physical Damage" + } + }, + [52703]={ + ascendancyName="Blood Mage", + connections={ + }, + group=895, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds", + isNotable=true, + name="Gore Spike", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + 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=1309, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=10, + skill=52743, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [52746]={ + connections={ + [1]={ + id=9796, + orbit=0 + }, + [2]={ + id=64471, + orbit=3 + } + }, + group=542, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=2, + orbitIndex=12, + skill=52746, + stats={ + [1]="12% increased Fire Damage" + } + }, + [52764]={ + connections={ + [1]={ + id=47606, + orbit=0 + } + }, + group=182, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Mystical Rage", + orbit=1, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Envy" + }, + skill=52764, + stats={ + [1]="Every Rage also grants 2% increased Spell Damage" + } + }, + [52765]={ + connections={ + }, + group=1059, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=12, + skill=52765, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [52774]={ + connections={ + [1]={ + id=5084, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=2, + orbitIndex=18, + skill=52774, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [52796]={ + connections={ + [1]={ + id=30371, + orbit=-6 + } + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=749, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=3, + orbitIndex=0, + skill=52799, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [52800]={ + connections={ + [1]={ + id=57615, + orbit=0 + } + }, + group=1417, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=1189, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Hale Traveller", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Disgust" + }, + 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=304, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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.dds", + 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=959, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + 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=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + name="Ballista Damage", + orbit=7, + orbitIndex=12, + skill=52860, + stats={ + [1]="15% increased Ballista damage" + } + }, + [52875]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1291, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=52875, + stats={ + } + }, + [52971]={ + connections={ + [1]={ + id=21227, + orbit=-2 + }, + [2]={ + id=25528, + orbit=0 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Quick Response", + orbit=4, + orbitIndex=45, + recipe={ + [1]="Envy", + [2]="Disgust", + [3]="Fear" + }, + skill=52971, + stats={ + [1]="20% faster start of Energy Shield Recharge", + [2]="30% faster start of Energy Shield Recharge when not on Full Life" + } + }, + [52973]={ + connections={ + [1]={ + id=12851, + orbit=0 + }, + [2]={ + id=57555, + orbit=0 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=878, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=276, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Immolation", + orbit=2, + orbitIndex=2, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Disgust" + }, + 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=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1048, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=517, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds", + isNotable=true, + name="Adaptive Capability", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + 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=144, + icon="Art/2DArt/SkillIcons/passives/ElementalDominion2.dds", + 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=250, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + isNotable=true, + name="Tukohama's Brew", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Greed" + }, + 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=972, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=1337, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Sharp Sight", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Ire" + }, + 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=800, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Presence Area", + orbit=7, + orbitIndex=21, + skill=53166, + stats={ + [1]="20% increased Presence Area of Effect" + } + }, + [53177]={ + connections={ + [1]={ + id=43944, + orbit=2147483647 + } + }, + group=1220, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + name="Volatility when Stunned", + orbit=2, + orbitIndex=3, + skill=53177, + stats={ + [1]="50% chance to gain Volatility when you are Stunned" + } + }, + [53185]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + }, + group=1375, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds", + isNotable=true, + name="The Winter Owl", + orbit=3, + orbitIndex=19, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Fear" + }, + 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=413, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Warlord Berserker", + orbit=2, + orbitIndex=22, + recipe={ + [1]="Disgust", + [2]="Fear", + [3]="Fear" + }, + 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", + connections={ + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds", + isOnlyImage=true, + name="Mana Mastery", + orbit=0, + orbitIndex=0, + skill=53188, + stats={ + } + }, + [53194]={ + connections={ + [1]={ + id=38130, + orbit=3 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=927, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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=1123, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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", + connections={ + }, + group=253, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=53216, + stats={ + } + }, + [53261]={ + connections={ + [1]={ + id=30780, + orbit=-2 + } + }, + group=122, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + }, + group=1317, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Nature's Bite", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Suffering" + }, + 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=911, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1398, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=3, + orbitIndex=20, + skill=53272, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [53294]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern", + connections={ + [1]={ + id=33397, + orbit=0 + } + }, + group=530, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Burn Away", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Disgust", + [3]="Disgust" + }, + 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=208, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=3, + orbitIndex=5, + skill=53308, + stats={ + [1]="10% increased Melee Damage" + } + }, + [53320]={ + connections={ + [1]={ + id=43791, + orbit=0 + } + }, + group=643, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + name="Banner Glory Gained", + orbit=2, + orbitIndex=22, + skill=53320, + stats={ + [1]="20% increased Glory generation for Banner Skills" + } + }, + [53329]={ + connections={ + [1]={ + id=64724, + orbit=0 + } + }, + group=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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.dds", + 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=491, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds", + isNotable=true, + name="Symbol of Defiance", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Ire", + [3]="Greed" + }, + 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=567, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=4, + orbitIndex=45, + skill=53373, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [53386]={ + connections={ + [1]={ + id=57388, + orbit=0 + } + }, + group=223, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=606, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=455, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + 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=512, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Area Damage", + orbit=3, + orbitIndex=8, + skill=53443, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [53444]={ + connections={ + [1]={ + id=752, + orbit=5 + } + }, + group=267, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + name="Minion Duration", + orbit=4, + orbitIndex=31, + skill=53444, + stats={ + [1]="12% increased Minion Duration" + } + }, + [53471]={ + connections={ + [1]={ + id=11836, + orbit=0 + } + }, + group=1184, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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=632, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech", + orbit=2, + orbitIndex=18, + skill=53505, + stats={ + [1]="10% increased amount of Life Leeched" + } + }, + [53524]={ + connections={ + [1]={ + id=32727, + orbit=0 + } + }, + group=654, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=236, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Shattering Blow", + orbit=7, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Guilt" + }, + 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=1005, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=941, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Lightning Skill Chain Chance", + orbit=0, + orbitIndex=0, + skill=53560, + stats={ + [1]="20% chance for Lightning Skills to Chain an additional time" + } + }, + [53566]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=1053, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + isNotable=true, + name="Run and Gun", + orbit=4, + orbitIndex=29, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Fear" + }, + 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=625, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1409, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Damage", + orbit=3, + orbitIndex=19, + skill=53595, + stats={ + [1]="10% increased Magnitude of Poison you inflict" + } + }, + [53607]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connections={ + }, + group=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + isNotable=true, + name="Fortified Location", + orbit=4, + orbitIndex=3, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Disgust" + }, + 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=346, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Fire Damage", + orbit=2, + orbitIndex=8, + skill=53632, + stats={ + [1]="12% increased Fire Damage" + } + }, + [53647]={ + connections={ + }, + group=676, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=430, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=876, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Efficient Loading", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Isolation" + }, + skill=53683, + stats={ + [1]="30% chance when you Reload a Crossbow to be immediate" + } + }, + [53696]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1062, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=53696, + stats={ + } + }, + [53697]={ + connections={ + [1]={ + id=47555, + orbit=7 + }, + [2]={ + id=3041, + orbit=-3 + } + }, + group=648, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1115, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=7, + orbitIndex=22, + skill=53698, + stats={ + [1]="10% increased Attack Damage" + } + }, + [53719]={ + connections={ + [1]={ + id=27082, + orbit=0 + } + }, + group=159, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=2147483647 + } + }, + group=506, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Reduced Attribute Requirements", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + 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=1267, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Attack Area", + orbit=3, + orbitIndex=18, + skill=53785, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [53804]={ + connections={ + [1]={ + id=56112, + orbit=7 + } + }, + group=222, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + name="Fire Damage", + orbit=4, + orbitIndex=48, + skill=53804, + stats={ + [1]="10% increased Fire Damage" + } + }, + [53822]={ + connections={ + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Rage when Hit", + orbit=7, + orbitIndex=14, + skill=53822, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [53823]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern", + connections={ + [1]={ + id=10508, + orbit=-3 + } + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + isNotable=true, + name="Towering Shield", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Ire", + [2]="Despair", + [3]="Guilt" + }, + skill=53823, + stats={ + [1]="25% increased Chance to Block if you've Blocked with a raised Shield Recently", + [2]="50% increased Defences from Equipped Shield" + } + }, + [53853]={ + connections={ + [1]={ + id=57320, + orbit=0 + } + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + isNotable=true, + name="Backup Plan", + orbit=7, + orbitIndex=19, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Ire" + }, + skill=53853, + stats={ + [1]="50% increased Evasion Rating if you have been Hit Recently", + [2]="50% increased Armour if you haven't been Hit Recently" + } + }, + [53893]={ + connections={ + [1]={ + id=21784, + orbit=0 + } + }, + group=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=613, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + 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=446, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=291, + icon="Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds", + isNotable=true, + name="Forbidden Path", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + [1]={ + id=58838, + orbit=0 + }, + [2]={ + id=40596, + orbit=0 + } + }, + group=300, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Unbreaking", + orbit=5, + orbitIndex=48, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Paranoia" + }, + 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=948, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Briny Carapace", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Guilt", + [2]="Ire", + [3]="Paranoia" + }, + skill=53935, + stats={ + [1]="100% increased Stun Threshold for each time you've been Stunned Recently" + } + }, + [53938]={ + connections={ + [1]={ + id=36931, + orbit=0 + } + }, + group=1024, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Attack Damage", + orbit=2, + orbitIndex=18, + skill=53938, + stats={ + [1]="10% increased Attack Damage" + } + }, + [53941]={ + connections={ + [1]={ + id=17283, + orbit=0 + } + }, + group=1058, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + isNotable=true, + name="Shimmering", + orbit=3, + orbitIndex=12, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Suffering" + }, + skill=53941, + stats={ + [1]="20% increased Energy Shield Recovery Rate if you haven't been Hit Recently", + [2]="3% increased Movement Speed while you have Energy Shield" + } + }, + [53958]={ + connections={ + [1]={ + id=51006, + orbit=2 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + 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=933, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=975, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Penetration", + orbit=0, + orbitIndex=0, + skill=53965, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [53975]={ + connections={ + [1]={ + id=33254, + orbit=0 + } + }, + group=726, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + name="Spell Damage", + orbit=2, + orbitIndex=8, + skill=53975, + stats={ + [1]="10% increased Spell Damage" + } + }, + [53989]={ + connections={ + [1]={ + id=29372, + orbit=8 + } + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=839, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=7, + orbitIndex=22, + skill=53996, + stats={ + [1]="8% increased Melee Damage" + } + }, + [54031]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=1343, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds", + isNotable=true, + name="The Great Boar", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Suffering", + [3]="Guilt" + }, + 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=644, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + name="Minion Damage", + orbit=3, + orbitIndex=2, + skill=54036, + stats={ + [1]="Minions deal 10% increased Damage" + } + }, + [54058]={ + connections={ + [1]={ + id=62001, + orbit=0 + } + }, + group=1402, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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=419, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=675, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=762, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=54127, + stats={ + } + }, + [54138]={ + connections={ + [1]={ + id=38564, + orbit=0 + }, + [2]={ + id=37963, + orbit=0 + } + }, + group=546, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + 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=542, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + isNotable=true, + name="Smoke Inhalation", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Fear" + }, + 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=1288, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + 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=1138, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=54176, + stats={ + [1]="15% increased chance to Shock" + } + }, + [54194]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=28153, + orbit=0 + } + }, + group=347, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Life Recoup", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + orbit=2, + orbitIndex=3, + skill=54194, + stats={ + [1]="4% of Damage taken Recouped as Life" + } + }, + [54228]={ + connections={ + [1]={ + id=64240, + orbit=0 + } + }, + group=212, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + orbit=2, + orbitIndex=2, + skill=54228, + stats={ + [1]="10% increased Physical Damage" + } + }, + [54232]={ + connections={ + [1]={ + id=44659, + orbit=5 + } + }, + group=637, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=2147483647 + } + }, + group=763, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=452, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=3, + orbitIndex=21, + skill=54283, + stats={ + [1]="15% increased Armour" + } + }, + [54288]={ + connections={ + [1]={ + id=21568, + orbit=0 + } + }, + group=293, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + name="Life Recoup", + orbit=7, + orbitIndex=20, + skill=54288, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [54289]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=226, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + isNotable=true, + name="Gift of the Plains", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + orbit=0, + orbitIndex=0, + skill=54289, + stats={ + [1]="2% chance that if you would gain Power Charges, you instead gain up to", + [2]="your maximum number of Power Charges", + [3]="+1 to Maximum Power Charges" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [54297]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=25678, + orbit=0 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Life Costs and Chaos Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=346, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + name="Flammability Magnitude", + orbit=2, + orbitIndex=18, + skill=54311, + stats={ + [1]="30% increased Flammability Magnitude" + } + }, + [54340]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=356, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds", + isOnlyImage=true, + name="Armour Mastery", + orbit=2, + orbitIndex=3, + skill=54340, + stats={ + } + }, + [54351]={ + connections={ + [1]={ + id=52464, + orbit=-6 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + 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=339, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=421, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.dds", + isOnlyImage=true, + name="Poison Mastery", + orbit=0, + orbitIndex=0, + skill=54380, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [54413]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern", + connections={ + }, + group=970, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds", + isOnlyImage=true, + name="Spell Suppression Mastery", + orbit=3, + orbitIndex=10, + skill=54413, + stats={ + } + }, + [54416]={ + connections={ + [1]={ + id=60274, + orbit=4 + } + }, + group=152, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + name="Armour", + orbit=7, + orbitIndex=6, + skill=54416, + stats={ + [1]="20% increased Armour if you have been Hit Recently" + } + }, + [54417]={ + connections={ + }, + group=750, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=642, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=746, + icon="Art/2DArt/SkillIcons/passives/blankInt.dds", + name="WITCH", + orbit=0, + orbitIndex=0, + skill=54447, + stats={ + } + }, + [54453]={ + connections={ + [1]={ + id=19006, + orbit=0 + }, + [2]={ + id=61042, + orbit=0 + } + }, + group=617, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + 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=373, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + 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.dds", + name="Maximum Rage", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + 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=628, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1376, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + name="Daze Magnitude", + orbit=2, + orbitIndex=0, + skill=54545, + stats={ + [1]="15% increased Magnitude of Daze" + } + }, + [54557]={ + connections={ + [1]={ + id=9421, + orbit=-6 + } + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=2, + orbitIndex=2, + skill=54557, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [54562]={ + connections={ + [1]={ + id=2745, + orbit=0 + } + }, + group=1255, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds", + name="Critical Chance", + orbit=2, + orbitIndex=10, + skill=54562, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [54631]={ + connections={ + [1]={ + id=30132, + orbit=0 + } + }, + group=1252, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + 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=678, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=407, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Constricting", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Greed" + }, + 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=902, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=541, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=2, + orbitIndex=15, + skill=54676, + stats={ + [1]="10% increased Life Regeneration rate" + } + }, + [54678]={ + connections={ + [1]={ + id=41877, + orbit=0 + } + }, + group=1204, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=259, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + 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=645, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=11, + skill=54708, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [54725]={ + connections={ + [1]={ + id=56336, + orbit=0 + } + }, + group=1186, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Activation Speed and Effect", + orbit=7, + orbitIndex=0, + skill=54725, + stats={ + [1]="3% increased Curse Magnitudes", + [2]="10% faster Curse Activation" + } + }, + [54746]={ + connections={ + [1]={ + id=14343, + orbit=7 + } + }, + group=1045, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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/MasteryEnergyPattern", + connections={ + }, + group=850, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Energy Shield Mastery", + orbit=1, + orbitIndex=10, + skill=54783, + stats={ + } + }, + [54785]={ + connections={ + [1]={ + id=32885, + orbit=0 + } + }, + group=677, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Block", + orbit=2, + orbitIndex=7, + skill=54785, + stats={ + [1]="5% increased Block chance" + } + }, + [54805]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern", + connections={ + }, + group=1026, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Hindered Capabilities", + orbit=5, + orbitIndex=27, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Envy" + }, + 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=387, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=430, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Profane Commander", + orbit=2, + orbitIndex=14, + recipe={ + [1]="Guilt", + [2]="Isolation", + [3]="Isolation" + }, + skill=54814, + stats={ + [1]="30% increased Presence Area of Effect", + [2]="4% increased Spirit" + } + }, + [54818]={ + connections={ + [1]={ + id=18801, + orbit=0 + } + }, + group=687, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=329, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds", + isNotable=true, + name="Right Where We Want Them", + nodeOverlay={ + alloc="TacticianFrameLargeAllocated", + path="TacticianFrameLargeCanAllocate", + unalloc="TacticianFrameLargeNormal" + }, + 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", + connections={ + }, + group=221, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=0, + orbitIndex=0, + skill=54849, + stats={ + } + }, + [54883]={ + connections={ + [1]={ + id=34473, + orbit=-2 + } + }, + group=1211, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=54883, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [54886]={ + connections={ + [1]={ + id=56997, + orbit=-4 + } + }, + group=428, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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", + connections={ + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=54887, + stats={ + } + }, + [54892]={ + ascendancyName="Tactician", + connections={ + [1]={ + id=44371, + orbit=0 + } + }, + group=358, + icon="Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds", + name="Armour and Evasion", + nodeOverlay={ + alloc="TacticianFrameSmallAllocated", + path="TacticianFrameSmallCanAllocate", + unalloc="TacticianFrameSmallNormal" + }, + 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=586, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + isNotable=true, + name="Firestarter", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Guilt" + }, + skill=54911, + stats={ + [1]="80% increased Flammability Magnitude", + [2]="Enemies Ignited by you have -5% to Fire Resistance" + } + }, + [54923]={ + connections={ + [1]={ + id=27638, + orbit=2147483647 + } + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Glory Generation", + orbit=7, + orbitIndex=7, + skill=54923, + stats={ + [1]="15% increased Glory generation" + } + }, + [54934]={ + connections={ + [1]={ + id=15494, + orbit=0 + } + }, + group=601, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern", + connections={ + }, + group=132, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + isNotable=true, + name="Vengeful Fury", + orbit=1, + orbitIndex=9, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Despair" + }, + 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=242, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + 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=1159, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=144, + icon="Art/2DArt/SkillIcons/passives/FireResistNode.dds", + name="Fire Resistance", + orbit=1, + orbitIndex=7, + skill=54982, + stats={ + [1]="+5% to Fire Resistance" + } + }, + [54983]={ + connections={ + [1]={ + id=39369, + orbit=3 + } + }, + group=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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 + } + }, + group=1306, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=553, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Bolt Speed", + orbit=7, + orbitIndex=7, + skill=54985, + stats={ + [1]="8% increased Bolt Speed" + } + }, + [54990]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + }, + group=693, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Bloodletting", + orbit=7, + orbitIndex=1, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Ire" + }, + 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=282, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Protraction", + orbit=2, + orbitIndex=5, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Guilt" + }, + 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.dds", + 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", + connections={ + }, + group=534, + icon="Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds", + isOnlyImage=true, + name="Caster Mastery", + orbit=0, + orbitIndex=0, + skill=55011, + stats={ + } + }, + [55033]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=17059, + orbit=3 + } + }, + group=173, + icon="Art/2DArt/SkillIcons/passives/ChannellingDamage.dds", + name="Channelling Life Recoup", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + orbit=3, + orbitIndex=21, + 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=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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={ + }, + group=197, + icon="Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds", + isKeystone=true, + name="Pain Attunement", + orbit=0, + orbitIndex=0, + skill=55048, + stats={ + [1]="30% less Critical Damage Bonus when on Full Life", + [2]="30% more Critical Damage Bonus when on Low Life" + } + }, + [55058]={ + connections={ + [1]={ + id=63790, + orbit=0 + } + }, + group=208, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=790, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Shrapnel", + orbit=5, + orbitIndex=9, + recipe={ + [1]="Guilt", + [2]="Guilt", + [3]="Disgust" + }, + 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=137, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech and Slower Leech", + orbit=2, + orbitIndex=5, + skill=55063, + stats={ + [1]="15% increased amount of Life Leeched", + [2]="Leech Life 5% slower" + } + }, + [55066]={ + connections={ + [1]={ + id=19796, + orbit=0 + } + }, + group=716, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=932, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds", + name="Critical Chance", + orbit=7, + orbitIndex=2, + skill=55088, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [55101]={ + connections={ + [1]={ + id=58016, + orbit=7 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=726, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + name="Spell Damage", + orbit=7, + orbitIndex=22, + skill=55104, + stats={ + [1]="10% increased Spell Damage" + } + }, + [55118]={ + connections={ + [1]={ + id=50420, + orbit=0 + } + }, + group=1329, + icon="Art/2DArt/SkillIcons/passives/CharmNode1.dds", + name="Charm Charges", + orbit=2, + orbitIndex=18, + skill=55118, + stats={ + [1]="10% increased Charm Charges gained" + } + }, + [55131]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + isNotable=true, + name="Light on your Feet", + orbit=4, + orbitIndex=38, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Greed" + }, + 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.dds", + isNotable=true, + name="Forced Outcome", + nodeOverlay={ + alloc="OracleFrameLargeAllocated", + path="OracleFrameLargeCanAllocate", + unalloc="OracleFrameLargeNormal" + }, + orbit=6, + orbitIndex=16, + skill=55135, + stats={ + [1]="Inevitable Critical Hits" + } + }, + [55149]={ + connections={ + }, + group=1223, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Pure Chaos", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Guilt" + }, + skill=55149, + stats={ + [1]="Gain 11% of Damage as Extra Chaos Damage" + } + }, + [55152]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connections={ + [1]={ + id=5580, + orbit=0 + } + }, + group=147, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=3, + orbitIndex=1, + skill=55152, + stats={ + } + }, + [55180]={ + connections={ + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isNotable=true, + name="Relentless Fallen", + orbit=3, + orbitIndex=15, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Isolation" + }, + 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.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=1, + orbitIndex=0, + skill=55190, + stats={ + } + }, + [55193]={ + connections={ + [1]={ + id=10944, + orbit=-2 + } + }, + group=1157, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + isNotable=true, + name="Subterfuge Mask", + orbit=1, + orbitIndex=4, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Paranoia" + }, + skill=55193, + stats={ + [1]="+2 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet" + } + }, + [55227]={ + connections={ + [1]={ + id=29479, + orbit=0 + }, + [2]={ + id=15829, + orbit=0 + } + }, + group=1037, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=693, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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", + connections={ + [1]={ + id=63830, + orbit=0 + }, + [2]={ + id=44756, + orbit=0 + }, + [3]={ + id=36976, + orbit=0 + } + }, + group=1279, + icon="Art/2DArt/SkillIcons/passives/MarkMastery.dds", + isOnlyImage=true, + name="Mark Mastery", + orbit=1, + orbitIndex=4, + skill=55235, + stats={ + } + }, + [55241]={ + connections={ + [1]={ + id=38614, + orbit=0 + } + }, + group=962, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=749, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + 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.dds", + name="Freeze Threshold", + orbit=2, + orbitIndex=23, + skill=55260, + stats={ + [1]="15% increased Freeze Threshold" + } + }, + [55270]={ + connections={ + [1]={ + id=60083, + orbit=0 + } + }, + group=1050, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + name="Pin Buildup", + orbit=7, + orbitIndex=1, + skill=55270, + stats={ + [1]="15% increased Pin Buildup" + } + }, + [55275]={ + connections={ + [1]={ + id=12890, + orbit=6 + } + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=3, + orbitIndex=2, + skill=55275, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [55276]={ + connections={ + [1]={ + id=13411, + orbit=5 + } + }, + group=878, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=24, + skill=55276, + stats={ + [1]="+5 to any Attribute" + } + }, + [55308]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + [1]={ + id=38313, + orbit=0 + }, + [2]={ + id=30701, + orbit=0 + } + }, + group=404, + icon="Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds", + isNotable=true, + name="Sling Shots", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Suffering" + }, + 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=1368, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + name="Parried Duration", + orbit=4, + orbitIndex=12, + skill=55329, + stats={ + [1]="15% increased Parried Debuff Duration" + } + }, + [55342]={ + connections={ + [1]={ + id=17248, + orbit=-5 + } + }, + group=871, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=5, + orbitIndex=60, + skill=55342, + stats={ + [1]="+5 to any Attribute" + } + }, + [55348]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + [1]={ + id=23227, + orbit=0 + } + }, + group=598, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=55348, + stats={ + } + }, + [55375]={ + connections={ + [1]={ + id=62748, + orbit=0 + } + }, + group=323, + icon="Art/2DArt/SkillIcons/passives/LifeandMana.dds", + isNotable=true, + name="Licking Wounds", + orbit=2, + orbitIndex=21, + recipe={ + [1]="Fear", + [2]="Disgust", + [3]="Ire" + }, + 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=1259, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=935, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + isSwitchable=true, + name="Flask Charges Gained", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + 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=1166, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Penetration", + orbit=2, + orbitIndex=5, + skill=55400, + stats={ + [1]="Damage Penetrates 6% Lightning Resistance" + } + }, + [55405]={ + connections={ + [1]={ + id=25620, + orbit=0 + } + }, + group=1015, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=982, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + name="Curse Effect", + orbit=2, + orbitIndex=0, + skill=55420, + stats={ + [1]="6% increased Curse Magnitudes" + } + }, + [55422]={ + connections={ + [1]={ + id=54640, + orbit=4 + } + }, + group=407, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + orbit=3, + orbitIndex=17, + skill=55422, + stats={ + [1]="12% increased Physical Damage" + } + }, + [55429]={ + connections={ + [1]={ + id=22049, + orbit=0 + } + }, + group=990, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds", + 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=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + isNotable=true, + name="Rallying Form", + orbit=7, + orbitIndex=7, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Fear" + }, + skill=55450, + stats={ + [1]="Companions in your Presence have Onslaught while you are Shapeshifted" + } + }, + [55463]={ + connections={ + [1]={ + id=27875, + orbit=0 + } + }, + group=1163, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Shock Chance", + orbit=3, + orbitIndex=14, + skill=55463, + stats={ + [1]="15% increased chance to Shock" + } + }, + [55473]={ + connections={ + [1]={ + id=43164, + orbit=0 + } + }, + group=614, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=608, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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", + connections={ + }, + group=431, + icon="Art/2DArt/SkillIcons/passives/MasteryAuras.dds", + isOnlyImage=true, + name="Reservation Mastery", + orbit=1, + orbitIndex=7, + skill=55491, + stats={ + } + }, + [55507]={ + connections={ + [1]={ + id=22359, + orbit=-6 + }, + [2]={ + id=38338, + orbit=6 + } + }, + group=1022, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=3, + orbitIndex=16, + skill=55507, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [55536]={ + ascendancyName="Gemling Legionnaire", + connections={ + [1]={ + id=34882, + orbit=2147483647 + }, + [2]={ + id=1442, + orbit=0 + }, + [3]={ + id=3084, + orbit=2147483647 + } + }, + group=443, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Gambler", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=9, + orbitIndex=72, + skill=55536, + stats={ + } + }, + [55554]={ + connections={ + [1]={ + id=8821, + orbit=0 + }, + [2]={ + id=22271, + orbit=0 + } + }, + group=817, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1020, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Forthcoming", + orbit=2, + orbitIndex=21, + recipe={ + [1]="Despair", + [2]="Greed", + [3]="Suffering" + }, + skill=55568, + stats={ + [1]="16% reduced Skill Effect Duration", + [2]="10% increased Cooldown Recovery Rate" + } + }, + [55572]={ + connections={ + [1]={ + id=57626, + orbit=0 + } + }, + group=784, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=925, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=2147483647 + } + }, + group=372, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds", + name="Skill Gem Quality", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=55582, + stats={ + [1]="+2% to Quality of all Skills" + } + }, + [55596]={ + connections={ + [1]={ + id=8509, + orbit=0 + } + }, + group=214, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1030, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + 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=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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=1410, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1280, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=981, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=55668, + stats={ + [1]="+5 to any Attribute" + } + }, + [55672]={ + connections={ + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNode1.dds", + name="Spear Attack Speed", + orbit=4, + orbitIndex=14, + skill=55680, + stats={ + [1]="3% increased Attack Speed with Spears" + } + }, + [55700]={ + connections={ + [1]={ + id=44983, + orbit=2147483647 + } + }, + group=650, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + name="All Attributes", + orbit=2, + orbitIndex=8, + skill=55700, + stats={ + [1]="+3 to all Attributes" + } + }, + [55708]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=834, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Electric Amplification", + orbit=7, + orbitIndex=10, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Disgust" + }, + 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=1240, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=533, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=327, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1468, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds", + isNotable=true, + name="Predatory Instinct", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + 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=820, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=723, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + isSwitchable=true, + name="Mana Regeneration", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=641, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Alchemical Oil", + orbit=7, + orbitIndex=1, + recipe={ + [1]="Ire", + [2]="Isolation", + [3]="Guilt" + }, + skill=55817, + stats={ + [1]="30% increased Exposure Effect" + } + }, + [55829]={ + connections={ + [1]={ + id=1420, + orbit=2147483647 + } + }, + group=1092, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Attack Area", + orbit=2, + orbitIndex=0, + skill=55829, + stats={ + [1]="6% increased Area of Effect for Attacks" + } + }, + [55835]={ + connections={ + [1]={ + id=52537, + orbit=2147483647 + }, + [2]={ + id=20909, + orbit=-9 + }, + [3]={ + id=7023, + orbit=0 + } + }, + group=1350, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + isNotable=true, + name="Exposed to the Cosmos", + orbit=2, + orbitIndex=19, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Paranoia" + }, + 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", + connections={ + }, + group=420, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=0, + orbitIndex=0, + skill=55843, + stats={ + } + }, + [55846]={ + connections={ + [1]={ + id=24239, + orbit=0 + } + }, + group=1009, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + 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=1012, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + isNotable=true, + name="Ice Walls", + orbit=7, + orbitIndex=8, + recipe={ + [1]="Fear", + [2]="Paranoia", + [3]="Disgust" + }, + skill=55847, + stats={ + [1]="200% increased Ice Crystal Life" + } + }, + [55872]={ + connections={ + }, + group=1044, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=116, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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.dds", + name="Shapeshifted Mana Regeneration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=713, + icon="Art/2DArt/SkillIcons/passives/InstillationsNode1.dds", + isSwitchable=true, + name="Infused Spell Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=1007, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + 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=143, + icon="Art/2DArt/SkillIcons/passives/fireresist.dds", + 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=551, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1051, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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=1013, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=1400, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + name="Frenzy Charge Duration", + orbit=2, + orbitIndex=4, + skill=55995, + stats={ + [1]="20% increased Frenzy Charge Duration" + } + }, + [56016]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + [1]={ + id=65149, + orbit=-8 + }, + [2]={ + id=35594, + orbit=2147483647 + } + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + isNotable=true, + name="Passthrough Rounds", + orbit=2, + orbitIndex=2, + recipe={ + [1]="Greed", + [2]="Guilt", + [3]="Isolation" + }, + skill=56016, + stats={ + [1]="Projectiles Pierce enemies with Fully Broken Armour" + } + }, + [56023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=1263, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=56023, + stats={ + } + }, + [56045]={ + connections={ + [1]={ + id=24647, + orbit=4 + }, + [2]={ + id=11604, + orbit=0 + } + }, + group=1025, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56045, + stats={ + [1]="+5 to any Attribute" + } + }, + [56061]={ + connections={ + }, + group=409, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Damage against Burning Enemies", + orbit=2, + orbitIndex=12, + skill=56061, + stats={ + [1]="14% increased Damage with Hits against Burning Enemies" + } + }, + [56063]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern", + connections={ + }, + group=905, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Lingering Horror", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Disgust" + }, + skill=56063, + stats={ + [1]="23% increased Chaos Damage", + [2]="15% increased Skill Effect Duration" + } + }, + [56090]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=59136, + orbit=0 + } + }, + group=589, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Chance to Poison and Spell Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=640, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=222, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + isNotable=true, + name="Extinguishing Exhalation", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Paranoia" + }, + skill=56112, + stats={ + [1]="Remove Ignite when you Warcry" + } + }, + [56118]={ + connections={ + [1]={ + id=19341, + orbit=-5 + }, + [2]={ + id=42250, + orbit=0 + } + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Damage against Enemies on Low Life", + orbit=4, + orbitIndex=30, + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds", + isNotable=true, + name="Grasping Wounds", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + 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.dds", + name="Armour", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=780, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=182, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=165, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + isNotable=true, + name="Enhancing Attacks", + orbit=3, + orbitIndex=23, + recipe={ + [1]="Envy", + [2]="Guilt", + [3]="Disgust" + }, + 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=1377, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Throatseeker", + orbit=2, + orbitIndex=2, + recipe={ + [1]="Greed", + [2]="Envy", + [3]="Isolation" + }, + skill=56265, + stats={ + [1]="60% increased Critical Damage Bonus", + [2]="20% reduced Critical Hit Chance" + } + }, + [56284]={ + connections={ + [1]={ + id=1928, + orbit=-2 + } + }, + group=508, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=399, + icon="Art/2DArt/SkillIcons/passives/BloodMastery.dds", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=56320, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [56325]={ + connections={ + [1]={ + id=21280, + orbit=0 + } + }, + group=973, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + 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=2147483647 + } + }, + group=1076, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1464, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds", + isMultipleChoiceOption=true, + name="Choice of Life", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameSmallAllocated", + path="Acolyte of ChayulaFrameSmallCanAllocate", + unalloc="Acolyte of ChayulaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=56331, + stats={ + [1]="Remnants 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=1366, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=1186, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + 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=336, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Rage when Hit", + orbit=0, + orbitIndex=0, + skill=56342, + stats={ + [1]="Gain 2 Rage when Hit by an Enemy" + } + }, + [56349]={ + connections={ + }, + group=1181, + icon="Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds", + isKeystone=true, + name="Chaos Inoculation", + orbit=0, + orbitIndex=0, + skill=56349, + stats={ + [1]="Maximum Life is 1", + [2]="Immune to Chaos Damage and Bleeding" + } + }, + [56360]={ + connections={ + [1]={ + id=24812, + orbit=0 + } + }, + group=1003, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=1402, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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.dds", + name="Shapeshifted Life Regeneration", + orbit=0, + orbitIndex=0, + skill=56368, + stats={ + [1]="15% increased Life Regeneration rate while Shapeshifted" + } + }, + [56388]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern", + connections={ + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds", + isNotable=true, + name="Reinforced Rallying", + orbit=5, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Envy", + [3]="Isolation" + }, + 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=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isNotable=true, + name="Killer Instinct", + orbit=5, + orbitIndex=39, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Greed" + }, + skill=56453, + stats={ + [1]="40% increased Attack Damage while on Full Life", + [2]="60% increased Attack Damage while on Low Life" + } + }, + [56466]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=589, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Night's Bite", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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", + connections={ + }, + group=966, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=56472, + stats={ + } + }, + [56488]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Glancing Deflection", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Envy", + [3]="Envy" + }, + skill=56488, + stats={ + [1]="10% increased Deflection Rating" + } + }, + [56493]={ + connections={ + }, + group=1110, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + isNotable=true, + name="Agile Succession", + orbit=3, + orbitIndex=3, + recipe={ + [1]="Greed", + [2]="Greed", + [3]="Disgust" + }, + 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.dds", + name="Immobilisation Buildup", + nodeOverlay={ + alloc="OracleFrameSmallAllocated", + path="OracleFrameSmallCanAllocate", + unalloc="OracleFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=56505, + stats={ + [1]="20% increased Immobilisation buildup" + } + }, + [56547]={ + connections={ + [1]={ + id=12189, + orbit=4 + } + }, + group=449, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=679, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=2, + orbitIndex=15, + skill=56564, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [56567]={ + connections={ + [1]={ + id=151, + orbit=0 + } + }, + group=570, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=7, + orbitIndex=11, + skill=56567, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [56595]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=428, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=56595, + stats={ + } + }, + [56605]={ + connections={ + }, + group=469, + icon="Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds", + isKeystone=true, + name="Bulwark", + orbit=0, + orbitIndex=0, + skill=56605, + stats={ + [1]="Dodge Roll cannot Avoid Damage", + [2]="Take 30% less Damage from Hits while Dodge Rolling" + } + }, + [56616]={ + connections={ + [1]={ + id=13562, + orbit=3 + }, + [2]={ + id=41415, + orbit=0 + } + }, + group=573, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + isNotable=true, + name="Desperate Times", + orbit=2, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Ire" + }, + 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=1445, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds", + isMultipleChoiceOption=true, + name="Fulminating Concoction", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=56618, + stats={ + [1]="Grants Skill: Fulminating Concoction" + } + }, + [56638]={ + connections={ + }, + group=948, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=699, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds", + 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=749, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=3, + orbitIndex=8, + skill=56649, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [56651]={ + connections={ + [1]={ + id=38143, + orbit=0 + } + }, + group=843, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isSwitchable=true, + name="Projectile Damage", + options={ + Huntress={ + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + id=39263, + name="Attack Damage", + stats={ + [1]="10% increased Attack Damage" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56651, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [56703]={ + connections={ + [1]={ + id=15782, + orbit=0 + }, + [2]={ + id=28839, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=2, + orbitIndex=8, + skill=56703, + stats={ + [1]="3% increased Cast Speed" + } + }, + [56714]={ + connections={ + [1]={ + id=47212, + orbit=0 + } + }, + group=468, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + isNotable=true, + name="Swift Flight", + orbit=3, + orbitIndex=10, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Guilt" + }, + 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=1107, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds", + name="Reduced Attribute Requirements and All Attributes", + orbit=2, + orbitIndex=16, + skill=56729, + stats={ + [1]="+3 to all Attributes" + } + }, + [56757]={ + connections={ + [1]={ + id=10100, + orbit=0 + } + }, + group=168, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=1314, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=3, + orbitIndex=18, + skill=56761, + stats={ + [1]="8% increased Melee Damage" + } + }, + [56762]={ + connections={ + [1]={ + id=28839, + orbit=0 + } + }, + group=401, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + 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=1295, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + isNotable=true, + name="Electrifying Daze", + orbit=7, + orbitIndex=13, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Envy" + }, + 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=1131, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Cooked", + orbit=1, + orbitIndex=7, + recipe={ + [1]="Suffering", + [2]="Ire", + [3]="Envy" + }, + skill=56776, + stats={ + [1]="60% increased Critical Damage Bonus", + [2]="25% reduced Defences" + } + }, + [56783]={ + ascendancyName="Disciple of Varashta", + connections={ + }, + group=624, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds", + name="Area of Effect", + nodeOverlay={ + alloc="Disciple of VarashtaFrameSmallAllocated", + path="Disciple of VarashtaFrameSmallCanAllocate", + unalloc="Disciple of VarashtaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=56783, + stats={ + [1]="8% increased Area of Effect" + } + }, + [56806]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern", + connections={ + }, + group=959, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + isNotable=true, + name="Swift Blocking", + orbit=7, + orbitIndex=22, + recipe={ + [1]="Ire", + [2]="Fear", + [3]="Ire" + }, + 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=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=952, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + 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.dds", + name="Stun Buildup", + nodeOverlay={ + alloc="TitanFrameSmallAllocated", + path="TitanFrameSmallCanAllocate", + unalloc="TitanFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=56842, + stats={ + [1]="18% increased Stun Buildup" + } + }, + [56844]={ + connections={ + [1]={ + id=40929, + orbit=-2 + } + }, + group=1051, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Archon Duration", + orbit=7, + orbitIndex=0, + skill=56844, + stats={ + [1]="15% increased Archon Buff duration" + } + }, + [56847]={ + connections={ + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds", + isNotable=true, + name="Sacred Rituals", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=6, + orbitIndex=44, + skill=56857, + stats={ + [1]="60% of your current Energy Shield is added to your Armour for", + [2]="determining your Physical Damage Reduction from Armour" + } + }, + [56860]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern", + connections={ + }, + group=1155, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + isNotable=true, + name="Resolute Reprisal", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Ire", + [3]="Despair" + }, + 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=312, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds", + isNotable=true, + name="Endlessly Soaring", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + orbit=5, + orbitIndex=69, + skill=56890, + stats={ + [1]="Shapeshift Skills have 30% increased Skill Effect Duration" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [56893]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern", + connections={ + }, + group=1202, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.dds", + isNotable=true, + name="Thicket Warding", + orbit=7, + orbitIndex=16, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Paranoia" + }, + 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=886, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + 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=768, + icon="Art/2DArt/SkillIcons/passives/Meleerange.dds", + 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=1123, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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", + connections={ + }, + group=893, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.dds", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=2, + orbitIndex=3, + skill=56926, + stats={ + } + }, + [56928]={ + connections={ + [1]={ + id=62350, + orbit=7 + } + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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.dds", + isNotable=true, + name="Druidic Champion", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + 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", + connections={ + }, + group=542, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=56934, + stats={ + } + }, + [56935]={ + connections={ + [1]={ + id=57710, + orbit=0 + }, + [2]={ + id=34058, + orbit=0 + } + }, + group=714, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=678, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + 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=793, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=56978, + stats={ + [1]="+5 to any Attribute" + } + }, + [56988]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1308, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Electric Blood", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Isolation", + [3]="Guilt" + }, + 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=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=428, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + isNotable=true, + name="Heavy Contact", + orbit=4, + orbitIndex=6, + recipe={ + [1]="Ire", + [2]="Envy", + [3]="Despair" + }, + skill=56997, + stats={ + [1]="Hits that Heavy Stun Enemies have Culling Strike" + } + }, + [56999]={ + connections={ + }, + group=924, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Locked On", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Disgust", + [3]="Envy" + }, + 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=464, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + isNotable=true, + name="Rough Carapace", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=731, + icon="Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds", + 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=761, + icon="Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds", + isNotable=true, + name="Polymathy", + orbit=5, + orbitIndex=48, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Paranoia" + }, + skill=57047, + stats={ + [1]="7% increased Attributes" + } + }, + [57069]={ + connections={ + [1]={ + id=52257, + orbit=0 + } + }, + group=1352, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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.dds", + isNotable=true, + name="Known by All", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1188, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=2, + orbitIndex=20, + skill=57088, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [57089]={ + connections={ + }, + group=198, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=2, + orbitIndex=4, + skill=57089, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [57110]={ + connections={ + [1]={ + id=62159, + orbit=-2 + }, + [2]={ + id=46561, + orbit=0 + } + }, + group=898, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Infused Flesh", + orbit=7, + orbitIndex=5, + recipe={ + [1]="Greed", + [2]="Envy", + [3]="Envy" + }, + skill=57110, + stats={ + [1]="+20 to maximum Life", + [2]="8% of Damage taken Recouped as Life" + } + }, + [57141]={ + ascendancyName="Pathfinder", + connections={ + }, + group=1443, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds", + isMultipleChoice=true, + isNotable=true, + name="Brew Concoction", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=57141, + stats={ + } + }, + [57178]={ + connections={ + [1]={ + id=21245, + orbit=0 + }, + [2]={ + id=5284, + orbit=0 + } + }, + group=504, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds", + name="Critical Chance", + nodeOverlay={ + alloc="InvokerFrameSmallAllocated", + path="InvokerFrameSmallCanAllocate", + unalloc="InvokerFrameSmallNormal" + }, + orbit=8, + orbitIndex=24, + skill=57181, + stats={ + [1]="12% increased Critical Hit Chance" + } + }, + [57190]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + [1]={ + id=27859, + orbit=0 + } + }, + group=824, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + isNotable=true, + name="Doomsayer", + orbit=1, + orbitIndex=6, + recipe={ + [1]="Paranoia", + [2]="Guilt", + [3]="Disgust" + }, + skill=57190, + stats={ + [1]="Herald Skills have 25% increased Area of Effect", + [2]="Herald Skills deal 30% increased Damage" + } + }, + [57196]={ + connections={ + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=3, + orbitIndex=14, + skill=57196, + stats={ + [1]="3% increased Attack Speed" + } + }, + [57202]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=1628, + orbit=2147483647 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=880, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Critical Exploit", + orbit=2, + orbitIndex=13, + recipe={ + [1]="Envy", + [2]="Paranoia", + [3]="Ire" + }, + skill=57204, + stats={ + [1]="25% increased Critical Hit Chance" + } + }, + [57227]={ + connections={ + [1]={ + id=23259, + orbit=-5 + } + }, + group=987, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=1449, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds", + isMultipleChoiceOption=true, + name="Path of the Warrior", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=57253, + stats={ + [1]="Can Allocate Passives from the Warrior's starting point", + [2]="Grants 4 Passive Skill Point" + } + }, + [57273]={ + connections={ + [1]={ + id=33562, + orbit=0 + } + }, + group=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + 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", + connections={ + }, + group=667, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=0, + orbitIndex=0, + skill=57320, + stats={ + } + }, + [57373]={ + connections={ + [1]={ + id=44733, + orbit=4 + } + }, + group=556, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=134, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + isNotable=true, + name="In Your Face", + orbit=3, + orbitIndex=10, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Envy" + }, + skill=57379, + stats={ + [1]="40% increased Melee Damage with Hits at Close Range" + } + }, + [57386]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=4621, + orbit=-6 + } + }, + group=228, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Elemental Threshold", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=223, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Overwhelming Strike", + orbit=3, + orbitIndex=22, + recipe={ + [1]="Despair", + [2]="Envy", + [3]="Disgust" + }, + 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=234, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Area Damage", + orbit=2, + orbitIndex=2, + skill=57405, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [57462]={ + connections={ + [1]={ + id=12078, + orbit=-6 + } + }, + group=1267, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Speed", + orbit=3, + orbitIndex=17, + skill=57462, + stats={ + [1]="8% increased Projectile Speed" + } + }, + [57471]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern", + connections={ + [1]={ + id=42578, + orbit=-4 + } + }, + group=174, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + isNotable=true, + name="Hunker Down", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Despair", + [2]="Despair", + [3]="Paranoia" + }, + 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={ + }, + group=993, + icon="Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds", + isKeystone=true, + name="Eldritch Battery", + orbit=0, + orbitIndex=0, + skill=57513, + stats={ + [1]="Converts all Energy Shield to Mana", + [2]="Doubles Mana Costs" + } + }, + [57517]={ + connections={ + [1]={ + id=28268, + orbit=0 + } + }, + group=978, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=31366, + orbit=4 + } + }, + group=1284, + icon="Art/2DArt/SkillIcons/passives/BucklerNode1.dds", + 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=386, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=654, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=1364, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + 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=477, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + name="Life Costs", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=325, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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=1417, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + 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=656, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Shifted Strikes", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Guilt", + [3]="Disgust" + }, + 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=785, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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=1404, + icon="Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds", + 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=334, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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 + } + }, + group=743, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1206, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=7, + orbitIndex=20, + skill=57724, + stats={ + [1]="7% increased Chaos Damage" + } + }, + [57774]={ + connections={ + [1]={ + id=49657, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + 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", + connections={ + }, + group=414, + icon="Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds", + isOnlyImage=true, + name="Aura Mastery", + orbit=0, + orbitIndex=0, + skill=57775, + stats={ + } + }, + [57776]={ + connections={ + [1]={ + id=33914, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield and Mana Regeneration", + orbit=3, + orbitIndex=5, + skill=57776, + stats={ + [1]="10% increased maximum Energy Shield", + [2]="6% increased Mana Regeneration Rate" + } + }, + [57785]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connections={ + [1]={ + id=31112, + orbit=0 + }, + [2]={ + id=56897, + orbit=0 + } + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + isNotable=true, + name="Trained Turrets", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Greed", + [2]="Despair", + [3]="Ire" + }, + 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=638, + icon="Art/2DArt/SkillIcons/passives/AuraNotable.dds", + 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=757, + icon="Art/2DArt/SkillIcons/passives/knockback.dds", + isNotable=true, + name="Clear Space", + orbit=4, + orbitIndex=18, + recipe={ + [1]="Paranoia", + [2]="Guilt", + [3]="Guilt" + }, + 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=900, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Shock Chance", + orbit=0, + orbitIndex=0, + skill=57810, + stats={ + [1]="15% increased chance to Shock" + } + }, + [57816]={ + connections={ + [1]={ + id=364, + orbit=0 + } + }, + group=724, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + name="Dexterity", + orbit=1, + orbitIndex=8, + skill=57816, + stats={ + [1]="+8 to Dexterity" + } + }, + [57819]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=488, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds", + isNotable=true, + name="Integrated Efficiency", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + 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=1258, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=685, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=395, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=6, + orbitIndex=12, + skill=57846, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [57863]={ + connections={ + [1]={ + id=26356, + orbit=0 + } + }, + group=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + name="Axe Damage", + orbit=3, + orbitIndex=3, + skill=57880, + stats={ + [1]="12% increased Damage with Axes" + } + }, + [57921]={ + connections={ + [1]={ + id=23879, + orbit=0 + } + }, + group=344, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Wolf's Howl", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Greed" + }, + 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=1415, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Companion Damage", + orbit=0, + orbitIndex=0, + skill=57933, + stats={ + [1]="Companions deal 12% increased Damage" + } + }, + [57945]={ + connections={ + [1]={ + id=7412, + orbit=0 + } + }, + group=1190, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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.dds", + isNotable=true, + name="Coal Stoker", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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", + connections={ + }, + group=987, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=57966, + stats={ + } + }, + [57967]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern", + connections={ + }, + group=592, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + 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=1400, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + 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=925, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + name="Physical Damage", + orbit=3, + orbitIndex=3, + skill=58002, + stats={ + [1]="10% increased Physical Damage" + } + }, + [58013]={ + connections={ + [1]={ + id=4844, + orbit=0 + } + }, + group=908, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="All Natural", + orbit=4, + orbitIndex=42, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Greed" + }, + 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=1254, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + name="Chaos Damage", + orbit=0, + orbitIndex=0, + skill=58022, + stats={ + [1]="11% increased Chaos Damage" + } + }, + [58038]={ + connections={ + [1]={ + id=31566, + orbit=0 + } + }, + group=717, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + 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", + connectionArt="CharacterPlanned", + connections={ + }, + group=86, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds", + isOnlyImage=true, + name="Bow Mastery", + orbit=0, + orbitIndex=0, + skill=58058, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [58088]={ + connections={ + [1]={ + id=16620, + orbit=5 + } + }, + group=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=48774, + orbit=7 + } + }, + group=789, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + name="Life Recoup", + orbit=7, + orbitIndex=18, + skill=58090, + stats={ + [1]="3% of Damage taken Recouped as Life" + } + }, + [58096]={ + connections={ + [1]={ + id=17411, + orbit=0 + } + }, + group=482, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isNotable=true, + name="Lasting Incantations", + orbit=3, + orbitIndex=20, + recipe={ + [1]="Isolation", + [2]="Greed", + [3]="Disgust" + }, + skill=58096, + stats={ + [1]="20% increased Spell Damage", + [2]="15% increased Skill Effect Duration" + } + }, + [58109]={ + connections={ + [1]={ + id=14340, + orbit=0 + } + }, + group=806, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=862, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + 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=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=5, + orbitIndex=3, + skill=58117, + stats={ + [1]="15% increased Totem Damage" + } + }, + [58125]={ + connections={ + [1]={ + id=10681, + orbit=5 + } + }, + group=117, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + name="Shield Defences", + orbit=4, + orbitIndex=60, + skill=58125, + stats={ + [1]="25% increased Defences from Equipped Shield" + } + }, + [58138]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern", + connections={ + }, + group=117, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds", + isOnlyImage=true, + name="Armour and Energy Shield Mastery", + orbit=1, + orbitIndex=6, + skill=58138, + stats={ + } + }, + [58149]={ + ascendancyName="Ritualist", + connections={ + [1]={ + id=62804, + orbit=8 + } + }, + group=1492, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Life Recovery Rate", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=58149, + stats={ + [1]="10% increased Life Recovery rate" + } + }, + [58157]={ + connections={ + [1]={ + id=61149, + orbit=0 + } + }, + group=1235, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.dds", + name="Stun Recovery", + orbit=7, + orbitIndex=17, + skill=58157, + stats={ + [1]="20% increased Stun Recovery" + } + }, + [58170]={ + connections={ + [1]={ + id=61067, + orbit=0 + } + }, + group=626, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isSwitchable=true, + name="Spell Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=955, + icon="Art/2DArt/SkillIcons/passives/HiredKiller2.dds", + 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=486, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + isNotable=true, + name="Blood Tearing", + orbit=2, + orbitIndex=11, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Greed" + }, + 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.dds", + isNotable=true, + name="Unquenchable Iron", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + orbit=6, + orbitIndex=60, + skill=58197, + stats={ + [1]="Gain 18% of Physical Damage as Extra Lightning Damage" + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [58198]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=339, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + isNotable=true, + name="Well of Power", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Ire" + }, + 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=440, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + isNotable=true, + name="Sanguimantic Rituals", + orbit=4, + orbitIndex=8, + recipe={ + [1]="Paranoia", + [2]="Suffering", + [3]="Isolation" + }, + 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=256, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1084, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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=903, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=713, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds", + isSwitchable=true, + name="Elemental Ailment Chance", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=1051, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + 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=291, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + name="Minion Life", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1446, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds", + isMultipleChoiceOption=true, + name="Acidic Concoction", + nodeOverlay={ + alloc="PathfinderFrameSmallAllocated", + path="PathfinderFrameSmallCanAllocate", + unalloc="PathfinderFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=58379, + stats={ + [1]="Grants Skill: Acidic Concoction" + } + }, + [58387]={ + connections={ + [1]={ + id=52454, + orbit=4 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=1095, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + name="Life Flasks", + orbit=3, + orbitIndex=23, + skill=58388, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [58397]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern", + connections={ + [1]={ + id=19338, + orbit=0 + }, + [2]={ + id=31647, + orbit=0 + }, + [3]={ + id=2334, + orbit=0 + } + }, + group=1316, + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + isNotable=true, + name="Proficiency", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Paranoia" + }, + skill=58397, + stats={ + [1]="+25 to Dexterity" + } + }, + [58416]={ + connections={ + }, + group=1252, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + name="Projectile Speed", + orbit=2, + orbitIndex=11, + skill=58416, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [58426]={ + connections={ + [1]={ + id=34401, + orbit=0 + } + }, + group=1328, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Pocket Sand", + orbit=2, + orbitIndex=21, + recipe={ + [1]="Paranoia", + [2]="Guilt", + [3]="Paranoia" + }, + skill=58426, + stats={ + [1]="50% increased Blind Effect" + } + }, + [58496]={ + connections={ + [1]={ + id=9328, + orbit=-4 + }, + [2]={ + id=37187, + orbit=5 + } + }, + group=139, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=2147483647 + }, + [2]={ + id=11774, + orbit=0 + } + }, + group=1232, + icon="Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds", + 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=1201, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=15, + skill=58526, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [58528]={ + connections={ + [1]={ + id=5710, + orbit=6 + } + }, + group=512, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=3, + orbitIndex=2, + skill=58528, + stats={ + [1]="10% increased Melee Damage" + } + }, + [58539]={ + connections={ + [1]={ + id=60899, + orbit=0 + } + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1488, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Reduced Mana", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=58574, + stats={ + [1]="30% reduced maximum Mana" + } + }, + [58591]={ + ascendancyName="Gemling Legionnaire", + connections={ + }, + group=543, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds", + isNotable=true, + name="Enhanced Effectiveness", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=58591, + stats={ + [1]="20% less Attributes", + [2]="Inherent bonuses gained from Attributes are doubled" + } + }, + [58644]={ + connections={ + [1]={ + id=42714, + orbit=0 + } + }, + group=1240, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=2147483647 + } + }, + group=65, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds", + isNotable=true, + name="Reactive Growth", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + 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]="Each Adaptation grants 10% less Damage taken of that Adaptation's type" + } + }, + [58651]={ + connections={ + [1]={ + id=49357, + orbit=0 + }, + [2]={ + id=50558, + orbit=0 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + isSwitchable=true, + name="Minion Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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", + connections={ + }, + group=641, + icon="Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds", + isOnlyImage=true, + name="Elemental Mastery", + orbit=7, + orbitIndex=1, + skill=58674, + stats={ + } + }, + [58704]={ + ascendancyName="Warbringer", + connections={ + [1]={ + id=49380, + orbit=0 + } + }, + group=29, + icon="Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds", + isNotable=true, + name="Anvil's Weight", + nodeOverlay={ + alloc="WarbringerFrameLargeAllocated", + path="WarbringerFrameLargeCanAllocate", + unalloc="WarbringerFrameLargeNormal" + }, + 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=702, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + isNotable=true, + name="Grenadier", + orbit=4, + orbitIndex=60, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Isolation" + }, + skill=58714, + stats={ + [1]="Grenade Skills have +1 Cooldown Use" + } + }, + [58718]={ + connections={ + [1]={ + id=35015, + orbit=0 + } + }, + group=666, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleeding Damage", + orbit=0, + orbitIndex=0, + skill=58718, + stats={ + [1]="10% increased Magnitude of Bleeding you inflict" + } + }, + [58747]={ + ascendancyName="Chronomancer", + connections={ + }, + group=342, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds", + isNotable=true, + name="Ultimate Command", + nodeOverlay={ + alloc="ChronomancerFrameLargeAllocated", + path="ChronomancerFrameLargeCanAllocate", + unalloc="ChronomancerFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=58747, + stats={ + [1]="Grants Skill: Time Freeze" + } + }, + [58751]={ + ascendancyName="Lich", + connections={ + [1]={ + id=17788, + orbit=0 + } + }, + group=1120, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Energy Shield", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=35941, + name="Energy Shield", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=1237, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=6, + skill=58779, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [58783]={ + connections={ + [1]={ + id=26520, + orbit=0 + } + }, + group=851, + icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", + name="Life Leech. Armour and Evasion while Leeching", + orbit=2, + orbitIndex=19, + skill=58783, + stats={ + [1]="8% increased amount of Life Leeched", + [2]="8% increased Armour and Evasion Rating while Leeching" + } + }, + [58789]={ + connections={ + [1]={ + id=13307, + orbit=0 + } + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=921, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=58814, + stats={ + [1]="+5 to any Attribute" + } + }, + [58817]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern", + connections={ + }, + group=585, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + isNotable=true, + name="Artillery Strike", + orbit=4, + orbitIndex=15, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Fear" + }, + 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=300, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=5, + orbitIndex=60, + skill=58838, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [58848]={ + connections={ + [1]={ + id=22962, + orbit=2147483647 + }, + [2]={ + id=10576, + orbit=0 + } + }, + group=1240, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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", + connections={ + }, + group=235, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=58855, + stats={ + } + }, + [58884]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern", + connections={ + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds", + isOnlyImage=true, + name="Two Hand Mastery", + orbit=0, + orbitIndex=0, + skill=58884, + stats={ + } + }, + [58926]={ + connections={ + [1]={ + id=64572, + orbit=0 + } + }, + group=322, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + name="Freeze Buildup", + orbit=7, + orbitIndex=16, + skill=58926, + stats={ + [1]="15% increased Freeze Buildup" + } + }, + [58930]={ + connections={ + [1]={ + id=14934, + orbit=7 + } + }, + group=610, + icon="Art/2DArt/SkillIcons/passives/castspeed.dds", + name="Cast Speed", + orbit=7, + orbitIndex=9, + skill=58930, + stats={ + [1]="3% increased Cast Speed" + } + }, + [58932]={ + ascendancyName="Lich", + connections={ + }, + group=1069, + icon="Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds", + isNotable=true, + isSwitchable=true, + name="Eldritch Empowerment", + nodeOverlay={ + alloc="LichFrameLargeAllocated", + path="LichFrameLargeCanAllocate", + unalloc="LichFrameLargeNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + } + } + }, + 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", + [3]="Spells for which this Sacrifice was fully made deal 5% more Damage" + } + }, + [58939]={ + connections={ + [1]={ + id=44608, + orbit=0 + } + }, + group=861, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="Dispatch Foes", + orbit=2, + orbitIndex=8, + recipe={ + [1]="Envy", + [2]="Envy", + [3]="Paranoia" + }, + 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=1217, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + name="Ailment Threshold", + orbit=2, + orbitIndex=11, + skill=58971, + stats={ + [1]="15% increased Elemental Ailment Threshold" + } + }, + [59006]={ + connections={ + [1]={ + id=37956, + orbit=7 + } + }, + group=456, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Reduced Duration", + orbit=0, + orbitIndex=0, + skill=59006, + stats={ + [1]="8% reduced Skill Effect Duration" + } + }, + [59028]={ + connections={ + [1]={ + id=41210, + orbit=0 + } + }, + group=766, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=164, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1026, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=214, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + 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=534, + icon="Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds", + isNotable=true, + name="Enduring Archon", + orbit=7, + orbitIndex=13, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Paranoia" + }, + skill=59070, + stats={ + [1]="30% increased Archon Buff duration" + } + }, + [59083]={ + connections={ + [1]={ + id=32364, + orbit=0 + } + }, + group=1351, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=270, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=589, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Chance to Poison and Spell Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=2147483647 + } + }, + group=493, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + name="Attack Damage", + orbit=7, + orbitIndex=15, + skill=59180, + stats={ + [1]="10% increased Attack Damage" + } + }, + [59208]={ + connections={ + [1]={ + id=5681, + orbit=0 + } + }, + group=439, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds", + isNotable=true, + name="Frantic Fighter", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Suffering" + }, + 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=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=1207, + icon="Art/2DArt/SkillIcons/passives/CurseEffectNode.dds", + isNotable=true, + name="Fated End", + orbit=7, + orbitIndex=18, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Despair" + }, + 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=545, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=546, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + isNotable=true, + name="Ripping Blade", + orbit=4, + orbitIndex=33, + skill=59263, + stats={ + [1]="25% increased Damage with Swords" + } + }, + [59289]={ + connections={ + [1]={ + id=22532, + orbit=0 + } + }, + group=818, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + name="Immobilisation Buildup", + orbit=2, + orbitIndex=21, + skill=59289, + stats={ + [1]="15% increased Immobilisation buildup" + } + }, + [59303]={ + connections={ + [1]={ + id=25029, + orbit=0 + } + }, + group=1219, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.dds", + isNotable=true, + name="Lucky Rabbit Foot", + orbit=4, + orbitIndex=3, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Ire" + }, + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Life Leech", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + orbit=6, + orbitIndex=68, + skill=59342, + stats={ + [1]="12% increased amount of Life Leeched" + } + }, + [59355]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=1115, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=59355, + stats={ + } + }, + [59356]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern", + connections={ + }, + group=1190, + icon="Art/2DArt/SkillIcons/passives/MasteryFlasks.dds", + isOnlyImage=true, + name="Flask Mastery", + orbit=0, + orbitIndex=0, + skill=59356, + stats={ + } + }, + [59362]={ + connections={ + [1]={ + id=41669, + orbit=0 + }, + [2]={ + id=62677, + orbit=0 + }, + [3]={ + id=50720, + orbit=0 + } + }, + group=738, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=424, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1343, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds", + 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.dds", + isNotable=true, + name="Crushing Impacts", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=59372, + stats={ + [1]="25% more Damage against Heavy Stunned Enemies", + [2]="Your Hits are Crushing Blows" + } + }, + [59376]={ + connections={ + }, + group=620, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=3, + skill=59376, + stats={ + [1]="+5 to any Attribute" + } + }, + [59387]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=885, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + isNotable=true, + name="Infusion of Power", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Guilt", + [3]="Fear" + }, + skill=59387, + stats={ + [1]="Gain a Power Charge when you consume an Elemental Infusion" + } + }, + [59390]={ + connections={ + [1]={ + id=11472, + orbit=0 + } + }, + group=1145, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + 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" + } + }, + [59425]={ + connections={ + [1]={ + id=23939, + orbit=0 + } + }, + group=591, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=219, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + isNotable=true, + name="Thirst for Endurance", + orbit=2, + orbitIndex=20, + recipe={ + [1]="Despair", + [2]="Envy", + [3]="Ire" + }, + skill=59433, + stats={ + [1]="25% chance when you gain an Endurance Charge to gain an additional Endurance Charge" + } + }, + [59446]={ + connections={ + [1]={ + id=4544, + orbit=0 + } + }, + group=1113, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds", + name="Life Flask Charges", + orbit=2, + orbitIndex=5, + skill=59446, + stats={ + [1]="10% increased Life Recovery from Flasks" + } + }, + [59466]={ + connections={ + [1]={ + id=37226, + orbit=-7 + } + }, + group=383, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=655, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + name="Area Damage", + orbit=4, + orbitIndex=69, + skill=59480, + stats={ + [1]="10% increased Attack Area Damage" + } + }, + [59498]={ + connections={ + [1]={ + id=54814, + orbit=0 + } + }, + group=430, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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", + connections={ + [1]={ + id=25619, + orbit=0 + }, + [2]={ + id=42354, + orbit=0 + } + }, + group=804, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Blind Mastery", + orbit=0, + orbitIndex=0, + skill=59501, + stats={ + } + }, + [59503]={ + connections={ + [1]={ + id=22208, + orbit=0 + } + }, + group=1260, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=1315, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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.dds", + isNotable=true, + name="Mountain Splitter", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + 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=893, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + isNotable=true, + name="Necrotised Flesh", + orbit=3, + orbitIndex=3, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Fear" + }, + 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=1431, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds", + isMultipleChoiceOption=true, + name="Far Shot", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + [1]={ + id=52659, + orbit=0 + } + }, + group=160, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Heavy Armour", + orbit=3, + orbitIndex=23, + recipe={ + [1]="Despair", + [2]="Fear", + [3]="Greed" + }, + skill=59589, + stats={ + [1]="150% of Strength Requirements from Boots, Gloves and Helmets also added to Armour" + } + }, + [59596]={ + connections={ + [1]={ + id=37641, + orbit=0 + } + }, + group=268, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Covering Ward", + orbit=3, + orbitIndex=16, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Greed" + }, + skill=59596, + stats={ + [1]="25% increased Energy Shield Recharge Rate", + [2]="Gain 20 Energy Shield when you Block" + } + }, + [59600]={ + connections={ + [1]={ + id=9411, + orbit=0 + } + }, + group=1148, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=898, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=745, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=1222, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=1032, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=7, + orbitIndex=10, + skill=59647, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [59651]={ + connections={ + [1]={ + id=41654, + orbit=2147483647 + }, + [2]={ + id=47821, + orbit=4 + }, + [3]={ + id=25557, + orbit=0 + } + }, + group=1044, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=863, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + name="Movement Speed", + orbit=7, + orbitIndex=10, + skill=59653, + stats={ + [1]="2% increased Movement Speed" + } + }, + [59661]={ + connections={ + [1]={ + id=12245, + orbit=0 + } + }, + group=961, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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=1383, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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=645, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=2, + orbitIndex=19, + skill=59695, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [59710]={ + connections={ + [1]={ + id=52618, + orbit=5 + } + }, + group=313, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=41163, + orbit=0 + } + }, + group=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + isNotable=true, + name="Beastial Skin", + orbit=5, + orbitIndex=42, + recipe={ + [1]="Greed", + [2]="Disgust", + [3]="Envy" + }, + skill=59720, + stats={ + [1]="100% increased Evasion Rating from Equipped Body Armour" + } + }, + [59759]={ + ascendancyName="Acolyte of Chayula", + connections={ + }, + group=1458, + icon="Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds", + isNotable=true, + name="Chayula's Gift", + nodeOverlay={ + alloc="Acolyte of ChayulaFrameLargeAllocated", + path="Acolyte of ChayulaFrameLargeCanAllocate", + unalloc="Acolyte of ChayulaFrameLargeNormal" + }, + 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=512, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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=1214, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=148, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=733, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + name="Armour and Evasion", + orbit=0, + orbitIndex=0, + skill=59779, + stats={ + [1]="+10 to Armour", + [2]="+8 to Evasion Rating" + } + }, + [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.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=648, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1209, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=1209, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=910, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + isAscendancyStart=true, + name="Blood Mage", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + orbit=9, + orbitIndex=0, + skill=59822, + stats={ + } + }, + [59881]={ + connections={ + [1]={ + id=54417, + orbit=0 + }, + [2]={ + id=28556, + orbit=-5 + } + }, + group=771, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=143, + icon="Art/2DArt/SkillIcons/passives/lightningstr.dds", + 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=2147483647 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Area of Effect", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1015, + icon="Art/2DArt/SkillIcons/passives/CorpseDamage.dds", + 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=1432, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds", + isNotable=true, + name="Called Shots", + nodeOverlay={ + alloc="DeadeyeFrameLargeAllocated", + path="DeadeyeFrameLargeCanAllocate", + unalloc="DeadeyeFrameLargeNormal" + }, + 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=765, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=0, + orbitIndex=0, + skill=59915, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [59938]={ + connections={ + [1]={ + id=50757, + orbit=0 + } + }, + group=290, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Against the Elements", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Ire", + [3]="Envy" + }, + 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=200, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=59945, + stats={ + [1]="+5 to any Attribute" + } + }, + [60013]={ + connections={ + [1]={ + id=57776, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + name="Energy Shield", + orbit=3, + orbitIndex=8, + skill=60013, + stats={ + [1]="15% increased maximum Energy Shield" + } + }, + [60014]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=38474, + orbit=0 + } + }, + group=515, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Scent of Blood", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern", + connections={ + [1]={ + id=15207, + orbit=0 + }, + [2]={ + id=22208, + orbit=0 + } + }, + group=1260, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + isNotable=true, + name="Falcon Dive", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Paranoia", + [3]="Paranoia" + }, + 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=212, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage", + orbit=2, + orbitIndex=18, + skill=60064, + stats={ + [1]="10% increased Physical Damage" + } + }, + [60068]={ + connections={ + [1]={ + id=55925, + orbit=7 + } + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + name="Rage on Hit", + orbit=3, + orbitIndex=12, + skill=60068, + stats={ + [1]="Gain 1 Rage on Melee Hit" + } + }, + [60083]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + [1]={ + id=44239, + orbit=0 + } + }, + group=1050, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + isNotable=true, + name="Pin and Run", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Despair", + [3]="Disgust" + }, + 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=854, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Damage", + orbit=7, + orbitIndex=15, + skill=60085, + stats={ + [1]="10% increased Damage" + } + }, + [60107]={ + connections={ + [1]={ + id=57204, + orbit=0 + } + }, + group=880, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=9, + skill=60107, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [60138]={ + connections={ + [1]={ + id=52695, + orbit=0 + } + }, + group=1172, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + isNotable=true, + name="Stylebender", + orbit=5, + orbitIndex=3, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Suffering" + }, + 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", + connections={ + }, + group=1188, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds", + isOnlyImage=true, + name="Cold Mastery", + orbit=0, + orbitIndex=0, + skill=60170, + stats={ + } + }, + [60173]={ + connections={ + [1]={ + id=4238, + orbit=2 + } + }, + group=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=553, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + name="Bolt Speed", + orbit=7, + orbitIndex=11, + skill=60191, + stats={ + [1]="8% increased Bolt Speed" + } + }, + [60203]={ + connections={ + [1]={ + id=5332, + orbit=9 + } + }, + group=796, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength", + orbit=2, + orbitIndex=2, + skill=60203, + stats={ + [1]="+8 to Strength" + } + }, + [60210]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + [1]={ + id=63431, + orbit=0 + } + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/MasteryPoison.dds", + isOnlyImage=true, + name="Poison Mastery", + orbit=1, + orbitIndex=9, + skill=60210, + stats={ + } + }, + [60230]={ + connections={ + [1]={ + id=56935, + orbit=0 + }, + [2]={ + id=58362, + orbit=0 + }, + [3]={ + id=10192, + orbit=0 + }, + [4]={ + id=55909, + orbit=0 + } + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isSwitchable=true, + name="Elemental Damage", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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" + } + }, + [60241]={ + connections={ + [1]={ + id=57178, + orbit=0 + } + }, + group=476, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=819, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + isNotable=true, + name="Roil", + orbit=7, + orbitIndex=19, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Ire" + }, + 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=1213, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + isNotable=true, + name="Hindering Obstacles", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Despair" + }, + 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=152, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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=361, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds", + isMultipleChoice=true, + isNotable=true, + name="Implanted Gems", + nodeOverlay={ + alloc="Gemling LegionnaireFrameLargeAllocated", + path="Gemling LegionnaireFrameLargeCanAllocate", + unalloc="Gemling LegionnaireFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=60287, + stats={ + } + }, + [60298]={ + ascendancyName="Smith of Kitava", + connections={ + }, + group=15, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds", + isNotable=true, + name="Against the Anvil", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=60298, + stats={ + [1]="Grants Skill: Temper Weapon" + } + }, + [60313]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern", + connections={ + }, + group=678, + icon="Art/2DArt/SkillIcons/passives/MasteryChaos.dds", + isOnlyImage=true, + name="Chaos Mastery", + orbit=0, + orbitIndex=0, + skill=60313, + stats={ + } + }, + [60323]={ + connections={ + [1]={ + id=9199, + orbit=0 + }, + [2]={ + id=47560, + orbit=0 + } + }, + group=1233, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=1057, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=14, + skill=60324, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [60362]={ + connections={ + [1]={ + id=56265, + orbit=0 + } + }, + group=1377, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + 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=552, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Perfect Opportunity", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Suffering" + }, + 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=1217, + icon="Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds", + isNotable=true, + name="Fan the Flames", + orbit=4, + orbitIndex=45, + recipe={ + [1]="Suffering", + [2]="Paranoia", + [3]="Despair" + }, + skill=60464, + stats={ + [1]="25% reduced Ignite Duration on you", + [2]="40% increased Elemental Ailment Threshold" + } + }, + [60480]={ + connections={ + }, + group=1381, + icon="Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds", + 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=1319, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + orbit=0, + orbitIndex=0, + skill=60483, + stats={ + [1]="12% increased Lightning Damage" + } + }, + [60488]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern", + connections={ + }, + group=822, + icon="Art/2DArt/SkillIcons/passives/MasteryTraps.dds", + isOnlyImage=true, + name="Trap Mastery", + orbit=0, + orbitIndex=0, + skill=60488, + stats={ + } + }, + [60505]={ + connections={ + [1]={ + id=28050, + orbit=0 + }, + [2]={ + id=65009, + orbit=0 + }, + [3]={ + id=19808, + orbit=0 + }, + [4]={ + id=18831, + orbit=0 + } + }, + group=1028, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=749, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=3, + orbitIndex=4, + skill=60515, + stats={ + [1]="12% increased Cold Damage" + } + }, + [60551]={ + connections={ + [1]={ + id=21861, + orbit=0 + } + }, + group=304, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=1303, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=511, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=201, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds", + isNotable=true, + name="Scales of the Wyvern", + orbit=4, + orbitIndex=15, + recipe={ + [1]="Fear", + [2]="Fear", + [3]="Suffering" + }, + 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=373, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + 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.dds", + isNotable=true, + name="Colossal Capacity", + nodeOverlay={ + alloc="TitanFrameLargeAllocated", + path="TitanFrameLargeCanAllocate", + unalloc="TitanFrameLargeNormal" + }, + 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=1473, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds", + name="Elemental Damage", + nodeOverlay={ + alloc="AmazonFrameSmallAllocated", + path="AmazonFrameSmallCanAllocate", + unalloc="AmazonFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=60662, + stats={ + [1]="12% increased Elemental Damage" + } + }, + [60685]={ + connections={ + [1]={ + id=1826, + orbit=0 + } + }, + group=815, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=60685, + stats={ + [1]="+5 to any Attribute" + } + }, + [60692]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern", + connections={ + [1]={ + id=16367, + orbit=2 + } + }, + group=1022, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Echoing Flames", + orbit=7, + orbitIndex=12, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Disgust" + }, + skill=60692, + stats={ + [1]="30% increased Elemental Damage if you've Ignited an Enemy Recently" + } + }, + [60700]={ + connections={ + [1]={ + id=44974, + orbit=2147483647 + } + }, + group=1161, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + 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.dds", + name="Bow Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1205, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=60735, + stats={ + } + }, + [60738]={ + connections={ + [1]={ + id=37408, + orbit=0 + } + }, + group=1031, + icon="Art/2DArt/SkillIcons/passives/flaskstr.dds", + 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=841, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Damage", + orbit=2, + orbitIndex=12, + skill=60741, + stats={ + [1]="10% increased Elemental Damage" + } + }, + [60764]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern", + connections={ + }, + group=1387, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Feathered Fletching", + orbit=5, + orbitIndex=12, + recipe={ + [1]="Isolation", + [2]="Suffering", + [3]="Suffering" + }, + 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", + connections={ + }, + group=433, + icon="Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds", + isOnlyImage=true, + name="Channelling Mastery", + orbit=0, + orbitIndex=0, + skill=60809, + stats={ + } + }, + [60829]={ + connections={ + [1]={ + id=36630, + orbit=2147483647 + } + }, + group=991, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1494, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds", + name="Charm Charges", + nodeOverlay={ + alloc="RitualistFrameSmallAllocated", + path="RitualistFrameSmallCanAllocate", + unalloc="RitualistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=60859, + stats={ + [1]="15% increased Charm Charges gained" + } + }, + [60886]={ + connections={ + [1]={ + id=59213, + orbit=3 + } + }, + group=448, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Recovery", + orbit=1, + orbitIndex=5, + skill=60886, + stats={ + [1]="20% increased Stun Recovery" + } + }, + [60891]={ + connections={ + [1]={ + id=53185, + orbit=0 + } + }, + group=1375, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds", + name="Accuracy Rating", + orbit=1, + orbitIndex=9, + skill=60891, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [60899]={ + connections={ + [1]={ + id=32543, + orbit=-7 + } + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + name="Reduced Movement Penalty", + orbit=7, + orbitIndex=22, + skill=60899, + stats={ + [1]="3% reduced Movement Speed Penalty from using Skills while moving" + } + }, + [60913]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=52, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds", + isNotable=true, + name="Kitavan Engraving", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=60913, + stats={ + [1]="Body Armour grants 15% increased maximum Life" + } + }, + [60916]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=219, + icon="Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds", + isOnlyImage=true, + name="Endurance Charge Mastery", + orbit=0, + orbitIndex=0, + skill=60916, + stats={ + } + }, + [60974]={ + connections={ + [1]={ + id=1506, + orbit=-2 + } + }, + group=1057, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + name="Additional Remnant Chance", + orbit=2, + orbitIndex=2, + skill=60974, + stats={ + [1]="5% chance to create an additional Remnant" + } + }, + [60992]={ + connections={ + [1]={ + id=37971, + orbit=0 + } + }, + group=1421, + icon="Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds", + isNotable=true, + name="Nurturing Guardian", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Suffering" + }, + 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=461, + icon="Art/2DArt/SkillIcons/passives/minionlife.dds", + isNotable=true, + name="Crystalline Flesh", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Suffering" + }, + skill=61026, + stats={ + [1]="Minions have +20% to all Elemental Resistances", + [2]="Minions have +5% to all Maximum Elemental Resistances" + } + }, + [61027]={ + connections={ + }, + group=782, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + isNotable=true, + name="Mana Blessing", + orbit=0, + orbitIndex=0, + skill=61027, + stats={ + [1]="+20 to maximum Mana", + [2]="20% increased Mana Regeneration Rate" + } + }, + [61039]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=55, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds", + isNotable=true, + name="Tantalum Alloy", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=61039, + stats={ + [1]="Body Armour grants +75% to Fire Resistance" + } + }, + [61042]={ + connections={ + [1]={ + id=44344, + orbit=0 + } + }, + group=615, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1174, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Energy", + orbit=7, + orbitIndex=1, + skill=61056, + stats={ + [1]="Meta Skills gain 8% increased Energy" + } + }, + [61063]={ + connections={ + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + name="Elemental Penetration", + orbit=3, + orbitIndex=0, + skill=61063, + stats={ + [1]="Damage Penetrates 4% of Enemy Elemental Resistances" + } + }, + [61067]={ + connections={ + }, + group=626, + icon="Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds", + isSwitchable=true, + name="Spell Critical Damage", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern", + connections={ + }, + group=1019, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + isNotable=true, + name="Staggering Wounds", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Greed", + [3]="Guilt" + }, + skill=61104, + stats={ + [1]="50% chance to Knock Back Bleeding Enemies with Hits" + } + }, + [61106]={ + connections={ + [1]={ + id=59653, + orbit=0 + } + }, + group=863, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + 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=1322, + icon="Art/2DArt/SkillIcons/passives/SpearsNotable1.dds", + isNotable=true, + name="Roll and Strike", + orbit=5, + orbitIndex=14, + recipe={ + [1]="Guilt", + [2]="Paranoia", + [3]="Disgust" + }, + 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=291, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1326, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + name="Poison Duration", + orbit=2, + orbitIndex=18, + skill=61119, + stats={ + [1]="10% increased Poison Duration" + } + }, + [61142]={ + connections={ + [1]={ + id=38365, + orbit=0 + } + }, + group=204, + icon="Art/2DArt/SkillIcons/passives/chargestr.dds", + name="Recover Life on consuming Endurance Charge", + orbit=2, + orbitIndex=14, + skill=61142, + stats={ + [1]="Recover 2% of maximum Life for each Endurance Charge consumed" + } + }, + [61149]={ + connections={ + [1]={ + id=42760, + orbit=0 + } + }, + group=1235, + icon="Art/2DArt/SkillIcons/passives/MonkStunChakra.dds", + name="Stun Recovery", + orbit=2, + orbitIndex=13, + skill=61149, + stats={ + [1]="20% increased Stun Recovery" + } + }, + [61170]={ + connections={ + [1]={ + id=27186, + orbit=7 + } + }, + group=653, + icon="Art/2DArt/SkillIcons/passives/firedamage.dds", + name="Fire Damage", + orbit=1, + orbitIndex=3, + skill=61170, + stats={ + [1]="10% increased Fire Damage" + } + }, + [61179]={ + connections={ + [1]={ + id=21245, + orbit=0 + } + }, + group=490, + icon="Art/2DArt/SkillIcons/WitchBoneStorm.dds", + 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=1042, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1343, + icon="Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds", + name="Stun Threshold", + orbit=7, + orbitIndex=8, + skill=61215, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [61246]={ + connections={ + [1]={ + id=144, + orbit=5 + } + }, + group=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=1113, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds", + name="Poison Duration on You", + orbit=2, + orbitIndex=11, + skill=61263, + stats={ + [1]="10% reduced Poison Duration on you" + } + }, + [61267]={ + ascendancyName="Infernalist", + connections={ + }, + group=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds", + isNotable=true, + name="Mastered Darkness", + nodeOverlay={ + alloc="InfernalistFrameLargeAllocated", + path="InfernalistFrameLargeCanAllocate", + unalloc="InfernalistFrameLargeNormal" + }, + orbit=6, + orbitIndex=60, + skill=61267, + stats={ + [1]="Demonflame has no maximum" + } + }, + [61281]={ + connections={ + [1]={ + id=9217, + orbit=0 + } + }, + group=769, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + name="One Handed Damage", + orbit=2, + orbitIndex=14, + skill=61281, + stats={ + [1]="10% increased Damage with One Handed Weapons" + } + }, + [61312]={ + connections={ + [1]={ + id=56841, + orbit=0 + } + }, + group=935, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=1250, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Critical Chance", + orbit=2, + orbitIndex=11, + skill=61333, + stats={ + [1]="10% increased Critical Hit Chance" + } + }, + [61338]={ + connections={ + [1]={ + id=7333, + orbit=0 + } + }, + group=696, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Breath of Lightning", + orbit=4, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Paranoia", + [3]="Isolation" + }, + skill=61338, + stats={ + [1]="Damage Penetrates 15% Lightning Resistance", + [2]="+10 to Dexterity" + } + }, + [61347]={ + connections={ + [1]={ + id=64488, + orbit=3 + } + }, + group=688, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=719, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + name="Infernal Limit", + orbit=3, + orbitIndex=18, + recipe={ + [1]="Envy", + [2]="Greed", + [3]="Fear" + }, + skill=61354, + stats={ + [1]="+1 to maximum Fire Infusions" + } + }, + [61355]={ + connections={ + [1]={ + id=29306, + orbit=2 + } + }, + group=1171, + icon="Art/2DArt/SkillIcons/passives/MonkManaChakra.dds", + 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=1102, + icon="Art/2DArt/SkillIcons/passives/attackspeedbow.dds", + 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=239, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + name="Area Damage", + orbit=2, + orbitIndex=20, + skill=61362, + stats={ + [1]="10% increased Area Damage" + } + }, + [61367]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=64239, + orbit=2147483647 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Attack Added Lighting Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1033, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + 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.dds", + name="Shapeshifted Damage", + orbit=0, + orbitIndex=0, + skill=61393, + stats={ + [1]="12% increased Damage while Shapeshifted" + } + }, + [61396]={ + connections={ + [1]={ + id=10998, + orbit=0 + } + }, + group=873, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds", + 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=1180, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1 + }, + [2]={ + id=61429, + orbit=0 + } + }, + group=189, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + isNotable=true, + name="Equilibrium", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Fear", + [2]="Suffering", + [3]="Despair" + }, + 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=213, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + 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=741, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=61419, + stats={ + } + }, + [61421]={ + connections={ + [1]={ + id=16121, + orbit=7 + } + }, + group=1366, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=189, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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", + connections={ + [1]={ + id=6178, + orbit=0 + } + }, + group=892, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds", + isOnlyImage=true, + name="Crossbow Mastery", + orbit=0, + orbitIndex=0, + skill=61432, + stats={ + } + }, + [61438]={ + connections={ + [1]={ + id=28510, + orbit=0 + } + }, + group=727, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=546, + icon="Art/2DArt/SkillIcons/passives/damagesword.dds", + 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=482, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isNotable=true, + name="Wasting Casts", + orbit=3, + orbitIndex=2, + recipe={ + [1]="Fear", + [2]="Envy", + [3]="Despair" + }, + 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=2147483647 + } + }, + group=1427, + icon="Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds", + name="Projectile Speed", + nodeOverlay={ + alloc="DeadeyeFrameSmallAllocated", + path="DeadeyeFrameSmallCanAllocate", + unalloc="DeadeyeFrameSmallNormal" + }, + orbit=6, + orbitIndex=24, + skill=61461, + stats={ + [1]="10% increased Projectile Speed" + } + }, + [61471]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=49153, + orbit=0 + } + }, + group=354, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Damage and Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=373, + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + name="Strength", + orbit=7, + orbitIndex=10, + skill=61472, + stats={ + [1]="+8 to Strength" + } + }, + [61487]={ + connections={ + [1]={ + id=36596, + orbit=-4 + }, + [2]={ + id=58109, + orbit=0 + } + }, + group=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Damage against Enemies on Low Life", + orbit=4, + orbitIndex=66, + 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=397, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=61490, + stats={ + [1]="+5 to any Attribute" + } + }, + [61493]={ + connections={ + [1]={ + id=18240, + orbit=0 + } + }, + group=350, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + isNotable=true, + name="Austerity Measures", + orbit=3, + orbitIndex=19, + recipe={ + [1]="Paranoia", + [2]="Envy", + [3]="Despair" + }, + skill=61493, + stats={ + [1]="+5 to all Attributes", + [2]="Gain additional Ailment Threshold equal to 16% of maximum Energy Shield", + [3]="Gain additional Stun Threshold equal to 16% of maximum Energy Shield" + } + }, + [61525]={ + classesStart={ + [1]="Templar", + [2]="Druid" + }, + connections={ + [1]={ + id=13855, + orbit=0 + }, + [2]={ + id=35715, + orbit=0 + }, + [3]={ + id=26353, + orbit=0 + }, + [4]={ + id=950, + orbit=0 + }, + [5]={ + id=28429, + orbit=0 + }, + [6]={ + id=35535, + orbit=0 + }, + [7]={ + id=42761, + orbit=0 + } + }, + group=684, + icon="Art/2DArt/SkillIcons/passives/axedmgspeed.dds", + name="TEMPLAR", + orbit=0, + orbitIndex=0, + skill=61525, + stats={ + } + }, + [61534]={ + connections={ + [1]={ + id=4665, + orbit=0 + } + }, + group=631, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + name="Life Regeneration", + orbit=7, + orbitIndex=18, + skill=61534, + stats={ + [1]="Regenerate 0.2% of maximum Life per second" + } + }, + [61601]={ + connections={ + [1]={ + id=44420, + orbit=0 + }, + [2]={ + id=9586, + orbit=0 + } + }, + group=1142, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + isNotable=true, + name="True Strike", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Ire", + [2]="Guilt", + [3]="Disgust" + }, + skill=61601, + stats={ + [1]="+10 to Dexterity", + [2]="20% increased Critical Hit Chance" + } + }, + [61632]={ + connections={ + [1]={ + id=34316, + orbit=0 + } + }, + group=1388, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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" + } + }, + [61703]={ + connections={ + [1]={ + id=41180, + orbit=0 + }, + [2]={ + id=9037, + orbit=0 + } + }, + group=325, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds", + isNotable=true, + name="Sharpened Claw", + orbit=3, + orbitIndex=20, + recipe={ + [1]="Ire", + [2]="Greed", + [3]="Greed" + }, + skill=61703, + stats={ + [1]="30% increased Physical Damage while Shapeshifted" + } + }, + [61718]={ + connections={ + [1]={ + id=38342, + orbit=0 + } + }, + group=1376, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + 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.dds", + name="Elemental Resistances", + nodeOverlay={ + alloc="ShamanFrameSmallAllocated", + path="ShamanFrameSmallCanAllocate", + unalloc="ShamanFrameSmallNormal" + }, + orbit=6, + orbitIndex=36, + skill=61722, + stats={ + [1]="+3% to all Elemental Resistances" + } + }, + [61741]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + [1]={ + id=40024, + orbit=2 + } + }, + group=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Lasting Toxins", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Envy" + }, + skill=61741, + stats={ + [1]="10% increased Skill Effect Duration", + [2]="40% increased Poison Duration" + } + }, + [61768]={ + connections={ + }, + group=891, + icon="Art/2DArt/SkillIcons/passives/ColdResistNode.dds", + 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=205, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break Duration", + orbit=7, + orbitIndex=20, + skill=61796, + stats={ + [1]="20% increased Armour Break Duration" + } + }, + [61800]={ + connections={ + }, + group=1303, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=177, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + name="Physical Damage and Increased Duration", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1172, + icon="Art/2DArt/SkillIcons/passives/MasteryBlank.dds", + isJewelSocket=true, + name="Jewel Socket", + orbit=0, + orbitIndex=0, + skill=61834, + stats={ + } + }, + [61835]={ + connections={ + [1]={ + id=32549, + orbit=0 + }, + [2]={ + id=56237, + orbit=-2 + } + }, + group=165, + icon="Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds", + 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=304, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + 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=460, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Minion Damage", + orbit=3, + orbitIndex=0, + skill=61842, + stats={ + [1]="Minions deal 12% increased Damage" + } + }, + [61847]={ + connections={ + [1]={ + id=43443, + orbit=-4 + } + }, + group=163, + icon="Art/2DArt/SkillIcons/passives/macedmg.dds", + 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=700, + icon="Art/2DArt/SkillIcons/passives/ArchonGeneric.dds", + name="Cold Damage and Energy Shield Recharge Rate", + orbit=3, + orbitIndex=6, + skill=61863, + stats={ + [1]="8% increased Energy Shield Recharge Rate", + [2]="8% increased Elemental Damage" + } + }, + [61896]={ + connections={ + [1]={ + id=53354, + orbit=-1 + }, + [2]={ + id=8850, + orbit=-3 + } + }, + group=109, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds", + 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=271, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds", + name="Armour and Evasion", + nodeOverlay={ + alloc="WitchhunterFrameSmallAllocated", + path="WitchhunterFrameSmallCanAllocate", + unalloc="WitchhunterFrameSmallNormal" + }, + 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=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleed Chance", + orbit=3, + orbitIndex=12, + skill=61905, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [61921]={ + connections={ + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Storm Surge", + orbit=3, + orbitIndex=23, + recipe={ + [1]="Envy", + [2]="Isolation", + [3]="Greed" + }, + skill=61921, + stats={ + [1]="Damage Penetrates 8% Cold Resistance", + [2]="Damage Penetrates 15% Lightning Resistance" + } + }, + [61923]={ + connections={ + [1]={ + id=16256, + orbit=-6 + } + }, + group=954, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + name="Mana Regeneration", + orbit=3, + orbitIndex=4, + skill=61923, + stats={ + [1]="10% increased Mana Regeneration Rate" + } + }, + [61926]={ + connections={ + [1]={ + id=1603, + orbit=0 + } + }, + group=1090, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + 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=283, + icon="Art/2DArt/SkillIcons/icongroundslam.dds", + 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=555, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=2, + orbitIndex=2, + skill=61934, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [61935]={ + connections={ + [1]={ + id=4624, + orbit=7 + } + }, + group=533, + icon="Art/2DArt/SkillIcons/passives/Rage.dds", + 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=283, + icon="Art/2DArt/SkillIcons/icongroundslam.dds", + name="Jagged Ground Effect", + orbit=3, + orbitIndex=14, + skill=61938, + stats={ + [1]="15% increased Magnitude of Jagged Ground you create" + } + }, + [61942]={ + connections={ + }, + group=158, + icon="Art/2DArt/SkillIcons/passives/DruidAnimism.dds", + 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", + [2]="50% less Spirit", + [3]="Non-Minion Skills have 50% less Reservation Efficiency" + } + }, + [61973]={ + ascendancyName="Witchhunter", + connections={ + [1]={ + id=40719, + orbit=0 + } + }, + group=271, + icon="Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds", + isNotable=true, + name="Pitiless Killer", + nodeOverlay={ + alloc="WitchhunterFrameLargeAllocated", + path="WitchhunterFrameLargeCanAllocate", + unalloc="WitchhunterFrameLargeNormal" + }, + orbit=6, + orbitIndex=44, + skill=61973, + stats={ + [1]="Culling Strike" + } + }, + [61974]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connectionArt="CharacterPlanned", + connections={ + }, + group=571, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds", + isOnlyImage=true, + name="Invocation Mastery", + orbit=7, + orbitIndex=2, + skill=61974, + stats={ + }, + unlockConstraint={ + ascendancy="Oracle", + nodes={ + [1]=5571 + } + } + }, + [61976]={ + connections={ + [1]={ + id=7526, + orbit=0 + }, + [2]={ + id=36298, + orbit=6 + }, + [3]={ + id=2200, + orbit=0 + } + }, + group=1088, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=354, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Damage and Minion Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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.dds", + isNotable=true, + name="Avatar of Evolution", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + orbit=0, + orbitIndex=0, + skill=61983, + stats={ + [1]="5% of Physical Damage taken as Cold Damage", + [2]="5% of Physical Damage taken as Fire Damage", + [3]="5% of Physical Damage taken as Lightning Damage", + [4]="Adaptations have a duration of 5 seconds", + [5]="Double Adaptation Effect" + } + }, + [61985]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=29398, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds", + isNotable=true, + name="Heavy Snows", + nodeOverlay={ + alloc="StormweaverFrameLargeAllocated", + path="StormweaverFrameLargeCanAllocate", + unalloc="StormweaverFrameLargeNormal" + }, + 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=1438, + icon="Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds", + isNotable=true, + name="Running Assault", + nodeOverlay={ + alloc="PathfinderFrameLargeAllocated", + path="PathfinderFrameLargeCanAllocate", + unalloc="PathfinderFrameLargeNormal" + }, + orbit=9, + orbitIndex=96, + skill=61991, + stats={ + [1]="Cannot be Heavy Stunned while Sprinting", + [2]="50% less Movement Speed Penalty from using Skills while moving" + } + }, + [61992]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern", + connections={ + }, + group=787, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds", + isOnlyImage=true, + name="Minion Offence Mastery", + orbit=1, + orbitIndex=6, + skill=61992, + stats={ + } + }, + [62001]={ + connections={ + }, + group=1402, + icon="Art/2DArt/SkillIcons/passives/criticaldaggerint.dds", + 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", + connections={ + }, + group=355, + icon="Art/2DArt/SkillIcons/passives/WarcryMastery.dds", + isOnlyImage=true, + name="Warcry Mastery", + orbit=0, + orbitIndex=0, + skill=62015, + stats={ + } + }, + [62023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern", + connections={ + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Attack Mastery", + orbit=0, + orbitIndex=0, + skill=62023, + stats={ + } + }, + [62034]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern", + connections={ + }, + group=143, + icon="Art/2DArt/SkillIcons/passives/ElementalResistance2.dds", + isNotable=true, + name="Prism Guard", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Ire" + }, + skill=62034, + stats={ + [1]="+30% of Armour also applies to Elemental Damage" + } + }, + [62039]={ + connections={ + [1]={ + id=49618, + orbit=0 + } + }, + group=597, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=7, + orbitIndex=18, + skill=62039, + stats={ + [1]="10% increased Melee Damage" + } + }, + [62051]={ + connections={ + [1]={ + id=21755, + orbit=-9 + } + }, + group=772, + icon="Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds", + name="Movement Speed", + orbit=3, + orbitIndex=0, + skill=62051, + stats={ + [1]="3% increased Movement Speed if you've Killed Recently" + } + }, + [62122]={ + connections={ + [1]={ + id=4295, + orbit=-3 + } + }, + group=522, + icon="Art/2DArt/SkillIcons/passives/damage_blue.dds", + name="Damage from Mana", + orbit=3, + orbitIndex=4, + skill=62122, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [62153]={ + connections={ + [1]={ + id=55947, + orbit=3 + } + }, + group=1013, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=898, + icon="Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds", + 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=1126, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy and Attack Speed", + orbit=2, + orbitIndex=0, + skill=62166, + stats={ + [1]="2% increased Attack Speed", + [2]="5% increased Accuracy Rating" + } + }, + [62185]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1226, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + isNotable=true, + name="Rattled", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Greed", + [2]="Fear", + [3]="Ire" + }, + skill=62185, + stats={ + [1]="+20 to maximum Mana", + [2]="50% increased Shock Duration" + } + }, + [62194]={ + connections={ + [1]={ + id=19129, + orbit=2147483647 + } + }, + group=716, + icon="Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds", + 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=190, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Cooldown Speed", + orbit=2, + orbitIndex=20, + skill=62200, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [62216]={ + connections={ + [1]={ + id=26070, + orbit=3 + }, + [2]={ + id=38130, + orbit=-3 + } + }, + group=333, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Empowered Attack Damage", + orbit=2, + orbitIndex=8, + skill=62216, + stats={ + [1]="Empowered Attacks deal 16% increased Damage" + } + }, + [62230]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern", + connections={ + [1]={ + id=19355, + orbit=0 + } + }, + group=953, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + isNotable=true, + name="Patient Barrier", + orbit=6, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Isolation", + [3]="Fear" + }, + skill=62230, + stats={ + [1]="60% increased maximum Energy Shield", + [2]="20% slower start of Energy Shield Recharge" + } + }, + [62235]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern", + connections={ + }, + group=873, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds", + isOnlyImage=true, + name="Armour and Evasion Mastery", + orbit=2, + orbitIndex=12, + skill=62235, + stats={ + } + }, + [62258]={ + connections={ + [1]={ + id=62455, + orbit=0 + }, + [2]={ + id=21096, + orbit=0 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=290, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=542, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Incendiary", + orbit=7, + orbitIndex=22, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Guilt" + }, + skill=62310, + stats={ + [1]="60% increased Flammability Magnitude", + [2]="30% increased Damage with Hits against Burning Enemies" + } + }, + [62313]={ + connections={ + }, + group=143, + icon="Art/2DArt/SkillIcons/passives/fireresist.dds", + 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=959, + icon="Art/2DArt/SkillIcons/passives/blockstr.dds", + name="Block", + orbit=4, + orbitIndex=61, + skill=62341, + stats={ + [1]="5% increased Block chance" + } + }, + [62350]={ + connections={ + }, + group=1173, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + 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=222, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + 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=407, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + 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=464, + icon="Art/2DArt/SkillIcons/passives/ThornsNode1.dds", + name="Thorns", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds", + name="Bleed on Critical Chance", + nodeOverlay={ + alloc="Blood MageFrameSmallAllocated", + path="Blood MageFrameSmallCanAllocate", + unalloc="Blood MageFrameSmallNormal" + }, + orbit=5, + orbitIndex=70, + skill=62388, + stats={ + [1]="15% chance to inflict Bleeding on Critical Hit" + } + }, + [62427]={ + connections={ + }, + group=1201, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection Rating", + orbit=2, + orbitIndex=21, + skill=62427, + stats={ + [1]="4% increased Deflection Rating" + } + }, + [62431]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern", + connections={ + }, + group=951, + icon="Art/2DArt/SkillIcons/passives/damagespells.dds", + isNotable=true, + name="Anticipation", + orbit=0, + orbitIndex=0, + skill=62431, + stats={ + [1]="Skills Supported by Unleash have 25% increased Seal gain frequency" + } + }, + [62436]={ + connections={ + [1]={ + id=3215, + orbit=0 + } + }, + group=836, + icon="Art/2DArt/SkillIcons/passives/energyshield.dds", + 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=172, + icon="Art/2DArt/SkillIcons/passives/damageaxe.dds", + isNotable=true, + name="Enraged Reaver", + orbit=3, + orbitIndex=11, + skill=62439, + stats={ + [1]="+10 to Maximum Rage while wielding an Axe" + } + }, + [62455]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern", + connections={ + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds", + isNotable=true, + name="Bannerman", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Greed", + [3]="Ire" + }, + 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=1177, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=3, + orbitIndex=22, + skill=62464, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [62496]={ + connections={ + [1]={ + id=34912, + orbit=0 + } + }, + group=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=278, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=796, + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=238, + icon="Art/2DArt/SkillIcons/passives/fireresist.dds", + name="Fire Resistance", + orbit=3, + orbitIndex=7, + skill=62518, + stats={ + [1]="+5% to Fire Resistance" + } + }, + [62523]={ + ascendancyName="Shaman", + connections={ + [1]={ + id=26063, + orbit=2147483647 + } + }, + group=74, + icon="Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds", + isNotable=true, + name="Turning of the Seasons", + nodeOverlay={ + alloc="ShamanFrameLargeAllocated", + path="ShamanFrameLargeCanAllocate", + unalloc="ShamanFrameLargeNormal" + }, + 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=1282, + icon="Art/2DArt/SkillIcons/passives/flaskdex.dds", + 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=1220, + icon="Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds", + 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", + connections={ + }, + group=442, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds", + isOnlyImage=true, + name="Block Mastery", + orbit=0, + orbitIndex=0, + skill=62581, + stats={ + } + }, + [62588]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + [1]={ + id=50609, + orbit=0 + } + }, + group=721, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=62588, + stats={ + } + }, + [62603]={ + connections={ + [1]={ + id=19715, + orbit=3 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/FireDamagenode.dds", + 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=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + isNotable=true, + name="Ancestral Unity", + orbit=7, + orbitIndex=6, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Envy" + }, + skill=62609, + stats={ + [1]="Attacks used by Totems have 4% increased Attack Speed per Summoned Totem" + } + }, + [62624]={ + connections={ + }, + group=1257, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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", + connections={ + }, + group=882, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=0, + orbitIndex=0, + skill=62628, + stats={ + } + }, + [62640]={ + connections={ + [1]={ + id=24880, + orbit=-7 + } + }, + group=662, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=4, + orbitIndex=32, + skill=62640, + stats={ + [1]="3% increased Attack Speed" + } + }, + [62661]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern", + connections={ + }, + group=537, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=0, + orbitIndex=0, + skill=62661, + stats={ + } + }, + [62670]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern", + connections={ + }, + group=149, + icon="Art/2DArt/SkillIcons/passives/MinionMastery.dds", + isOnlyImage=true, + name="Minion Defence Mastery", + orbit=0, + orbitIndex=0, + skill=62670, + stats={ + } + }, + [62677]={ + connections={ + }, + group=825, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=62677, + stats={ + [1]="+5 to any Attribute" + } + }, + [62679]={ + connections={ + }, + group=791, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=12, + skill=62679, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [62732]={ + connections={ + [1]={ + id=64192, + orbit=0 + }, + [2]={ + id=49391, + orbit=0 + } + }, + group=567, + icon="Art/2DArt/SkillIcons/passives/Hearty.dds", + 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" + } + }, + [62748]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern", + connections={ + }, + group=323, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds", + isOnlyImage=true, + name="Life Mastery", + orbit=0, + orbitIndex=0, + skill=62748, + stats={ + } + }, + [62757]={ + connections={ + [1]={ + id=46741, + orbit=0 + } + }, + group=233, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + name="Stun Buildup", + orbit=2, + orbitIndex=4, + skill=62757, + stats={ + [1]="15% increased Stun Buildup" + } + }, + [62785]={ + connections={ + [1]={ + id=4948, + orbit=-7 + } + }, + group=370, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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=1089, + icon="Art/2DArt/SkillIcons/passives/Lich/LichNode.dds", + isSwitchable=true, + name="Curse Area", + nodeOverlay={ + alloc="LichFrameSmallAllocated", + path="LichFrameSmallCanAllocate", + unalloc="LichFrameSmallNormal" + }, + options={ + ["Abyssal Lich"]={ + ascendancyName="Abyssal Lich", + icon="Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds", + id=11965, + name="Curse Area", + nodeOverlay={ + alloc="Abyssal LichFrameSmallAllocated", + path="Abyssal LichFrameSmallCanAllocate", + unalloc="Abyssal LichFrameSmallNormal" + }, + 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=1270, + icon="Art/2DArt/SkillIcons/passives/CharmNotable1.dds", + isNotable=true, + name="Woodland Aspect", + orbit=4, + orbitIndex=51, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Isolation" + }, + skill=62803, + stats={ + [1]="Charms applied to you have 25% increased Effect" + } + }, + [62804]={ + ascendancyName="Ritualist", + connections={ + }, + group=1485, + icon="Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds", + isNotable=true, + name="Wildwood Persistence", + nodeOverlay={ + alloc="RitualistFrameLargeAllocated", + path="RitualistFrameLargeCanAllocate", + unalloc="RitualistFrameLargeNormal" + }, + 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=1058, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=696, + icon="Art/2DArt/SkillIcons/passives/ColdDamagenode.dds", + name="Cold Penetration", + orbit=3, + orbitIndex=18, + skill=62844, + stats={ + [1]="Damage Penetrates 6% Cold Resistance" + } + }, + [62887]={ + connections={ + [1]={ + id=41225, + orbit=0 + } + }, + group=889, + icon="Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds", + isNotable=true, + name="Living Death", + orbit=2, + orbitIndex=16, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Disgust" + }, + 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=749, + icon="Art/2DArt/SkillIcons/passives/colddamage.dds", + name="Cold Damage", + orbit=3, + orbitIndex=20, + skill=62914, + stats={ + [1]="12% increased Cold Damage" + } + }, + [62936]={ + connections={ + [1]={ + id=51891, + orbit=7 + } + }, + group=1234, + icon="Art/2DArt/SkillIcons/passives/damage_blue.dds", + name="Damage from Mana", + orbit=2, + orbitIndex=11, + skill=62936, + stats={ + [1]="4% of Damage is taken from Mana before Life" + } + }, + [62963]={ + connections={ + [1]={ + id=14601, + orbit=0 + } + }, + group=653, + icon="Art/2DArt/SkillIcons/passives/flameborn.dds", + isNotable=true, + name="Flamewalker", + orbit=7, + orbitIndex=18, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Greed" + }, + 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=333, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Power Counted", + orbit=3, + orbitIndex=1, + skill=62973, + stats={ + [1]="10% increased total Power counted by Warcries" + } + }, + [62984]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern", + connections={ + [1]={ + id=15975, + orbit=0 + } + }, + group=955, + icon="Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds", + 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=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=1354, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Electrocute Buildup", + orbit=0, + orbitIndex=0, + skill=62998, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [63002]={ + ascendancyName="Chronomancer", + connections={ + [1]={ + id=58747, + orbit=0 + } + }, + group=309, + icon="Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds", + name="Buff Expiry Rate", + nodeOverlay={ + alloc="ChronomancerFrameSmallAllocated", + path="ChronomancerFrameSmallCanAllocate", + unalloc="ChronomancerFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=63002, + stats={ + [1]="Buffs on you expire 10% slower" + } + }, + [63009]={ + connections={ + [1]={ + id=37593, + orbit=0 + } + }, + group=802, + icon="Art/2DArt/SkillIcons/passives/Remnant.dds", + name="Remnant Pickup Range", + orbit=2, + orbitIndex=3, + skill=63009, + stats={ + [1]="Remnants can be collected from 20% further away" + } + }, + [63021]={ + connections={ + [1]={ + id=23091, + orbit=0 + } + }, + group=685, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + name="Fire Damage", + orbit=3, + orbitIndex=14, + skill=63021, + stats={ + [1]="12% increased Fire Damage" + } + }, + [63031]={ + connections={ + [1]={ + id=41821, + orbit=0 + } + }, + group=211, + icon="Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds", + isNotable=true, + name="Glorious Anticipation", + orbit=4, + orbitIndex=54, + recipe={ + [1]="Paranoia", + [2]="Despair", + [3]="Despair" + }, + 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=260, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Sigil of Fire", + orbit=4, + orbitIndex=70, + recipe={ + [1]="Suffering", + [2]="Guilt", + [3]="Ire" + }, + 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=970, + icon="Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds", + isNotable=true, + name="Mystic Stance", + orbit=2, + orbitIndex=10, + skill=63064, + stats={ + [1]="30% faster start of Energy Shield Recharge", + [2]="30% increased Stun Threshold while on Full Life" + } + }, + [63074]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern", + connections={ + }, + group=881, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + isNotable=true, + name="Dark Entries", + orbit=1, + orbitIndex=2, + recipe={ + [1]="Despair", + [2]="Isolation", + [3]="Isolation" + }, + skill=63074, + stats={ + [1]="+1 to Level of all Chaos Skills" + } + }, + [63085]={ + connections={ + [1]={ + id=36100, + orbit=9 + }, + [2]={ + id=34490, + orbit=0 + } + }, + group=157, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=217, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=2147483647 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Cast and Attack Speed and Elemental Resistance", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=989, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=7, + orbitIndex=6, + skill=63182, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [63209]={ + connections={ + [1]={ + id=30704, + orbit=0 + }, + [2]={ + id=22045, + orbit=0 + }, + [3]={ + id=17655, + orbit=-4 + }, + [4]={ + id=36602, + orbit=-3 + } + }, + group=563, + icon="Art/2DArt/SkillIcons/passives/lifepercentage.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds", + isNotable=true, + name="The Soul Springs Eternal", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + 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=2147483647 + }, + [2]={ + id=49543, + orbit=0 + } + }, + group=188, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + name="Ally Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=1280, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + 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=1478, + icon="Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds", + isNotable=true, + name="Stalking Panther", + nodeOverlay={ + alloc="AmazonFrameLargeAllocated", + path="AmazonFrameLargeCanAllocate", + unalloc="AmazonFrameLargeNormal" + }, + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + }, + group=952, + icon="Art/2DArt/SkillIcons/passives/chargedex.dds", + isNotable=true, + name="Savagery", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Fear", + [3]="Paranoia" + }, + 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=371, + icon="Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds", + isMultipleChoiceOption=true, + name="Motoric Implants", + nodeOverlay={ + alloc="Gemling LegionnaireFrameSmallAllocated", + path="Gemling LegionnaireFrameSmallCanAllocate", + unalloc="Gemling LegionnaireFrameSmallNormal" + }, + 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=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + 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", + connections={ + }, + group=487, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=7, + orbitIndex=6, + skill=63268, + stats={ + } + }, + [63360]={ + connections={ + [1]={ + id=62258, + orbit=2147483647 + } + }, + group=656, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=631, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + name="Stun Threshold", + orbit=7, + orbitIndex=12, + skill=63393, + stats={ + [1]="12% increased Stun Threshold" + } + }, + [63400]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern", + connections={ + [1]={ + id=22851, + orbit=-7 + } + }, + group=1118, + icon="Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds", + isNotable=true, + name="Chakra of Elements", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Greed" + }, + 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.dds", + name="Fire Resistance", + nodeOverlay={ + alloc="Smith of KitavaFrameSmallAllocated", + path="Smith of KitavaFrameSmallCanAllocate", + unalloc="Smith of KitavaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=63401, + stats={ + [1]="+8% to Fire Resistance" + } + }, + [63402]={ + connections={ + [1]={ + id=29881, + orbit=2 + } + }, + group=390, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds", + name="Arcane Surge Effect", + orbit=2, + orbitIndex=4, + skill=63402, + stats={ + [1]="15% increased effect of Arcane Surge on you" + } + }, + [63431]={ + connections={ + }, + group=1326, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Leeching Toxins", + orbit=1, + orbitIndex=3, + recipe={ + [1]="Greed", + [2]="Suffering", + [3]="Suffering" + }, + 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=804, + icon="Art/2DArt/SkillIcons/passives/attackspeed.dds", + name="Attack Speed", + orbit=3, + orbitIndex=6, + skill=63445, + stats={ + [1]="3% increased Attack Speed" + } + }, + [63451]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + [1]={ + id=44406, + orbit=0 + }, + [2]={ + id=64312, + orbit=0 + } + }, + group=395, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Cranial Impact", + orbit=6, + orbitIndex=6, + recipe={ + [1]="Greed", + [2]="Paranoia", + [3]="Disgust" + }, + 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=592, + icon="Art/2DArt/SkillIcons/passives/manaregeneration.dds", + 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=396, + icon="Art/2DArt/SkillIcons/passives/manastr.dds", + 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=710, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Flammability Magnitude", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=63484, + stats={ + [1]="40% increased Flammability Magnitude" + } + }, + [63517]={ + connections={ + [1]={ + id=48974, + orbit=0 + }, + [2]={ + id=53958, + orbit=2 + } + }, + group=1227, + icon="Art/2DArt/SkillIcons/passives/flaskint.dds", + 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=1048, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + 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=760, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=0, + orbitIndex=0, + skill=63526, + stats={ + [1]="+5 to any Attribute" + } + }, + [63541]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + [1]={ + id=17994, + orbit=0 + } + }, + group=774, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + isNotable=true, + name="Brush Off", + orbit=2, + orbitIndex=9, + recipe={ + [1]="Ire", + [2]="Suffering", + [3]="Ire" + }, + skill=63541, + stats={ + [1]="Prevent +15% of Damage from Deflected Critical Hits" + } + }, + [63545]={ + connections={ + }, + group=868, + icon="Art/2DArt/SkillIcons/passives/miniondamageBlue.dds", + 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=1177, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=6, + orbitIndex=36, + skill=63566, + stats={ + [1]="+5 to any Attribute" + } + }, + [63579]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern", + connections={ + }, + group=621, + icon="Art/2DArt/SkillIcons/passives/legstrength.dds", + isNotable=true, + name="Momentum", + orbit=4, + orbitIndex=30, + recipe={ + [1]="Greed", + [2]="Isolation", + [3]="Disgust" + }, + skill=63579, + stats={ + [1]="Ignore all Movement Penalties from Armour", + [2]="5% reduced Slowing Potency of Debuffs on You" + } + }, + [63585]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern", + connections={ + }, + group=1029, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Thunderstruck", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Paranoia" + }, + 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=1345, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + name="Electrocute Buildup", + orbit=0, + orbitIndex=0, + skill=63600, + stats={ + [1]="15% increased Electrocute Buildup" + } + }, + [63608]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern", + connections={ + }, + group=104, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds", + isOnlyImage=true, + name="Fire Mastery", + orbit=0, + orbitIndex=0, + skill=63608, + stats={ + } + }, + [63610]={ + connections={ + [1]={ + id=38459, + orbit=-7 + } + }, + group=1033, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Blind Effect", + orbit=2, + orbitIndex=0, + skill=63610, + stats={ + [1]="10% increased Blind Effect" + } + }, + [63618]={ + connections={ + [1]={ + id=60992, + orbit=2147483647 + } + }, + group=1413, + icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", + name="Defences and Companion Life", + orbit=0, + orbitIndex=0, + skill=63618, + stats={ + [1]="Companions have 12% increased maximum Life", + [2]="10% increased Defences while your Companion is in your Presence" + } + }, + [63659]={ + connections={ + [1]={ + id=33964, + orbit=0 + }, + [2]={ + id=37616, + orbit=0 + } + }, + group=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=1119, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Triggered Spell Damage", + orbit=3, + orbitIndex=4, + skill=63668, + stats={ + [1]="Triggered Spells deal 14% increased Spell Damage" + } + }, + [63678]={ + connections={ + }, + group=161, + icon="Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds", + 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=1112, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds", + isNotable=true, + name="Sunder my Enemies...", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + 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=920, + icon="Art/2DArt/SkillIcons/passives/executioner.dds", + 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=846, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Damage against Enemies on Low Life", + orbit=1, + orbitIndex=1, + skill=63732, + stats={ + [1]="30% increased Damage with Hits against Enemies that are on Low Life" + } + }, + [63739]={ + connections={ + [1]={ + id=37593, + orbit=0 + } + }, + group=802, + icon="Art/2DArt/SkillIcons/passives/RemnantNotable.dds", + isNotable=true, + name="Vigorous Remnants", + orbit=7, + orbitIndex=13, + recipe={ + [1]="Envy", + [2]="Despair", + [3]="Guilt" + }, + skill=63739, + stats={ + [1]="Recover 3% of Maximum Life when you collect a Remnant" + } + }, + [63759]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern", + connections={ + [1]={ + id=26565, + orbit=0 + } + }, + group=1176, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + isNotable=true, + name="Stacking Toxins", + orbit=3, + orbitIndex=0, + recipe={ + [1]="Isolation", + [2]="Disgust", + [3]="Paranoia" + }, + 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=1309, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=2, + orbitIndex=2, + skill=63762, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [63772]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=37888, + orbit=0 + } + }, + group=294, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + name="Cooldown Recovery Rate", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=208, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + 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=292, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Speed", + orbit=7, + orbitIndex=20, + skill=63813, + stats={ + [1]="16% increased Warcry Speed" + } + }, + [63814]={ + connections={ + [1]={ + id=33216, + orbit=0 + } + }, + group=686, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleeding Chance", + orbit=0, + orbitIndex=0, + skill=63814, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [63828]={ + connections={ + }, + group=886, + icon="Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds", + 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=1279, + icon="Art/2DArt/SkillIcons/passives/MarkNode.dds", + isNotable=true, + name="Marked for Sickness", + orbit=3, + orbitIndex=3, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Isolation" + }, + 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", + connections={ + }, + group=1013, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds", + isOnlyImage=true, + name="Critical Mastery", + orbit=2, + orbitIndex=13, + skill=63861, + stats={ + } + }, + [63863]={ + connections={ + }, + group=833, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=1103, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=881, + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Spell Damage", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=6, + orbitIndex=64, + skill=63894, + stats={ + [1]="12% increased Spell Damage" + } + }, + [63926]={ + connections={ + }, + group=909, + icon="Art/2DArt/SkillIcons/passives/LightningResistNode.dds", + 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=292, + icon="Art/2DArt/SkillIcons/passives/WarCryEffect.dds", + name="Warcry Cooldown", + orbit=7, + orbitIndex=8, + skill=63979, + stats={ + [1]="10% increased Warcry Cooldown Recovery Rate" + } + }, + [63981]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + [1]={ + id=8194, + orbit=0 + } + }, + group=1231, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Deft Recovery", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Envy", + [2]="Ire", + [3]="Ire" + }, + skill=63981, + stats={ + [1]="30% increased Stun Recovery", + [2]="30% increased Stun Threshold if you haven't been Stunned Recently" + } + }, + [64023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern", + connections={ + }, + group=259, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Thorns Mastery", + orbit=0, + orbitIndex=0, + skill=64023, + stats={ + } + }, + [64031]={ + ascendancyName="Invoker", + connections={ + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds", + isNotable=true, + name="...and I Shall Rage", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + orbit=3, + orbitIndex=4, + skill=64031, + stats={ + [1]="Grants Skill: Unbound Avatar" + } + }, + [64042]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern", + connections={ + }, + group=407, + icon="Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds", + isOnlyImage=true, + name="Physical Mastery", + orbit=7, + orbitIndex=18, + skill=64042, + stats={ + } + }, + [64046]={ + connections={ + [1]={ + id=45522, + orbit=6 + }, + [2]={ + id=5726, + orbit=0 + } + }, + group=713, + icon="Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds", + isNotable=true, + isSwitchable=true, + name="Principal Infusion", + options={ + Witch={ + icon="Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds", + 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]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern", + connections={ + }, + group=1287, + icon="Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds", + isNotable=true, + name="Marathon Runner", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Paranoia", + [2]="Fear", + [3]="Guilt" + }, + skill=64050, + stats={ + [1]="12% increased Movement Speed while Sprinting" + } + }, + [64056]={ + connections={ + [1]={ + id=36931, + orbit=0 + } + }, + group=1024, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + name="Daze Chance", + orbit=2, + orbitIndex=6, + skill=64056, + stats={ + [1]="5% chance to Daze on Hit" + } + }, + [64064]={ + connections={ + }, + group=1249, + icon="Art/2DArt/SkillIcons/passives/accuracydex.dds", + name="Accuracy", + orbit=0, + orbitIndex=0, + skill=64064, + stats={ + [1]="8% increased Accuracy Rating" + } + }, + [64083]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=12940, + orbit=0 + } + }, + group=521, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + name="Lightning Damage", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=838, + icon="Art/2DArt/SkillIcons/passives/BowDamage.dds", + isNotable=true, + name="Rapid Reload", + orbit=7, + orbitIndex=20, + recipe={ + [1]="Fear", + [2]="Guilt", + [3]="Suffering" + }, + 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.dds", + isNotable=true, + name="Friend to Many", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=1010, + icon="Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds", + 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=567, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + 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=1143, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=547, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds", + name="Energy Shield", + nodeOverlay={ + alloc="Disciple of VarashtaFrameSmallAllocated", + path="Disciple of VarashtaFrameSmallCanAllocate", + unalloc="Disciple of VarashtaFrameSmallNormal" + }, + orbit=0, + orbitIndex=0, + skill=64223, + stats={ + [1]="20% increased maximum Energy Shield" + } + }, + [64239]={ + connectionArt="CharacterPlanned", + connections={ + [1]={ + id=2733, + orbit=0 + } + }, + group=288, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + isNotable=true, + name="Innate Rune", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds" + }, + 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=212, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds", + isNotable=true, + name="Battle Fever", + orbit=2, + orbitIndex=6, + recipe={ + [1]="Disgust", + [2]="Guilt", + [3]="Isolation" + }, + 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=512, + icon="Art/2DArt/SkillIcons/passives/MeleeAoENode.dds", + name="Melee Damage", + orbit=4, + orbitIndex=51, + skill=64284, + stats={ + [1]="8% increased Melee Damage" + } + }, + [64295]={ + connections={ + }, + group=1347, + icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", + 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=2147483647 + } + }, + group=551, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + isSwitchable=true, + name="Bolstering Presence", + options={ + Druid={ + icon="Art/2DArt/SkillIcons/passives/BattleRouse.dds", + 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=428, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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 + }, + [2]={ + id=7960, + orbit=0 + } + }, + group=343, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=245, + icon="Art/2DArt/SkillIcons/passives/shieldblock.dds", + 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=1326, + icon="Art/2DArt/SkillIcons/passives/Poison.dds", + 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=567, + icon="Art/2DArt/SkillIcons/passives/steelspan.dds", + 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=1112, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Attack Damage", + orbit=2, + orbitIndex=16, + skill=64345, + stats={ + [1]="10% increased Attack Damage" + } + }, + [64352]={ + connections={ + [1]={ + id=44345, + orbit=0 + } + }, + group=945, + icon="Art/2DArt/SkillIcons/passives/LightningDamagenode.dds", + 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=268, + icon="Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds", + 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=606, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=725, + icon="Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds", + name="Spell Damage", + nodeOverlay={ + alloc="InfernalistFrameSmallAllocated", + path="InfernalistFrameSmallCanAllocate", + unalloc="InfernalistFrameSmallNormal" + }, + orbit=8, + orbitIndex=69, + skill=64379, + stats={ + [1]="12% increased Spell Damage" + } + }, + [64399]={ + connections={ + [1]={ + id=2511, + orbit=3 + } + }, + group=528, + icon="Art/2DArt/SkillIcons/passives/criticalstrikechance.dds", + name="Attack Critical Damage", + orbit=1, + orbitIndex=7, + skill=64399, + stats={ + [1]="15% increased Critical Damage Bonus for Attack Damage" + } + }, + [64405]={ + connections={ + }, + group=314, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + 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=1295, + icon="Art/2DArt/SkillIcons/passives/stun2h.dds", + isNotable=true, + name="Shattering Daze", + orbit=7, + orbitIndex=19, + recipe={ + [1]="Disgust", + [2]="Isolation", + [3]="Envy" + }, + 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=885, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + 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 + }, + [2]={ + id=39298, + orbit=0 + } + }, + group=907, + icon="Art/2DArt/SkillIcons/passives/EvasionNode.dds", + name="Deflection", + orbit=7, + orbitIndex=20, + skill=64434, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [64443]={ + connections={ + [1]={ + id=41126, + orbit=0 + }, + [2]={ + id=62023, + orbit=0 + } + }, + group=285, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + isNotable=true, + name="Impact Force", + orbit=3, + orbitIndex=8, + recipe={ + [1]="Fear", + [2]="Ire", + [3]="Fear" + }, + skill=64443, + stats={ + [1]="20% increased Stun Buildup", + [2]="25% increased Attack Area Damage" + } + }, + [64462]={ + connections={ + [1]={ + id=53150, + orbit=0 + } + }, + group=1337, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=582, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + id=57022, + name="Intelligence", + stats={ + [1]="+5 to Intelligence" + } + } + }, + orbit=4, + orbitIndex=54, + skill=64471, + stats={ + [1]="+5 to any Attribute" + } + }, + [64474]={ + connections={ + }, + group=1101, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=15, + skill=64474, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [64488]={ + connections={ + [1]={ + id=7201, + orbit=7 + } + }, + group=688, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + 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.dds", + 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=1144, + icon="Art/2DArt/SkillIcons/passives/onehanddamage.dds", + 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=236, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Easy Target", + orbit=7, + orbitIndex=4, + recipe={ + [1]="Guilt", + [2]="Greed", + [3]="Fear" + }, + skill=64525, + stats={ + [1]="Your Hits cannot be Evaded by Heavy Stunned Enemies" + } + }, + [64543]={ + connections={ + }, + group=1245, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + isNotable=true, + name="Unbound Forces", + orbit=5, + orbitIndex=57, + recipe={ + [1]="Disgust", + [2]="Envy", + [3]="Guilt" + }, + 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=818, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + 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=322, + icon="Art/2DArt/SkillIcons/passives/avoidchilling.dds", + 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 + } + }, + group=593, + icon="Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds", + isNotable=true, + name="Ruzhan's Trap", + nodeOverlay={ + alloc="Disciple of VarashtaFrameLargeAllocated", + path="Disciple of VarashtaFrameLargeCanAllocate", + unalloc="Disciple of VarashtaFrameLargeNormal" + }, + orbit=9, + orbitIndex=106, + skill=64591, + stats={ + [1]="Grants Skill: Command: {0} " + } + }, + [64601]={ + connections={ + }, + group=1228, + icon="Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds", + 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", + [2]="Unarmed Attacks that would use your Quarterstaff's damage gain:", + [3]="Physical damage based on their Skill Level", + [4]="1% more Attack Speed per 75 Item Evasion Rating on Equipped Armour Items", + [5]="+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items" + } + }, + [64637]={ + connections={ + [1]={ + id=32543, + orbit=7 + } + }, + group=1358, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1003, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + name="Power Charge Duration", + orbit=2, + orbitIndex=3, + skill=64643, + stats={ + [1]="20% increased Power Charge Duration" + } + }, + [64650]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + }, + group=1086, + icon="Art/2DArt/SkillIcons/passives/life1.dds", + isNotable=true, + name="Wary Dodging", + orbit=2, + orbitIndex=12, + recipe={ + [1]="Suffering", + [2]="Suffering", + [3]="Disgust" + }, + skill=64650, + stats={ + [1]="Cannot be Light Stunned if you haven't been Hit Recently" + } + }, + [64653]={ + connections={ + [1]={ + id=47420, + orbit=7 + } + }, + group=267, + icon="Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds", + name="Minion Damage", + orbit=7, + orbitIndex=15, + skill=64653, + stats={ + [1]="Minions deal 16% increased Damage" + } + }, + [64659]={ + connections={ + [1]={ + id=3355, + orbit=0 + } + }, + group=590, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + isNotable=true, + name="Lasting Boons", + orbit=3, + orbitIndex=21, + recipe={ + [1]="Isolation", + [2]="Fear", + [3]="Greed" + }, + 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=800, + icon="Art/2DArt/SkillIcons/passives/accuracystr.dds", + name="Attack Damage and Accuracy", + orbit=4, + orbitIndex=30, + skill=64665, + stats={ + [1]="6% increased Attack Damage", + [2]="5% increased Accuracy Rating" + } + }, + [64683]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=631, + icon="Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds", + isOnlyImage=true, + name="Armour Mastery", + orbit=0, + orbitIndex=0, + skill=64683, + stats={ + } + }, + [64690]={ + connections={ + [1]={ + id=5101, + orbit=-5 + }, + [2]={ + id=46726, + orbit=0 + } + }, + group=594, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Recharge", + orbit=3, + orbitIndex=23, + skill=64690, + stats={ + [1]="15% increased Energy Shield Recharge Rate" + } + }, + [64700]={ + connections={ + [1]={ + id=61632, + orbit=0 + } + }, + group=1391, + icon="Art/2DArt/SkillIcons/passives/damagestaff.dds", + 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=175, + icon="Art/2DArt/SkillIcons/passives/firedamagestr.dds", + 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", + connections={ + [1]={ + id=46296, + orbit=0 + }, + [2]={ + id=38479, + orbit=0 + } + }, + group=875, + icon="Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds", + isOnlyImage=true, + name="Projectile Mastery", + orbit=2, + orbitIndex=8, + skill=64726, + stats={ + } + }, + [64747]={ + connections={ + [1]={ + id=33838, + orbit=-5 + } + }, + group=1082, + icon="Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds", + 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" + } + }, + [64789]={ + ascendancyName="Stormweaver", + connections={ + [1]={ + id=8867, + orbit=0 + } + }, + group=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Mana Regeneration", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=8, + orbitIndex=68, + skill=64789, + stats={ + [1]="12% increased Mana Regeneration Rate" + } + }, + [64807]={ + connections={ + [1]={ + id=59945, + orbit=0 + } + }, + group=234, + icon="Art/2DArt/SkillIcons/passives/AreaDmgNode.dds", + 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.dds", + 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=1056, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + isNotable=true, + name="Flashy Parrying", + orbit=7, + orbitIndex=9, + recipe={ + [1]="Greed", + [2]="Guilt", + [3]="Greed" + }, + skill=64851, + stats={ + [1]="12% increased Block chance", + [2]="20% increased Parried Debuff Duration" + } + }, + [64870]={ + connections={ + [1]={ + id=27439, + orbit=0 + } + }, + group=356, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + 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.dds", + 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=1172, + icon="Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds", + 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=389, + icon="Art/2DArt/SkillIcons/passives/2handeddamage.dds", + 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=264, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + name="Aura Effect", + orbit=2, + orbitIndex=20, + skill=64948, + stats={ + [1]="Aura Skills have 5% increased Magnitudes" + } + }, + [64962]={ + applyToArmour=true, + ascendancyName="Smith of Kitava", + connections={ + }, + group=19, + icon="Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds", + isNotable=true, + name="Dedication to Kitava", + nodeOverlay={ + alloc="Smith of KitavaFrameLargeAllocated", + path="Smith of KitavaFrameLargeCanAllocate", + unalloc="Smith of KitavaFrameLargeNormal" + }, + 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=1375, + icon="Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds", + name="Intelligence", + orbit=2, + orbitIndex=10, + skill=64990, + stats={ + [1]="+8 to Intelligence" + } + }, + [64995]={ + connections={ + [1]={ + id=17924, + orbit=0 + } + }, + group=374, + icon="Art/2DArt/SkillIcons/passives/damage.dds", + 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=1080, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + 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=1041, + icon="Art/2DArt/SkillIcons/passives/plusattribute.dds", + isAttribute=true, + name="Attribute", + options={ + [1]={ + icon="Art/2DArt/SkillIcons/passives/plusstrength.dds", + id=26297, + name="Strength", + stats={ + [1]="+5 to Strength" + } + }, + [2]={ + icon="Art/2DArt/SkillIcons/passives/plusdexterity.dds", + id=14927, + name="Dexterity", + stats={ + [1]="+5 to Dexterity" + } + }, + [3]={ + icon="Art/2DArt/SkillIcons/passives/plusintelligence.dds", + 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=586, + icon="Art/2DArt/SkillIcons/passives/firedamageint.dds", + isNotable=true, + name="Intense Flames", + orbit=3, + orbitIndex=16, + recipe={ + [1]="Guilt", + [2]="Suffering", + [3]="Fear" + }, + skill=65016, + stats={ + [1]="35% increased Damage with Hits against Burning Enemies" + } + }, + [65023]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern", + connections={ + }, + group=649, + icon="Art/2DArt/SkillIcons/passives/dmgreduction.dds", + isNotable=true, + name="Impenetrable Shell", + orbit=3, + orbitIndex=6, + recipe={ + [1]="Paranoia", + [2]="Paranoia", + [3]="Ire" + }, + 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", + connections={ + }, + group=176, + icon="Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds", + isOnlyImage=true, + name="Rage Mastery", + orbit=1, + orbitIndex=6, + skill=65042, + stats={ + } + }, + [65091]={ + connections={ + [1]={ + id=51707, + orbit=6 + } + }, + group=1353, + icon="Art/2DArt/SkillIcons/passives/evade.dds", + name="Evasion", + orbit=7, + orbitIndex=20, + skill=65091, + stats={ + [1]="15% increased Evasion Rating" + } + }, + [65149]={ + connections={ + }, + group=943, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + 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", + connections={ + }, + group=168, + icon="Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds", + isOnlyImage=true, + name="Totem Mastery", + orbit=0, + orbitIndex=0, + skill=65154, + stats={ + } + }, + [65160]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern", + connections={ + [1]={ + id=44069, + orbit=0 + } + }, + group=150, + icon="Art/2DArt/SkillIcons/passives/stunstr.dds", + isNotable=true, + name="Titanic", + orbit=3, + orbitIndex=7, + recipe={ + [1]="Despair", + [2]="Paranoia", + [3]="Guilt" + }, + skill=65160, + stats={ + [1]="30% increased Stun Buildup", + [2]="30% increased Stun Threshold", + [3]="5% increased Strength" + } + }, + [65161]={ + connections={ + [1]={ + id=3170, + orbit=0 + } + }, + group=1327, + icon="Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds", + name="Deflection", + orbit=2, + orbitIndex=0, + skill=65161, + stats={ + [1]="Gain Deflection Rating equal to 6% of Evasion Rating" + } + }, + [65173]={ + ascendancyName="Invoker", + connections={ + }, + group=1430, + icon="Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds", + isNotable=true, + name="...and Protect me from Harm", + nodeOverlay={ + alloc="InvokerFrameLargeAllocated", + path="InvokerFrameLargeCanAllocate", + unalloc="InvokerFrameLargeNormal" + }, + 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=1046, + icon="Art/2DArt/SkillIcons/passives/projectilespeed.dds", + name="Projectile Damage", + orbit=6, + orbitIndex=48, + skill=65176, + stats={ + [1]="10% increased Projectile Damage" + } + }, + [65189]={ + connections={ + [1]={ + id=17260, + orbit=0 + } + }, + group=325, + icon="Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds", + 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=2147483647 + } + }, + group=107, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Cast and Attack Speed", + nodeOverlay={ + alloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds", + path="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds", + unalloc="art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds" + }, + 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=444, + icon="Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds", + isNotable=true, + name="Viciousness", + orbit=3, + orbitIndex=13, + recipe={ + [1]="Disgust", + [2]="Greed", + [3]="Paranoia" + }, + skill=65193, + stats={ + [1]="3% increased Attack Speed per Enemy in Close Range", + [2]="+10 to Dexterity" + } + }, + [65204]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern", + connections={ + [1]={ + id=30615, + orbit=0 + }, + [2]={ + id=10162, + orbit=0 + } + }, + group=1341, + icon="Art/2DArt/SkillIcons/passives/chargeint.dds", + isNotable=true, + name="Overflowing Power", + orbit=2, + orbitIndex=7, + recipe={ + [1]="Isolation", + [2]="Envy", + [3]="Greed" + }, + skill=65204, + stats={ + [1]="+2 to Maximum Power Charges" + } + }, + [65207]={ + connections={ + [1]={ + id=63566, + orbit=-6 + } + }, + group=1177, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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=1358, + icon="Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds", + 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", + connections={ + }, + group=434, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Infusion Mastery", + orbit=0, + orbitIndex=0, + skill=65226, + stats={ + } + }, + [65243]={ + connections={ + [1]={ + id=46421, + orbit=0 + } + }, + group=304, + icon="Art/2DArt/SkillIcons/passives/auraeffect.dds", + isNotable=true, + name="Enveloping Presence", + orbit=2, + orbitIndex=22, + recipe={ + [1]="Fear", + [2]="Greed", + [3]="Fear" + }, + skill=65243, + stats={ + [1]="30% increased Presence Area of Effect", + [2]="Aura Skills have 6% increased Magnitudes" + } + }, + [65248]={ + connections={ + }, + group=705, + icon="Art/2DArt/SkillIcons/passives/elementaldamage.dds", + 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=1198, + icon="Art/2DArt/SkillIcons/passives/trapsmax.dds", + isNotable=true, + name="Widespread Coverage", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Disgust", + [3]="Despair" + }, + skill=65256, + stats={ + [1]="50% increased Hazard Area of Effect", + [2]="20% reduced Hazard Damage" + } + }, + [65265]={ + activeEffectImage="Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern", + connections={ + [1]={ + id=17146, + orbit=0 + }, + [2]={ + id=31366, + orbit=0 + } + }, + group=1284, + icon="Art/2DArt/SkillIcons/passives/BucklersNotable1.dds", + isNotable=true, + name="Swift Interruption", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Guilt", + [2]="Envy", + [3]="Greed" + }, + 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=147, + icon="Art/2DArt/SkillIcons/passives/totemandbrandlife.dds", + name="Totem Damage", + orbit=2, + orbitIndex=6, + skill=65287, + stats={ + [1]="15% increased Totem Damage" + } + }, + [65290]={ + connections={ + [1]={ + id=57069, + orbit=0 + } + }, + group=1365, + icon="Art/2DArt/SkillIcons/passives/lightningint.dds", + 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=1134, + icon="Art/2DArt/SkillIcons/passives/spellcritical.dds", + 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=681, + icon="Art/2DArt/SkillIcons/passives/Blood2.dds", + name="Bleeding Chance", + orbit=0, + orbitIndex=0, + skill=65322, + stats={ + [1]="5% chance to inflict Bleeding on Hit" + } + }, + [65328]={ + connections={ + [1]={ + id=48565, + orbit=0 + } + }, + group=257, + icon="Art/2DArt/SkillIcons/passives/MiracleMaker.dds", + 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", + connections={ + }, + group=491, + icon="Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds", + isOnlyImage=true, + name="Banner Mastery", + orbit=0, + orbitIndex=0, + skill=65353, + stats={ + } + }, + [65393]={ + connections={ + [1]={ + id=2732, + orbit=-2 + }, + [2]={ + id=11672, + orbit=0 + } + }, + group=862, + icon="Art/2DArt/SkillIcons/passives/mana.dds", + 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=502, + icon="Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds", + name="Spell Critical Chance", + nodeOverlay={ + alloc="StormweaverFrameSmallAllocated", + path="StormweaverFrameSmallCanAllocate", + unalloc="StormweaverFrameSmallNormal" + }, + orbit=8, + orbitIndex=4, + skill=65413, + stats={ + [1]="12% increased Critical Hit Chance for Spells" + } + }, + [65424]={ + connections={ + [1]={ + id=58109, + orbit=0 + } + }, + group=795, + icon="Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds", + 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=970, + icon="Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds", + name="Energy Shield Delay", + orbit=2, + orbitIndex=14, + skill=65437, + stats={ + [1]="15% faster start of Energy Shield Recharge" + } + }, + [65439]={ + connections={ + [1]={ + id=12821, + orbit=0 + } + }, + group=491, + icon="Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds", + 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=832, + icon="Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds", + isNotable=true, + name="Repeating Explosives", + orbit=0, + orbitIndex=0, + recipe={ + [1]="Suffering", + [2]="Despair", + [3]="Isolation" + }, + 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.dds", + name="Glory Generation", + orbit=3, + orbitIndex=21, + skill=65472, + stats={ + [1]="15% increased Glory generation" + } + }, + [65493]={ + connections={ + [1]={ + id=43854, + orbit=2 + } + }, + group=525, + icon="Art/2DArt/SkillIcons/passives/areaofeffect.dds", + 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=1349, + icon="Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds", + name="Armour Break", + orbit=1, + orbitIndex=10, + skill=65498, + stats={ + [1]="Break 20% increased Armour" + } + }, + [65518]={ + ascendancyName="Blood Mage", + connections={ + }, + group=910, + icon="Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds", + isNotable=true, + name="Sanguine Tides", + nodeOverlay={ + alloc="Blood MageFrameLargeAllocated", + path="Blood MageFrameLargeCanAllocate", + unalloc="Blood MageFrameLargeNormal" + }, + orbit=5, + orbitIndex=6, + skill=65518, + stats={ + [1]="50% less Life Recovery from Flasks", + [2]="Gain 1 Life Flask Charge per 4% Life spent", + [3]="On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed", + [4]="Gain 1% of damage as Physical damage for 3 seconds per Charge consumed this way" + } + } + }, + tree="Default" +} \ No newline at end of file