diff --git a/fix_ascendancy_positions.py b/fix_ascendancy_positions.py old mode 100644 new mode 100755 index 953aff67306..17c2a1ad6be --- a/fix_ascendancy_positions.py +++ b/fix_ascendancy_positions.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 from __future__ import annotations import dataclasses @@ -40,6 +41,7 @@ def __sub__(self, other: Point2D) -> Point2D: "Saboteur": Point2D(10200, -2200), "Ascendant": Point2D(-7800, 7200), "Reliquarian": Point2D(-7800, 8900), + "Luminary": Point2D(-7800, 10600), "Warden": Point2D(8250, 8350), "Primalist": Point2D(7200, 9400), "Warlock": Point2D(9300, 7300), @@ -53,7 +55,9 @@ def __sub__(self, other: Point2D) -> Point2D: "KingInTheMists": Point2D(3750, 12000), "Olroth": Point2D(5250, 12000), "Oshabi": Point2D(6750, 12000), - "Necromantic": Point2D(8250, 12000), + "Necromantic": Point2D(9750, 12000), + "Abyssal": Point2D(-750, 13600), + "Brinerot": Point2D(750, 13600) } EXTRA_NODES = { "Necromancer": [{"Node": {"name": "Nine Lives", "icon": "Art/2DArt/SkillIcons/passives/Ascendants/Int.png", "isNotable": True, "skill" : 27602}, diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua index b72c4e97a39..49aa6af054c 100644 --- a/src/Classes/ImportTab.lua +++ b/src/Classes/ImportTab.lua @@ -1049,7 +1049,8 @@ function ImportTabClass:BuildCharacterList(realm, league, characters, control) elseif (charClass == "Juggernaut" or charClass == "Berserker" or charClass == "Chieftain" or charClass == "Antiquarian" or charClass == "Behemoth" or charClass == "Ancestral Commander") then classColor = colorCodes["MARAUDER"] - elseif (charClass == "Ascendant" or charClass == "Reliquarian" or charClass == "Scavenger") then + elseif (charClass == "Ascendant" or charClass == "Reliquarian" or charClass == "Luminary" or + charClass == "Scavenger") then classColor = colorCodes["SCION"] end end diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua index 3e0314643ee..a47b0146290 100644 --- a/src/Classes/PassiveTree.lua +++ b/src/Classes/PassiveTree.lua @@ -267,7 +267,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) end self.skillSprites = self.sprites end - for type, data in pairs(self.skillSprites) do + for spriteType, data in pairs(self.skillSprites) do local maxZoom if not self.imageZoomLevels then maxZoom = data @@ -286,14 +286,18 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) if not self.spriteMap[name] then self.spriteMap[name] = { } end - self.spriteMap[name][type] = { + local x = type(coords.x) == "table" and coords.x[#coords.x] or coords.x + local y = type(coords.y) == "table" and coords.y[#coords.y] or coords.y + local w = type(coords.w) == "table" and coords.w[#coords.w] or coords.w + local h = type(coords.h) == "table" and coords.h[#coords.h] or coords.h + self.spriteMap[name][spriteType] = { handle = sheet.handle, - width = coords.w, - height = coords.h, - [1] = coords.x / sheet.width, - [2] = coords.y / sheet.height, - [3] = (coords.x + coords.w) / sheet.width, - [4] = (coords.y + coords.h) / sheet.height + width = w, + height = h, + [1] = x / sheet.width, + [2] = y / sheet.height, + [3] = (x + w) / sheet.width, + [4] = (y + h) / sheet.height } end end @@ -546,7 +550,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion) node.type = "Normal" if ((node.ascendancyName == "Ascendant" and not node.isMultipleChoiceOption and not node.dn:find("Dexterity") and not node.dn:find("Intelligence") and not node.dn:find("Strength") and not node.dn:find("Passive")) - or (node.isMultipleChoiceOption and node.ascendancyName)) and node.ascendancyName ~= "Reliquarian" then + or (node.isMultipleChoiceOption and node.ascendancyName)) and node.ascendancyName ~= "Reliquarian" and node.ascendancyName ~= "Luminary" then local className = self.ascendNameMap[node.ascendancyName].class.name self.ascendancyMap[node.dn:lower()] = node if not self.classNotables[className] then diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index 18082b7621c..4626bde905c 100755 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -97,6 +97,7 @@ c["+0.2% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shie c["+0.3 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.3},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.3}},nil} c["+0.3 metres to Melee Strike Range with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.3},[2]={flags=4194308,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.3}},nil} c["+0.3% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.3}},nil} +c["+0.3% to Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.3}},nil} c["+0.4 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} c["+0.4 metres to Melee Strike Range while at least 5 Enemies are Nearby"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyEnemies"},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyEnemies"},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} c["+0.75% to Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.75}},nil} @@ -249,7 +250,6 @@ c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",v c["+10 to maximum Valour"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=10}},nil} c["+10 to maximum number of Eaten Souls"]={{[1]={flags=0,keywordFlags=0,name="SoulEaterMax",type="BASE",value=10}},nil} c["+10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} -c["+10% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% Chance to Block Attack Damage while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} @@ -278,6 +278,7 @@ c["+10% to Critical Strike Multiplier against Taunted Enemies"]={{[1]={[1]={acto c["+10% to Critical Strike Multiplier for Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Critical Strike Multiplier per Nearby Enemy, up to +100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="NearbyEnemies"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} +c["+10% to Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} @@ -293,7 +294,6 @@ c["+10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",typ c["+10% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil} c["+10% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil} c["+10% to Global Critical Strike Multiplier per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} -c["+10% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil} c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Off Hand Critical Strike Chance"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=10}},nil} @@ -303,7 +303,6 @@ c["+10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="Eleme c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill"]={{[1]={[1]={type="Condition",var="AffectedByNonVaalGuardSkill"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10},[2]={[1]={type="Condition",var="AffectedByNonVaalGuardSkill"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=10}},nil} c["+100 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=100}},nil} c["+100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100}},nil} -c["+100 to Accuracy Rating per Green Socket on Equipped Bow"]={{[1]={[1]={type="Multiplier",var="GreenSocketInWeapon 1"},[2]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100}},nil} c["+100 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=100}},nil} c["+100 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil} c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=100}},nil} @@ -324,6 +323,7 @@ c["+100% to Critical Strike Multiplier against Enemies that are not on Low Life" c["+100% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} c["+100% to Critical Strike Multiplier against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} c["+100% to Critical Strike Multiplier for Spells if you haven't Killed Recently"]={{[1]={[1]={neg=true,type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} +c["+100% to Critical Strike Multiplier while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} c["+100% to Critical Strike Multiplier with One Handed Melee Weapons"]={{[1]={flags=335544324,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} c["+100% to Fire Resistance when Socketed with a Red Gem"]={{[1]={[1]={keyword="strength",slotName="{SlotName}",sockets={[1]=1},type="SocketedIn"},flags=0,keywordFlags=0,name="SocketProperty",type="LIST",value={value={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}}},nil} c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} @@ -510,6 +510,7 @@ c["+16% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type= c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},nil} c["+16% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil} c["+16% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil} +c["+16% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritMultiplier",type="BASE",value=16}},nil} c["+16% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16}},nil} c["+16% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil} c["+16% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=16}},nil} @@ -587,7 +588,6 @@ c["+2 to Level of Socketed Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type=" c["+2 to Level of Socketed Spell Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="spell",value=2}}},nil} c["+2 to Level of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="support",value=2}}},nil} c["+2 to Level of Socketed Vaal Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="vaal",value=2}}},nil} -c["+2 to Level of all Aura Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="aura",[2]="skill"},value=2}}},nil} c["+2 to Level of all Chaos Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="chaos",[2]="spell",[3]="skill"},value=2}}},nil} c["+2 to Level of all Cold Skill Gems if at least 4 Foulborn Unique Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="FoulbornUniqueItem"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold",value=2}}},nil} c["+2 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="cold",[2]="spell",[3]="skill"},value=2}}},nil} @@ -601,6 +601,7 @@ c["+2 to Level of all Link Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemP c["+2 to Level of all Melee Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="melee",[2]="skill"},value=2}}},nil} c["+2 to Level of all Minion Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="minion",[2]="skill"},value=2}}},nil} c["+2 to Level of all Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="spell",[2]="skill"},value=2}}},nil} +c["+2 to Level of all Vaal Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="vaal",[2]="skill"},value=2}}},nil} c["+2 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=2}},nil} c["+2 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil} c["+2 to Maximum Life per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil} @@ -610,12 +611,10 @@ c["+2 to Ward per 10 Armour on Equipped Helmet"]={{[1]={[1]={div=10,stat="Armour c["+2 to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil} c["+2 to maximum Snipe Stages"]={{[1]={[1]={effectType="Buff",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="Multiplier:SnipeStagesMax",type="BASE",value=2}},nil} c["+2 to maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil} -c["+2 to maximum number of Sacred Wisps"]={{[1]={flags=0,keywordFlags=0,name="SacredWispsMaxCount",type="BASE",value=2}},nil} c["+2 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil} c["+2 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=2}},nil} c["+2 to maximum number of Summoned Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=2}},nil} c["+2 to maximum number of Summoned Mirage Archers"]={{[1]={flags=0,keywordFlags=0,name="MirageArcherMaxCount",type="BASE",value=2}},nil} -c["+2 to number of Sacred Wisps Summoned"]={{}," number of Sacred Wisps Summoned "} c["+2% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil} c["+2% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil} c["+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil} @@ -1164,11 +1163,11 @@ c["+3 to Level of all Wither Gems"]={{[1]={flags=0,keywordFlags=0,name="GemPrope c["+3 to Level of all Withering Step Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="withering step",value=3}}},nil} c["+3 to Level of all Wrath Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="wrath",value=3}}},nil} c["+3 to Level of all Zealotry Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="zealotry",value=3}}},nil} +c["+3 to Maximum Fanatic Charges"]={{}," Maximum Fanatic Charges "} c["+3 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=3}},nil} c["+3 to maximum Fortification"]={{[1]={flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=3}},nil} c["+3 to maximum number of Summoned Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=3}},nil} c["+3 to maximum number of Summoned Phantasms"]={{[1]={flags=0,keywordFlags=0,name="ActivePhantasmLimit",type="BASE",value=3}},nil} -c["+3 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=3}},nil} c["+3% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil} c["+3% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil} c["+3% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil} @@ -1176,6 +1175,7 @@ c["+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={ c["+3% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil} c["+3% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil} c["+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=5,type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil} +c["+3% Chance to Block Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil} c["+3% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil} c["+3% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil} c["+3% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil} @@ -1237,6 +1237,7 @@ c["+30% to Critical Strike Multiplier for Spell Damage"]={{[1]={flags=2,keywordF c["+30% to Critical Strike Multiplier if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} c["+30% to Critical Strike Multiplier if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} c["+30% to Critical Strike Multiplier while affected by Precision"]={{[1]={[1]={type="Condition",var="AffectedByPrecision"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} +c["+30% to Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} c["+30% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} c["+30% to Critical Strike Multiplier with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} c["+30% to Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=30}},nil} @@ -1246,7 +1247,6 @@ c["+30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",typ c["+30% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil} c["+30% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil} c["+30% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} -c["+30% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil} c["+30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil} c["+30% to Quality of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="all",value=30}}},nil} c["+30% to Quality of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="support",value=30}}},nil} @@ -1337,7 +1337,6 @@ c["+4 to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet"]={{[1]={ c["+4 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=4}}},nil} c["+4 to Level of Socketed Herald Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="herald",value=4}}},nil} c["+4 to Level of all Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="spell",[2]="skill"},value=4}}},nil} -c["+4 to Maximum Fanatic Charges"]={{}," Maximum Fanatic Charges "} c["+4 to Minimum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMin",type="BASE",value=4}},nil} c["+4 to Minimum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMin",type="BASE",value=4}},nil} c["+4 to Ward per 10 Evasion Rating on Equipped Gloves"]={{[1]={[1]={div=10,stat="EvasionOnGloves",type="PerStat"},flags=0,keywordFlags=0,name="Ward",type="BASE",value=4}},nil} @@ -1613,7 +1612,6 @@ c["+60 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BA c["+60 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60}},nil} c["+60 to Maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=60}},nil} c["+60 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60}},nil} -c["+60 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=60},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=60}},nil} c["+60 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}},nil} c["+60 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil} c["+60 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=60}},nil} @@ -1796,6 +1794,7 @@ c["-10% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0 c["-10% to maximum Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceMax",type="BASE",value=-10}},nil} c["-100 Fire Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-100}},nil} c["-100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-100}},nil} +c["-12 Maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=-12}},nil} c["-13 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-13}},nil} c["-14 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-14}},nil} c["-15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-15}},nil} @@ -2465,6 +2464,7 @@ c["10% chance to take 50% less Area Damage from Hits 30% chance to Taunt on Hit" c["10% chance to throw up to 1 additional Trap or Mine"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowCount",type="BASE",value=0.1},[2]={flags=0,keywordFlags=0,name="MineThrowCount",type="BASE",value=0.1}},nil} c["10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable"]={{}," when you use a Retaliation Skill for a different Retaliation Skill to become Usable "} c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil} +c["10% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} c["10% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} c["10% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} c["10% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} @@ -2474,7 +2474,6 @@ c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffe c["10% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Area of Effect per second you've been stationary, up to a maximum of 50%"]={{[1]={[1]={globalLimit=50,globalLimitKey="ExpansiveMight",limitTotal=true,type="Multiplier",var="StationarySeconds"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil} -c["10% increased Armour per Red Socket on Main Hand Weapon"]={{[1]={[1]={type="Multiplier",var="RedSocketInWeapon 1"},flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil} c["10% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil} c["10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil} @@ -2507,6 +2506,7 @@ c["10% increased Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDam c["10% increased Cooldown Recovery Rate for Stance Skills"]={{[1]={[1]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} c["10% increased Cooldown Recovery Rate for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=10}},nil} c["10% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} +c["10% increased Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=10}},nil} c["10% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil} c["10% increased Critical Strike Chance for each Mine Detonated"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=10}}," for each Detonated "} c["10% increased Critical Strike Chance for each Mine Detonated Recently, up to 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil} @@ -2550,6 +2550,7 @@ c["10% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,n c["10% increased Effect of Tailwind on you per Gale Force"]={{[1]={[1]={type="Multiplier",var="GaleForce"},flags=0,keywordFlags=0,name="TailwindEffectOnSelf",type="INC",value=10}},nil} c["10% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} c["10% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} +c["10% increased Effect of your Marks per maximum Power Charge"]={{[1]={[1]={skillType=109,type="SkillType"},[2]={type="Multiplier",var="PowerChargeMax"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil} c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} c["10% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%"]={{[1]={[1]={div=1,statList={[1]="FireResistOver75",[2]="ColdResistOver75",[3]="LightningResistOver75"},type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} c["10% increased Elemental Damage per Sextant affecting the area"]={{[1]={[1]={type="Multiplier",var="Sextant"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} @@ -2564,7 +2565,6 @@ c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",t c["10% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=10}},nil} c["10% increased Evasion Rating per 500 Maximum Mana"]={{[1]={[1]={div=500,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} c["10% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} -c["10% increased Evasion Rating per Green Socket on Main Hand Weapon"]={{[1]={[1]={type="Multiplier",var="GreenSocketInWeapon 1"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} c["10% increased Experience Gain for Corrupted Gems"]={{}," Experience Gain for Corrupted Gems "} c["10% increased Experience Gain for Corrupted Gems Corrupted"]={{}," Experience Gain for Corrupted Gems Corrupted "} c["10% increased Experience Gain of Gems"]={{}," Experience Gain of Gems "} @@ -2573,7 +2573,6 @@ c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",t c["10% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=10}},nil} c["10% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=10}},nil} c["10% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=10}},nil} -c["10% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil} c["10% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil} c["10% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=10}},nil} c["10% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil} @@ -2581,6 +2580,8 @@ c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name= c["10% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=10}},nil} c["10% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=10}},nil} c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil} +c["10% increased Mana Cost Efficiency of Mark Skills"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=10}},nil} +c["10% increased Mana Cost Efficiency of Spells"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=10}},nil} c["10% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=10}},nil} c["10% increased Mana Cost of Skills during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=10}},nil} c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil} @@ -2709,11 +2710,6 @@ c["10% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskCha c["10% reduced Frenzy Charge Duration per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-10}},nil} c["10% reduced Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=-10}},nil} c["10% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-10}},nil} -c["10% reduced Mana Cost of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="ManaCost",type="INC",value=-10}},nil} -c["10% reduced Mana Cost of Link Skills"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil} -c["10% reduced Mana Cost of Mark Skills"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil} -c["10% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil} -c["10% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil} c["10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}},nil} c["10% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-10}},nil} c["10% reduced Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=-10}},nil} @@ -2756,6 +2752,7 @@ c["100% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskCha c["100% increased Chill Duration on Enemies when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=100}},nil} c["100% increased Claw Physical Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil} c["100% increased Cold Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=100}},nil} +c["100% increased Cost Efficiency of Retaliation Skills"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=100}}," of Retaliation Skills "} c["100% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} @@ -2911,6 +2908,7 @@ c["12% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name=" c["12% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil} c["12% chance to deal Double Damage while using Pride"]={{[1]={[1]={type="Condition",var="AffectedByPride"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil} c["12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second"]={{[1]={[1]={type="Condition",var="OneSecondAttackTime"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil} +c["12% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil} c["12% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil} c["12% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil} c["12% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=603979780,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil} @@ -2963,7 +2961,6 @@ c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",t c["12% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=12}},nil} c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil} c["12% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=12}},nil} -c["12% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil} c["12% increased Global Attack Speed per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil} c["12% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil} c["12% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=12}},nil} @@ -2972,6 +2969,7 @@ c["12% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name= c["12% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil} c["12% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil} c["12% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=12}},nil} +c["12% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=12}},nil} c["12% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=12}},nil} c["12% increased Maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil} c["12% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=12}},nil} @@ -3010,6 +3008,7 @@ c["12% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillT c["12% increased effect of Non-Curse Auras from your skills while your Ward is Broken"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},[3]={neg=true,type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil} c["12% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil} c["12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil} +c["12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}," and Mana if your equipped Staff has a Red and Blue Socket "} c["12% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=12}},nil} c["12% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=12}},nil} c["12% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=12}},nil} @@ -3019,7 +3018,6 @@ c["12% of Physical Damage from Hits taken as Cold Damage while affected by Purit c["12% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsFire",type="BASE",value=12}},nil} c["12% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsLightning",type="BASE",value=12}},nil} c["12% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-12}},nil} -c["12% reduced Mana Cost of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-12}},nil} c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil} c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil} c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil} @@ -3226,6 +3224,7 @@ c["15% chance to gain a Power, Frenzy or Endurance Charge on Kill Conduit"]={nil c["15% chance to inflict Withered for 2 seconds on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} c["15% faster Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=15}},nil} c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil} +c["15% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil} c["15% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil} c["15% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil} c["15% increased Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil} @@ -3280,6 +3279,8 @@ c["15% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",v c["15% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}},nil} c["15% increased Cooldown Recovery Rate for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=15}},nil} c["15% increased Cooldown Recovery Rate of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=15}},nil} +c["15% increased Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=15}},nil} +c["15% increased Cost Efficiency of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=15}},nil} c["15% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil} c["15% increased Critical Strike Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=15}},nil} c["15% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=15}},nil} @@ -3299,6 +3300,7 @@ c["15% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Dam c["15% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=15}},nil} +c["15% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=15}},nil} c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil} c["15% increased Dexterity if 2 Redeemer Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="RedeemerItem"},flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil} c["15% increased Dexterity if Strength is higher than Intelligence"]={{[1]={[1]={type="Condition",var="StrHigherThanInt"},flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil} @@ -3325,7 +3327,6 @@ c["15% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="Flas c["15% increased Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=15}},nil} c["15% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=15}},nil} c["15% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=15}},nil} -c["15% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil} c["15% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=15}},nil} c["15% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil} c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil} @@ -3339,6 +3340,7 @@ c["15% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRe c["15% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=15}},nil} c["15% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=15}},nil} c["15% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=15}},nil} +c["15% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=15}},nil} c["15% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingManaFlask"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=15}},nil} c["15% increased Mana Recovery Rate while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=15}},nil} c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=15}},nil} @@ -3427,7 +3429,6 @@ c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyS c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil} c["15% reduced Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil} c["15% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-15}},nil} -c["15% reduced Mana Cost of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil} c["15% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil} c["15% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil} c["15% reduced Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-15}},nil} @@ -3491,6 +3492,7 @@ c["16% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65 c["16% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=16}},nil} c["16% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=16}},nil} c["16% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=16}},nil} +c["16% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=16}},nil} c["16% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=16}},nil} c["16% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=16}},nil} c["16% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil} @@ -3807,6 +3809,7 @@ c["20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hi c["20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds"]={{}," when you Kill a Magic Monster to gain its Modifiers "} c["20% faster Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=20}},nil} c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil} +c["20% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil} c["20% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil} c["20% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil} c["20% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}},nil} @@ -3850,9 +3853,11 @@ c["20% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of c["20% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},nil} c["20% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil} c["20% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="ShaperItem"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil} +c["20% increased Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=20}},nil} c["20% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Critical Strike Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Critical Strike Chance per Brand"]={{[1]={[1]={type="Multiplier",var="ActiveBrand"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} +c["20% increased Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} @@ -3928,7 +3933,6 @@ c["20% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Fla c["20% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20}},nil} c["20% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil} c["20% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} -c["20% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil} c["20% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil} c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[3]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[4]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[5]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[6]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveCarrionGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil} @@ -3944,6 +3948,10 @@ c["20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]= c["20% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil} c["20% increased Main Hand Critical Strike Chance per"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}}," per "} c["20% increased Main Hand Critical Strike Chance per Murderous Eye Jewel affecting you, up to a maximum of 200%"]={{[1]={[1]={globalLimit=200,globalLimitKey="TecrodGazeMainHand",type="Multiplier",var="MurderousEyeJewel"},[2]={type="Condition",var="MainHandAttack"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} +c["20% increased Mana Cost Efficiency of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="ManaCostEfficiency",type="INC",value=20}},nil} +c["20% increased Mana Cost Efficiency of Link Skills"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} +c["20% increased Mana Cost Efficiency of Mark Skills"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} +c["20% increased Mana Cost Efficiency of Spells"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=20}},nil} c["20% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=20}},nil} c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil} c["20% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=20}},nil} @@ -4007,6 +4015,7 @@ c["20% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed" c["20% increased Ward during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Ward",type="INC",value=20}},nil} c["20% increased Ward from Equipped Armour Items"]={{[1]={[1]={slotNameList={[1]="Helmet",[2]="Body Armour",[3]="Gloves",[4]="Boots",[5]="Weapon 2"},type="SlotName"},flags=0,keywordFlags=0,name="Ward",type="INC",value=20}},nil} c["20% increased bonuses gained from Equipped Gloves"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromGloves",type="INC",value=20}},nil} +c["20% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=20}},nil} c["20% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=20}},nil} c["20% increased effect of Non-Curse Auras from your Skills on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}}}},nil} c["20% increased effect of Offerings"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering",[4]="Blood Offering"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} @@ -4023,6 +4032,7 @@ c["20% less Effect of Curses from Socketed Hex Skills"]={{[1]={flags=0,keywordFl c["20% less Effect of Curses from Socketed Hex Skills +40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="MORE",value=-20}}," of Curses from Socketed Hex Skills +40 to Intelligence "} c["20% less Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="MORE",value=-20}},nil} c["20% less Minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MinPhysicalDamage",type="MORE",value=-20}},nil} +c["20% more Accuracy Rating while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=20}},nil} c["20% more Area of Effect while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="AreaOfEffect",type="MORE",value=20}},nil} c["20% more Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=20}},nil} c["20% more Attack Damage taken if you have been Hit by an Attack Recently"]={{[1]={[1]={type="Condition",var="BeenHitByAttackRecently"},flags=0,keywordFlags=0,name="AttackDamageTaken",type="MORE",value=20}},nil} @@ -4060,7 +4070,6 @@ c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="I c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil} c["20% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-20}},nil} c["20% reduced Chill Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillDuration",type="INC",value=-20}},nil} -c["20% reduced Cost of Attacks while you have at least 20 Rage"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={threshold=20,type="MultiplierThreshold",var="Rage"},flags=0,keywordFlags=0,name="Cost",type="INC",value=-20}},nil} c["20% reduced Duration of Ailments on You"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-20}},nil} c["20% reduced Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=-20}},nil} c["20% reduced Effect of Chill and Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-20},[2]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-20}},nil} @@ -4075,7 +4084,6 @@ c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="Fren c["20% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-20}},nil} c["20% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-20}},nil} c["20% reduced Mana Burn rate"]={{[1]={flags=0,keywordFlags=0,name="TinctureManaBurnRate",type="INC",value=-20}},nil} -c["20% reduced Mana Cost of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="ManaCost",type="INC",value=-20}},nil} c["20% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil} c["20% reduced Mana Cost of Skills when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil} c["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-20}},nil} @@ -4380,6 +4388,7 @@ c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name= c["25% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil} c["25% increased Cold Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="ColdDamage",type="INC",value=25}},nil} c["25% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds"]={{[1]={[1]={type="Condition",var="SelfCastTemporalChains"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=25}},nil} +c["25% increased Cost Efficiency of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=25}},nil} c["25% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil} c["25% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil} c["25% increased Critical Strike Chance per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil} @@ -4494,26 +4503,33 @@ c["25% less Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type c["25% less Damage over Time taken during Effect of any Life Flask"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="DamageTakenOverTime",type="MORE",value=-25}},nil} c["25% less Damage taken from other Enemies near your Marked Enemy"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-25}}," from other Enemies near your Marked Enemy "} c["25% less Damage taken from other Enemies near your Marked Enemy Your Mark Transfers to another Enemy when Marked Enemy dies"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-25}}," from other Enemies near your Marked Enemy Your Mark Transfers to another Enemy when Marked Enemy dies "} +c["25% less Damage with Ignite"]={{[1]={flags=0,keywordFlags=8388608,name="Damage",type="MORE",value=-25}},nil} c["25% less Evasion Rating against Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvasion",type="MORE",value=-25}},nil} c["25% more Accuracy Rating while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=25}},nil} c["25% more Critical Strike chance while affected by Precision"]={{[1]={[1]={type="Condition",var="AffectedByPrecision"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=25}},nil} c["25% more Damage while there is at most one Rare or Unique Enemy nearby"]={{[1]={[1]={type="Condition",var="AtMostOneNearbyRareOrUniqueEnemy"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}},nil} c["25% more Damage with Hits against Enemies that cannot have Life Leeched from them"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=25}}," against Enemies that cannot have Life Leeched from them "} c["25% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE",value=25}},nil} +c["25% more Maximum Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="MORE",value=25}}," Maximum "} +c["25% more Maximum Lightning Damage 50% less Minimum Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="MORE",value=25}}," Maximum 50% less Minimum Lightning Damage "} +c["25% more Maximum Lightning Damage 50% less Minimum Lightning Damage Cannot deal non-Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="MORE",value=25}}," Maximum 50% less Minimum Lightning Damage Cannot deal non-Lightning Damage "} c["25% more Melee Critical Strike Chance while Blinded"]={{[1]={[1]={type="Condition",var="Blinded"},[2]={neg=true,type="Condition",var="CannotBeBlinded"},flags=256,keywordFlags=0,name="CritChance",type="MORE",value=25}},nil} c["25% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=25}},nil} c["25% more Physical and Chaos Damage Taken while Sane"]={{[1]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="MORE",value=25},[2]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=25}},nil} c["25% more Spell Damage if you've been Stunned while Casting Recently"]={{[1]={[1]={type="Condition",var="StunnedWhileCastingRecently"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=25}},nil} +c["25% of Cold Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=25}},nil} c["25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=25}}," if Leech was removed by Filling Unreserved Life Recently "} c["25% of Damage taken Recouped as Life, Mana and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="EnergyShieldRecoup",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=25}},nil} c["25% of Elemental Damage from Hits taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageFromHitsTakenAsChaos",type="BASE",value=25}},nil} c["25% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FireDamageFromHitsTakenAsCold",type="BASE",value=25},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageFromHitsTakenAsCold",type="BASE",value=25}},nil} +c["25% of Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=25}},nil} c["25% of Maximum Life taken as Chaos Damage per second"]={{[1]={[1]={percent=25,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=1}},nil} c["25% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=25}},nil} c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=25}},nil} c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}},nil} c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil} c["25% of Physical Damage from Hits taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsChaos",type="BASE",value=25}},nil} +c["25% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=25}},nil} c["25% of Wand Physical Damage converted to Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil} c["25% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-25}},nil} c["25% reduced Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-25}},nil} @@ -4521,6 +4537,7 @@ c["25% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="IN c["25% reduced Chaos Damage taken over time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenOverTime",type="INC",value=-25}},nil} c["25% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}},nil} c["25% reduced Effect of Chill and Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-25},[2]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-25}},nil} +c["25% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-25}},nil} c["25% reduced Elemental Ailment Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-25}},nil} c["25% reduced Elemental Ailment Duration on you while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-25}},nil} c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil} @@ -4632,6 +4649,7 @@ c["3% increased Experience gain 2% increased Experience gain"]={{}," Experience c["3% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=3}}," Experience gain 20% increased "} c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=3}},nil} c["3% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=3}},nil} +c["3% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=3}},nil} c["3% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=3}},nil} c["3% increased Maximum Life per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil} c["3% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="Mana",type="INC",value=3}},nil} @@ -4648,24 +4666,25 @@ c["3% increased Rarity of Items found per Mana Burn, up to a maximum of 100%"]={ c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil} c["3% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=3}},nil} c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil} -c["3% increased maximum Life per Red Socket on equipped Staff"]={{[1]={[1]={type="Multiplier",var="RedSocketInWeapon 1"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil} c["3% more Armour and Evasion Rating per Fortification above 20"]={{[1]={[1]={stat="FortificationStacksOver20",type="PerStat"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="MORE",value=3}},nil} +c["3% more Damage per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}},nil} c["3% more Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=3}},nil} c["3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=3}},nil} c["3% of Attack Damage Leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=3}},nil} c["3% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=3}},nil} c["3% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=3}},nil} c["3% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="ShaperItem"},flags=0,keywordFlags=0,name="ElementalDamageEnergyShieldLeech",type="BASE",value=3}},nil} +c["3% of Leech is Instant per maximum Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerChargeMax"},flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=3},[2]={[1]={type="Multiplier",var="PowerChargeMax"},flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=3},[3]={[1]={type="Multiplier",var="PowerChargeMax"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=3}},nil} c["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=3}},nil} c["3% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="ElderItem"},flags=0,keywordFlags=0,name="PhysicalDamageEnergyShieldLeech",type="BASE",value=3}},nil} c["3% of Physical Damage prevented from Hits Recently is Regenerated as Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageMitigatedEnergyShieldPseudoRecoup",type="BASE",value=12}},nil} c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=-3}},nil} -c["3% reduced Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="Cost",type="INC",value=-3}},nil} c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-3}},nil} c["3% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-3}},nil} c["3.0% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="CrusaderItem"},flags=0,keywordFlags=0,name="PhysicalDamageMitigatedEnergyShieldPseudoRecoup",type="BASE",value=12}},nil} c["30% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=30}},nil} c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=4,keywordFlags=0,name="BleedChance",type="BASE",value=30}}," Enemies to Flee "} +c["30% chance for Energy Shield Recharge to start when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}}," for Recharge to start when you Block "} c["30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit"]={{}," for the Strongest Impale on target to last for 1 additional Hit "} c["30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit 50% less Impale Duration"]={{[1]={flags=260,keywordFlags=0,name="ImpaleDuration",type="BASE",value=30}}," for the Strongest Impale on target to last for 1 additional Hit 50% less "} c["30% chance to Avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=30}},nil} @@ -4751,6 +4770,8 @@ c["30% increased Area of Effect while in Sand Stance"]={{[1]={[1]={type="Conditi c["30% increased Area of Effect while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} c["30% increased Armour and Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}},nil} +c["30% increased Armour and Evasion Rating if your Main Hand Weapon"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=8192,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}}," if your "} +c["30% increased Armour and Evasion Rating if your Main Hand Weapon has a Red and Green Socket"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=8192,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}}," if your has a Red and Green Socket "} c["30% increased Armour and Evasion Rating while Fortified"]={{[1]={[1]={type="Condition",var="Fortified"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}},nil} c["30% increased Armour if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} c["30% increased Armour while you have Unbroken Ward"]={{[1]={[1]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil} @@ -4778,8 +4799,10 @@ c["30% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1] c["30% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=30}},nil} c["30% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil} c["30% increased Cooldown Recovery Rate of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=30}},nil} +c["30% increased Cost Efficiency of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=30}},nil} c["30% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} c["30% increased Critical Strike Chance while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} +c["30% increased Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} c["30% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} c["30% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} c["30% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=30}},nil} @@ -4859,7 +4882,6 @@ c["30% increased Fortification Duration"]={{[1]={flags=0,keywordFlags=0,name="Fo c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=30}},nil} c["30% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil} c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} -c["30% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} c["30% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil} c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30}},nil} c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=30}},nil} @@ -4928,6 +4950,7 @@ c["30% less Animate Weapon Duration"]={{[1]={[1]={includeTransfigured=true,skill c["30% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-30}},nil} c["30% less Damage with Triggered Spells"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=131072,name="Damage",type="MORE",value=-30}},nil} c["30% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-30}},nil} +c["30% less Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="MORE",value=-30}},nil} c["30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},[2]={type="Condition",var="HaveIronReflexes"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=30}},nil} c["30% more Damage with Hits and Ailments against Enemies that are on Low Life while you are wielding an Axe"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Condition",var="UsingAxe"},flags=0,keywordFlags=786432,name="Damage",type="MORE",value=30}},nil} c["30% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE",value=30}},nil} @@ -5196,7 +5219,6 @@ c["4% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multip c["4% reduced Duration of Curses on you per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-4}}," of Curses on you "} c["4% reduced Duration of Curses on you per 10 Devotion 4% reduced Elemental Ailment Duration on you per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-4}}," of Curses on you 4% reduced Elemental Ailment Duration on you "} c["4% reduced Elemental Ailment Duration on you per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-4}},nil} -c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil} c["4% reduced Mana Cost per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil} c["40 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=40}},nil} c["40 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=40}},nil} @@ -5214,6 +5236,7 @@ c["40% chance when you Kill a Scorched Enemy to Burn Each surrounding"]={{}," wh c["40% chance when you Kill a Scorched Enemy to Burn Each surrounding Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," when you Kill a Scorched Enemy to Burn Each surrounding Enemy , dealing 8% of the Killed Enemy's as Fire Damage per second "} c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil} c["40% faster start of Energy Shield Recharge while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil} +c["40% increased Accuracy Rating while you have at least 1 nearby Ally"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil} c["40% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=40}},nil} c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil} c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil} @@ -5245,6 +5268,8 @@ c["40% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="Co c["40% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} c["40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} +c["40% increased Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} +c["40% increased Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=603979780,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} @@ -5296,9 +5321,7 @@ c["40% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",t c["40% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=40}},nil} c["40% increased Fortification Duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=40}},nil} c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil} -c["40% increased Global Accuracy Rating while you have at least 1 nearby Ally"]={{[1]={[1]={type="Global"},[2]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil} c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} -c["40% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil} c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil} c["40% increased Global maximum Energy Shield and reduced Lightning Resistance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="LightningResist",type="INC",value=-40}},nil} @@ -5362,7 +5385,6 @@ c["40% more Maximum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="Skill c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=40}},nil} c["40% of Cold Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsLightning",type="BASE",value=40}},nil} c["40% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=40}},nil} -c["40% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=40}},nil} c["40% of Damage taken from Critical Strikes Recouped as Life"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=40}}," Recouped as Life "} c["40% of Damage taken from Critical Strikes Recouped as Life Limited to 1 Runegraft of Restitching"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=40}}," Recouped as Life Limited to 1 Runegraft of Restitching "} c["40% of Elemental Damage from Hits taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageFromHitsTakenAsPhysical",type="BASE",value=40}},nil} @@ -5382,7 +5404,6 @@ c["40% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0 c["40% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=40}},nil} c["40% reduced Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=-40}},nil} c["40% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-40}},nil} -c["40% reduced Cost of Retaliation Skills"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Cost",type="INC",value=-40}},nil} c["40% reduced Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-40}},nil} c["40% reduced Effect of Curses on you during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingManaFlask"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil} c["40% reduced Effect of Non-Damaging Ailments on you during Effect of any Life Flask"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-40},[2]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-40},[3]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfFreezeEffect",type="INC",value=-40},[4]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfScorchEffect",type="INC",value=-40},[5]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfBrittleEffect",type="INC",value=-40},[6]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfSapEffect",type="INC",value=-40}},nil} @@ -5534,6 +5555,7 @@ c["5% increased Cast Speed with Lightning Skills"]={{[1]={flags=16,keywordFlags= c["5% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=5}},nil} c["5% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=5}},nil} c["5% increased Cooldown Recovery Rate for throwing Traps per Mine Detonated Recently"]={{[1]={[1]={type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=5}},nil} +c["5% increased Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="CostEfficiency",type="INC",value=5}},nil} c["5% increased Critical Strike Chance per 25 Intelligence"]={{[1]={[1]={div=25,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=5}},nil} c["5% increased Damage for each Herald affecting you"]={{[1]={[1]={type="Multiplier",var="Herald"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil} @@ -5555,6 +5577,7 @@ c["5% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlag c["5% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil} c["5% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=5}},nil} c["5% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=5}},nil} +c["5% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=5}},nil} c["5% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=5}},nil} c["5% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=5}},nil} c["5% increased Maximum Life per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil} @@ -5591,10 +5614,8 @@ c["5% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillTy c["5% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=5}},nil} c["5% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil} c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},nil} -c["5% increased maximum Mana per Blue Socket on equipped Staff"]={{[1]={[1]={type="Multiplier",var="BlueSocketInWeapon 1"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},nil} c["5% less Damage taken per 5 Rage, up to a maximum of 30%"]={{[1]={[1]={div="5",limit=-30,limitNegTotal=true,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-5}},nil} c["5% more Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=5}},nil} -c["5% more Damage per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=5}},nil} c["5% more chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=5}},nil} c["5% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn"]={{[1]={[1]={stat="ActiveVoidSpawnLimit",type="PerStat"},flags=0,keywordFlags=0,name="takenFromVoidSpawnBeforeYou",type="BASE",value=5}},nil} c["5% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=5}},nil} @@ -5605,8 +5626,6 @@ c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condit c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil} c["5% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil} c["5% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-5}},nil} -c["5% reduced Mana Cost of Mark Skills"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-5}},nil} -c["5% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-5}},nil} c["5% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-5}},nil} c["5% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-5}},nil} c["50 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=50}},nil} @@ -5661,6 +5680,7 @@ c["50% chance to inflict Brittle"]={{[1]={flags=0,keywordFlags=0,name="EnemyBrit c["50% chance to inflict Withered for two seconds on Hit if there are 5 or fewer Withered Debuffs on Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} c["50% faster Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=50}},nil} c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=50}},nil} +c["50% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=50}},nil} c["50% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=50}},nil} c["50% increased Arctic Armour Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil} c["50% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=50}},nil} @@ -5687,6 +5707,7 @@ c["50% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={ac c["50% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=50}},nil} c["50% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} +c["50% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=50}},nil} c["50% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} @@ -5736,7 +5757,6 @@ c["50% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="Flas c["50% increased Flask Charges gained during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil} c["50% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=50}},nil} c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=50}},nil} -c["50% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=50}},nil} c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} c["50% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil} @@ -5799,6 +5819,7 @@ c["50% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keyw c["50% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=50}},nil} c["50% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil} c["50% less Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="MORE",value=-50}},nil} +c["50% less Cost of Link Skills"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="Cost",type="MORE",value=-50}},nil} c["50% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-50}},nil} c["50% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-50}},nil} c["50% less Damage Taken from Damage over Time while you have Unbroken Ward"]={{[1]={[1]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="DamageTakenOverTime",type="MORE",value=-50}},nil} @@ -5811,6 +5832,8 @@ c["50% less Impale Duration"]={{[1]={flags=0,keywordFlags=0,name="ImpaleDuration c["50% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-50}},nil} c["50% less Life Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="MORE",value=-50}},nil} c["50% less Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="MORE",value=-50}},nil} +c["50% less Minimum Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="MORE",value=-50}}," Minimum "} +c["50% less Minimum Lightning Damage Cannot deal non-Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="MORE",value=-50}}," Minimum Cannot deal non-Lightning Damage "} c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-50}},nil} c["50% less maximum Total Life Recovery per Second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="MORE",value=-50}},nil} c["50% more Accuracy Rating against Marked Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="MORE",value=50}},nil} @@ -5907,6 +5930,7 @@ c["6% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockC c["6% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil} c["6% chance to avoid Projectiles"]={{[1]={flags=0,keywordFlags=0,name="AvoidProjectilesChance",type="BASE",value=6}},nil} c["6% chance to throw up to 4 additional Traps"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowCount",type="BASE",value=0.24}},nil} +c["6% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil} c["6% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil} c["6% increased Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil} c["6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil} @@ -5942,16 +5966,17 @@ c["6% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",ty c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=6}},nil} c["6% increased Evasion Rating while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=6}},nil} c["6% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=6}},nil} -c["6% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil} c["6% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=6}},nil} c["6% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=6}},nil} c["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil} +c["6% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=6}},nil} c["6% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=6}},nil} c["6% increased Maximum Life for each Corrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil} c["6% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil} c["6% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil} c["6% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil} c["6% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=6}},nil} +c["6% increased Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=6}},nil} c["6% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=6}},nil} c["6% increased Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil} c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil} @@ -5963,13 +5988,10 @@ c["6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="I c["6% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=6}},nil} c["6% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn"]={{[1]={[1]={stat="ActiveVoidSpawnLimit",type="PerStat"},flags=0,keywordFlags=0,name="takenFromVoidSpawnBeforeYou",type="BASE",value=6}},nil} c["6% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=6}},nil} -c["6% reduced Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="Cost",type="INC",value=-6}},nil} c["6% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-6}},nil} -c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-6}},nil} c["60 to 80 Added Cold Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=80}},nil} c["60% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit"]={{}," for the Strongest Impale on target to last for 1 additional Hit "} c["60% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit 30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit"]={{}," for the Strongest Impale on target to last for 1 additional Hit 30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit "} -c["60% chance to Impale on Spell Hit"]={{[1]={flags=2,keywordFlags=0,name="ImpaleChance",type="BASE",value=60}},nil} c["60% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil} c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil} c["60% faster Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=60}},nil} @@ -5997,10 +6019,10 @@ c["60% increased Critical Strike Chance against Chilled Enemies"]={{[1]={[1]={ac c["60% increased Critical Strike Chance against enemies with Lightning Exposure"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HasLightningExposure"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance if you haven't Blocked Recently"]={{[1]={[1]={neg=true,type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance while Physical Aegis is depleted"]={{[1]={[1]={type="Condition",var="PhysicalAegisDepleted"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} +c["60% increased Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} -c["60% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} @@ -6026,8 +6048,6 @@ c["60% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Fla c["60% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=60}},nil} c["60% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=60}},nil} c["60% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} -c["60% increased Global Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} -c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil} c["60% increased Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=60}},nil} @@ -6199,7 +6219,6 @@ c["75% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name c["75% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=75}},nil} c["75% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=75}},nil} c["75% increased Spell Critical Strike Chance per Raised Spectre"]={{[1]={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=75}},nil} -c["75% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=75}},nil} c["75% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=75}},nil} c["75% more Main Hand attack speed"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=75}},nil} c["75% of Damage taken bypasses Ward"]={{[1]={flags=0,keywordFlags=0,name="WardBypass",type="BASE",value=75}},nil} @@ -6254,6 +6273,7 @@ c["8% chance to gain a Power Charge on Kill 8% increased Damage per Power Charge c["8% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={nil,"a Power, Frenzy or Endurance Charge "} c["8% chance to gain an Endurance Charge on Kill"]={nil,"an Endurance Charge "} c["8% chance to gain an Endurance Charge on Kill 8% increased Damage per Endurance Charge"]={nil,"an Endurance Charge 8% increased Damage "} +c["8% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil} c["8% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil} c["8% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil} c["8% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil} @@ -6296,11 +6316,11 @@ c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",ty c["8% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil} c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil} c["8% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil} -c["8% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil} c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil} c["8% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=8}},nil} c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=8}},nil} c["8% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=8}},nil} +c["8% increased Mana Cost Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ManaCostEfficiency",type="INC",value=8}},nil} c["8% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=8}},nil} c["8% increased Mana Regeneration Rate per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=8}},nil} c["8% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=8}},nil} @@ -6332,7 +6352,6 @@ c["8% of Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantEnergyShi c["8% of Maximum Life taken as Chaos Damage per second"]={{[1]={[1]={percent=8,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=1}},nil} c["8% of Physical Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsFire",type="BASE",value=8}},nil} c["8% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-8}},nil} -c["8% reduced Mana Cost of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-8}},nil} c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-8}},nil} c["8% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-8}},nil} c["8% reduced Soul Gain Prevention Duration"]={{[1]={flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-8}},nil} @@ -7159,6 +7178,10 @@ c["All Hits with your next Non-Channelling Attack within 4 seconds of taking a C c["All Sockets are White"]={{},nil} c["All bonuses from an Equipped Shield apply to your Minions instead of you"]={{},nil} c["All hits are Critical Strikes while holding a Fishing Rod"]={{[1]={[1]={type="Condition",var="UsingFishing"},flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} +c["All other Summoned Totems die when you Summon a Totem"]={nil,"All other Summoned Totems die when you Summon a Totem "} +c["All other Summoned Totems die when you Summon a Totem Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems"]={nil,"All other Summoned Totems die when you Summon a Totem Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems "} +c["All other Summoned Totems die when you Summon a Totem Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems"]={nil,"All other Summoned Totems die when you Summon a Totem Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems "} +c["All other Summoned Totems die when you Summon a Totem Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems Totems have 5% more Life per maximum number of Summoned Totems"]={nil,"All other Summoned Totems die when you Summon a Totem Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems Totems have 5% more Life per maximum number of Summoned Totems "} c["Allies' Aura Buffs do not affect you"]={{[1]={flags=0,keywordFlags=0,name="AlliesAurasCannotAffectSelf",type="FLAG",value=true}},nil} c["Allocates Ancestral Fury if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="ancestral fury",side="flame"}}},nil} c["Allocates Ancestral Fury if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="ancestral fury",side="flesh"}}},nil} @@ -7292,6 +7315,8 @@ c["Allocates Inquisitor if you have the matching modifier on Forbidden Flame"]={ c["Allocates Inquisitor if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="inquisitor",side="flesh"}}},nil} c["Allocates Inspirational if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="inspirational",side="flame"}}},nil} c["Allocates Inspirational if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="inspirational",side="flesh"}}},nil} +c["Allocates Instruments of Justice if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="instruments of justice",side="flame"}}},nil} +c["Allocates Instruments of Justice if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="instruments of justice",side="flesh"}}},nil} c["Allocates Instruments of Virtue if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="instruments of virtue",side="flame"}}},nil} c["Allocates Instruments of Virtue if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="instruments of virtue",side="flesh"}}},nil} c["Allocates Instruments of Zeal if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="instruments of zeal",side="flame"}}},nil} @@ -7444,6 +7469,8 @@ c["Allocates Undeniable if you have the matching modifier on Forbidden Flame"]={ c["Allocates Undeniable if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="undeniable",side="flesh"}}},nil} c["Allocates Unflinching if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="unflinching",side="flame"}}},nil} c["Allocates Unflinching if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="unflinching",side="flesh"}}},nil} +c["Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="unhallowed rite",side="flame"}}},nil} +c["Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="unhallowed rite",side="flesh"}}},nil} c["Allocates Unholy Authority if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="unholy authority",side="flame"}}},nil} c["Allocates Unholy Authority if you have the matching modifier on Forbidden Flesh"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="unholy authority",side="flesh"}}},nil} c["Allocates Unleashed Potential if you have the matching modifier on Forbidden Flame"]={{[1]={flags=0,keywordFlags=0,name="GrantedAscendancyNode",type="LIST",value={name="unleashed potential",side="flame"}}},nil} @@ -7509,7 +7536,10 @@ c["Animated and Manifested Minions' Melee Strikes deal Splash"]={nil,"Animated a c["Animated and Manifested Minions' Melee Strikes deal Splash Damage to surrounding targets"]={nil,"Animated and Manifested Minions' Melee Strikes deal Splash Damage to surrounding targets "} c["Arcane Surge also grants 10% more Spell Damage to you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeDamage",type="MAX",value=10}},nil} c["Arcane Surge also grants 15% increased Life Regeneration Rate to you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeAlsoLifeRegen",type="BASE",value=15}},nil} +c["Arcane Surge also grants 20% increased Mana Cost Efficiency to you"]={nil,"Arcane Surge also grants 20% increased Mana Cost Efficiency to you "} c["Arcane Surge also grants 20% more Spell Damage to you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeDamage",type="MAX",value=20}},nil} +c["Arcane Surge also grants 20% of Damage taken Recouped as Mana to you"]={nil,"Arcane Surge also grants 20% of Damage taken Recouped as Mana to you "} +c["Arcane Surge also grants 20% of Damage taken Recouped as Mana to you Arcane Surge also grants 20% increased Mana Cost Efficiency to you"]={nil,"Arcane Surge also grants 20% of Damage taken Recouped as Mana to you Arcane Surge also grants 20% increased Mana Cost Efficiency to you "} c["Arctic Armour has no Reservation"]={{[1]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="ArcticArmour",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Area Skills have 10% chance to Knock Enemies Back on Hit"]={{[1]={[1]={skillType=11,type="SkillType"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=10}},nil} c["Armour also applies to Chaos Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToChaosDamageTaken",type="BASE",value=100}},nil} @@ -7591,6 +7621,7 @@ c["Attacks have +1.5% to Critical Strike Chance if 4 Elder Items are Equipped"]= c["Attacks have 10% chance to Ignite"]={{[1]={flags=1,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil} c["Attacks have 10% chance to Maim on Hit"]={{}," to Maim "} c["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil} +c["Attacks have 100% Arcane Might while wielding a Wand"]={{},"% Arcane Might "} c["Attacks have 15% chance to Ignite"]={{[1]={flags=1,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=15}},nil} c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil} c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil} @@ -7703,6 +7734,9 @@ c["Banner Skills have 8% increased Duration"]={{[1]={[1]={skillType=99,type="Ski c["Banner Skills have no Reservation"]={{[1]={[1]={skillType=99,type="SkillType"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[2]={[1]={skillType=99,type="SkillType"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Banners also grant +5% to all Elemental Resistances to you and Allies"]={{[1]={[1]={skillType=99,type="SkillType"},flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}}}},nil} c["Base Critical Strike Chance for Attacks with Weapons is 8%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=8}},nil} +c["Base Ignite Duration is 1 second"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="OVERRIDE",value=1}},"Base second "} +c["Base Ignite Duration is 1 second 25% less Damage with Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="OVERRIDE",value=1}},"Base second 25% less Damage with Ignite "} +c["Base Ignite Duration is 1 second 25% less Damage with Ignite Cannot deal non-Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="OVERRIDE",value=1}},"Base second 25% less Damage with Ignite Cannot deal non-Fire Damage "} c["Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon"]={{[1]={flags=2,keywordFlags=0,name="BaseCritFromMainHand",type="FLAG",value=true}},nil} c["Bathed in the blood of 4050 sacrificed in the name of Ahuana"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id="2_v2",type="vaal"},id=4050}}}},nil} c["Bathed in the blood of 8000 sacrificed in the name of Ahuana"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id="2_v2",type="vaal"},id=8000}}}},nil} @@ -7710,6 +7744,8 @@ c["Bathed in the blood of 8000 sacrificed in the name of Doryani"]={{[1]={flags= c["Bathed in the blood of 8000 sacrificed in the name of Xibaqua"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=1,type="vaal"},id=8000}}}},nil} c["Bathed in the blood of 8000 sacrificed in the name of Zerphi"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=2,type="vaal"},id=8000}}}},nil} c["Battlemage"]={{[1]={flags=0,keywordFlags=0,name="Battlemage",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="MainHandWeaponDamageAppliesToSpells",type="MAX",value=100}},nil} +c["Bitter Frost"]={nil,"Bitter Frost "} +c["Bitter Frost Blood Magic"]={nil,"Bitter Frost Blood Magic "} c["Bleeding Enemies you Kill Explode, dealing 20% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 20% of "} c["Bleeding Enemies you Kill Explode, dealing 20% of their Maximum Life as Physical Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=20,chance=1,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of "} @@ -7887,6 +7923,9 @@ c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inocu c["Cannot be used with Chaos Inoculation Reserves 30% of Life"]={nil,"Cannot be used with Chaos Inoculation Reserves 30% of Life "} c["Cannot deal Critical Strikes with Attacks"]={{[1]={flags=1,keywordFlags=0,name="NeverCrit",type="FLAG",value=true},[2]={flags=1,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}},nil} c["Cannot deal non-Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoFire",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true}},nil} +c["Cannot deal non-Cold Damage"]={nil,"Cannot deal non-Cold Damage "} +c["Cannot deal non-Fire Damage"]={nil,"Cannot deal non-Fire Damage "} +c["Cannot deal non-Lightning Damage"]={nil,"Cannot deal non-Lightning Damage "} c["Cannot gain Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="CannotGainEnergyShield",type="FLAG",value=true}},nil} c["Cannot gain Life during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CannotGainLife",type="FLAG",value=true}},nil} c["Cannot gain Mana during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CannotGainMana",type="FLAG",value=true}},nil} @@ -8057,9 +8096,12 @@ c["Count as having maximum number of Frenzy Charges"]={{[1]={flags=0,keywordFlag c["Count as having maximum number of Power Charges"]={{[1]={flags=0,keywordFlags=0,name="HaveMaximumPowerCharges",type="FLAG",value=true}},nil} c["Counts as Dual Wielding"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsDualWielding",value=true}}},nil} c["Counts as all One Handed Melee Weapon Types"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsAll1H",value=true}}},nil} +c["Cover Enemies in Ash for 5 seconds when you Ignite them"]={nil,"Cover Enemies in Ash for 5 seconds when you Ignite them "} +c["Cover Enemies in Ash for 5 seconds when you Ignite them Cover Enemies in Frost for 5 seconds when you Freeze them"]={nil,"Cover Enemies in Ash for 5 seconds when you Ignite them Cover Enemies in Frost for 5 seconds when you Freeze them "} c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you "} c["Cover Enemies in Ash when they Hit you Avatar of Fire"]={nil,"Cover Enemies in Ash when they Hit you Avatar of Fire "} c["Cover Enemies in Ash when they Hit you Nearby Enemies are Covered in Ash"]={nil,"Cover Enemies in Ash when they Hit you Nearby Enemies are Covered in Ash "} +c["Cover Enemies in Frost for 5 seconds when you Freeze them"]={nil,"Cover Enemies in Frost for 5 seconds when you Freeze them "} c["Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon Hit"]={nil,"Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon Hit "} c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "} c["Create Consecrated Ground when you Shatter an Enemy 40% increased Effect of Chilled Ground"]={nil,"Create Consecrated Ground when you Shatter an Enemy 40% increased Effect of Chilled Ground "} @@ -8280,6 +8322,7 @@ c["Does not delay Inherent Loss of Rage Regenerate 1 Rage per second for every 3 c["Does not delay Inherent Loss of Rage Skills Cost +3 Rage"]={{[1]={flags=0,keywordFlags=0,name="RageCostNoMult",type="BASE",value=3}},"Does not delay Inherent Loss of Rage "} c["Does not inflict Mana Burn over time"]={nil,"Does not inflict Mana Burn over time "} c["Does not inflict Mana Burn over time Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon"]={nil,"Does not inflict Mana Burn over time Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon "} +c["Drop Brine Ground while moving, lasting 4 seconds"]={nil,"Drop Brine Ground while moving, lasting 4 seconds "} c["Drops Scorched Ground while moving, lasting 4 seconds"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnScorchedGround"},flags=0,keywordFlags=0,name="ScorchBase",type="BASE",value=10}},nil} c["Drops Shocked Ground while moving, lasting 2 seconds"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnShockedGround"},flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=15}},nil} c["Dual Wielding does not inherently grant chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="Condition:NoInherentBlock",type="FLAG",value=true}},nil} @@ -8349,6 +8392,9 @@ c["Enemies Cannot Leech Mana From you"]={nil,"Enemies Cannot Leech Mana From you c["Enemies Cannot Leech Mana From you 10% of Damage taken Recouped as Mana"]={nil,"Enemies Cannot Leech Mana From you 10% of Damage taken Recouped as Mana "} c["Enemies Chilled by your Hits can be Shattered as though Frozen"]={nil,"your Hits can be Shattered as though Frozen "} c["Enemies Chilled by your Hits can be Shattered as though Frozen Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect"]={nil,"your Hits can be Shattered as though Frozen Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect "} +c["Enemies Chilled by your Hits have Cold Damage taken increased by Chill Effect"]={nil,"your Hits have Cold Damage taken increased by Chill Effect "} +c["Enemies Chilled by your Hits have Cold Damage taken increased by Chill Effect Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect"]={nil,"your Hits have Cold Damage taken increased by Chill Effect Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect "} +c["Enemies Chilled by your Hits have Cold Damage taken increased by Chill Effect Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect Cannot deal non-Cold Damage"]={nil,"your Hits have Cold Damage taken increased by Chill Effect Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect Cannot deal non-Cold Damage "} c["Enemies Chilled by your Hits have Damage taken increased by Chill Effect"]={{[1]={flags=0,keywordFlags=0,name="ChillEffectIncDamageTaken",type="FLAG",value=true}},nil} c["Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect"]={{[1]={flags=0,keywordFlags=0,name="ChillEffectLessDamageDealt",type="FLAG",value=true}},nil} c["Enemies Cursed by you are Hindered if 25% of Curse Duration expired"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=25,type="MultiplierThreshold",var="CurseExpired"},[2]={type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="Condition:Hindered",type="FLAG",value=true}}}},nil} @@ -8400,9 +8446,9 @@ c["Enemies Taunted by your Warcries take 8% increased Damage"]={{[1]={[1]={type= c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-10}}}},nil} c["Enemies affected by your Spider's Webs have -10% to All Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-10}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}}}},nil} c["Enemies display their Monster Category"]={nil,"Enemies display their Monster Category "} -c["Enemies display their Monster Category +23% to Chaos Resistance"]={nil,"Enemies display their Monster Category +23% to Chaos Resistance "} -c["Enemies display their Monster Category +23% to Chaos Resistance 20% increased Movement Speed"]={nil,"Enemies display their Monster Category +23% to Chaos Resistance 20% increased Movement Speed "} c["Enemies display their Monster Category 120% increased Evasion and Energy Shield"]={nil,"Enemies display their Monster Category 120% increased Evasion and Energy Shield "} +c["Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect"]={nil,"Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect "} +c["Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect Cannot deal non-Cold Damage"]={nil,"Enemies in your Chilling Areas have Cold Damage taken increased by Chill Effect Cannot deal non-Cold Damage "} c["Enemies in your Chilling Areas take 30% increased Lightning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="InChillingArea"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=30}}}},nil} c["Enemies in your Chilling Areas take 35% increased Lightning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="InChillingArea"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=35}}}},nil} c["Enemies in your Link Beams cannot apply Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="BetweenYouAndLinkedTarget"},flags=0,keywordFlags=0,name="ElementalAilmentImmune",type="FLAG",value=true}},nil} @@ -8604,7 +8650,7 @@ c["Gain 1 Endurance Charge when Ward Breaks"]={{[1]={flags=0,keywordFlags=0,name c["Gain 1 Energy Shield on Kill per Level"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil} c["Gain 1 Fanatic Charge every second if you've Attacked in the past second"]={{}," Fanatic Charge every second if you've Attacked in the past second "} c["Gain 1 Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges"]={{}," Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges "} -c["Gain 1 Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges +4 to Maximum Fanatic Charges"]={{}," Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges +4 to Maximum Fanatic Charges "} +c["Gain 1 Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges"]={{}," Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges "} c["Gain 1 Fortification per 5 Valour consumed to place a Banner"]={{[1]={flags=0,keywordFlags=0,name="MinimumFortification",type="BASE",value=1}}," per 5 Valour consumed to place a Banner "} c["Gain 1 Fortification per 5 Valour consumed to place a Banner Limited to 1 Runegraft of Rallying"]={{[1]={flags=0,keywordFlags=0,name="MinimumFortification",type="BASE",value=1}}," per 5 Valour consumed to place a Banner Limited to 1 Runegraft of Rallying "} c["Gain 1 Fragile Regrowth each second"]={{}," Fragile Regrowth each second "} @@ -8733,7 +8779,13 @@ c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFla c["Gain 20% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil} c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil} c["Gain 20% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil} +c["Gain 20% of Physical Damage as Extra Cold Damage if you've"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}}," if you've "} +c["Gain 20% of Physical Damage as Extra Cold Damage if you've used a Sapphire Flask Recently"]={{[1]={[1]={type="Condition",var="UsedSapphireFlaskRecently"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil} c["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}},nil} +c["Gain 20% of Physical Damage as Extra Fire Damage if you've"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}}," if you've "} +c["Gain 20% of Physical Damage as Extra Fire Damage if you've used a Ruby Flask Recently"]={{[1]={[1]={type="Condition",var="UsedRubyFlaskRecently"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}},nil} +c["Gain 20% of Physical Damage as Extra Lightning Damage if you've"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=20}}," if you've "} +c["Gain 20% of Physical Damage as Extra Lightning Damage if you've used a Topaz Flask Recently"]={{[1]={[1]={type="Condition",var="UsedTopazFlaskRecently"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=20}},nil} c["Gain 20% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=20}},nil} c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=200}},nil} c["Gain 200 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=200}},nil} @@ -8908,7 +8960,10 @@ c["Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no more than onc c["Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance"]={nil,"Defiance on losing Life to an Enemy Hit, no more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy "} c["Gain Elusive on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanBeElusive",type="FLAG",value=true}},nil} c["Gain Elusive on reaching Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Condition:CanBeElusive",type="FLAG",value=true}},nil} -c["Gain Fanaticism for 4 seconds on reaching Maximum Fanatic Charges"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainFanaticism",type="FLAG",value=true}},nil} +c["Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges"]={nil,"Fanaticism on reaching Maximum Fanatic Charges "} +c["Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges Gain 1 Fanatic Charge every second if you've Attacked in the past second"]={nil,"Fanaticism on reaching Maximum Fanatic Charges Gain 1 Fanatic Charge every second if you've Attacked in the past second "} +c["Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges Gain 1 Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges"]={nil,"Fanaticism on reaching Maximum Fanatic Charges Gain 1 Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges "} +c["Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges Gain 1 Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges"]={nil,"Fanaticism on reaching Maximum Fanatic Charges Gain 1 Fanatic Charge every second if you've Attacked in the past second Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges "} c["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Her Blessing when you Ignite an Enemy "} c["Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"]={nil,"Her Blessing when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing "} c["Gain Her Embrace for 3 seconds when you Ignite an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainHerEmbrace",type="FLAG",value=true}},nil} @@ -9011,6 +9066,7 @@ c["Gain up to your maximum number of Frenzy and Endurance Charges when you gain c["Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility You have Onslaught while you have Cat's Agility"]={{[1]={[1]={type="Condition",var="AffectedByCat'sAgility"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},"up to your maximum number ofand Endurance Charges when you gain Cat's Agility You have "} c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth "} c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},"up to your maximum number ofand Power Charges when you gain Cat's Stealth You have "} +c["Gain {SpiritInfusion|Spirit Infusion} every 0.5 seconds while Channelling a Spell"]={nil,"{SpiritInfusion|Spirit Infusion} every 0.5 seconds a Spell "} c["Gains no Charges during Effect"]={nil,"Gains no Charges during Effect "} c["Gains no Charges during Effect 23% reduced Duration"]={nil,"Gains no Charges during Effect 23% reduced Duration "} c["Gains no Charges during Effect Creates a Smoke Cloud on Use"]={nil,"Gains no Charges during Effect Creates a Smoke Cloud on Use "} @@ -9154,10 +9210,8 @@ c["Grants Level 30 Crushing Fist Skill"]={{[1]={flags=0,keywordFlags=0,name="Ext c["Grants Level 30 Dash Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Dash"}}},nil} c["Grants Level 30 Herald of the Hive Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="HeraldOfTheBreach"}}},nil} c["Grants Level 30 Precision Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Precision"}}},nil} -c["Grants Level 30 Purity of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="PurityOfElements"}}},nil} c["Grants Level 30 Smite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Smite"}}},nil} c["Grants Level 30 Snipe Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Snipe"}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="ChannelledSnipeSupport"}}},nil} -c["Grants Level 30 Thirst for Blood Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="ThirstForBlood"}}},nil} c["Grants Level 30 Will of the Lords Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="BreachHandTrap"}}},nil} c["Grants Level 5 Frostbite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="Frostbite"}}},nil} c["Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={nil,"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence "} @@ -9240,6 +9294,7 @@ c["Herald of Purity has 80% reduced Mana Reservation Efficiency"]={{[1]={[1]={in c["Herald of Thunder also creates a storm when you Shock an Enemy"]={nil,"also creates a storm when you Shock an Enemy "} c["Herald of Thunder also creates a storm when you Shock an Enemy Herald of Thunder's Storms Hit Enemies with 50% increased Frequency"]={nil,"also creates a storm when you Shock an Enemy Herald of Thunder's Storms Hit Enemies with 50% increased Frequency "} c["Herald of Thunder has 100% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} +c["Herald of Thunder has 100% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=100}},nil} c["Herald of Thunder has 35% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=35}},nil} c["Herald of Thunder has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Thunder has 50% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil} @@ -9330,6 +9385,11 @@ c["If you've Consumed a corpse Recently, you and your Minions have 30% increased c["If you've Impaled an Enemy Recently, you"]={nil,"If you've Impaled an Enemy Recently, you "} c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour"]={{[1]={[1]={type="Condition",var="ImpaledRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil} c["If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil} +c["If your Linked Mercenary dies, the Link owner does not also die"]={nil,"If your Linked Mercenary dies, the Link owner does not also die "} +c["If your Mercenary's Life is higher than your own, 20% of Damage from Hits is"]={nil,"If your Mercenary's Life is higher than your own, 20% of Damage from Hits is "} +c["If your Mercenary's Life is higher than your own, 20% of Damage from Hits is taken from your Mercenary's Life before you"]={nil,"If your Mercenary's Life is higher than your own, 20% of Damage from Hits is taken from your Mercenary's Life before you "} +c["If your Mercenary's Life is higher than your own, 20% of Damage from Hits is taken from your Mercenary's Life before you If your Mercenary's Life is lower than your own, 40% of Damage they take is Recouped as Life"]={nil,"If your Mercenary's Life is higher than your own, 20% of Damage from Hits is taken from your Mercenary's Life before you If your Mercenary's Life is lower than your own, 40% of Damage they take is Recouped as Life "} +c["If your Mercenary's Life is lower than your own, 40% of Damage they take is Recouped as Life"]={nil,"If your Mercenary's Life is lower than your own, 40% of Damage they take is Recouped as Life "} c["Ignited Enemies Burn 50% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=50}},nil} c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=65}},nil} c["Ignited Enemies Burn 80% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=80}},nil} @@ -9409,6 +9469,8 @@ c["Increases and Reductions to Fire Damage also apply to Effect of Auras from Fi c["Increases and Reductions to Light Radius also apply to Accuracy"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToAccuracy",type="FLAG",value=true}},nil} c["Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToAreaOfEffect",type="FLAG",value=true}},nil} c["Increases and Reductions to Light Radius also apply to Damage"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToDamage",type="FLAG",value=true}},nil} +c["Increases and Reductions to Light Radius also apply to Effect"]={nil,"Increases and Reductions to Light Radius also apply to Effect "} +c["Increases and Reductions to Light Radius also apply to Effect of your Link Skill Buffs on your Mercenary"]={nil,"Increases and Reductions to Light Radius also apply to Effect of your Link Skill Buffs on your Mercenary "} c["Increases and Reductions to Lightning Damage also apply to Effect of"]={nil,"Increases and Reductions to Lightning Damage also apply to Effect of "} c["Increases and Reductions to Lightning Damage also apply to Effect of Auras from Lightning Skills at 13% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedLightningDamageAppliesToLightningAuraEffect",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Lightning Damage also apply to Effect of Auras from Lightning Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedLightningDamageAppliesToLightningAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffectLimit",type="MAX",value=150}},nil} @@ -9423,7 +9485,6 @@ c["Increases and Reductions to Physical Damage also apply to Effect of Auras fro c["Increases and Reductions to Physical Damage also apply to Effect of Auras from Physical Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedPhysicalDamageAppliesToPhysicalAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Projectile Speed also apply to Damage with Bows"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeedAppliesToBowDamage",type="FLAG",value=true}},nil} c["Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedSpellDamageAppliesToAttacks",type="MAX",value=150}},nil} -c["Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true}},nil} c["Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value"]={{[1]={flags=0,keywordFlags=0,name="ManaAppliesToShockEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedManaAppliesToShockEffect",type="MAX",value=30}},nil} c["Increases to Cast Speed from Arcane Surge also applies to Movement Speed"]={nil,"Increases to Cast Speed from Arcane Surge also applies to Movement Speed "} c["Inflict 3 additional Poisons on the same Target"]={nil,"Inflict 3 additional Poisons on the same Target "} @@ -9431,6 +9492,7 @@ c["Inflict 3 additional Poisons on the same Target when you inflict Poison with c["Inflict 5 additional Impales on Enemies you Impale"]={nil,"Inflict 5 additional Impales on Enemies you Impale "} c["Inflict 5 additional Impales on Enemies you Impale For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them"]={nil,"Inflict 5 additional Impales on Enemies you Impale For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them "} c["Inflict 5 additional Impales on Enemies you Impale For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them Limited to 1 Keystone Tattoo"]={nil,"Inflict 5 additional Impales on Enemies you Impale For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them Limited to 1 Keystone Tattoo "} +c["Inflict Barnacles on nearby Enemies every second"]={nil,"Inflict Barnacles on nearby Enemies every second "} c["Inflict Brittle on Enemies when you Block their Damage"]={nil,"Inflict Brittle on Enemies when you Block their Damage "} c["Inflict Brittle on Enemies when you Block their Damage 67% increased Chance to Block"]={nil,"Inflict Brittle on Enemies when you Block their Damage 67% increased Chance to Block "} c["Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="decay",merge="MAX",value=700}}},nil} @@ -9549,6 +9611,7 @@ c["Life and Mana Leech are instant during effect"]={{[1]={[1]={type="Condition", c["Life and Mana Leech from Critical Strikes are instant"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=100}},nil} c["Life that would be lost by taking Damage is instead Reserved"]={{[1]={flags=0,keywordFlags=0,name="DamageInsteadReservesLife",type="FLAG",value=true}},nil} c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life "} +c["Light Radius is based on Energy Shield instead of Life 30% increased Light Radius"]={nil,"Light Radius is based on Energy Shield instead of Life 30% increased Light Radius "} c["Lightning Damage of Enemies Hitting you is Lucky"]={nil,"Lightning Damage of Enemies Hitting you is Lucky "} c["Lightning Damage of Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"]={nil,"Lightning Damage of Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky "} c["Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky"]={nil,"Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky "} @@ -9606,6 +9669,8 @@ c["Link Skills have 20% increased Buff Effect if you have Linked to a target Rec c["Link Skills have 5% increased Buff Effect"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=5}},nil} c["Link Skills have 50% increased range"]={{}," range "} c["Link Skills have 50% increased range Limited to 1 Runegraft of Connection"]={{}," range Limited to 1 Runegraft of Connection "} +c["Link Skills have infinite Attachment Duration"]={nil,"infinite Attachment Duration "} +c["Link Skills have infinite Attachment Duration If your Linked Mercenary dies, the Link owner does not also die"]={nil,"infinite Attachment Duration If your Linked Mercenary dies, the Link owner does not also die "} c["Linked Targets Cannot Die for 2 seconds after you Die"]={nil,"Linked Targets Cannot Die for 2 seconds after you Die "} c["Linked Targets Cannot Die for 2 seconds after you Die Lose no Experience when you die because a Linked target died"]={nil,"Linked Targets Cannot Die for 2 seconds after you Die Lose no Experience when you die because a Linked target died "} c["Linked Targets always count as in range of Non-Curse Auras from your Skills"]={{},nil} @@ -9652,7 +9717,7 @@ c["Lose all Endurance Charges on use"]={nil,"Lose all Endurance Charges on use " c["Lose all Endurance Charges on use Gain 1 Endurance Charge per Second during Effect"]={nil,"Lose all Endurance Charges on use Gain 1 Endurance Charge per Second during Effect "} c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "} c["Lose all Fanatic Charges on reaching Maximum Fanatic Charges"]={nil,"Lose all Fanatic Charges on reaching Maximum Fanatic Charges "} -c["Lose all Fanatic Charges on reaching Maximum Fanatic Charges +4 to Maximum Fanatic Charges"]={nil,"Lose all Fanatic Charges on reaching Maximum Fanatic Charges +4 to Maximum Fanatic Charges "} +c["Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges"]={nil,"Lose all Fanatic Charges on reaching Maximum Fanatic Charges +3 to Maximum Fanatic Charges "} c["Lose all Fragile Regrowth when Hit"]={nil,"Lose all Fragile Regrowth when Hit "} c["Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second"]={nil,"Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second "} c["Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows"]={nil,"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows "} @@ -9691,6 +9756,7 @@ c["Magic Utility Flasks applied to you have 15% increased Effect"]={{[1]={[1]={a c["Magic Utility Flasks applied to you have 30% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="MagicUtilityFlaskEffect",type="INC",value=30}},nil} c["Magic Utility Flasks cannot be Used"]={nil,"Magic Utility Flasks cannot be Used "} c["Magic Utility Flasks cannot be Used Leftmost 4 Magic Utility Flasks constantly apply their Flask Effects to you"]={nil,"Magic Utility Flasks cannot be Used Leftmost 4 Magic Utility Flasks constantly apply their Flask Effects to you "} +c["Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance"]={nil,"Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance "} c["Malevolence has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Malevolence",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Malevolence has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Malevolence",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} c["Malevolence has no Reservation"]={{[1]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} @@ -9713,7 +9779,6 @@ c["Mark Skills have 13% increased Cast Speed"]={{[1]={[1]={skillType=109,type="S c["Mark Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} c["Mark Skills have 25% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=25}},nil} c["Mark Skills have 5% increased Cast Speed"]={{[1]={[1]={skillType=109,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil} -c["Marked Enemy cannot Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Marked"},flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}}}},nil} c["Marked Enemy cannot Regenerate Life"]={nil,"Marked Enemy cannot Regenerate Life "} c["Marked Enemy cannot deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Marked"},flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Marked"},flags=0,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}}}},nil} c["Marked Enemy grants 20% increased Flask Charges to you"]={nil,"Marked Enemy grants 20% increased Flask Charges to you "} @@ -9800,8 +9865,6 @@ c["Melee Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=24,typ c["Melee Strike Skills deal Splash Damage to surrounding targets"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets "} c["Melee Strike Skills deal Splash Damage to surrounding targets +100 to Strength"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets +100 to Strength "} c["Melee Strike Skills deal Splash Damage to surrounding targets 25% reduced Mana Burn rate"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets 25% reduced Mana Burn rate "} -c["Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill "} -c["Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill Enemies Killed by your Hits are destroyed"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill Enemies Killed by your Hits are destroyed "} c["Melee Weapon Attacks have Culling Strike"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=67108865,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil} c["Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%"]={{[1]={[1]={limit=200,limitTotal=true,type="Multiplier",var="ManaBurnStacks"},flags=67108864,keywordFlags=0,name="ElementalPenetration",type="BASE",value=1}},nil} c["Melee Weapon Hits Inflict 3 Withered Debuffs for 2 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} @@ -10207,7 +10270,6 @@ c["Notable Passive Skills in Radius are Transformed to"]={nil,"Notable Passive S c["Nova Spells Cast at a Marked target instead of around you if possible"]={nil,"Nova Spells Cast at a Marked target instead of around you if possible "} c["Nova Spells Cast at a Marked target instead of around you if possible Limited to 1 Runegraft of the Novamark"]={nil,"Nova Spells Cast at a Marked target instead of around you if possible Limited to 1 Runegraft of the Novamark "} c["Nova Spells Cast at the targeted location instead of around you"]={nil,"Nova Spells Cast at the targeted location instead of around you "} -c["Nova Spells Cast at the targeted location instead of around you Spell Skills have 25% increased Area of Effect"]={nil,"Nova Spells Cast at the targeted location instead of around you Spell Skills have 25% increased Area of Effect "} c["Nova Spells have 20% less Area of Effect"]={{[1]={[1]={skillType=95,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="MORE",value=-20}},nil} c["Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=0,keywordFlags=0,name="Condition:OffHandAccuracyIsMainHandAccuracy",type="FLAG",value=true}},nil} c["Offering Skills Triggered this way also affect you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="buffNotPlayer",value=false}}}}},nil} @@ -10235,6 +10297,7 @@ c["Passive Skills in radius of Ancestral Bond can be allocated without being con c["Passive Skills in radius of Arrow Dancing can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="arrow dancing"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="arrow dancing",value=true}}},nil} c["Passive Skills in radius of Arsenal of Vengeance can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="arsenal of vengeance"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="arsenal of vengeance",value=true}}},nil} c["Passive Skills in radius of Avatar of Fire can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="avatar of fire"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="avatar of fire",value=true}}},nil} +c["Passive Skills in radius of Bitter Frost can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="bitter frost"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="bitter frost",value=true}}},nil} c["Passive Skills in radius of Blood Magic can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="blood magic"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="blood magic",value=true}}},nil} c["Passive Skills in radius of Bloodsoaked Blade can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="bloodsoaked blade"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="bloodsoaked blade",value=true}}},nil} c["Passive Skills in radius of Call to Arms can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="call to arms"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="call to arms",value=true}}},nil} @@ -10264,6 +10327,7 @@ c["Passive Skills in radius of Perfect Agony can be allocated without being conn c["Passive Skills in radius of Point Blank can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="point blank"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="point blank",value=true}}},nil} c["Passive Skills in radius of Precise Technique can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="precise technique"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="precise technique",value=true}}},nil} c["Passive Skills in radius of Resolute Technique can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="resolute technique"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="resolute technique",value=true}}},nil} +c["Passive Skills in radius of Roiling Tempest can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="roiling tempest"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="roiling tempest",value=true}}},nil} c["Passive Skills in radius of Runebinder can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="runebinder"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="runebinder",value=true}}},nil} c["Passive Skills in radius of Solipsism can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="solipsism"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="solipsism",value=true}}},nil} c["Passive Skills in radius of Supreme Ego can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="supreme ego"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="supreme ego",value=true}}},nil} @@ -10272,6 +10336,7 @@ c["Passive Skills in radius of The Impaler can be allocated without being connec c["Passive Skills in radius of Unwavering Stance can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="unwavering stance"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="unwavering stance",value=true}}},nil} c["Passive Skills in radius of Vaal Pact can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="vaal pact"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="vaal pact",value=true}}},nil} c["Passive Skills in radius of Versatile Combatant can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="versatile combatant"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="versatile combatant",value=true}}},nil} +c["Passive Skills in radius of Voracious Flame can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="voracious flame"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="voracious flame",value=true}}},nil} c["Passive Skills in radius of Wicked Ward can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="wicked ward"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="wicked ward",value=true}}},nil} c["Passive Skills in radius of Wind Dancer can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="wind dancer"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="wind dancer",value=true}}},nil} c["Passive Skills in radius of Zealot's Oath can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="zealot's oath"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="zealot's oath",value=true}}},nil} @@ -10386,11 +10451,11 @@ c["Projectiles have 4% chance to be able to Chain when colliding with terrain pe c["Projectiles have 50% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for an additional when Forking "} c["Projectiles have 50% chance to Return to you"]={{}," to Return to you "} c["Projectiles have 50% chance to Return to you Projectiles are fired in random directions"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," to Return to you are fired in random directions "} +c["Projectiles that have Chained gain 20% of Non-Chaos Damage as extra Chaos Damage"]={{[1]={[1]={stat="Chain",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=20}},nil} c["Projectiles that have Chained gain 28% of Non-Chaos Damage as extra Chaos Damage"]={{[1]={[1]={stat="Chain",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=28}},nil} c["Projectiles that have Chained gain 35% of Non-Chaos Damage as extra Chaos Damage"]={{[1]={[1]={stat="Chain",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=35}},nil} c["Punishment can affect Hexproof Enemies"]={{[1]={[1]={skillId="Punishment",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} c["Punishment has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Punishment",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Punishment",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Punishment",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Punishment",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} -c["Purity of Elements has 100% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Purity of Elements",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=100}},nil} c["Purity of Elements has no Reservation"]={{[1]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfElements",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Purity of Fire has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Purity of Fire",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} c["Purity of Fire has no Reservation"]={{[1]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="PurityOfFire",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} @@ -11051,6 +11116,8 @@ c["Requires Class Templar Allocates Illuminated Devotion if you have the matchin c["Requires Class Templar Allocates Illuminated Devotion if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Templar Allocates Illuminated Devotion if you have the matching modifier on Forbidden Flesh "} c["Requires Class Templar Allocates Inevitable Judgement if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Templar Allocates Inevitable Judgement if you have the matching modifier on Forbidden Flame "} c["Requires Class Templar Allocates Inevitable Judgement if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Templar Allocates Inevitable Judgement if you have the matching modifier on Forbidden Flesh "} +c["Requires Class Templar Allocates Instruments of Justice if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Templar Allocates Instruments of Justice if you have the matching modifier on Forbidden Flame "} +c["Requires Class Templar Allocates Instruments of Justice if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Templar Allocates Instruments of Justice if you have the matching modifier on Forbidden Flesh "} c["Requires Class Templar Allocates Instruments of Virtue if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Templar Allocates Instruments of Virtue if you have the matching modifier on Forbidden Flame "} c["Requires Class Templar Allocates Instruments of Virtue if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Templar Allocates Instruments of Virtue if you have the matching modifier on Forbidden Flesh "} c["Requires Class Templar Allocates Instruments of Zeal if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Templar Allocates Instruments of Zeal if you have the matching modifier on Forbidden Flame "} @@ -11122,6 +11189,8 @@ c["Requires Class Witch Allocates Shaper of Storms if you have the matching modi c["Requires Class Witch Allocates Shaper of Storms if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Witch Allocates Shaper of Storms if you have the matching modifier on Forbidden Flesh "} c["Requires Class Witch Allocates Shaper of Winter if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Witch Allocates Shaper of Winter if you have the matching modifier on Forbidden Flame "} c["Requires Class Witch Allocates Shaper of Winter if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Witch Allocates Shaper of Winter if you have the matching modifier on Forbidden Flesh "} +c["Requires Class Witch Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Witch Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flame "} +c["Requires Class Witch Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Witch Allocates Unhallowed Rite if you have the matching modifier on Forbidden Flesh "} c["Requires Class Witch Allocates Unholy Authority if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Witch Allocates Unholy Authority if you have the matching modifier on Forbidden Flame "} c["Requires Class Witch Allocates Unholy Authority if you have the matching modifier on Forbidden Flesh"]={nil,"Requires Class Witch Allocates Unholy Authority if you have the matching modifier on Forbidden Flesh "} c["Requires Class Witch Allocates Unnatural Strength if you have the matching modifier on Forbidden Flame"]={nil,"Requires Class Witch Allocates Unnatural Strength if you have the matching modifier on Forbidden Flame "} @@ -11190,6 +11259,8 @@ c["Right ring slot: Regenerate 3% of Energy Shield per second"]={{[1]={[1]={num= c["Right ring slot: Regenerate 4% of Energy Shield per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=4}},nil} c["Right ring slot: Regenerate 6% of Energy Shield per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=6}},nil} c["Right ring slot: You cannot Regenerate Mana"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="NoManaRegen",type="FLAG",value=true}},nil} +c["Roiling Tempest"]={nil,"Roiling Tempest "} +c["Roiling Tempest Runebinder"]={nil,"Roiling Tempest Runebinder "} c["Runebinder"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Runebinder"}},nil} c["Ruthless Hits Intimidate Enemies for 4 seconds"]={nil,"Ruthless Hits Intimidate Enemies for 4 seconds "} c["Sacrifice 10% of your Life when you Use or Trigger a Spell Skill"]={nil,"Sacrifice 10% of your Life when you Use or Trigger a Spell Skill "} @@ -11250,7 +11321,6 @@ c["Skills Chain an additional time while at maximum Frenzy Charges"]={{[1]={[1]= c["Skills Cost +3 Rage"]={{[1]={flags=0,keywordFlags=0,name="RageCostBase",type="BASE",value=3}},nil} c["Skills Cost Energy Shield instead of Mana or Life"]={{[1]={flags=0,keywordFlags=0,name="CostESInsteadOfManaOrLife",type="FLAG",value=true}},nil} c["Skills Cost Life instead of 15% of Mana Cost"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=15}},nil} -c["Skills Cost Life instead of 50% of Mana Cost"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=50}},nil} c["Skills Cost Life instead of Mana"]={{[1]={flags=0,keywordFlags=0,name="CostLifeInsteadOfMana",type="FLAG",value=true}},nil} c["Skills Cost no Mana during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=-100}},nil} c["Skills Fire 3 additional Projectiles for 4 seconds after"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=3}}," after "} @@ -11287,6 +11357,11 @@ c["Skills used by Mines have 10% increased Area of Effect"]={{[1]={flags=0,keywo c["Skills used by Mines have 15% increased Area of Effect if you Detonated a Mine Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="INC",value=15}},nil} c["Skills used by Spectral Totems deal 50% less Damage"]={nil,"Skills used by Spectral Totems deal 50% less Damage "} c["Skills used by Spectral Totems deal 50% less Damage Maximum 5 Spectral Totems"]={nil,"Skills used by Spectral Totems deal 50% less Damage Maximum 5 Spectral Totems "} +c["Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems"]={nil,"Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems "} +c["Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems Totems have 5% more Life per maximum number of Summoned Totems"]={nil,"Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems Totems have 5% more Life per maximum number of Summoned Totems "} +c["Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems"]={nil,"Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems "} +c["Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems"]={nil,"Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems "} +c["Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems Totems have 5% more Life per maximum number of Summoned Totems"]={nil,"Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems Totems have 5% more Life per maximum number of Summoned Totems "} c["Skills used by Traps have 15% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=15}},nil} c["Skills used by Traps have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=20}},nil} c["Skills used by Traps have 50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=50}},nil} @@ -11851,6 +11926,8 @@ c["Sockets cannot be modified +2 to Level of Socketed Gems"]={nil,"Sockets canno c["Solipsism"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Solipsism"}},nil} c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "} c["Spectres do not travel between Areas Corrupted"]={nil,"Spectres do not travel between Areas Corrupted "} +c["Spell Critical Strike Chance {BifurcatedCrit|Bifurcates}"]={nil,"Spell Critical Strike Chance {BifurcatedCrit|Bifurcates} "} +c["Spell Critical Strike Chance {BifurcatedCrit|Bifurcates} 30% less Spell Critical Strike Chance"]={nil,"Spell Critical Strike Chance {BifurcatedCrit|Bifurcates} 30% less Spell Critical Strike Chance "} c["Spell Skills always deal Critical Strikes on final Repeat"]={{[1]={flags=2,keywordFlags=0,name="SpellSkillsAlwaysDealCriticalStrikesOnFinalRepeat",type="FLAG",value=true}},nil} c["Spell Skills cannot deal Critical Strikes except on final Repeat"]={{[1]={flags=2,keywordFlags=0,name="SpellSkillsCannotDealCriticalStrikesExceptOnFinalRepeat",type="FLAG",value=true},[2]={[1]={type="Condition",var="alwaysFinalRepeat"},flags=0,keywordFlags=0,name="",type="FLAG",value=true}},nil} c["Spell Skills deal no Damage"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="DealNoDamage",type="FLAG",value=true}},nil} @@ -11858,7 +11935,6 @@ c["Spell Skills have +12% to Damage over Time Multiplier for Poison"]={{[1]={fla c["Spell Skills have +5% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1075970048,name="DotMultiplier",type="BASE",value=5}},nil} c["Spell Skills have 10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=10}},nil} c["Spell Skills have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=20}},nil} -c["Spell Skills have 25% increased Area of Effect"]={{[1]={flags=0,keywordFlags=131072,name="AreaOfEffect",type="INC",value=25}},nil} c["Spells Cast by Totems have 4% increased Cast Speed"]={{[1]={flags=18,keywordFlags=16384,name="Speed",type="INC",value=4}},nil} c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=18,keywordFlags=16384,name="Speed",type="INC",value=5}},nil} c["Spells Cast by Totems have 8% increased Cast Speed"]={{[1]={flags=18,keywordFlags=16384,name="Speed",type="INC",value=8}},nil} @@ -11871,8 +11947,6 @@ c["Spells cause you to gain Energy Shield equal to their Upfront Cost every fift c["Spells deal added Chaos Damage equal to 18% of your maximum Life"]={{[1]={[1]={percent=18,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=18,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} c["Spells deal added Chaos Damage equal to 2% of your maximum Life"]={{[1]={[1]={percent=2,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=2,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} c["Spells deal added Chaos Damage equal to 20% of your maximum Life"]={{[1]={[1]={percent=20,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=20,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} -c["Spells deal added Chaos Damage equal to 5% of your maximum Life"]={{[1]={[1]={percent=5,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=5,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} -c["Spells fire 2 additional Projectiles"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil} c["Spells fire an additional Projectile"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Spells have 10% reduced Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=-10}},nil} c["Spells have 30% increased Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil} @@ -12037,6 +12111,8 @@ c["Take no Extra Damage from Critical Strikes if you have Equipped Gloves with n c["Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},[2]={type="Condition",var="MagicItemInRing 1"},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=100}},nil} c["Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},[2]={type="Condition",var="SelfCastEnfeeble"},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=100}},nil} c["Taking Chaos Damage over Time heals you instead while Leeching Life"]={nil,"Taking Chaos Damage over Time heals you instead while Leeching Life "} +c["Targets affected by Maim you inflict cannot deal Critical Strikes"]={nil,"Targets affected by Maim you inflict cannot deal Critical Strikes "} +c["Targets affected by Maim you inflict cannot deal Critical Strikes Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance"]={nil,"Targets affected by Maim you inflict cannot deal Critical Strikes Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance "} c["Targets are Unaffected by your Hexes"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="MORE",value=-100}},nil} c["Taunt on Hit"]={nil,"Taunt on Hit "} c["Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills"]={nil,"Taunt on Hit 15% increased effect of Non-Curse Auras from your Skills "} @@ -12097,6 +12173,7 @@ c["Totems gain +25% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="To c["Totems have 15% additional Physical Damage Reduction"]={nil,"Totems have 15% additional Physical Damage Reduction "} c["Totems have 15% additional Physical Damage Reduction Totems gain +25% to Chaos Resistance"]={nil,"Totems have 15% additional Physical Damage Reduction Totems gain +25% to Chaos Resistance "} c["Totems have 40% additional Physical Damage Reduction"]={nil,"Totems have 40% additional Physical Damage Reduction "} +c["Totems have 5% more Life per maximum number of Summoned Totems"]={nil,"Totems have 5% more Life per maximum number of Summoned Totems "} c["Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead"]={nil,"Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead "} c["Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead Skills used by Spectral Totems deal 50% less Damage"]={nil,"Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead Skills used by Spectral Totems deal 50% less Damage "} c["Totems' Action Speed cannot be modified to below Base Value"]={nil,"Totems' Action Speed cannot be modified to below Base Value "} @@ -12145,6 +12222,8 @@ c["Trigger Level 20 Glimpse of Eternity when Hit"]={{},nil} c["Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="IcicleBurst",triggered=true}}},nil} c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="IntimidatingCry",triggered=true}}},nil} c["Trigger Level 20 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningBolt",triggered=true}}},nil} +c["Trigger Level 20 Molten Burst on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredMoltenStrike",triggered=true}}},nil} +c["Trigger Level 20 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="RaiseSpiders",triggered=true}}},nil} c["Trigger Level 20 Shade Form when Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ShadeForm",triggered=true}}},nil} c["Trigger Level 20 Shield Shatter when you Block"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ShieldShatter",triggered=true}}},nil} c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiritBurst",triggered=true}}},nil} @@ -12153,6 +12232,8 @@ c["Trigger Level 20 Storm Cascade when you Attack"]={{[1]={flags=0,keywordFlags= c["Trigger Level 20 Summon Phantasm Skill when you Consume a corpse"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredSummonGhostOnKill",triggered=true}}},nil} c["Trigger Level 20 Summon Spectral Tiger on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonSpectralTiger",triggered=true}},[2]={[1]={skillId="SummonSpectralTiger",type="SkillId"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="triggerOnCrit",value=true}}}}},nil} c["Trigger Level 20 Summon Void Spawn every 4 seconds"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonVoidSpawn",triggered=true}}},nil} +c["Trigger Level 20 Surging Torrent when you cast an Elemental Spell"]={nil,"Trigger Level 20 Surging Torrent when you cast an Elemental Spell "} +c["Trigger Level 20 Surging Torrent when you cast an Elemental Spell Drop Brine Ground while moving, lasting 4 seconds"]={nil,"Trigger Level 20 Surging Torrent when you cast an Elemental Spell Drop Brine Ground while moving, lasting 4 seconds "} c["Trigger Level 20 Tawhoa's Chosen when you Attack with"]={nil,"Trigger Level 20 Tawhoa's Chosen when you Attack with "} c["Trigger Level 20 Tawhoa's Chosen when you Attack with a Non-Vaal Slam or Strike Skill near an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonMirageChieftain",triggered=true}}},nil} c["Trigger Level 20 Tears of Rot when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AnimosityUniqueSkill",triggered=true}}},nil} @@ -12206,11 +12287,13 @@ c["Trigger level 1 Summon Spirit of Maata Skill when you reach Low Life while a c["Trigger level 1 Summon Spirit of Rakiata Skill on Critical Strike against Marked Unique Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggerSummonedAncestorRakiata",triggered=true}},[2]={[1]={skillId="TriggerSummonedAncestorRakiata",type="SkillId"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="triggerOnCrit",value=true}}}}},nil} c["Trigger level 1 Summon Spirit of Tawhanuku Skill when Energy Shield Recharge starts while a Unique Enemy is in your Presence"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggerSummonedAncestorTawhanuku",triggered=true}}},nil} c["Trigger level 1 Summon Spirit of Utula Skill on taking a Savage Hit from a Unique Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggerSummonedAncestorUtula",triggered=true}}},nil} +c["Trigger level 1 Suspend in Time on Casting a Spell"]={nil,"Trigger level 1 Suspend in Time on Casting a Spell "} c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredConsecrate",triggered=true}}},nil} c["Trigger level 20 Suspend in Time on Casting a Spell"]={nil,"Trigger level 20 Suspend in Time on Casting a Spell "} c["Trigger level 20 Suspend in Time on Casting a Spell 80% increased Spell Damage"]={nil,"Trigger level 20 Suspend in Time on Casting a Spell 80% increased Spell Damage "} c["Trigger level 25 Ceaseless Flesh once every second"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="CeaselessFleshUnique",triggered=true}}},nil} c["Triggered Spells Poison on Hit"]={{[1]={[1]={skillType=41,type="SkillType"},flags=0,keywordFlags=131072,name="PoisonChance",type="BASE",value=100}},nil} +c["Triggers Drowning Domain when Allocated"]={nil,"Triggers Drowning Domain when Allocated "} c["Triggers Level 15 Manifest Dancing Dervishes on Rampage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="ManifestDancingDervishes",triggered=true}}},nil} c["Triggers Level 20 Blinding Aura when Equipped"]={{},nil} c["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ColdAegis",triggered=true}}},nil} @@ -12266,6 +12349,9 @@ c["Unattached Brands gain 20% increased Brand Attachment Range per"]={nil,"Unatt c["Unattached Brands gain 20% increased Brand Attachment Range per second, up to a maximum of 100%"]={nil,"Unattached Brands gain 20% increased Brand Attachment Range per second, up to a maximum of 100% "} c["Unholy Might"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} c["Unholy Might during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} +c["Unholy Might you grant also applies 20% Increased Effect of Withered"]={nil,"Unholy Might you grant also applies 20% Increased Effect of Withered "} +c["Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosPenetration",type="BASE",value=10}}," you grant also causes target's Damage to "} +c["Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance Unholy Might you grant also applies 20% Increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="ChaosPenetration",type="BASE",value=10}}," you grant also causes target's Damage to Unholy Might you grant also applies 20% Increased Effect of Withered "} c["Unsealed Spells gain 5% more Damage each time their effects Reoccur"]={{[1]={flags=0,keywordFlags=0,name="MaxSealDamage",type="MORE",value=5}},nil} c["Unwavering Stance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Unwavering Stance"}},nil} c["Used when Charges reach full"]={nil,"Used when Charges reach full "} @@ -12295,6 +12381,8 @@ c["Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-40}},nil} c["Versatile Combatant"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Versatile Combatant"}},nil} c["Vitality has no Reservation"]={{[1]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Vitality",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Voracious Flame"]={nil,"Voracious Flame "} +c["Voracious Flame Wicked Ward"]={nil,"Voracious Flame Wicked Ward "} c["Vulnerability can affect Hexproof Enemies"]={{[1]={[1]={skillId="Vulnerability",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} c["Vulnerability has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Vulnerability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Wand Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=8390656,keywordFlags=0,name="Damage",type="INC",value=12}},nil} @@ -12368,6 +12456,15 @@ c["While on Low Life, Life Flasks gain 5 Charges every 3 seconds"]={{[1]={[1]={t c["While on Low Life, Life Flasks gain 6 Charges every 3 seconds"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=2}},nil} c["While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Onslaught",type="FLAG",value=true}}}},nil} c["While you have Unbroken Ward, your next non-channelling Attack you Use yourself breaks your Ward to gain Added Cold Damage equal to 25% of Ward"]={{[1]={[1]={percent=25,stat="Ward",type="PercentStat"},[2]={neg=true,skillType=57,type="SkillType"},[3]={skillType=1,type="SkillType"},[4]={neg=true,type="Condition",var="WardNotBreak"},[5]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=1},[2]={[1]={percent=25,stat="Ward",type="PercentStat"},[2]={neg=true,skillType=57,type="SkillType"},[3]={skillType=1,type="SkillType"},[4]={neg=true,type="Condition",var="WardNotBreak"},[5]={type="Condition",var="UnbrokenWard"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=1}},nil} +c["While you have at least 3 Ghastly Eye Jewels socketed:"]={nil,"While you have at least 3 Ghastly Eye Jewels socketed: "} +c["While you have at least 3 Ghastly Eye Jewels socketed: Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosPenetration",type="BASE",value=10}},"While you have at least 3 Ghastly Eye Jewels socketed: you grant also causes target's Damage to "} +c["While you have at least 3 Ghastly Eye Jewels socketed: Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance Unholy Might you grant also applies 20% Increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="ChaosPenetration",type="BASE",value=10}},"While you have at least 3 Ghastly Eye Jewels socketed: you grant also causes target's Damage to Unholy Might you grant also applies 20% Increased Effect of Withered "} +c["While you have at least 3 Hypnotic Eye Jewels socketed:"]={nil,"While you have at least 3 Hypnotic Eye Jewels socketed: "} +c["While you have at least 3 Hypnotic Eye Jewels socketed: Arcane Surge also grants 20% of Damage taken Recouped as Mana to you"]={nil,"While you have at least 3 Hypnotic Eye Jewels socketed: Arcane Surge also grants 20% of Damage taken Recouped as Mana to you "} +c["While you have at least 3 Hypnotic Eye Jewels socketed: Arcane Surge also grants 20% of Damage taken Recouped as Mana to you Arcane Surge also grants 20% increased Mana Cost Efficiency to you"]={nil,"While you have at least 3 Hypnotic Eye Jewels socketed: Arcane Surge also grants 20% of Damage taken Recouped as Mana to you Arcane Surge also grants 20% increased Mana Cost Efficiency to you "} +c["While you have at least 3 Searching Eye Jewels socketed:"]={nil,"While you have at least 3 Searching Eye Jewels socketed: "} +c["While you have at least 3 Searching Eye Jewels socketed: Targets affected by Maim you inflict cannot deal Critical Strikes"]={nil,"While you have at least 3 Searching Eye Jewels socketed: Targets affected by Maim you inflict cannot deal Critical Strikes "} +c["While you have at least 3 Searching Eye Jewels socketed: Targets affected by Maim you inflict cannot deal Critical Strikes Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance"]={nil,"While you have at least 3 Searching Eye Jewels socketed: Targets affected by Maim you inflict cannot deal Critical Strikes Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance "} c["While your Passive Skill Tree connects to a class' starting location, you gain:"]={{},nil} c["Wicked Ward"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Wicked Ward"}},nil} c["Wind Dancer"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Wind Dancer"}},nil} @@ -12531,6 +12628,7 @@ c["You can have an additional Brand Attached to an Enemy"]={{[1]={flags=0,keywor c["You can have an additional Tincture active"]={{[1]={flags=0,keywordFlags=0,name="TinctureLimit",type="BASE",value=1}},nil} c["You can have two Offerings of different types"]={nil,"You can have two Offerings of different types "} c["You can have two Offerings of different types 35% chance to Avoid Elemental Ailments"]={nil,"You can have two Offerings of different types 35% chance to Avoid Elemental Ailments "} +c["You can hire a Mercenary permanently"]={nil,"You can hire a Mercenary permanently "} c["You can inflict +1 Hallowing Flame on Enemies"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:HallowingFlameMax",type="BASE",value=1}},nil} c["You can inflict Bleeding on an Enemy up to 8 times"]={{[1]={flags=0,keywordFlags=0,name="BleedStacksMax",type="OVERRIDE",value=8},[2]={flags=0,keywordFlags=0,name="Condition:HaveCrimsonDance",type="FLAG",value=true}},nil} c["You can inflict an additional Ignite on each Enemy"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="IgniteStacks",type="BASE",value=1}},nil} @@ -12587,7 +12685,7 @@ c["You do not inherently take less Damage for having Fortification"]={{[1]={flag c["You gain 3 Grasping Vines when you take a Critical Strike"]={{}," Grasping Vines when you take a Critical Strike "} c["You gain 3 Grasping Vines when you take a Critical Strike Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds"]={{}," Grasping Vines when you take a Critical Strike Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds "} c["You gain Added Cold Damage instead of Added Damage of other types if Dexterity exceeds both other Attributes"]={{[1]={[1]={type="Condition",var="DexSingleHighestAttribute"},flags=0,keywordFlags=0,name="AllAddedDamageAsCold",type="FLAG",value=true}},nil} -c["You gain Added Lighting Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes"]={{[1]={[1]={type="Condition",var="IntSingleHighestAttribute"},flags=0,keywordFlags=0,name="AllAddedDamageAsLightning",type="FLAG",value=true}},nil} +c["You gain Added Lightning Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes"]={{[1]={[1]={type="Condition",var="IntSingleHighestAttribute"},flags=0,keywordFlags=0,name="AllAddedDamageAsLightning",type="FLAG",value=true}},nil} c["You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={{[1]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=75},[2]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-25}},nil} c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second when Hit "} c["You gain Onslaught for 1 second per Endurance Charge when Hit You gain Onslaught for 2 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second when Hit You gain per Endurance Charge when Hit "} @@ -12598,6 +12696,7 @@ c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={{[1]={[1]={typ c["You gain Onslaught for 2 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Hit "} c["You gain Onslaught for 2 seconds per Endurance Charge when Hit You gain Onslaught for 5 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Hit You gain for 5 seconds per Endurance Charge when Hit "} c["You gain Onslaught for 20 seconds on using a Vaal Skill"]={{[1]={flags=0,keywordFlags=512,name="Condition:Onslaught",type="FLAG",value=true}}," on using a "} +c["You gain Onslaught for 20 seconds on using a Vaal Skill +2 to Level of all Vaal Skill Gems"]={{[1]={flags=0,keywordFlags=512,name="Condition:Onslaught",type="FLAG",value=true}}," on using a +2 to Level of all Vaal Skill Gems "} c["You gain Onslaught for 3 seconds on Culling Strike"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," on Culling Strike "} c["You gain Onslaught for 3 seconds on Culling Strike 100% chance to Avoid being Chilled during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," on Culling Strike 100% chance "} c["You gain Onslaught for 4 seconds on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} @@ -12768,6 +12867,23 @@ c["Your Maximum Resistances are 72%"]={{[1]={flags=0,keywordFlags=0,name="FireRe c["Your Maximum Resistances are 77%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=77},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=77},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=77},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=77}},nil} c["Your Maximum Resistances are 78%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=78},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=78},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=78},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=78}},nil} c["Your Maximum Resistances are 80%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=80},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=80},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=80},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=80}},nil} +c["Your Mercenary Taunts on Hit"]={nil,"Your Mercenary Taunts on Hit "} +c["Your Mercenary Taunts on Hit Your Mercenary has 50% increased effect of Non-Curse Auras from Skills"]={nil,"Your Mercenary Taunts on Hit Your Mercenary has 50% increased effect of Non-Curse Auras from Skills "} +c["Your Mercenary and their Minions deal 15% increased Damage"]={nil,"Your Mercenary and their Minions deal 15% increased Damage "} +c["Your Mercenary and their Minions deal 15% increased Damage 5% increased Light Radius"]={nil,"Your Mercenary and their Minions deal 15% increased Damage 5% increased Light Radius "} +c["Your Mercenary and their Minions deal 8% more Damage for"]={nil,"Your Mercenary and their Minions deal 8% more Damage for "} +c["Your Mercenary and their Minions deal 8% more Damage for each Unique item they have equipped"]={nil,"Your Mercenary and their Minions deal 8% more Damage for each Unique item they have equipped "} +c["Your Mercenary and their Minions have 15% increased maximum Life"]={nil,"Your Mercenary and their Minions have 15% increased maximum Life "} +c["Your Mercenary and their Minions have 15% increased maximum Life 5% increased Light Radius"]={nil,"Your Mercenary and their Minions have 15% increased maximum Life 5% increased Light Radius "} +c["Your Mercenary can equip Unique Amulets"]={nil,"Your Mercenary can equip Unique Amulets "} +c["Your Mercenary can equip Unique Belts"]={nil,"Your Mercenary can equip Unique Belts "} +c["Your Mercenary can equip Unique Boots"]={nil,"Your Mercenary can equip Unique Boots "} +c["Your Mercenary can equip Unique Gloves"]={nil,"Your Mercenary can equip Unique Gloves "} +c["Your Mercenary can equip Unique Helmets"]={nil,"Your Mercenary can equip Unique Helmets "} +c["Your Mercenary can equip Unique Rings"]={nil,"Your Mercenary can equip Unique Rings "} +c["Your Mercenary can equip Unique Weapons, Shields and Quivers"]={nil,"Your Mercenary can equip Unique Weapons, Shields and Quivers "} +c["Your Mercenary can equip Unique Weapons, Shields and Quivers Your Mercenary and their Minions deal 8% more Damage for\neach Unique item they have equipped"]={nil,"Your Mercenary can equip Unique Weapons, Shields and Quivers Your Mercenary and their Minions deal 8% more Damage for\neach Unique item they have equipped "} +c["Your Mercenary has 50% increased effect of Non-Curse Auras from Skills"]={nil,"Your Mercenary has 50% increased effect of Non-Curse Auras from Skills "} c["Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="ReplicaSiegebreakerBurningGround"}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Multiplier:SiegebreakerBurningGroundPercent",type="BASE",value=20}}}},nil} c["Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="SiegebreakerCausticGround"}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Multiplier:SiegebreakerCausticGroundPercent",type="BASE",value=20}}}},nil} c["Your Minions use your Flasks when summoned"]={{[1]={flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil} @@ -12808,6 +12924,7 @@ c["and nearby Allies Regenerate 400 Life per second"]={{[1]={[1]={type="Conditio c["be inflicted on a nearby Minion instead"]={nil,"be inflicted on a nearby Minion instead "} c["be inflicted on a nearby Minion instead Limited to 1 Runegraft of Loyalty"]={nil,"be inflicted on a nearby Minion instead Limited to 1 Runegraft of Loyalty "} c["each Herald affecting you, up to a maximum of 40%"]={nil,"each Herald affecting you, up to a maximum of 40% "} +c["each Unique item they have equipped"]={nil,"each Unique item they have equipped "} c["each remaining Chain, up to a maximum of 100%"]={nil,"each remaining Chain, up to a maximum of 100% "} c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "} c["grant 40% increased Flask Charges"]={nil,"grant 40% increased Flask Charges "} @@ -12817,10 +12934,12 @@ c["has a 20% increased angle With at least 40 Strength in Radius, Ground Slam"]= c["has a 35% increased angle"]={nil,"has a 35% increased angle "} c["has a 35% increased angle With at least 40 Strength in Radius, Ground Slam"]={nil,"has a 35% increased angle With at least 40 Strength in Radius, Ground Slam "} c["has a 50% increased angle"]={nil,"has a 50% increased angle "} +c["has a Red and Green Socket"]={nil,"has a Red and Green Socket "} c["have fewer than 5 Poisons on you"]={nil,"fewer than 5 Poisons on you "} c["more than once every 0.3 seconds"]={nil,"more than once every 0.3 seconds "} c["more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance"]={nil,"more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance "} c["more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance"]={nil,"more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance "} +c["of your Link Skill Buffs on your Mercenary"]={nil,"of your Link Skill Buffs on your Mercenary "} c["of your Traps are Triggered by an Enemy"]={nil,"of your Traps are Triggered by an Enemy "} c["of your Traps are Triggered by an Enemy Skills which throw Traps Cost Life instead of Mana"]={nil,"of your Traps are Triggered by an Enemy Skills which throw Traps Cost Life instead of Mana "} c["per Tribe for which you have an allocated Tattoo"]={nil,"per Tribe for which you have an allocated Tattoo "} @@ -12828,6 +12947,8 @@ c["per Tribe for which you have an allocated Tattoo Limited to 1 Ancestral Tatto c["removed by Filling Unreserved Life"]={nil,"removed by Filling Unreserved Life "} c["removed by Filling Unreserved Life 10% chance to gain Onslaught for 4 Seconds when Leech is"]={nil,"removed by Filling Unreserved Life 10% chance to gain Onslaught for 4 Seconds when Leech is "} c["second, up to a maximum of 100%"]={nil,"second, up to a maximum of 100% "} +c["taken from your Mercenary's Life before you"]={nil,"taken from your Mercenary's Life before you "} +c["taken from your Mercenary's Life before you If your Mercenary's Life is lower than your own, 40% of Damage they take is Recouped as Life"]={nil,"taken from your Mercenary's Life before you If your Mercenary's Life is lower than your own, 40% of Damage they take is Recouped as Life "} c["to grant an Endurance Charge when you Stun an Enemy"]={nil,"to grant an Endurance Charge when you Stun an Enemy "} c["to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam"]={nil,"to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam "} c["to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance"]={nil,"to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance "} diff --git a/src/Export/spec.lua b/src/Export/spec.lua index bbd00ae1797..8122a3c4d36 100644 --- a/src/Export/spec.lua +++ b/src/Export/spec.lua @@ -11085,6 +11085,13 @@ return { refTo="PassiveSkills", type="Key", width=150 + }, + [14]={ + list=true, + name="BlockingPassive", + refTo="PassiveSkills", + type="Key", + width=280 } }, passiveskilloverridetypes={ diff --git a/src/GameVersions.lua b/src/GameVersions.lua index a161531d86c..0c371be43b5 100644 --- a/src/GameVersions.lua +++ b/src/GameVersions.lua @@ -9,7 +9,7 @@ liveTargetVersion = "3_0" ---@type string[] treeVersionList = { "2_6", "3_6", "3_7", "3_8", "3_9", "3_10", "3_11", "3_12", "3_13", "3_14", "3_15", "3_16", "3_17", "3_18", "3_19", "3_20", "3_21", "3_22_ruthless", "3_22", "3_23_ruthless", "3_23", "3_24_ruthless", "3_24", "3_25_ruthless", "3_25_ruthless_alternate", "3_25_alternate", "3_25", - "3_26_ruthless", "3_26_ruthless_alternate", "3_26_alternate", "3_26", "3_27_ruthless", "3_27_ruthless_alternate", "3_27_alternate", "3_27", "3_28_ruthless", "3_28_ruthless_alternate", "3_28_alternate", "3_28" } + "3_26_ruthless", "3_26_ruthless_alternate", "3_26_alternate", "3_26", "3_27_ruthless", "3_27_ruthless_alternate", "3_27_alternate", "3_27", "3_28_ruthless", "3_28_ruthless_alternate", "3_28_alternate", "3_28", "3_29_ruthless", "3_29" } --- Always points to the latest skill tree version. latestTreeVersion = treeVersionList[#treeVersionList] ---Tree version where multiple skill trees per build were introduced to PoBC. @@ -212,10 +212,28 @@ treeVersions = { num = 3.28, url = "https://www.pathofexile.com/passive-skill-tree/3.28.0/", }, + ["3_29_ruthless"] = { + display = "3.29 (ruthless)", + num = 3.29, + url = "https://www.pathofexile.com/passive-skill-tree/ruthless/", + }, + ["3_29"] = { + display = "3.29", + num = 3.29, + url = "https://www.pathofexile.com/passive-skill-tree/3.29.0/", + }, } ---Mapping PoEPlanner.com version when importing trees from there (https://cdn.poeplanner.com/json/versions.json) poePlannerVersions = { + [51] = "3_29", + [50] = "3_29_ruthless", + -- [49] = "3_29_alternate", + -- [48] = "3_29_ruthless_alternate", + [47] = "3_28", + [46] = "3_28_ruthless", + [45] = "3_28_alternate", + [44] = "3_28_ruthless_alternate", [43] = "3_27", [42] = "3_27_ruthless", [37] = "3_26", diff --git a/src/TreeData/3_29/ascendancy-3.webp b/src/TreeData/3_29/ascendancy-3.webp new file mode 100644 index 00000000000..16ad6d473a5 Binary files /dev/null and b/src/TreeData/3_29/ascendancy-3.webp differ diff --git a/src/TreeData/3_29/background-3.png b/src/TreeData/3_29/background-3.png new file mode 100644 index 00000000000..85f1c4390a4 Binary files /dev/null and b/src/TreeData/3_29/background-3.png differ diff --git a/src/TreeData/3_29/bloodline-3.webp b/src/TreeData/3_29/bloodline-3.webp new file mode 100644 index 00000000000..98a26f543c6 Binary files /dev/null and b/src/TreeData/3_29/bloodline-3.webp differ diff --git a/src/TreeData/3_29/frame-3.png b/src/TreeData/3_29/frame-3.png new file mode 100644 index 00000000000..c53d73bfe4c Binary files /dev/null and b/src/TreeData/3_29/frame-3.png differ diff --git a/src/TreeData/3_29/group-background-3.png b/src/TreeData/3_29/group-background-3.png new file mode 100644 index 00000000000..a7d118b4c29 Binary files /dev/null and b/src/TreeData/3_29/group-background-3.png differ diff --git a/src/TreeData/3_29/jewel-3.png b/src/TreeData/3_29/jewel-3.png new file mode 100644 index 00000000000..1f21a0f3763 Binary files /dev/null and b/src/TreeData/3_29/jewel-3.png differ diff --git a/src/TreeData/3_29/jewel-radius.png b/src/TreeData/3_29/jewel-radius.png new file mode 100644 index 00000000000..a4864aa10a3 Binary files /dev/null and b/src/TreeData/3_29/jewel-radius.png differ diff --git a/src/TreeData/3_29/line-3.png b/src/TreeData/3_29/line-3.png new file mode 100644 index 00000000000..d559eb48b9c Binary files /dev/null and b/src/TreeData/3_29/line-3.png differ diff --git a/src/TreeData/3_29/mastery-3.png b/src/TreeData/3_29/mastery-3.png new file mode 100644 index 00000000000..e5374d8ab04 Binary files /dev/null and b/src/TreeData/3_29/mastery-3.png differ diff --git a/src/TreeData/3_29/mastery-active-effect-3.png b/src/TreeData/3_29/mastery-active-effect-3.png new file mode 100644 index 00000000000..e70bda11049 Binary files /dev/null and b/src/TreeData/3_29/mastery-active-effect-3.png differ diff --git a/src/TreeData/3_29/mastery-active-selected-3.png b/src/TreeData/3_29/mastery-active-selected-3.png new file mode 100644 index 00000000000..e28c7100cdb Binary files /dev/null and b/src/TreeData/3_29/mastery-active-selected-3.png differ diff --git a/src/TreeData/3_29/mastery-connected-3.png b/src/TreeData/3_29/mastery-connected-3.png new file mode 100644 index 00000000000..411d128fc72 Binary files /dev/null and b/src/TreeData/3_29/mastery-connected-3.png differ diff --git a/src/TreeData/3_29/mastery-disabled-3.png b/src/TreeData/3_29/mastery-disabled-3.png new file mode 100644 index 00000000000..ff23af1dfc8 Binary files /dev/null and b/src/TreeData/3_29/mastery-disabled-3.png differ diff --git a/src/TreeData/3_29/skills-3.jpg b/src/TreeData/3_29/skills-3.jpg new file mode 100644 index 00000000000..fb9c3fcbfda Binary files /dev/null and b/src/TreeData/3_29/skills-3.jpg differ diff --git a/src/TreeData/3_29/skills-disabled-3.jpg b/src/TreeData/3_29/skills-disabled-3.jpg new file mode 100644 index 00000000000..a9e8e5ff6be Binary files /dev/null and b/src/TreeData/3_29/skills-disabled-3.jpg differ diff --git a/src/TreeData/3_29/sprites.lua b/src/TreeData/3_29/sprites.lua new file mode 100644 index 00000000000..2d772206c47 --- /dev/null +++ b/src/TreeData/3_29/sprites.lua @@ -0,0 +1,19732 @@ +return { + ["extraImages"]= { + [1]= { + ["x"]= -4560.69, + ["y"]= 292.425, + ["image"]= "Art/2DArt/BaseClassIllustrations/Str.png" + }, + [2]= { + ["x"]= 1994.17, + ["y"]= 387.525, + ["image"]= "Art/2DArt/BaseClassIllustrations/Dex.png" + }, + [3]= { + ["x"]= -1535.86, + ["y"]= -3848.79, + ["image"]= "Art/2DArt/BaseClassIllustrations/Int.png" + }, + [4]= { + ["x"]= -1956.43, + ["y"]= 1756.39, + ["image"]= "Art/2DArt/BaseClassIllustrations/StrDex.png" + }, + [5]= { + ["x"]= -3755.23, + ["y"]= -3210.21, + ["image"]= "Art/2DArt/BaseClassIllustrations/StrInt.png" + }, + [6]= { + ["x"]= 1704.07, + ["y"]= -3799.71, + ["image"]= "Art/2DArt/BaseClassIllustrations/DexInt.png" + } + }, + ["sprites"]= { + ["background"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/background-3.png?f8ce4f31", + ["w"]= 98, + ["h"]= 98, + ["coords"]= { + ["Background2"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 98, + ["h"]= 98 + } + } + }, + ["normalActive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?1540b3b6", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/2handedspeed.png"]= { + ["x"]= 26, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.png"]= { + ["x"]= 52, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.png"]= { + ["x"]= 78, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.png"]= { + ["x"]= 104, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.png"]= { + ["x"]= 130, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png"]= { + ["x"]= 156, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AhnsMightNode.png"]= { + ["x"]= 182, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AilmentDamageCritMultiplier.png"]= { + ["x"]= 208, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AldihNode.png"]= { + ["x"]= 234, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ApostateNode.png"]= { + ["x"]= 260, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArakaalisFangNode.png"]= { + ["x"]= 286, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNode.png"]= { + ["x"]= 312, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png"]= { + ["x"]= 338, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png"]= { + ["x"]= 364, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png"]= { + ["x"]= 390, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNode.png"]= { + ["x"]= 416, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 442, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 468, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 494, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 520, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 546, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 572, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 598, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 624, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 650, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 676, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 702, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 728, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 754, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 780, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 806, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 832, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png"]= { + ["x"]= 858, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 884, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 910, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 936, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png"]= { + ["x"]= 0, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNotable1.png"]= { + ["x"]= 26, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png"]= { + ["x"]= 52, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargedex.png"]= { + ["x"]= 78, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargeint.png"]= { + ["x"]= 104, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargestr.png"]= { + ["x"]= 130, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 156, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 182, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["x"]= 208, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["x"]= 234, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["x"]= 260, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["x"]= 286, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["x"]= 312, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 338, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["x"]= 364, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["x"]= 390, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["x"]= 416, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["x"]= 442, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["x"]= 468, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["x"]= 494, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["x"]= 520, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["x"]= 546, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["x"]= 572, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["x"]= 598, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["x"]= 624, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["x"]= 650, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["x"]= 676, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["x"]= 702, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["x"]= 728, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["x"]= 754, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["x"]= 780, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["x"]= 806, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["x"]= 832, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["x"]= 858, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["x"]= 884, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["x"]= 910, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["x"]= 936, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["x"]= 0, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["x"]= 26, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["x"]= 52, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["x"]= 78, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["x"]= 104, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 130, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["x"]= 156, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 182, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["x"]= 208, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 234, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["x"]= 260, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 286, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["x"]= 312, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["x"]= 338, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["x"]= 364, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["x"]= 390, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["x"]= 416, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["x"]= 442, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["x"]= 468, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["x"]= 494, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["x"]= 520, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["x"]= 546, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 572, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["x"]= 598, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["x"]= 624, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["x"]= 650, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["x"]= 676, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["x"]= 702, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["x"]= 728, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["x"]= 754, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["x"]= 780, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["x"]= 806, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["x"]= 832, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["x"]= 858, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png"]= { + ["x"]= 884, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["x"]= 0, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["x"]= 26, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["x"]= 52, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 78, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 104, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["x"]= 130, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DawnbreakerNode.png"]= { + ["x"]= 156, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["x"]= 182, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["x"]= 208, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 234, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 260, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["x"]= 286, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["x"]= 312, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["x"]= 338, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["x"]= 364, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["x"]= 390, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["x"]= 416, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["x"]= 442, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["x"]= 468, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 494, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["x"]= 520, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["x"]= 546, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElvoreNode.png"]= { + ["x"]= 572, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["x"]= 598, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["x"]= 624, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["x"]= 650, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["x"]= 676, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["x"]= 702, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FemuroftheSaintsNode.png"]= { + ["x"]= 728, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FidelitasSpikeNode.png"]= { + ["x"]= 754, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["x"]= 780, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["x"]= 806, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["x"]= 832, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["x"]= 858, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["x"]= 884, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["x"]= 910, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["x"]= 936, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["x"]= 0, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["x"]= 26, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GloomfangNode.png"]= { + ["x"]= 52, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["x"]= 78, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["x"]= 104, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["x"]= 130, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["x"]= 156, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["x"]= 182, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 208, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["x"]= 234, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["x"]= 260, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 286, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["x"]= 312, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 338, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 364, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["x"]= 390, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["x"]= 416, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["x"]= 442, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["x"]= 468, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["x"]= 494, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["x"]= 520, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["x"]= 546, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["x"]= 572, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["x"]= 598, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["x"]= 624, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["x"]= 650, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["x"]= 676, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["x"]= 702, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 728, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["x"]= 754, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 780, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["x"]= 806, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["x"]= 832, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["x"]= 858, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["x"]= 884, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["x"]= 910, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["x"]= 936, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["x"]= 0, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 26, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomBeltNode.png"]= { + ["x"]= 52, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomsRootsNode.png"]= { + ["x"]= 78, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 104, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["x"]= 130, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 156, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["x"]= 182, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["x"]= 208, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["x"]= 234, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["x"]= 260, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["x"]= 286, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["x"]= 312, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png"]= { + ["x"]= 338, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable9.png"]= { + ["x"]= 364, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable10.png"]= { + ["x"]= 390, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable11.png"]= { + ["x"]= 416, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable12.png"]= { + ["x"]= 442, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable13.png"]= { + ["x"]= 468, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable14.png"]= { + ["x"]= 494, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["x"]= 520, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["x"]= 546, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["x"]= 572, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["x"]= 598, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["x"]= 624, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["x"]= 650, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["x"]= 676, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeldingoftheFleshNode.png"]= { + ["x"]= 702, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 728, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["x"]= 754, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["x"]= 780, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["x"]= 806, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["x"]= 832, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["x"]= 858, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["x"]= 884, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["x"]= 910, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["x"]= 936, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["x"]= 0, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["x"]= 26, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["x"]= 52, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["x"]= 78, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["x"]= 104, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["x"]= 130, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["x"]= 156, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["x"]= 182, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["x"]= 208, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["x"]= 234, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["x"]= 260, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 286, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["x"]= 312, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["x"]= 338, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["x"]= 364, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["x"]= 390, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["x"]= 416, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["x"]= 442, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["x"]= 468, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["x"]= 494, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 520, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["x"]= 546, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["x"]= 572, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["x"]= 598, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["x"]= 624, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["x"]= 650, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["x"]= 676, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["x"]= 702, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["x"]= 728, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 754, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["x"]= 780, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PolaricDevastationNode.png"]= { + ["x"]= 806, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PresenceofChayulaNode.png"]= { + ["x"]= 832, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["x"]= 858, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["x"]= 884, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["x"]= 910, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["x"]= 936, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["x"]= 0, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["x"]= 26, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["x"]= 52, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["x"]= 78, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["x"]= 104, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["x"]= 130, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["x"]= 156, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["x"]= 182, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["x"]= 208, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["x"]= 234, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["x"]= 260, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RiriTeNgamahuNode.png"]= { + ["x"]= 286, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 312, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["x"]= 338, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["x"]= 364, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SacredChaliceNode.png"]= { + ["x"]= 390, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SandsofTimeNode.png"]= { + ["x"]= 416, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["x"]= 442, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ScreamsoftheDesiccatedNode.png"]= { + ["x"]= 468, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["x"]= 494, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShatteredDivinityNode.png"]= { + ["x"]= 520, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 546, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["x"]= 572, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShimmeronNode.png"]= { + ["x"]= 598, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["x"]= 624, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["x"]= 650, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["x"]= 676, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["x"]= 702, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["x"]= 728, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["x"]= 754, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["x"]= 780, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["x"]= 806, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["x"]= 832, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["x"]= 858, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["x"]= 884, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["x"]= 910, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["x"]= 936, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["x"]= 0, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TheBlackCaneNode.png"]= { + ["x"]= 26, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["x"]= 52, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["x"]= 78, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["x"]= 104, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["x"]= 130, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["x"]= 156, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["x"]= 182, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["x"]= 208, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["x"]= 234, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VaalCaressNode.png"]= { + ["x"]= 260, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 286, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["x"]= 312, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 338, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["x"]= 364, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["x"]= 390, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["x"]= 416, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["x"]= 442, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["x"]= 468, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 494, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["x"]= 520, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["x"]= 546, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["x"]= 572, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 598, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/XirgilsCrankNode.png"]= { + ["x"]= 624, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["x"]= 650, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["x"]= 676, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 702, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["x"]= 728, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 754, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["x"]= 780, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["x"]= 806, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["x"]= 832, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["x"]= 858, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 884, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["x"]= 910, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["x"]= 936, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["x"]= 0, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["x"]= 26, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["x"]= 52, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["x"]= 78, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["x"]= 104, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["x"]= 130, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["x"]= 156, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["x"]= 182, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["x"]= 208, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["x"]= 234, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 260, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["x"]= 286, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 312, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 338, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["x"]= 364, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 390, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 416, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 442, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["x"]= 468, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["x"]= 494, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["x"]= 520, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["x"]= 546, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["x"]= 572, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["x"]= 598, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["x"]= 624, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["x"]= 650, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["x"]= 676, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["x"]= 702, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["x"]= 728, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["x"]= 754, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 780, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["x"]= 806, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["x"]= 832, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["x"]= 858, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["x"]= 884, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["x"]= 910, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["x"]= 936, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["x"]= 0, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["x"]= 26, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["x"]= 52, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["x"]= 78, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["x"]= 104, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["x"]= 130, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["x"]= 156, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["x"]= 182, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["x"]= 208, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["x"]= 234, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["x"]= 260, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 286, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 312, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["x"]= 338, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["x"]= 364, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["x"]= 390, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["x"]= 416, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["x"]= 442, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["x"]= 468, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 494, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["x"]= 520, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["x"]= 546, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 572, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["x"]= 598, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 624, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["x"]= 650, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 676, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["x"]= 702, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["x"]= 728, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["x"]= 754, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 780, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["x"]= 806, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["x"]= 832, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 858, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["x"]= 884, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["x"]= 910, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["x"]= 936, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["x"]= 0, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["x"]= 26, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 52, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["x"]= 78, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["x"]= 104, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 130, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["x"]= 156, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["x"]= 182, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["x"]= 208, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["x"]= 234, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["x"]= 260, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 286, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 312, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["x"]= 338, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 364, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["x"]= 390, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["x"]= 416, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["x"]= 442, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["x"]= 468, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["x"]= 494, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["x"]= 520, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["x"]= 546, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["x"]= 572, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["x"]= 598, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 624, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["x"]= 650, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["x"]= 676, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["x"]= 702, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["x"]= 728, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["x"]= 754, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 780, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["x"]= 806, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["x"]= 832, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["x"]= 858, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["x"]= 884, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["x"]= 910, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 936, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["x"]= 962, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["x"]= 0, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { + ["x"]= 26, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { + ["x"]= 52, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { + ["x"]= 78, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { + ["x"]= 104, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { + ["x"]= 130, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { + ["x"]= 156, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { + ["x"]= 182, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { + ["x"]= 208, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { + ["x"]= 234, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { + ["x"]= 260, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 286, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 312, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 338, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { + ["x"]= 364, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { + ["x"]= 390, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { + ["x"]= 416, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + } + } + }, + ["notableActive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?1540b3b6", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampAbyssalFiends.png"]= { + ["x"]= 37, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.png"]= { + ["x"]= 74, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampStygianSpires.png"]= { + ["x"]= 111, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar1.png"]= { + ["x"]= 148, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar2.png"]= { + ["x"]= 185, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Additionalprojectile.png"]= { + ["x"]= 222, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AdmonisherNotable.png"]= { + ["x"]= 259, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Annihilation.png"]= { + ["x"]= 296, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AntiStunNotable.png"]= { + ["x"]= 333, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneChemistry.png"]= { + ["x"]= 370, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneReaping.png"]= { + ["x"]= 407, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNotable.png"]= { + ["x"]= 444, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNotable.png"]= { + ["x"]= 481, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourGuardsNotable.png"]= { + ["x"]= 555, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNotable.png"]= { + ["x"]= 592, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourandEvasion2.png"]= { + ["x"]= 629, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png"]= { + ["x"]= 666, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Dex.png"]= { + ["x"]= 703, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png"]= { + ["x"]= 740, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Int.png"]= { + ["x"]= 777, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png"]= { + ["x"]= 814, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Str.png"]= { + ["x"]= 851, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png"]= { + ["x"]= 888, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png"]= { + ["x"]= 925, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectoftheEagle.png"]= { + ["x"]= 0, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png"]= { + ["x"]= 37, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 74, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["x"]= 111, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["x"]= 148, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["x"]= 185, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["x"]= 222, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["x"]= 259, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["x"]= 296, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 333, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["x"]= 370, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 407, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["x"]= 444, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["x"]= 481, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["x"]= 518, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["x"]= 555, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["x"]= 592, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["x"]= 629, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["x"]= 666, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["x"]= 703, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["x"]= 740, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["x"]= 777, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["x"]= 814, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["x"]= 851, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["x"]= 888, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["x"]= 925, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["x"]= 0, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["x"]= 37, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 74, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["x"]= 111, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["x"]= 148, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["x"]= 185, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["x"]= 222, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["x"]= 259, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["x"]= 296, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["x"]= 333, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["x"]= 370, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["x"]= 407, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["x"]= 444, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["x"]= 481, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["x"]= 518, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["x"]= 555, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["x"]= 592, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["x"]= 629, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["x"]= 666, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["x"]= 703, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["x"]= 740, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["x"]= 814, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["x"]= 851, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 0, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 74, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["x"]= 111, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["x"]= 148, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["x"]= 185, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["x"]= 222, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 259, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 296, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["x"]= 333, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["x"]= 370, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["x"]= 407, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["x"]= 444, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["x"]= 481, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrineRot.png"]= { + ["x"]= 518, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["x"]= 555, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["x"]= 592, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["x"]= 629, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["x"]= 666, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["x"]= 703, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["x"]= 740, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["x"]= 777, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["x"]= 814, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["x"]= 851, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["x"]= 888, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["x"]= 925, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["x"]= 0, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["x"]= 37, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["x"]= 74, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 111, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["x"]= 148, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["x"]= 222, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["x"]= 259, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["x"]= 296, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["x"]= 333, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["x"]= 370, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["x"]= 407, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["x"]= 444, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["x"]= 481, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["x"]= 518, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["x"]= 555, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["x"]= 592, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["x"]= 629, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["x"]= 666, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["x"]= 703, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["x"]= 740, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["x"]= 777, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["x"]= 814, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["x"]= 851, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["x"]= 888, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["x"]= 925, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["x"]= 0, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["x"]= 37, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["x"]= 74, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 111, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["x"]= 148, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth2.png"]= { + ["x"]= 185, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["x"]= 222, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["x"]= 259, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["x"]= 296, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["x"]= 333, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["x"]= 370, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["x"]= 407, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["x"]= 444, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["x"]= 481, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["x"]= 518, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["x"]= 555, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["x"]= 592, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["x"]= 629, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["x"]= 666, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["x"]= 703, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["x"]= 777, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["x"]= 814, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["x"]= 851, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 888, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 925, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["x"]= 0, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["x"]= 37, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["x"]= 74, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["x"]= 111, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 148, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["x"]= 185, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["x"]= 222, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["x"]= 259, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["x"]= 296, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["x"]= 333, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["x"]= 370, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["x"]= 407, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["x"]= 444, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["x"]= 481, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["x"]= 518, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["x"]= 555, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["x"]= 592, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["x"]= 629, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["x"]= 666, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["x"]= 703, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["x"]= 777, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["x"]= 814, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["x"]= 851, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["x"]= 888, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["x"]= 925, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["x"]= 0, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["x"]= 37, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["x"]= 74, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["x"]= 111, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 148, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["x"]= 185, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["x"]= 222, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["x"]= 259, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["x"]= 296, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["x"]= 333, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["x"]= 370, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["x"]= 407, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["x"]= 444, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["x"]= 481, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["x"]= 518, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["x"]= 555, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["x"]= 592, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["x"]= 629, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["x"]= 666, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["x"]= 703, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["x"]= 740, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["x"]= 777, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["x"]= 814, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["x"]= 851, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["x"]= 888, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["x"]= 925, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["x"]= 0, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["x"]= 37, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["x"]= 74, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["x"]= 111, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 148, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["x"]= 185, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["x"]= 222, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["x"]= 259, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["x"]= 296, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["x"]= 333, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["x"]= 370, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["x"]= 407, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 444, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["x"]= 481, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["x"]= 518, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["x"]= 555, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["x"]= 592, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["x"]= 629, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["x"]= 666, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["x"]= 703, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["x"]= 740, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 814, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 851, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["x"]= 888, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["x"]= 925, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["x"]= 0, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["x"]= 37, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["x"]= 74, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["x"]= 111, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 148, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["x"]= 185, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["x"]= 222, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["x"]= 259, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["x"]= 296, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["x"]= 333, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["x"]= 370, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["x"]= 407, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["x"]= 444, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["x"]= 481, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["x"]= 518, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["x"]= 555, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["x"]= 592, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["x"]= 629, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["x"]= 666, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["x"]= 703, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["x"]= 740, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["x"]= 777, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["x"]= 814, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["x"]= 851, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["x"]= 925, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["x"]= 0, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["x"]= 37, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 74, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 111, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 148, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["x"]= 222, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["x"]= 259, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["x"]= 296, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/CriticalStrikeChance.png"]= { + ["x"]= 333, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["x"]= 370, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["x"]= 407, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["x"]= 444, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["x"]= 481, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["x"]= 518, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["x"]= 555, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["x"]= 592, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["x"]= 629, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["x"]= 666, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 703, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["x"]= 740, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["x"]= 777, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["x"]= 814, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["x"]= 851, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["x"]= 888, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["x"]= 925, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 0, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["x"]= 37, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["x"]= 74, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["x"]= 111, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["x"]= 148, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 185, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["x"]= 222, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["x"]= 259, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["x"]= 296, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["x"]= 333, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["x"]= 370, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["x"]= 407, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["x"]= 444, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["x"]= 481, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["x"]= 518, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["x"]= 555, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable1.png"]= { + ["x"]= 592, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable2.png"]= { + ["x"]= 629, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable3.png"]= { + ["x"]= 666, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable4.png"]= { + ["x"]= 703, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable5.png"]= { + ["x"]= 740, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable6.png"]= { + ["x"]= 777, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["x"]= 814, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["x"]= 851, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["x"]= 888, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["x"]= 925, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["x"]= 0, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["x"]= 37, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["x"]= 74, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["x"]= 111, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["x"]= 148, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["x"]= 185, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["x"]= 222, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["x"]= 259, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["x"]= 296, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["x"]= 333, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["x"]= 370, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 407, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["x"]= 444, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["x"]= 481, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["x"]= 518, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["x"]= 555, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["x"]= 592, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 629, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["x"]= 666, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["x"]= 703, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["x"]= 740, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["x"]= 777, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["x"]= 814, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["x"]= 851, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["x"]= 888, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["x"]= 925, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["x"]= 0, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["x"]= 37, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["x"]= 74, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["x"]= 111, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["x"]= 148, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["x"]= 185, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["x"]= 222, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["x"]= 259, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["x"]= 296, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["x"]= 333, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["x"]= 370, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 407, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["x"]= 444, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["x"]= 481, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["x"]= 518, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 555, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["x"]= 592, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["x"]= 629, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["x"]= 666, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["x"]= 703, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["x"]= 740, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["x"]= 777, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["x"]= 814, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["x"]= 851, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 888, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["x"]= 925, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["x"]= 0, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["x"]= 37, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["x"]= 74, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["x"]= 111, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["x"]= 148, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["x"]= 222, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["x"]= 259, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["x"]= 296, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["x"]= 333, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["x"]= 370, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["x"]= 407, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 444, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["x"]= 481, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["x"]= 555, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["x"]= 592, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["x"]= 629, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["x"]= 666, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["x"]= 703, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["x"]= 740, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["x"]= 777, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["x"]= 814, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["x"]= 851, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["x"]= 888, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["x"]= 925, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["x"]= 0, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["x"]= 37, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["x"]= 74, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["x"]= 111, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["x"]= 148, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["x"]= 185, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["x"]= 222, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["x"]= 259, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["x"]= 296, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["x"]= 333, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["x"]= 370, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["x"]= 407, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 444, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["x"]= 481, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["x"]= 518, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["x"]= 555, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["x"]= 592, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["x"]= 629, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["x"]= 666, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["x"]= 703, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["x"]= 740, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["x"]= 777, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["x"]= 814, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["x"]= 851, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["x"]= 888, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["x"]= 925, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["x"]= 0, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["x"]= 37, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["x"]= 74, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["x"]= 111, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["x"]= 148, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["x"]= 185, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["x"]= 222, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["x"]= 259, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["x"]= 296, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["x"]= 333, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["x"]= 370, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 407, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 444, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["x"]= 481, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["x"]= 518, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["x"]= 555, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["x"]= 592, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["x"]= 629, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["x"]= 666, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["x"]= 703, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["x"]= 740, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["x"]= 777, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["x"]= 814, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["x"]= 851, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["x"]= 888, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["x"]= 925, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["x"]= 0, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["x"]= 37, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["x"]= 74, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["x"]= 111, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["x"]= 148, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["x"]= 185, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["x"]= 222, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["x"]= 259, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["x"]= 296, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["x"]= 333, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["x"]= 370, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["x"]= 407, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 444, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["x"]= 481, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["x"]= 518, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["x"]= 555, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["x"]= 592, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["x"]= 629, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["x"]= 666, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["x"]= 703, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["x"]= 740, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["x"]= 777, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TideCaller.png"]= { + ["x"]= 814, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["x"]= 851, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["x"]= 888, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["x"]= 925, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["x"]= 0, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["x"]= 74, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["x"]= 111, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["x"]= 148, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["x"]= 185, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["x"]= 222, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["x"]= 259, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["x"]= 296, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["x"]= 333, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["x"]= 370, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["x"]= 407, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["x"]= 444, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 481, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["x"]= 518, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["x"]= 555, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["x"]= 592, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["x"]= 629, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["x"]= 666, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["x"]= 703, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["x"]= 740, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["x"]= 777, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["x"]= 814, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["x"]= 851, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["x"]= 888, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["x"]= 925, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 0, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["x"]= 37, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["x"]= 74, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["x"]= 111, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 148, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["x"]= 222, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["x"]= 259, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["x"]= 296, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["x"]= 333, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["x"]= 370, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["x"]= 407, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["x"]= 444, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 481, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["x"]= 518, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["x"]= 555, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["x"]= 592, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 629, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["x"]= 666, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["x"]= 703, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["x"]= 740, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["x"]= 777, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 814, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["x"]= 851, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["x"]= 888, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["x"]= 925, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["x"]= 0, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["x"]= 37, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["x"]= 74, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 111, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["x"]= 148, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["x"]= 185, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["x"]= 222, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 259, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["x"]= 296, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["x"]= 333, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["x"]= 370, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["x"]= 407, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["x"]= 444, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 481, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 518, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["x"]= 555, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["x"]= 592, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["x"]= 629, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["x"]= 666, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 703, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["x"]= 740, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 777, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 814, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 851, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["x"]= 888, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["x"]= 925, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 0, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["x"]= 37, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["x"]= 74, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["x"]= 111, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["x"]= 148, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["x"]= 185, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["x"]= 222, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["x"]= 259, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["x"]= 296, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["x"]= 333, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["x"]= 370, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["x"]= 407, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["x"]= 444, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 481, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 518, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["x"]= 555, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["x"]= 592, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["x"]= 629, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["x"]= 666, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["x"]= 703, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 740, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["x"]= 777, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["x"]= 814, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["x"]= 851, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["x"]= 888, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["x"]= 925, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["x"]= 0, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["x"]= 37, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["x"]= 74, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["x"]= 111, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["x"]= 148, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["x"]= 185, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["x"]= 222, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["x"]= 259, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["x"]= 296, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["x"]= 333, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["x"]= 370, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["x"]= 407, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["x"]= 444, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 481, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["x"]= 518, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["x"]= 555, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 592, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["x"]= 629, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 666, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["x"]= 703, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["x"]= 740, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["x"]= 777, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["x"]= 814, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["x"]= 851, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 888, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 925, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 0, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["x"]= 37, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 74, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["x"]= 111, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["x"]= 148, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["x"]= 185, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 222, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["x"]= 259, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["x"]= 296, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["x"]= 333, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 370, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["x"]= 407, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["x"]= 444, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 481, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["x"]= 518, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["x"]= 555, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["x"]= 592, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["x"]= 629, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["x"]= 666, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["x"]= 703, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["x"]= 740, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 777, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 814, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 851, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["x"]= 888, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["x"]= 925, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["x"]= 0, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["x"]= 37, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["x"]= 74, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["x"]= 111, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["x"]= 148, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["x"]= 185, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["x"]= 222, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["x"]= 259, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["x"]= 296, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["x"]= 333, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["x"]= 370, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["x"]= 407, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["x"]= 444, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 481, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["x"]= 518, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["x"]= 555, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["x"]= 592, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["x"]= 629, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 666, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["x"]= 703, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["x"]= 740, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["x"]= 777, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["x"]= 814, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["x"]= 851, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["x"]= 888, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["x"]= 925, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["x"]= 0, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["x"]= 37, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 74, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["x"]= 111, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { + ["x"]= 148, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { + ["x"]= 185, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { + ["x"]= 222, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { + ["x"]= 259, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 296, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 333, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 370, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 407, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 444, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 481, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 518, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 555, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 592, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 629, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 666, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 703, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 740, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 777, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 814, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 851, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 888, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 925, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 962, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { + ["x"]= 0, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 37, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 74, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 111, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + } + } + }, + ["keystoneActive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?1540b3b6", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { + ["x"]= 0, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/BrandKeystone.png"]= { + ["x"]= 52, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CallToArms.png"]= { + ["x"]= 104, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ColdPureElementalCasterKeystone.png"]= { + ["x"]= 156, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CrimsonDance.png"]= { + ["x"]= 208, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CritAilments.png"]= { + ["x"]= 260, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Deaden.png"]= { + ["x"]= 312, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleOfKitava.png"]= { + ["x"]= 364, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DragonStyle.png"]= { + ["x"]= 416, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EnergisedFortress.png"]= { + ["x"]= 468, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EternalYouth.png"]= { + ["x"]= 520, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/FirePureElementalCasterKeystone.png"]= { + ["x"]= 572, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.png"]= { + ["x"]= 624, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleKeystone.png"]= { + ["x"]= 676, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png"]= { + ["x"]= 728, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png"]= { + ["x"]= 780, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png"]= { + ["x"]= 832, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png"]= { + ["x"]= 884, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png"]= { + ["x"]= 936, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneConduit.png"]= { + ["x"]= 0, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { + ["x"]= 52, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { + ["x"]= 104, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { + ["x"]= 156, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { + ["x"]= 208, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { + ["x"]= 260, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { + ["x"]= 312, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { + ["x"]= 364, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { + ["x"]= 416, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { + ["x"]= 468, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { + ["x"]= 520, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { + ["x"]= 572, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { + ["x"]= 624, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { + ["x"]= 676, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { + ["x"]= 728, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LightningPureElementalCasterKeystone.png"]= { + ["x"]= 780, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { + ["x"]= 832, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { + ["x"]= 884, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { + ["x"]= 936, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { + ["x"]= 0, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 52, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { + ["x"]= 104, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { + ["x"]= 156, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { + ["x"]= 208, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { + ["x"]= 260, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { + ["x"]= 312, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { + ["x"]= 364, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { + ["x"]= 416, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { + ["x"]= 468, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { + ["x"]= 520, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { + ["x"]= 572, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { + ["x"]= 624, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { + ["x"]= 676, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { + ["x"]= 728, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { + ["x"]= 780, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { + ["x"]= 832, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { + ["x"]= 884, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { + ["x"]= 936, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + } + } + }, + ["normalInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?4973b78c", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/2handedspeed.png"]= { + ["x"]= 26, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.png"]= { + ["x"]= 52, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.png"]= { + ["x"]= 78, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.png"]= { + ["x"]= 104, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.png"]= { + ["x"]= 130, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png"]= { + ["x"]= 156, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AhnsMightNode.png"]= { + ["x"]= 182, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AilmentDamageCritMultiplier.png"]= { + ["x"]= 208, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AldihNode.png"]= { + ["x"]= 234, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ApostateNode.png"]= { + ["x"]= 260, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArakaalisFangNode.png"]= { + ["x"]= 286, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNode.png"]= { + ["x"]= 312, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png"]= { + ["x"]= 338, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png"]= { + ["x"]= 364, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png"]= { + ["x"]= 390, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNode.png"]= { + ["x"]= 416, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 442, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 468, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 494, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 520, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 546, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 572, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 598, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 624, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 650, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 676, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 702, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 728, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 754, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 780, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 806, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 832, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png"]= { + ["x"]= 858, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 884, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 910, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 936, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png"]= { + ["x"]= 0, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNotable1.png"]= { + ["x"]= 26, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png"]= { + ["x"]= 52, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargedex.png"]= { + ["x"]= 78, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargeint.png"]= { + ["x"]= 104, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargestr.png"]= { + ["x"]= 130, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 156, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 182, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["x"]= 208, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["x"]= 234, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["x"]= 260, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["x"]= 286, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["x"]= 312, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 338, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["x"]= 364, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["x"]= 390, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["x"]= 416, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["x"]= 442, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["x"]= 468, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["x"]= 494, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["x"]= 520, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["x"]= 546, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["x"]= 572, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["x"]= 598, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["x"]= 624, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["x"]= 650, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["x"]= 676, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["x"]= 702, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["x"]= 728, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["x"]= 754, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["x"]= 780, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["x"]= 806, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["x"]= 832, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["x"]= 858, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["x"]= 884, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["x"]= 910, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["x"]= 936, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["x"]= 0, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["x"]= 26, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["x"]= 52, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["x"]= 78, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["x"]= 104, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 130, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["x"]= 156, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 182, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["x"]= 208, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 234, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["x"]= 260, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 286, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["x"]= 312, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["x"]= 338, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["x"]= 364, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["x"]= 390, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["x"]= 416, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["x"]= 442, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["x"]= 468, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["x"]= 494, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["x"]= 520, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["x"]= 546, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 572, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["x"]= 598, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["x"]= 624, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["x"]= 650, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["x"]= 676, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["x"]= 702, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["x"]= 728, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["x"]= 754, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["x"]= 780, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["x"]= 806, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["x"]= 832, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["x"]= 858, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png"]= { + ["x"]= 884, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["x"]= 0, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["x"]= 26, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["x"]= 52, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 78, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 104, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["x"]= 130, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DawnbreakerNode.png"]= { + ["x"]= 156, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["x"]= 182, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["x"]= 208, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 234, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 260, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["x"]= 286, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["x"]= 312, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["x"]= 338, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["x"]= 364, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["x"]= 390, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["x"]= 416, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["x"]= 442, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["x"]= 468, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 494, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["x"]= 520, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["x"]= 546, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElvoreNode.png"]= { + ["x"]= 572, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["x"]= 598, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["x"]= 624, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["x"]= 650, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["x"]= 676, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["x"]= 702, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FemuroftheSaintsNode.png"]= { + ["x"]= 728, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FidelitasSpikeNode.png"]= { + ["x"]= 754, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["x"]= 780, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["x"]= 806, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["x"]= 832, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["x"]= 858, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["x"]= 884, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["x"]= 910, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["x"]= 936, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["x"]= 0, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["x"]= 26, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GloomfangNode.png"]= { + ["x"]= 52, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["x"]= 78, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["x"]= 104, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["x"]= 130, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["x"]= 156, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["x"]= 182, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 208, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["x"]= 234, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["x"]= 260, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 286, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["x"]= 312, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 338, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 364, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["x"]= 390, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["x"]= 416, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["x"]= 442, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["x"]= 468, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["x"]= 494, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["x"]= 520, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["x"]= 546, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["x"]= 572, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["x"]= 598, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["x"]= 624, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["x"]= 650, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["x"]= 676, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["x"]= 702, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 728, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["x"]= 754, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 780, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["x"]= 806, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["x"]= 832, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["x"]= 858, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["x"]= 884, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["x"]= 910, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["x"]= 936, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["x"]= 0, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 26, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomBeltNode.png"]= { + ["x"]= 52, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomsRootsNode.png"]= { + ["x"]= 78, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 104, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["x"]= 130, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 156, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["x"]= 182, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["x"]= 208, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["x"]= 234, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["x"]= 260, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["x"]= 286, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["x"]= 312, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png"]= { + ["x"]= 338, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable9.png"]= { + ["x"]= 364, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable10.png"]= { + ["x"]= 390, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable11.png"]= { + ["x"]= 416, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable12.png"]= { + ["x"]= 442, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable13.png"]= { + ["x"]= 468, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable14.png"]= { + ["x"]= 494, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["x"]= 520, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["x"]= 546, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["x"]= 572, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["x"]= 598, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["x"]= 624, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["x"]= 650, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["x"]= 676, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeldingoftheFleshNode.png"]= { + ["x"]= 702, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 728, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["x"]= 754, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["x"]= 780, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["x"]= 806, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["x"]= 832, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["x"]= 858, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["x"]= 884, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["x"]= 910, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["x"]= 936, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["x"]= 0, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["x"]= 26, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["x"]= 52, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["x"]= 78, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["x"]= 104, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["x"]= 130, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["x"]= 156, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["x"]= 182, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["x"]= 208, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["x"]= 234, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["x"]= 260, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 286, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["x"]= 312, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["x"]= 338, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["x"]= 364, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["x"]= 390, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["x"]= 416, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["x"]= 442, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["x"]= 468, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["x"]= 494, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 520, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["x"]= 546, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["x"]= 572, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["x"]= 598, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["x"]= 624, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["x"]= 650, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["x"]= 676, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["x"]= 702, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["x"]= 728, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 754, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["x"]= 780, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PolaricDevastationNode.png"]= { + ["x"]= 806, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PresenceofChayulaNode.png"]= { + ["x"]= 832, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["x"]= 858, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["x"]= 884, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["x"]= 910, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["x"]= 936, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["x"]= 0, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["x"]= 26, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["x"]= 52, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["x"]= 78, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["x"]= 104, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["x"]= 130, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["x"]= 156, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["x"]= 182, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["x"]= 208, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["x"]= 234, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["x"]= 260, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RiriTeNgamahuNode.png"]= { + ["x"]= 286, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 312, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["x"]= 338, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["x"]= 364, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SacredChaliceNode.png"]= { + ["x"]= 390, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SandsofTimeNode.png"]= { + ["x"]= 416, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["x"]= 442, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ScreamsoftheDesiccatedNode.png"]= { + ["x"]= 468, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["x"]= 494, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShatteredDivinityNode.png"]= { + ["x"]= 520, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 546, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["x"]= 572, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShimmeronNode.png"]= { + ["x"]= 598, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["x"]= 624, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["x"]= 650, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["x"]= 676, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["x"]= 702, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["x"]= 728, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["x"]= 754, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["x"]= 780, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["x"]= 806, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["x"]= 832, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["x"]= 858, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["x"]= 884, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["x"]= 910, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["x"]= 936, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["x"]= 0, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TheBlackCaneNode.png"]= { + ["x"]= 26, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["x"]= 52, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["x"]= 78, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["x"]= 104, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["x"]= 130, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["x"]= 156, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["x"]= 182, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["x"]= 208, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["x"]= 234, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VaalCaressNode.png"]= { + ["x"]= 260, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 286, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["x"]= 312, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 338, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["x"]= 364, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["x"]= 390, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["x"]= 416, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["x"]= 442, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["x"]= 468, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 494, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["x"]= 520, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["x"]= 546, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["x"]= 572, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 598, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/XirgilsCrankNode.png"]= { + ["x"]= 624, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["x"]= 650, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["x"]= 676, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 702, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["x"]= 728, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 754, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["x"]= 780, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["x"]= 806, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["x"]= 832, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["x"]= 858, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 884, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["x"]= 910, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["x"]= 936, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["x"]= 0, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["x"]= 26, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["x"]= 52, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["x"]= 78, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["x"]= 104, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["x"]= 130, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["x"]= 156, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["x"]= 182, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["x"]= 208, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["x"]= 234, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 260, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["x"]= 286, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 312, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 338, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["x"]= 364, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 390, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 416, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 442, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["x"]= 468, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["x"]= 494, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["x"]= 520, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["x"]= 546, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["x"]= 572, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["x"]= 598, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["x"]= 624, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["x"]= 650, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["x"]= 676, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["x"]= 702, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["x"]= 728, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["x"]= 754, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 780, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["x"]= 806, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["x"]= 832, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["x"]= 858, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["x"]= 884, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["x"]= 910, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["x"]= 936, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["x"]= 0, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["x"]= 26, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["x"]= 52, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["x"]= 78, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["x"]= 104, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["x"]= 130, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["x"]= 156, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["x"]= 182, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["x"]= 208, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["x"]= 234, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["x"]= 260, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 286, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 312, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["x"]= 338, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["x"]= 364, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["x"]= 390, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["x"]= 416, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["x"]= 442, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["x"]= 468, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 494, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["x"]= 520, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["x"]= 546, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 572, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["x"]= 598, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 624, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["x"]= 650, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 676, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["x"]= 702, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["x"]= 728, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["x"]= 754, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 780, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["x"]= 806, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["x"]= 832, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 858, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["x"]= 884, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["x"]= 910, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["x"]= 936, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["x"]= 0, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["x"]= 26, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 52, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["x"]= 78, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["x"]= 104, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 130, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["x"]= 156, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["x"]= 182, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["x"]= 208, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["x"]= 234, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["x"]= 260, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 286, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 312, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["x"]= 338, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 364, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["x"]= 390, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["x"]= 416, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["x"]= 442, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["x"]= 468, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["x"]= 494, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["x"]= 520, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["x"]= 546, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["x"]= 572, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["x"]= 598, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 624, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["x"]= 650, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["x"]= 676, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["x"]= 702, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["x"]= 728, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["x"]= 754, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 780, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["x"]= 806, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["x"]= 832, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["x"]= 858, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["x"]= 884, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["x"]= 910, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 936, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["x"]= 962, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["x"]= 0, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { + ["x"]= 26, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { + ["x"]= 52, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { + ["x"]= 78, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { + ["x"]= 104, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { + ["x"]= 130, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { + ["x"]= 156, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { + ["x"]= 182, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { + ["x"]= 208, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { + ["x"]= 234, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { + ["x"]= 260, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 286, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 312, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 338, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { + ["x"]= 364, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { + ["x"]= 390, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { + ["x"]= 416, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + } + } + }, + ["notableInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?4973b78c", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampAbyssalFiends.png"]= { + ["x"]= 37, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.png"]= { + ["x"]= 74, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampStygianSpires.png"]= { + ["x"]= 111, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar1.png"]= { + ["x"]= 148, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar2.png"]= { + ["x"]= 185, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Additionalprojectile.png"]= { + ["x"]= 222, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AdmonisherNotable.png"]= { + ["x"]= 259, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Annihilation.png"]= { + ["x"]= 296, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AntiStunNotable.png"]= { + ["x"]= 333, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneChemistry.png"]= { + ["x"]= 370, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneReaping.png"]= { + ["x"]= 407, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNotable.png"]= { + ["x"]= 444, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNotable.png"]= { + ["x"]= 481, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourGuardsNotable.png"]= { + ["x"]= 555, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNotable.png"]= { + ["x"]= 592, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourandEvasion2.png"]= { + ["x"]= 629, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png"]= { + ["x"]= 666, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Dex.png"]= { + ["x"]= 703, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png"]= { + ["x"]= 740, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Int.png"]= { + ["x"]= 777, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png"]= { + ["x"]= 814, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Str.png"]= { + ["x"]= 851, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png"]= { + ["x"]= 888, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png"]= { + ["x"]= 925, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectoftheEagle.png"]= { + ["x"]= 0, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png"]= { + ["x"]= 37, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 74, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["x"]= 111, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["x"]= 148, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["x"]= 185, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["x"]= 222, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["x"]= 259, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["x"]= 296, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 333, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["x"]= 370, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 407, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["x"]= 444, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["x"]= 481, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["x"]= 518, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["x"]= 555, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["x"]= 592, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["x"]= 629, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["x"]= 666, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["x"]= 703, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["x"]= 740, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["x"]= 777, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["x"]= 814, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["x"]= 851, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["x"]= 888, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["x"]= 925, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["x"]= 0, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["x"]= 37, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 74, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["x"]= 111, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["x"]= 148, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["x"]= 185, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["x"]= 222, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["x"]= 259, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["x"]= 296, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["x"]= 333, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["x"]= 370, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["x"]= 407, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["x"]= 444, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["x"]= 481, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["x"]= 518, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["x"]= 555, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["x"]= 592, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["x"]= 629, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["x"]= 666, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["x"]= 703, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["x"]= 740, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["x"]= 814, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["x"]= 851, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 0, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 74, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["x"]= 111, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["x"]= 148, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["x"]= 185, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["x"]= 222, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 259, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 296, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["x"]= 333, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["x"]= 370, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["x"]= 407, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["x"]= 444, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["x"]= 481, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrineRot.png"]= { + ["x"]= 518, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["x"]= 555, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["x"]= 592, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["x"]= 629, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["x"]= 666, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["x"]= 703, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["x"]= 740, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["x"]= 777, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["x"]= 814, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["x"]= 851, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["x"]= 888, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["x"]= 925, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["x"]= 0, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["x"]= 37, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["x"]= 74, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 111, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["x"]= 148, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["x"]= 222, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["x"]= 259, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["x"]= 296, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["x"]= 333, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["x"]= 370, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["x"]= 407, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["x"]= 444, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["x"]= 481, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["x"]= 518, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["x"]= 555, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["x"]= 592, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["x"]= 629, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["x"]= 666, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["x"]= 703, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["x"]= 740, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["x"]= 777, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["x"]= 814, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["x"]= 851, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["x"]= 888, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["x"]= 925, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["x"]= 0, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["x"]= 37, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["x"]= 74, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 111, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["x"]= 148, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth2.png"]= { + ["x"]= 185, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["x"]= 222, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["x"]= 259, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["x"]= 296, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["x"]= 333, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["x"]= 370, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["x"]= 407, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["x"]= 444, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["x"]= 481, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["x"]= 518, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["x"]= 555, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["x"]= 592, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["x"]= 629, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["x"]= 666, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["x"]= 703, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["x"]= 777, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["x"]= 814, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["x"]= 851, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 888, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 925, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["x"]= 0, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["x"]= 37, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["x"]= 74, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["x"]= 111, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 148, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["x"]= 185, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["x"]= 222, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["x"]= 259, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["x"]= 296, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["x"]= 333, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["x"]= 370, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["x"]= 407, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["x"]= 444, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["x"]= 481, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["x"]= 518, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["x"]= 555, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["x"]= 592, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["x"]= 629, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["x"]= 666, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["x"]= 703, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["x"]= 777, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["x"]= 814, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["x"]= 851, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["x"]= 888, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["x"]= 925, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["x"]= 0, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["x"]= 37, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["x"]= 74, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["x"]= 111, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 148, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["x"]= 185, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["x"]= 222, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["x"]= 259, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["x"]= 296, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["x"]= 333, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["x"]= 370, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["x"]= 407, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["x"]= 444, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["x"]= 481, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["x"]= 518, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["x"]= 555, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["x"]= 592, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["x"]= 629, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["x"]= 666, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["x"]= 703, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["x"]= 740, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["x"]= 777, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["x"]= 814, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["x"]= 851, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["x"]= 888, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["x"]= 925, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["x"]= 0, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["x"]= 37, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["x"]= 74, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["x"]= 111, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 148, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["x"]= 185, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["x"]= 222, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["x"]= 259, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["x"]= 296, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["x"]= 333, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["x"]= 370, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["x"]= 407, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 444, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["x"]= 481, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["x"]= 518, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["x"]= 555, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["x"]= 592, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["x"]= 629, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["x"]= 666, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["x"]= 703, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["x"]= 740, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 814, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 851, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["x"]= 888, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["x"]= 925, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["x"]= 0, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["x"]= 37, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["x"]= 74, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["x"]= 111, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 148, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["x"]= 185, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["x"]= 222, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["x"]= 259, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["x"]= 296, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["x"]= 333, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["x"]= 370, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["x"]= 407, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["x"]= 444, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["x"]= 481, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["x"]= 518, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["x"]= 555, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["x"]= 592, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["x"]= 629, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["x"]= 666, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["x"]= 703, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["x"]= 740, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["x"]= 777, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["x"]= 814, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["x"]= 851, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["x"]= 925, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["x"]= 0, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["x"]= 37, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 74, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 111, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 148, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["x"]= 222, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["x"]= 259, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["x"]= 296, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/CriticalStrikeChance.png"]= { + ["x"]= 333, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["x"]= 370, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["x"]= 407, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["x"]= 444, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["x"]= 481, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["x"]= 518, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["x"]= 555, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["x"]= 592, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["x"]= 629, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["x"]= 666, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 703, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["x"]= 740, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["x"]= 777, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["x"]= 814, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["x"]= 851, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["x"]= 888, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["x"]= 925, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 0, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["x"]= 37, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["x"]= 74, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["x"]= 111, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["x"]= 148, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 185, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["x"]= 222, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["x"]= 259, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["x"]= 296, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["x"]= 333, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["x"]= 370, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["x"]= 407, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["x"]= 444, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["x"]= 481, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["x"]= 518, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["x"]= 555, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable1.png"]= { + ["x"]= 592, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable2.png"]= { + ["x"]= 629, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable3.png"]= { + ["x"]= 666, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable4.png"]= { + ["x"]= 703, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable5.png"]= { + ["x"]= 740, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable6.png"]= { + ["x"]= 777, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["x"]= 814, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["x"]= 851, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["x"]= 888, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["x"]= 925, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["x"]= 0, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["x"]= 37, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["x"]= 74, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["x"]= 111, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["x"]= 148, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["x"]= 185, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["x"]= 222, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["x"]= 259, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["x"]= 296, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["x"]= 333, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["x"]= 370, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 407, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["x"]= 444, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["x"]= 481, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["x"]= 518, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["x"]= 555, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["x"]= 592, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 629, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["x"]= 666, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["x"]= 703, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["x"]= 740, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["x"]= 777, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["x"]= 814, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["x"]= 851, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["x"]= 888, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["x"]= 925, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["x"]= 0, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["x"]= 37, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["x"]= 74, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["x"]= 111, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["x"]= 148, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["x"]= 185, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["x"]= 222, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["x"]= 259, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["x"]= 296, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["x"]= 333, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["x"]= 370, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 407, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["x"]= 444, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["x"]= 481, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["x"]= 518, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 555, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["x"]= 592, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["x"]= 629, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["x"]= 666, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["x"]= 703, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["x"]= 740, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["x"]= 777, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["x"]= 814, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["x"]= 851, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 888, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["x"]= 925, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["x"]= 0, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["x"]= 37, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["x"]= 74, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["x"]= 111, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["x"]= 148, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["x"]= 222, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["x"]= 259, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["x"]= 296, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["x"]= 333, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["x"]= 370, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["x"]= 407, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 444, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["x"]= 481, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["x"]= 555, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["x"]= 592, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["x"]= 629, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["x"]= 666, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["x"]= 703, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["x"]= 740, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["x"]= 777, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["x"]= 814, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["x"]= 851, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["x"]= 888, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["x"]= 925, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["x"]= 0, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["x"]= 37, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["x"]= 74, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["x"]= 111, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["x"]= 148, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["x"]= 185, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["x"]= 222, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["x"]= 259, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["x"]= 296, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["x"]= 333, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["x"]= 370, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["x"]= 407, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 444, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["x"]= 481, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["x"]= 518, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["x"]= 555, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["x"]= 592, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["x"]= 629, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["x"]= 666, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["x"]= 703, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["x"]= 740, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["x"]= 777, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["x"]= 814, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["x"]= 851, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["x"]= 888, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["x"]= 925, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["x"]= 0, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["x"]= 37, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["x"]= 74, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["x"]= 111, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["x"]= 148, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["x"]= 185, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["x"]= 222, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["x"]= 259, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["x"]= 296, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["x"]= 333, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["x"]= 370, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 407, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 444, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["x"]= 481, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["x"]= 518, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["x"]= 555, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["x"]= 592, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["x"]= 629, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["x"]= 666, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["x"]= 703, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["x"]= 740, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["x"]= 777, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["x"]= 814, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["x"]= 851, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["x"]= 888, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["x"]= 925, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["x"]= 0, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["x"]= 37, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["x"]= 74, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["x"]= 111, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["x"]= 148, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["x"]= 185, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["x"]= 222, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["x"]= 259, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["x"]= 296, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["x"]= 333, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["x"]= 370, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["x"]= 407, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 444, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["x"]= 481, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["x"]= 518, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["x"]= 555, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["x"]= 592, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["x"]= 629, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["x"]= 666, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["x"]= 703, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["x"]= 740, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["x"]= 777, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TideCaller.png"]= { + ["x"]= 814, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["x"]= 851, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["x"]= 888, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["x"]= 925, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["x"]= 0, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["x"]= 74, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["x"]= 111, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["x"]= 148, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["x"]= 185, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["x"]= 222, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["x"]= 259, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["x"]= 296, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["x"]= 333, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["x"]= 370, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["x"]= 407, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["x"]= 444, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 481, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["x"]= 518, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["x"]= 555, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["x"]= 592, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["x"]= 629, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["x"]= 666, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["x"]= 703, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["x"]= 740, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["x"]= 777, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["x"]= 814, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["x"]= 851, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["x"]= 888, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["x"]= 925, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 0, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["x"]= 37, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["x"]= 74, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["x"]= 111, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 148, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["x"]= 222, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["x"]= 259, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["x"]= 296, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["x"]= 333, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["x"]= 370, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["x"]= 407, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["x"]= 444, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 481, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["x"]= 518, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["x"]= 555, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["x"]= 592, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 629, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["x"]= 666, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["x"]= 703, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["x"]= 740, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["x"]= 777, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 814, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["x"]= 851, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["x"]= 888, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["x"]= 925, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["x"]= 0, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["x"]= 37, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["x"]= 74, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 111, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["x"]= 148, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["x"]= 185, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["x"]= 222, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 259, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["x"]= 296, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["x"]= 333, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["x"]= 370, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["x"]= 407, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["x"]= 444, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 481, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 518, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["x"]= 555, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["x"]= 592, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["x"]= 629, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["x"]= 666, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 703, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["x"]= 740, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 777, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 814, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 851, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["x"]= 888, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["x"]= 925, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 0, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["x"]= 37, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["x"]= 74, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["x"]= 111, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["x"]= 148, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["x"]= 185, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["x"]= 222, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["x"]= 259, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["x"]= 296, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["x"]= 333, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["x"]= 370, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["x"]= 407, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["x"]= 444, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 481, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 518, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["x"]= 555, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["x"]= 592, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["x"]= 629, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["x"]= 666, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["x"]= 703, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 740, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["x"]= 777, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["x"]= 814, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["x"]= 851, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["x"]= 888, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["x"]= 925, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["x"]= 0, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["x"]= 37, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["x"]= 74, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["x"]= 111, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["x"]= 148, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["x"]= 185, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["x"]= 222, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["x"]= 259, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["x"]= 296, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["x"]= 333, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["x"]= 370, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["x"]= 407, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["x"]= 444, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 481, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["x"]= 518, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["x"]= 555, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 592, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["x"]= 629, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 666, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["x"]= 703, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["x"]= 740, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["x"]= 777, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["x"]= 814, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["x"]= 851, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 888, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 925, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 0, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["x"]= 37, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 74, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["x"]= 111, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["x"]= 148, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["x"]= 185, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 222, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["x"]= 259, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["x"]= 296, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["x"]= 333, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 370, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["x"]= 407, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["x"]= 444, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 481, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["x"]= 518, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["x"]= 555, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["x"]= 592, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["x"]= 629, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["x"]= 666, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["x"]= 703, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["x"]= 740, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 777, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 814, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 851, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["x"]= 888, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["x"]= 925, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["x"]= 0, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["x"]= 37, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["x"]= 74, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["x"]= 111, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["x"]= 148, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["x"]= 185, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["x"]= 222, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["x"]= 259, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["x"]= 296, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["x"]= 333, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["x"]= 370, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["x"]= 407, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["x"]= 444, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 481, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["x"]= 518, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["x"]= 555, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["x"]= 592, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["x"]= 629, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 666, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["x"]= 703, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["x"]= 740, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["x"]= 777, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["x"]= 814, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["x"]= 851, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["x"]= 888, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["x"]= 925, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["x"]= 0, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["x"]= 37, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 74, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["x"]= 111, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { + ["x"]= 148, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { + ["x"]= 185, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { + ["x"]= 222, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { + ["x"]= 259, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 296, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 333, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 370, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 407, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 444, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 481, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 518, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 555, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 592, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 629, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 666, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 703, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 740, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 777, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 814, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 851, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 888, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 925, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 962, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { + ["x"]= 0, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 37, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 74, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 111, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + } + } + }, + ["keystoneInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?4973b78c", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { + ["x"]= 0, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/BrandKeystone.png"]= { + ["x"]= 52, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CallToArms.png"]= { + ["x"]= 104, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ColdPureElementalCasterKeystone.png"]= { + ["x"]= 156, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CrimsonDance.png"]= { + ["x"]= 208, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CritAilments.png"]= { + ["x"]= 260, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Deaden.png"]= { + ["x"]= 312, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleOfKitava.png"]= { + ["x"]= 364, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DragonStyle.png"]= { + ["x"]= 416, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EnergisedFortress.png"]= { + ["x"]= 468, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EternalYouth.png"]= { + ["x"]= 520, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/FirePureElementalCasterKeystone.png"]= { + ["x"]= 572, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.png"]= { + ["x"]= 624, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleKeystone.png"]= { + ["x"]= 676, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png"]= { + ["x"]= 728, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png"]= { + ["x"]= 780, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png"]= { + ["x"]= 832, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png"]= { + ["x"]= 884, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png"]= { + ["x"]= 936, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneConduit.png"]= { + ["x"]= 0, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { + ["x"]= 52, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { + ["x"]= 104, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { + ["x"]= 156, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { + ["x"]= 208, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { + ["x"]= 260, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { + ["x"]= 312, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { + ["x"]= 364, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { + ["x"]= 416, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { + ["x"]= 468, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { + ["x"]= 520, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { + ["x"]= 572, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { + ["x"]= 624, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { + ["x"]= 676, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { + ["x"]= 728, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LightningPureElementalCasterKeystone.png"]= { + ["x"]= 780, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { + ["x"]= 832, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { + ["x"]= 884, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { + ["x"]= 936, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { + ["x"]= 0, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 52, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { + ["x"]= 104, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { + ["x"]= 156, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { + ["x"]= 208, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { + ["x"]= 260, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { + ["x"]= 312, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { + ["x"]= 364, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { + ["x"]= 416, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { + ["x"]= 468, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { + ["x"]= 520, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { + ["x"]= 572, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { + ["x"]= 624, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { + ["x"]= 676, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { + ["x"]= 728, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { + ["x"]= 780, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { + ["x"]= 832, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { + ["x"]= 884, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { + ["x"]= 936, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + } + } + }, + ["mastery"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-3.png?c17e5660", + ["w"]= 946, + ["h"]= 946, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/AltAreaDamageMastery.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltBloodMastery.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltChaosDamageMastery.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltColdDamageMastery.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltDaggerClawDamageMastery.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltDamageOverTimeMultiplierMastery.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltDamageWithHeraldMastery.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltFireDamageMastery.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryAuras.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryBrand.png"]= { + ["x"]= 860, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryChaos.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryCurse.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryElementalDamage.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupBow.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupCast.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupCold.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupCrit.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupDualWield.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupFire.png"]= { + ["x"]= 860, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupLightning.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupMaceAndStaff.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupShield.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupSwordAndAxe.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupTwoHands.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupWand.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryPhysicalDamage.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryProjectiles.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryTotem.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryTraps.png"]= { + ["x"]= 860, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltNonDamagingAilmentsMastery.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltWarcryMastery.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindMastery.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AttackTotemMastery.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/BloodMastery.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MarkMastery.png"]= { + ["x"]= 860, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryAuras.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryBrand.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryChaos.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryCurse.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryDuration.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryFlasks.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupBow.png"]= { + ["x"]= 860, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupCold.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupFire.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupLife.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png"]= { + ["x"]= 860, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupMace.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupMana.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupShield.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupSword.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupWand.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPoison.png"]= { + ["x"]= 860, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryProjectiles.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryRecovery.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryTraps.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MineMastery.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MinionMastery.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/PassiveStunMastery.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/RageMastery.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/WarcryMastery.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 860, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 860, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 516, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 602, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 688, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 774, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 860, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 0, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 86, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 172, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 258, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 344, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 430, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 516, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 602, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 688, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 774, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryConnected"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-connected-3.png?96461b88", + ["w"]= 860, + ["h"]= 860, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryActiveSelected"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-active-selected-3.png?27c631e2", + ["w"]= 860, + ["h"]= 860, + ["coords"]= { + ["PassiveMasteryConnectedButton"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldActive.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionActive.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindActive.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationActive.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldActive.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyActive.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 516, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-disabled-3.png?a60c53c5", + ["w"]= 860, + ["h"]= 860, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryActiveEffect"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-active-effect-3.png?0200e81a", + ["w"]= 2376, + ["h"]= 2352, + ["coords"]= { + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png"]= { + ["x"]= 297, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png"]= { + ["x"]= 594, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png"]= { + ["x"]= 891, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png"]= { + ["x"]= 1188, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png"]= { + ["x"]= 1485, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png"]= { + ["x"]= 1782, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png"]= { + ["x"]= 2079, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png"]= { + ["x"]= 0, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png"]= { + ["x"]= 297, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png"]= { + ["x"]= 594, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png"]= { + ["x"]= 891, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png"]= { + ["x"]= 1188, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png"]= { + ["x"]= 1485, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png"]= { + ["x"]= 1782, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png"]= { + ["x"]= 2079, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png"]= { + ["x"]= 0, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png"]= { + ["x"]= 297, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png"]= { + ["x"]= 594, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png"]= { + ["x"]= 891, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png"]= { + ["x"]= 1188, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png"]= { + ["x"]= 1485, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png"]= { + ["x"]= 1782, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png"]= { + ["x"]= 2079, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png"]= { + ["x"]= 0, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png"]= { + ["x"]= 297, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png"]= { + ["x"]= 594, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png"]= { + ["x"]= 891, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png"]= { + ["x"]= 1188, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png"]= { + ["x"]= 1485, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png"]= { + ["x"]= 1782, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png"]= { + ["x"]= 2079, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png"]= { + ["x"]= 0, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png"]= { + ["x"]= 297, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png"]= { + ["x"]= 594, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png"]= { + ["x"]= 891, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png"]= { + ["x"]= 1188, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png"]= { + ["x"]= 1485, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png"]= { + ["x"]= 1782, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png"]= { + ["x"]= 2079, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png"]= { + ["x"]= 0, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png"]= { + ["x"]= 297, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png"]= { + ["x"]= 594, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png"]= { + ["x"]= 891, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png"]= { + ["x"]= 1188, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png"]= { + ["x"]= 1485, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png"]= { + ["x"]= 1782, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png"]= { + ["x"]= 2079, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png"]= { + ["x"]= 0, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png"]= { + ["x"]= 297, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png"]= { + ["x"]= 594, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png"]= { + ["x"]= 891, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png"]= { + ["x"]= 1188, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png"]= { + ["x"]= 1485, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png"]= { + ["x"]= 1782, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png"]= { + ["x"]= 2079, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png"]= { + ["x"]= 0, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png"]= { + ["x"]= 297, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png"]= { + ["x"]= 594, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png"]= { + ["x"]= 891, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png"]= { + ["x"]= 1188, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["x"]= 1485, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + } + } + }, + ["tattooActiveEffect"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?34fa8683", + ["w"]= 576, + ["h"]= 704, + ["coords"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png"]= { + ["x"]= { + 139, + 0 + }, + ["y"]= { + 0, + 414 + }, + ["w"]= { + 139, + 288 + }, + ["h"]= { + 138, + 290 + } + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png"]= { + ["x"]= 278, + ["y"]= 0, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png"]= { + ["x"]= 417, + ["y"]= 0, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { + ["x"]= 0, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { + ["x"]= 139, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { + ["x"]= 278, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { + ["x"]= 417, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { + ["x"]= 0, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { + ["x"]= 139, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { + ["x"]= 278, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["x"]= 417, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png"]= { + ["x"]= 288, + ["y"]= 414, + ["w"]= 288, + ["h"]= 290 + } + } + }, + ["ascendancy"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/ascendancy-3.webp?b2dbca88", + ["w"]= 2668, + ["h"]= 2668, + ["coords"]= { + ["ClassesReliquarian"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 587, + ["h"]= 587 + }, + ["ClassesLuminary"]= { + ["x"]= 587, + ["y"]= 0, + ["w"]= 587, + ["h"]= 587 + }, + ["ClassesAscendant"]= { + ["x"]= 0, + ["y"]= 587, + ["w"]= 587, + ["h"]= 587 + }, + ["ClassesTrickster"]= { + ["x"]= 587, + ["y"]= 587, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesSlayer"]= { + ["x"]= 1174, + ["y"]= 0, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesSaboteur"]= { + ["x"]= 1174, + ["y"]= 498, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesRaider"]= { + ["x"]= 0, + ["y"]= 1174, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesPathfinder"]= { + ["x"]= 498, + ["y"]= 1174, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesOccultist"]= { + ["x"]= 996, + ["y"]= 1174, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesNecromancer"]= { + ["x"]= 1672, + ["y"]= 0, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesJuggernaut"]= { + ["x"]= 1672, + ["y"]= 498, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesInquisitor"]= { + ["x"]= 1672, + ["y"]= 996, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesHierophant"]= { + ["x"]= 0, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesGuardian"]= { + ["x"]= 498, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesGladiator"]= { + ["x"]= 996, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesElementalist"]= { + ["x"]= 1494, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesDeadeye"]= { + ["x"]= 2170, + ["y"]= 0, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesChieftain"]= { + ["x"]= 2170, + ["y"]= 498, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesChampion"]= { + ["x"]= 2170, + ["y"]= 996, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesBerserker"]= { + ["x"]= 2170, + ["y"]= 1494, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesAssassin"]= { + ["x"]= 0, + ["y"]= 2170, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesAlternate"]= { + ["x"]= 498, + ["y"]= 2170, + ["w"]= 498, + ["h"]= 498 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 2170, + ["y"]= 1992, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 2258, + ["y"]= 1992, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 2346, + ["y"]= 1992, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2170, + ["y"]= 2049, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2228, + ["y"]= 2049, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2286, + ["y"]= 2049, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2434, + ["y"]= 1992, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 2473, + ["y"]= 1992, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 2512, + ["y"]= 1992, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2551, + ["y"]= 1992, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["azmeriBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesWarlock"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["ClassesWarden"]= { + ["x"]= 567, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["ClassesPrimalist"]= { + ["x"]= 567, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 0, + ["y"]= 2148, + ["w"]= 151, + ["h"]= 63 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 151, + ["y"]= 2148, + ["w"]= 151, + ["h"]= 63 + }, + ["AscendancyButton"]= { + ["x"]= 302, + ["y"]= 2148, + ["w"]= 151, + ["h"]= 63 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 0, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 854, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1708, + ["w"]= 61, + ["h"]= 61 + }, + ["CharmSocketActiveStr"]= { + ["x"]= 305, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmSocketActiveInt"]= { + ["x"]= 363, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmSocketActiveDex"]= { + ["x"]= 421, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmFrameNormal"]= { + ["x"]= 479, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmFrameCanAllocate"]= { + ["x"]= 537, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmFrameAllocated"]= { + ["x"]= 595, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2213, + ["y"]= 2148, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 2179, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1121, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1667, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["trialmasterBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesTrialmaster"]= { + ["x"]= 0, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 453, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1597, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 528, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 61, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 915, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1769, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1672, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 2218, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1160, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1698, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["oshabiBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesOshabi"]= { + ["x"]= 1134, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 541, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1685, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 616, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 122, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 976, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1830, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1711, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 653, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1199, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1729, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["olrothBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesOlroth"]= { + ["x"]= 1134, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 981, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 2125, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1056, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 427, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1281, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2135, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1906, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 848, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1394, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1884, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["necromanticBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesNecromantic"]= { + ["x"]= 0, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1333, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 264, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1408, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 671, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1525, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 122, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2062, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 1004, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1550, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2008, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["lyciaBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesLycia"]= { + ["x"]= 567, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 893, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 2037, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 968, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 366, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1220, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2074, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1867, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 809, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1355, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1853, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["kingInTheMistsBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesKingInTheMists"]= { + ["x"]= 1134, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 629, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1773, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 704, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 183, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1037, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1891, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1750, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 692, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1238, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1760, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["farrulBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesFarrul"]= { + ["x"]= 1701, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1069, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 0, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1144, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 488, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1342, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2196, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1945, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 887, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1433, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1915, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["deliriousBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesDelirious"]= { + ["x"]= 1701, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1157, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 88, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1232, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 549, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1403, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 0, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1984, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 926, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1472, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1946, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["catarinaBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesCatarina"]= { + ["x"]= 1701, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 717, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1861, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 792, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 244, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1098, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1952, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1789, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 731, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1277, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1791, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["brinerotBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesBrinerot"]= { + ["x"]= 0, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1421, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 352, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1496, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 732, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1586, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 183, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2101, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 1043, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1589, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2039, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["breachlordBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesBreachlord"]= { + ["x"]= 567, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1245, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 176, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1320, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 610, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1464, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 61, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2023, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 965, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1511, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1977, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["aulBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesAul"]= { + ["x"]= 1134, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 805, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1949, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 880, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 305, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1159, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2013, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1828, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 770, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1316, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1822, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["abyssalBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesAbyssal"]= { + ["x"]= 1701, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1509, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 440, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1584, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 793, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1647, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 244, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2140, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 1082, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1628, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2070, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["startNode"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/group-background-3.png?95dbfa0a", + ["w"]= 1006, + ["h"]= 666, + ["coords"]= { + ["centerwitch"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 241, + ["h"]= 222 + }, + ["centertemplar"]= { + ["x"]= 241, + ["y"]= 0, + ["w"]= 241, + ["h"]= 222 + }, + ["centershadow"]= { + ["x"]= 0, + ["y"]= 222, + ["w"]= 241, + ["h"]= 222 + }, + ["centerscion"]= { + ["x"]= 241, + ["y"]= 222, + ["w"]= 241, + ["h"]= 222 + }, + ["centerranger"]= { + ["x"]= 482, + ["y"]= 0, + ["w"]= 241, + ["h"]= 222 + }, + ["centermarauder"]= { + ["x"]= 482, + ["y"]= 222, + ["w"]= 241, + ["h"]= 222 + }, + ["centerduelist"]= { + ["x"]= 0, + ["y"]= 444, + ["w"]= 241, + ["h"]= 222 + }, + ["PSStartNodeBackgroundInactive"]= { + ["x"]= 241, + ["y"]= 444, + ["w"]= 202, + ["h"]= 202 + } + } + }, + ["groupBackground"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/group-background-3.png?95dbfa0a", + ["w"]= 1006, + ["h"]= 666, + ["coords"]= { + ["PSGroupBackground3"]= { + ["x"]= 723, + ["y"]= 0, + ["w"]= 283, + ["h"]= 143 + }, + ["GroupBackgroundLargeHalfAlt"]= { + ["x"]= 723, + ["y"]= 143, + ["w"]= 283, + ["h"]= 143 + }, + ["PSGroupBackground2"]= { + ["x"]= 723, + ["y"]= 286, + ["w"]= 178, + ["h"]= 178 + }, + ["GroupBackgroundMediumAlt"]= { + ["x"]= 723, + ["y"]= 464, + ["w"]= 178, + ["h"]= 178 + }, + ["PSGroupBackground1"]= { + ["x"]= 443, + ["y"]= 444, + ["w"]= 138, + ["h"]= 138 + }, + ["GroupBackgroundSmallAlt"]= { + ["x"]= 581, + ["y"]= 444, + ["w"]= 138, + ["h"]= 138 + } + } + }, + ["frame"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/frame-3.png?4eb7045b", + ["w"]= 383, + ["h"]= 334, + ["coords"]= { + ["KeystoneFrameUnallocated"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 83, + ["h"]= 85 + }, + ["KeystoneFrameCanAllocate"]= { + ["x"]= 83, + ["y"]= 0, + ["w"]= 83, + ["h"]= 85 + }, + ["KeystoneFrameAllocated"]= { + ["x"]= 166, + ["y"]= 0, + ["w"]= 83, + ["h"]= 85 + }, + ["JewelSocketClusterAltNormal1Small"]= { + ["x"]= 0, + ["y"]= 85, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltNormal1Medium"]= { + ["x"]= 76, + ["y"]= 85, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltNormal1Large"]= { + ["x"]= 152, + ["y"]= 85, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltCanAllocate1Small"]= { + ["x"]= 0, + ["y"]= 161, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltCanAllocate1Medium"]= { + ["x"]= 76, + ["y"]= 161, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltCanAllocate1Large"]= { + ["x"]= 152, + ["y"]= 161, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketAltNormal"]= { + ["x"]= 249, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketAltCanAllocate"]= { + ["x"]= 249, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketAltActive"]= { + ["x"]= 249, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["NotableFrameUnallocated"]= { + ["x"]= 0, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["NotableFrameCanAllocate"]= { + ["x"]= 58, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["NotableFrameAllocated"]= { + ["x"]= 116, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelFrameUnallocated"]= { + ["x"]= 174, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelFrameCanAllocate"]= { + ["x"]= 232, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelFrameAllocated"]= { + ["x"]= 325, + ["y"]= 0, + ["w"]= 58, + ["h"]= 58 + }, + ["BlightedNotableFrameUnallocated"]= { + ["x"]= 325, + ["y"]= 58, + ["w"]= 58, + ["h"]= 58 + }, + ["BlightedNotableFrameCanAllocate"]= { + ["x"]= 325, + ["y"]= 116, + ["w"]= 58, + ["h"]= 58 + }, + ["BlightedNotableFrameAllocated"]= { + ["x"]= 325, + ["y"]= 174, + ["w"]= 58, + ["h"]= 58 + }, + ["PSSkillFrameHighlighted"]= { + ["x"]= 325, + ["y"]= 232, + ["w"]= 39, + ["h"]= 39 + }, + ["PSSkillFrameActive"]= { + ["x"]= 0, + ["y"]= 295, + ["w"]= 39, + ["h"]= 39 + }, + ["PSSkillFrame"]= { + ["x"]= 39, + ["y"]= 295, + ["w"]= 39, + ["h"]= 39 + } + } + }, + ["jewel"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/jewel-3.png?b4c992ca", + ["w"]= 286, + ["h"]= 286, + ["coords"]= { + ["JewelSocketActiveRedAlt"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActivePrismaticAlt"]= { + ["x"]= 76, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveLegionAlt"]= { + ["x"]= 0, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveGreenAlt"]= { + ["x"]= 76, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveBlueAlt"]= { + ["x"]= 152, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAltRed"]= { + ["x"]= 152, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAltPurple"]= { + ["x"]= 0, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAltBlue"]= { + ["x"]= 76, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAbyssAlt"]= { + ["x"]= 152, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveRed"]= { + ["x"]= 228, + ["y"]= 0, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActivePrismatic"]= { + ["x"]= 228, + ["y"]= 58, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveLegion"]= { + ["x"]= 228, + ["y"]= 116, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveGreen"]= { + ["x"]= 0, + ["y"]= 228, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveBlue"]= { + ["x"]= 58, + ["y"]= 228, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveAbyss"]= { + ["x"]= 116, + ["y"]= 228, + ["w"]= 58, + ["h"]= 58 + } + } + }, + ["line"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/line-3.png?407bfbed", + ["w"]= 368, + ["h"]= 1140, + ["coords"]= { + ["LineConnectorActive"]= { + ["x"]= 0, + ["y"]= 12, + ["w"]= 368, + ["h"]= 13 + }, + ["Orbit1Active"]= { + ["x"]= 328, + ["y"]= 328, + ["w"]= 39, + ["h"]= 39 + }, + ["Orbit2Active"]= { + ["x"]= 297, + ["y"]= 297, + ["w"]= 70, + ["h"]= 70 + }, + ["Orbit3Active"]= { + ["x"]= 231, + ["y"]= 231, + ["w"]= 136, + ["h"]= 136 + }, + ["Orbit4Active"]= { + ["x"]= 170, + ["y"]= 170, + ["w"]= 197, + ["h"]= 197 + }, + ["Orbit5Active"]= { + ["x"]= 105, + ["y"]= 105, + ["w"]= 262, + ["h"]= 262 + }, + ["Orbit6Active"]= { + ["x"]= 39, + ["y"]= 39, + ["w"]= 329, + ["h"]= 329 + }, + ["LineConnectorNormal"]= { + ["x"]= 0, + ["y"]= 380, + ["w"]= 368, + ["h"]= 13 + }, + ["Orbit1Normal"]= { + ["x"]= 334, + ["y"]= 702, + ["w"]= 33, + ["h"]= 33 + }, + ["Orbit2Normal"]= { + ["x"]= 303, + ["y"]= 671, + ["w"]= 64, + ["h"]= 64 + }, + ["Orbit3Normal"]= { + ["x"]= 237, + ["y"]= 605, + ["w"]= 130, + ["h"]= 130 + }, + ["Orbit4Normal"]= { + ["x"]= 176, + ["y"]= 544, + ["w"]= 191, + ["h"]= 191 + }, + ["Orbit5Normal"]= { + ["x"]= 111, + ["y"]= 480, + ["w"]= 256, + ["h"]= 256 + }, + ["Orbit6Normal"]= { + ["x"]= 45, + ["y"]= 413, + ["w"]= 322, + ["h"]= 322 + }, + ["LineConnectorIntermediate"]= { + ["x"]= 0, + ["y"]= 748, + ["w"]= 368, + ["h"]= 13 + }, + ["Orbit1Intermediate"]= { + ["x"]= 334, + ["y"]= 1070, + ["w"]= 33, + ["h"]= 33 + }, + ["Orbit2Intermediate"]= { + ["x"]= 303, + ["y"]= 1040, + ["w"]= 64, + ["h"]= 64 + }, + ["Orbit3Intermediate"]= { + ["x"]= 237, + ["y"]= 973, + ["w"]= 130, + ["h"]= 130 + }, + ["Orbit4Intermediate"]= { + ["x"]= 176, + ["y"]= 913, + ["w"]= 191, + ["h"]= 191 + }, + ["Orbit5Intermediate"]= { + ["x"]= 111, + ["y"]= 848, + ["w"]= 256, + ["h"]= 256 + }, + ["Orbit6Intermediate"]= { + ["x"]= 45, + ["y"]= 781, + ["w"]= 322, + ["h"]= 322 + }, + ["PSLineDecoHighlighted"]= { + ["x"]= 0, + ["y"]= 1104, + ["w"]= 18, + ["h"]= 18 + }, + ["PSLineDeco"]= { + ["x"]= 0, + ["y"]= 1122, + ["w"]= 18, + ["h"]= 18 + } + } + }, + ["jewelRadius"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/jewel-radius.png?1011b076", + ["w"]= 2252, + ["h"]= 2201, + ["coords"]= { + ["VaalJewelCircle2"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["VaalJewelCircle1"]= { + ["x"]= 563, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["TemplarJewelCircle2"]= { + ["x"]= 0, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["TemplarJewelCircle1"]= { + ["x"]= 563, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["MarakethJewelCircle2"]= { + ["x"]= 1126, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["MarakethJewelCircle1"]= { + ["x"]= 1126, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["KaruiJewelCircle2"]= { + ["x"]= 0, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["KaruiJewelCircle1"]= { + ["x"]= 563, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["KalguurJewelCircle2"]= { + ["x"]= 1126, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["KalguurJewelCircle1"]= { + ["x"]= 1689, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["EternalEmpireJewelCircle2"]= { + ["x"]= 1689, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["EternalEmpireJewelCircle1"]= { + ["x"]= 1689, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["JewelCircle1Inverse"]= { + ["x"]= 0, + ["y"]= 1689, + ["w"]= 512, + ["h"]= 512 + }, + ["JewelCircle1"]= { + ["x"]= 512, + ["y"]= 1689, + ["w"]= 512, + ["h"]= 512 + } + } + } + } +} \ No newline at end of file diff --git a/src/TreeData/3_29/tattoo-active-effect-3.png b/src/TreeData/3_29/tattoo-active-effect-3.png new file mode 100644 index 00000000000..488441673db Binary files /dev/null and b/src/TreeData/3_29/tattoo-active-effect-3.png differ diff --git a/src/TreeData/3_29/tree.lua b/src/TreeData/3_29/tree.lua new file mode 100644 index 00000000000..44224851caf --- /dev/null +++ b/src/TreeData/3_29/tree.lua @@ -0,0 +1,90205 @@ +return { + ["tree"]= "Default", + ["classes"]= { + { + ["name"]= "Scion", + ["base_str"]= 20, + ["base_dex"]= 20, + ["base_int"]= 20, + ["ascendancies"]= { + { + ["id"]= "Ascendant", + ["name"]= "Ascendant" + }, + { + ["id"]= "Reliquarian", + ["name"]= "Reliquarian" + }, + { + ["id"]= "Luminary", + ["name"]= "Luminary" + } + } + }, + { + ["name"]= "Marauder", + ["base_str"]= 32, + ["base_dex"]= 14, + ["base_int"]= 14, + ["ascendancies"]= { + { + ["id"]= "Juggernaut", + ["name"]= "Juggernaut", + ["flavourText"]= " What divides the conqueror \n from the conquered? Perseverance.", + ["flavourTextColour"]= "af5a32", + ["flavourTextRect"]= { + ["x"]= 215, + ["y"]= 165, + ["width"]= 1063, + ["height"]= 436 + } + }, + { + ["id"]= "Berserker", + ["name"]= "Berserker", + ["flavourText"]= "The savage path is \nalways swift and sure.", + ["flavourTextColour"]= "af5a32", + ["flavourTextRect"]= { + ["x"]= 760, + ["y"]= 345, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Chieftain", + ["name"]= "Chieftain", + ["flavourText"]= " The Ancestors speak \nthrough your clenched fists.", + ["flavourTextColour"]= "af5a32", + ["flavourTextRect"]= { + ["x"]= 185, + ["y"]= 245, + ["width"]= 1076, + ["height"]= 449 + } + } + } + }, + { + ["name"]= "Ranger", + ["base_str"]= 14, + ["base_dex"]= 32, + ["base_int"]= 14, + ["ascendancies"]= { + { + ["id"]= "Raider", + ["name"]= "Warden", + ["flavourText"]= "A sacred duty. An ancestral promise.\nDeliver the fury of the wilds and\ntear evil asunder.", + ["flavourTextColour"]= "7cb376", + ["flavourTextRect"]= { + ["x"]= 365, + ["y"]= 965, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Deadeye", + ["name"]= "Deadeye", + ["flavourText"]= "A woman can change the world \nwith a single well-placed arrow.", + ["flavourTextColour"]= "7cb376", + ["flavourTextRect"]= { + ["x"]= 335, + ["y"]= 1045, + ["width"]= 870, + ["height"]= 1330 + } + }, + { + ["id"]= "Pathfinder", + ["name"]= "Pathfinder", + ["flavourText"]= "There are venoms and virtues aplenty in \n the wilds, if you know where to look.", + ["flavourTextColour"]= "7cb376", + ["flavourTextRect"]= { + ["x"]= 265, + ["y"]= 975, + ["width"]= 900, + ["height"]= 1250 + } + } + } + }, + { + ["name"]= "Witch", + ["base_str"]= 14, + ["base_dex"]= 14, + ["base_int"]= 32, + ["ascendancies"]= { + { + ["id"]= "Occultist", + ["name"]= "Occultist", + ["flavourText"]= " Throw off the chains\nof fear and embrace that\n which was forbidden.", + ["flavourTextColour"]= "9ac3c9", + ["flavourTextRect"]= { + ["x"]= 665, + ["y"]= 385, + ["width"]= 906, + ["height"]= 389 + } + }, + { + ["id"]= "Elementalist", + ["name"]= "Elementalist", + ["flavourText"]= "Feed a storm with savage intent \nand not even the strongest walls\nwill hold it back.", + ["flavourTextColour"]= "9ac3c9", + ["flavourTextRect"]= { + ["x"]= 125, + ["y"]= 475, + ["width"]= 510, + ["height"]= 768 + } + }, + { + ["id"]= "Necromancer", + ["name"]= "Necromancer", + ["flavourText"]= "Embrace the serene\npower that is undeath.", + ["flavourTextColour"]= "9ac3c9", + ["flavourTextRect"]= { + ["x"]= 720, + ["y"]= 303, + ["width"]= 1000, + ["height"]= 1000 + } + } + } + }, + { + ["name"]= "Duelist", + ["base_str"]= 23, + ["base_dex"]= 23, + ["base_int"]= 14, + ["ascendancies"]= { + { + ["id"]= "Slayer", + ["name"]= "Slayer", + ["flavourText"]= " No judge. No jury.\nJust the executioner.", + ["flavourTextColour"]= "96afc8", + ["flavourTextRect"]= { + ["x"]= 470, + ["y"]= 310, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Gladiator", + ["name"]= "Gladiator", + ["flavourText"]= "Raise your hand to the \nroaring crowd and pledge \nyour allegiance to glory.", + ["flavourTextColour"]= "96afc8", + ["flavourTextRect"]= { + ["x"]= 670, + ["y"]= 395, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Champion", + ["name"]= "Champion", + ["flavourText"]= "Champion that which \n you love. He who fights\n for nothing, dies\n for nothing.", + ["flavourTextColour"]= "96afc8", + ["flavourTextRect"]= { + ["x"]= 735, + ["y"]= 625, + ["width"]= 976, + ["height"]= 429 + } + } + } + }, + { + ["name"]= "Templar", + ["base_str"]= 23, + ["base_dex"]= 14, + ["base_int"]= 23, + ["ascendancies"]= { + { + ["id"]= "Inquisitor", + ["name"]= "Inquisitor", + ["flavourText"]= " Truth is elusive, yet God has\nprovided us with all the tools \n necessary to find it.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 285, + ["y"]= 940, + ["width"]= 926, + ["height"]= 429 + } + }, + { + ["id"]= "Hierophant", + ["name"]= "Hierophant", + ["flavourText"]= "Drink deeply from God's\n chalice, for the faithful\n will never find it empty.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 100, + ["y"]= 720, + ["width"]= 936, + ["height"]= 399 + } + }, + { + ["id"]= "Guardian", + ["name"]= "Guardian", + ["flavourText"]= "When bound by faith\n and respect, the flock\n will overwhelm the wolf.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 170, + ["y"]= 780, + ["width"]= 976, + ["height"]= 429 + } + } + } + }, + { + ["name"]= "Shadow", + ["base_str"]= 14, + ["base_dex"]= 23, + ["base_int"]= 23, + ["ascendancies"]= { + { + ["id"]= "Assassin", + ["name"]= "Assassin", + ["flavourText"]= "Death is a banquet. \n It's up to the murderer \n to write the menu.", + ["flavourTextColour"]= "72818d", + ["flavourTextRect"]= { + ["x"]= 650, + ["y"]= 845, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Trickster", + ["name"]= "Trickster", + ["flavourText"]= " Everyone knows how to die. \n Some just need a little nudge \nto get them started.", + ["flavourTextColour"]= "72818d", + ["flavourTextRect"]= { + ["x"]= 315, + ["y"]= 150, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Saboteur", + ["name"]= "Saboteur", + ["flavourText"]= "The artist need not be present \n to make a lasting impression.", + ["flavourTextColour"]= "72818d", + ["flavourTextRect"]= { + ["x"]= 355, + ["y"]= 970, + ["width"]= 976, + ["height"]= 429 + } + } + } + } + }, + ["alternate_ascendancies"]= { + { + ["id"]= "Warden", + ["name"]= "Warden of the Maji", + ["flavourText"]= "A Warden of the Maji has sworn\nto walk the righteous path.", + ["flavourTextColour"]= "b0d9b3", + ["flavourTextRect"]= { + ["x"]= 485, + ["y"]= 226, + ["width"]= 1000, + ["height"]= 1000 + } + }, + { + ["id"]= "Warlock", + ["name"]= "Warlock of the Mists", + ["flavourText"]= " A Warlock of the Mists\n seeks mastery over\nthe darkness.", + ["flavourTextColour"]= "bf999c", + ["flavourTextRect"]= { + ["x"]= 327, + ["y"]= 252, + ["width"]= 1000, + ["height"]= 1000 + } + }, + { + ["id"]= "Primalist", + ["name"]= "Wildwood Primalist", + ["flavourText"]= "A Primalist of the\nWildwood answers\nto no one.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 919, + ["y"]= 464, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Trialmaster", + ["name"]= "Chaos Bloodline", + ["flavourText"]= "Your entire existence is merely\na jest to entertain Chaos.", + ["flavourTextColour"]= "c1a76b", + ["flavourTextRect"]= { + ["x"]= 500, + ["y"]= 960, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Oshabi", + ["name"]= "Oshabi Bloodline", + ["flavourText"]= " Wraeclast's Lifeforce flows\nthrough your veins.", + ["flavourTextColour"]= "92c0e2", + ["flavourTextRect"]= { + ["x"]= 516, + ["y"]= 954, + ["width"]= 1050, + ["height"]= 1100 + } + }, + { + ["id"]= "KingInTheMists", + ["name"]= "Nameless Bloodline", + ["flavourText"]= "Crawling out of the dark,\nyou seek the exquisite\nlight of meaning.", + ["flavourTextColour"]= "7f7ab7", + ["flavourTextRect"]= { + ["x"]= 500, + ["y"]= 950, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Catarina", + ["name"]= "Catarina Bloodline", + ["flavourText"]= "Distant screaming echoes...\nthe Well of Souls, calling\nto you from below...", + ["flavourTextColour"]= "b4eecc", + ["flavourTextRect"]= { + ["x"]= 330, + ["y"]= 920, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Aul", + ["name"]= "Aul Bloodline", + ["flavourText"]= "The Crystal King traded his\npeople for dark power.\nNow, it is yours.", + ["flavourTextColour"]= "dcfaff", + ["flavourTextRect"]= { + ["x"]= 530, + ["y"]= 1025, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Lycia", + ["name"]= "Lycia Bloodline", + ["flavourText"]= "The Original Sin\nwas not your doing,\nbut it is still your\nburden to bear.", + ["flavourTextColour"]= "e8c2a7", + ["flavourTextRect"]= { + ["x"]= 925, + ["y"]= 530, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Olroth", + ["name"]= "Olroth Bloodline", + ["flavourText"]= "Yours is a legacy of\nheroes... fallen, or\notherwise.", + ["flavourTextColour"]= "90a8c6", + ["flavourTextRect"]= { + ["x"]= 570, + ["y"]= 470, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Farrul", + ["name"]= "Farrul Bloodline", + ["flavourText"]= "You and your pack run wild\nand free, brawling\nas you see fit.", + ["flavourTextColour"]= "ffcbaf", + ["flavourTextRect"]= { + ["x"]= 520, + ["y"]= 200, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Delirious", + ["name"]= "Delirious Bloodline", + ["flavourText"]= "Laughter echoes from\nthe darkest depths\nof your mind.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 850, + ["y"]= 800, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Breachlord", + ["name"]= "Breachlord Bloodline", + ["flavourText"]= "Deep within you, the chains\nof life itself were forged\nwith intent...", + ["flavourTextColour"]= "dcafff", + ["flavourTextRect"]= { + ["x"]= 340, + ["y"]= 960, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Necromantic", + ["name"]= "Saresh Bloodline", + ["flavourText"]= "Conquer not the darkness within.\nUse it. Make it your strength.", + ["flavourTextColour"]= "b4eecc", + ["flavourTextRect"]= { + ["x"]= 420, + ["y"]= 890, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Brinerot", + ["name"]= "Velka Bloodline", + ["flavourText"]= "Tsoatha awaits the drowned\nand damned, in depths\nbeyond the mortal ken.", + ["flavourTextColour"]= "b4eecc", + ["flavourTextRect"]= { + ["x"]= 540, + ["y"]= 930, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Abyssal", + ["name"]= "Abyssal Bloodline", + ["flavourText"]= " Return to the Source. \nFrom there, be remade.", + ["flavourTextColour"]= "b7d68a", + ["flavourTextRect"]= { + ["x"]= 500, + ["y"]= 920, + ["width"]= 900, + ["height"]= 1250 + } + } + }, + ["groups"]= { + [1]= { + ["x"]= -1096.9000000000015, + ["y"]= 13399.92, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "28609" + } + }, + [2]= { + ["x"]= -1096.9000000000015, + ["y"]= 13800.330000000002, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16287" + } + }, + [3]= { + ["x"]= -7121.9, + ["y"]= 12087.57, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52349" + } + }, + [4]= { + ["x"]= -7116.700000000001, + ["y"]= 12250.84, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43376" + } + }, + [5]= { + ["x"]= -750.0, + ["y"]= 13600.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57472", + "25703", + "58999", + "2643", + "35214" + } + }, + [6]= { + ["x"]= -6963.5, + ["y"]= 12249.67, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21785" + } + }, + [7]= { + ["x"]= 475.39999999999964, + ["y"]= 12288.560000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27121" + } + }, + [8]= { + ["x"]= 580.5, + ["y"]= 12398.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "7442" + } + }, + [9]= { + ["x"]= -485.5, + ["y"]= 13519.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64963" + } + }, + [10]= { + ["x"]= -485.5, + ["y"]= 13681.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19208" + } + }, + [11]= { + ["x"]= -6750, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "9437", + "10696", + "41464", + "16350", + "542" + } + }, + [12]= { + ["x"]= 693.8999999999996, + ["y"]= 12290.91, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37670" + } + }, + [13]= { + ["x"]= 750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35011", + "48251", + "15739", + "41387", + "34952", + "31878", + "10861" + } + }, + [14]= { + ["x"]= -337.2000000000007, + ["y"]= 13519.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14588" + } + }, + [15]= { + ["x"]= -337.2000000000007, + ["y"]= 13681.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35380" + } + }, + [16]= { + ["x"]= -3750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "14190", + "59826", + "17309", + "38886", + "17570", + "44848", + "9086" + } + }, + [17]= { + ["x"]= 750.0, + ["y"]= 13236.72, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17080" + } + }, + [18]= { + ["x"]= 750.0, + ["y"]= 13600.0, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "13362", + "51685", + "34977", + "19078", + "39381", + "7600" + } + }, + [19]= { + ["x"]= 6750.000000000002, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "47543", + "18519", + "32216", + "36393", + "12542", + "63834", + "41389" + } + }, + [20]= { + ["x"]= 4808.200000000001, + ["y"]= 12003.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8138" + } + }, + [21]= { + ["x"]= 4912.800000000001, + ["y"]= 11893.029999999999, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40953" + } + }, + [22]= { + ["x"]= 4913.500000000002, + ["y"]= 12101.74, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48816" + } + }, + [23]= { + ["x"]= 3750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "43902", + "52553", + "44903", + "12354", + "46649", + "48836", + "9920" + } + }, + [24]= { + ["x"]= 5250.000000000002, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32265", + "10916", + "58438", + "63020", + "25187", + "13988", + "37815" + } + }, + [25]= { + ["x"]= -750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "30061", + "33670", + "52408", + "34442", + "46704", + "39486", + "9939" + } + }, + [26]= { + ["x"]= 2250.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "27869", + "47767", + "3872", + "36020", + "8638", + "32740", + "31958" + } + }, + [27]= { + ["x"]= -2250, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61092", + "57290", + "60118", + "7403", + "17297" + } + }, + [28]= { + ["x"]= -10400.0, + ["y"]= 3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "5865", + "38999", + "24528", + "59920", + "63673", + "29630", + "48904", + "8592", + "63583", + "42861", + "50024", + "32251", + "57560", + "9271", + "29294" + } + }, + [29]= { + ["x"]= -10400, + ["y"]= -5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32992", + "61372", + "64768", + "16745", + "4494", + "40010", + "19641", + "5929", + "3458", + "55146", + "42264", + "39728", + "32364", + "37419", + "46952", + "20050", + "409" + } + }, + [30]= { + ["x"]= -2039.8999999999996, + ["y"]= 11751.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49785" + } + }, + [31]= { + ["x"]= -1882, + ["y"]= 11911.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27737" + } + }, + [32]= { + ["x"]= -1878.3999999999996, + ["y"]= 11755.55, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30271" + } + }, + [33]= { + ["x"]= 9384.8, + ["y"]= 11882.65, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8066" + } + }, + [34]= { + ["x"]= -10403.7, + ["y"]= 5198.65, + ["orbits"]= { + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "17988", + "16093", + "63417", + "51998", + "5819", + "53816" + } + }, + [35]= { + ["x"]= -10400.0, + ["y"]= 5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "23972", + "44297", + "1734", + "56789", + "49153", + "32115", + "62349", + "62595", + "17765" + } + }, + [36]= { + ["x"]= -5250.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6344", + "48711", + "52855", + "35069", + "53398", + "48406", + "63630" + } + }, + [37]= { + ["x"]= -10400.0, + ["y"]= -3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "44797", + "34434", + "25651", + "60462", + "33167", + "40510", + "38387", + "51492", + "26714", + "14870", + "29994", + "11046", + "22637", + "922", + "29026", + "1105", + "30940" + } + }, + [38]= { + ["x"]= -10400.0, + ["y"]= 2200, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "24704", + "47486", + "48480", + "53095", + "14996", + "61355", + "32249", + "10238", + "42659", + "982", + "9971", + "5643", + "6028", + "31667", + "50692", + "1731" + } + }, + [39]= { + ["x"]= 9750, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "12860", + "43660", + "5452", + "60686", + "38740", + "8133" + } + }, + [40]= { + ["x"]= -10400.0, + ["y"]= -2200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "43193", + "3154", + "39790", + "32816", + "27055", + "13851", + "19417", + "35739", + "57222", + "10635", + "60769", + "662", + "37486", + "53884", + "48214", + "40059", + "61871" + } + }, + [41]= { + ["x"]= 9300.0, + ["y"]= 7300.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "8982", + "20931", + "52780", + "699", + "57850", + "58281", + "24924", + "39142", + "26596", + "23155", + "60511", + "30632", + "19689", + "42328", + "45727" + } + }, + [42]= { + ["x"]= -10156.7, + ["y"]= -75.185, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "49951" + } + }, + [43]= { + ["x"]= 9537.1, + ["y"]= 7243.85, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "28601" + } + }, + [44]= { + ["x"]= -8139.519999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32669" + } + }, + [45]= { + ["x"]= 9635.01, + ["y"]= 7409.410000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52417" + } + }, + [46]= { + ["x"]= -8037.519999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43645" + } + }, + [47]= { + ["x"]= 9732.29, + ["y"]= 7243.85, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10538" + } + }, + [48]= { + ["x"]= -7935.1799999999985, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1977" + } + }, + [49]= { + ["x"]= -7800.0, + ["y"]= 10600.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61133", + "15900", + "31517", + "1564", + "56292", + "25944", + "63954", + "27123", + "30675", + "35877", + "46479", + "15726" + } + }, + [50]= { + ["x"]= -9609.67, + ["y"]= -116.185, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28018", + "36931" + } + }, + [51]= { + ["x"]= -9513.17, + ["y"]= -1271.76, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "22046" + } + }, + [52]= { + ["x"]= -7680.799999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52633" + } + }, + [53]= { + ["x"]= -7578.799999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32095" + } + }, + [54]= { + ["x"]= -9381.74, + ["y"]= 1107.23, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "3854" + } + }, + [55]= { + ["x"]= -7476.799999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19993" + } + }, + [56]= { + ["x"]= -8397.960000000001, + ["y"]= 7384.120000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4194" + } + }, + [57]= { + ["x"]= -9204.17, + ["y"]= -818.535, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53203", + "14993" + } + }, + [58]= { + ["x"]= -9143.74, + ["y"]= 613.015, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25441", + "24970" + } + }, + [59]= { + ["x"]= -8308.84, + ["y"]= 7307.630000000001, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "57052" + } + }, + [60]= { + ["x"]= 7200.0, + ["y"]= 9400.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "63623", + "43670", + "29914", + "18060", + "34229", + "22174", + "4245", + "54139", + "24462", + "10539", + "10622" + } + }, + [61]= { + ["x"]= -8263.54, + ["y"]= 6772.18, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "42144" + } + }, + [62]= { + ["x"]= -8218.460000000001, + ["y"]= 7384.860000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "61072" + } + }, + [63]= { + ["x"]= -8169.710000000001, + ["y"]= 6934.780000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43962" + } + }, + [64]= { + ["x"]= -8169.710000000001, + ["y"]= 6988.360000000001, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41534", + "22551", + "15435", + "54877", + "57429" + } + }, + [65]= { + ["x"]= -8168.549999999999, + ["y"]= 7413.67, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33875", + "30690", + "193", + "61437", + "24755" + } + }, + [66]= { + ["x"]= -8947.77, + ["y"]= -2419.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5624" + } + }, + [67]= { + ["x"]= -8077.540000000001, + ["y"]= 6773.14, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30919" + } + }, + [68]= { + ["x"]= -8032.210000000001, + ["y"]= 7653.950000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43195" + } + }, + [69]= { + ["x"]= -8839.55, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52282" + } + }, + [70]= { + ["x"]= -8798.67, + ["y"]= -116.185, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "49080", + "17219", + "44169", + "30275" + } + }, + [71]= { + ["x"]= -7940.299999999999, + ["y"]= 7730.33, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "34774" + } + }, + [72]= { + ["x"]= -7846.370000000001, + ["y"]= 7652.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39598" + } + }, + [73]= { + ["x"]= -7800.0, + ["y"]= 7200.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35754" + } + }, + [74]= { + ["x"]= -7800.0, + ["y"]= 7626.0, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17445", + "41996", + "607", + "24798", + "63357" + } + }, + [75]= { + ["x"]= -7798.85, + ["y"]= 6774.01, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2521", + "56722", + "58029", + "51782", + "62162" + } + }, + [76]= { + ["x"]= -8407.01, + ["y"]= 8900.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56940" + } + }, + [77]= { + ["x"]= -7749.73, + ["y"]= 6745.64, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8281" + } + }, + [78]= { + ["x"]= 8249.999999999998, + ["y"]= 8350.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "8243", + "34814", + "5220", + "41197", + "34637", + "63362", + "53414", + "33897", + "48606", + "24764", + "20772", + "29259", + "32605", + "9414", + "29212" + } + }, + [79]= { + ["x"]= -8350.01, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48040" + } + }, + [80]= { + ["x"]= -8350.01, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35448" + } + }, + [81]= { + ["x"]= -7658.549999999999, + ["y"]= 6586.47, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10099" + } + }, + [82]= { + ["x"]= -8236.01, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16994" + } + }, + [83]= { + ["x"]= -8236.01, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22628" + } + }, + [84]= { + ["x"]= -7568.0, + ["y"]= 6745.280000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12597" + } + }, + [85]= { + ["x"]= -7521.26, + ["y"]= 7627.0700000000015, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8656" + } + }, + [86]= { + ["x"]= -8302.22, + ["y"]= -2419.3, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "7092", + "31153", + "11016", + "29061", + "55993", + "41251", + "8198", + "44298", + "13164", + "44347", + "14665" + } + }, + [87]= { + ["x"]= -8289.29, + ["y"]= 3504.75, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "25367", + "63184", + "33082", + "7082", + "62042", + "4336", + "55166", + "49415" + } + }, + [88]= { + ["x"]= -8285.5, + ["y"]= 2423.75, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "9976", + "20018", + "6113", + "12407", + "25682", + "49571", + "57953", + "4940", + "24224", + "23038" + } + }, + [89]= { + ["x"]= -7431.08, + ["y"]= 6987.0, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42546", + "45403", + "772", + "53992", + "43336" + } + }, + [90]= { + ["x"]= -7431.08, + ["y"]= 7413.0, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7618", + "42671", + "38689", + "31598", + "49532" + } + }, + [91]= { + ["x"]= -7431.08, + ["y"]= 7467.1900000000005, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "9327" + } + }, + [92]= { + ["x"]= -8255.37, + ["y"]= -473.585, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40849" + } + }, + [93]= { + ["x"]= -7409.25, + ["y"]= 7587.610000000001, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "34567" + } + }, + [94]= { + ["x"]= -7381.139999999999, + ["y"]= 7015.83, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43122" + } + }, + [95]= { + ["x"]= -8133.71, + ["y"]= -1435.31, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "62416", + "51559", + "54667", + "16113", + "18990", + "48282", + "16754", + "39761", + "37639", + "47427", + "60740", + "42917" + } + }, + [96]= { + ["x"]= -7290.77, + ["y"]= 7174.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6778" + } + }, + [97]= { + ["x"]= -8114.3, + ["y"]= 811.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60992", + "65125", + "33623", + "27806" + } + }, + [98]= { + ["x"]= -8112.84, + ["y"]= 1342.17, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "40645", + "46127", + "20966", + "8500", + "30547", + "15163", + "57266", + "38023", + "14832", + "16703" + } + }, + [99]= { + ["x"]= -7914.7300000000005, + ["y"]= 8407.03, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8081" + } + }, + [100]= { + ["x"]= -7914.0, + ["y"]= 9393.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20160" + } + }, + [101]= { + ["x"]= -7857.0, + ["y"]= 8308.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43857" + } + }, + [102]= { + ["x"]= -7857.0, + ["y"]= 8505.76, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59067" + } + }, + [103]= { + ["x"]= -7857.0, + ["y"]= 9294.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "47058" + } + }, + [104]= { + ["x"]= -7857.0, + ["y"]= 9491.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26055" + } + }, + [105]= { + ["x"]= -8037.65, + ["y"]= -734.625, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "58556" + } + }, + [106]= { + ["x"]= -8031.67, + ["y"]= -34.185, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "26712", + "35288", + "55190" + } + }, + [107]= { + ["x"]= -7197.92, + ["y"]= 7014.380000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "58827" + } + }, + [108]= { + ["x"]= -7800.0, + ["y"]= 8900.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35936", + "12003", + "36489", + "35989", + "22441", + "16633", + "15544", + "18147", + "9258", + "52094", + "60582", + "2460", + "10108" + } + }, + [109]= { + ["x"]= -7992.94, + ["y"]= -3226.1, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19732" + } + }, + [110]= { + ["x"]= -7961.5, + ["y"]= 3076.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64238", + "44268", + "4918", + "26037" + } + }, + [111]= { + ["x"]= -7953.34, + ["y"]= -3869.58, + ["orbits"]= { + 0, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35260", + "38989", + "26481", + "41190", + "43647", + "19103", + "15046", + "4177", + "29106", + "25332" + } + }, + [112]= { + ["x"]= -7952.3, + ["y"]= 487.555, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31961" + } + }, + [113]= { + ["x"]= -7743.0, + ["y"]= 8308.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17386" + } + }, + [114]= { + ["x"]= -7743.0, + ["y"]= 8505.76, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40276" + } + }, + [115]= { + ["x"]= -7743.0, + ["y"]= 9294.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "25795" + } + }, + [116]= { + ["x"]= -7743.0, + ["y"]= 9491.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54928" + } + }, + [117]= { + ["x"]= -7686.0, + ["y"]= 8407.03, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37303" + } + }, + [118]= { + ["x"]= -7686.0, + ["y"]= 9393.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27054" + } + }, + [119]= { + ["x"]= -7671.71, + ["y"]= -3403.6, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26270" + } + }, + [120]= { + ["x"]= -7671.71, + ["y"]= -2419.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60472" + } + }, + [121]= { + ["x"]= -7671.71, + ["y"]= -1435.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23027" + } + }, + [122]= { + ["x"]= -7671.71, + ["y"]= -734.625, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44202" + } + }, + [123]= { + ["x"]= -7671.71, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "29353" + } + }, + [124]= { + ["x"]= -7671.71, + ["y"]= 156.555, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "63282" + } + }, + [125]= { + ["x"]= -7671.71, + ["y"]= 1342.17, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59928" + } + }, + [126]= { + ["x"]= -7671.71, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63723" + } + }, + [127]= { + ["x"]= -7671.71, + ["y"]= 3504.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5233" + } + }, + [128]= { + ["x"]= -7670.75, + ["y"]= 4000.99, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16810", + "44922", + "48813", + "10851", + "861" + } + }, + [129]= { + ["x"]= -7421.0, + ["y"]= 8900.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "2768" + } + }, + [130]= { + ["x"]= -7364.0, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33467" + } + }, + [131]= { + ["x"]= -7364.0, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48410" + } + }, + [132]= { + ["x"]= -7250.0, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8967" + } + }, + [133]= { + ["x"]= -7250.0, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36072" + } + }, + [134]= { + ["x"]= -7403.27, + ["y"]= -3010.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57283", + "33943", + "28449", + "27235" + } + }, + [135]= { + ["x"]= -7403.27, + ["y"]= -1834.61, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48144", + "21048", + "10555", + "46471" + } + }, + [136]= { + ["x"]= -7193.0, + ["y"]= 8900.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54569" + } + }, + [137]= { + ["x"]= -7386.21, + ["y"]= -5366.31, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "60619", + "20467", + "5068", + "18379", + "39657", + "24677", + "61950", + "27134", + "31292" + } + }, + [138]= { + ["x"]= -7352.58, + ["y"]= -1073.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "55027", + "22180", + "15783", + "18208", + "27157" + } + }, + [139]= { + ["x"]= -7345.25, + ["y"]= 2011.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44624", + "31604", + "43601", + "25796", + "26023" + } + }, + [140]= { + ["x"]= -7345.25, + ["y"]= 2836.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "864", + "61388", + "24858", + "52074" + } + }, + [141]= { + ["x"]= -7335.75, + ["y"]= 4904.96, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15727", + "53630", + "34750", + "30439", + "38320", + "55194", + "19794", + "61351", + "27697", + "8879", + "14419" + } + }, + [142]= { + ["x"]= -7313.92, + ["y"]= -311.685, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38377", + "24157", + "53757", + "11431", + "30825", + "63150" + } + }, + [143]= { + ["x"]= -7276.56, + ["y"]= 372.995, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9471", + "34590", + "48199", + "53332", + "30714", + "24716" + } + }, + [144]= { + ["x"]= -7250.82, + ["y"]= 892.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58831", + "33823", + "56355", + "39023", + "37501", + "15678" + } + }, + [145]= { + ["x"]= -7196.51, + ["y"]= -4864.57, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34487", + "65159", + "31520", + "4300", + "63635", + "35910", + "11190" + } + }, + [146]= { + ["x"]= -7163.5, + ["y"]= -3686.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "22472", + "57167", + "28076", + "51108", + "44948" + } + }, + [147]= { + ["x"]= -7045.5, + ["y"]= 1345.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "30302", + "53517", + "2219", + "48822" + } + }, + [148]= { + ["x"]= -6982.69, + ["y"]= 3147.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62017", + "55676", + "33287", + "64406" + } + }, + [149]= { + ["x"]= -6982.69, + ["y"]= 3823.5, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46585", + "54880", + "40619", + "32242" + } + }, + [150]= { + ["x"]= -6915.5, + ["y"]= 1795.43, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44429", + "30380", + "53118", + "4139" + } + }, + [151]= { + ["x"]= -6915.5, + ["y"]= 2421.91, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38508", + "26725", + "48109", + "37326", + "62429", + "62363" + } + }, + [152]= { + ["x"]= -6901.83, + ["y"]= -2419.3, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "40766", + "37999", + "26196", + "11730", + "34173", + "27575", + "34171" + } + }, + [153]= { + ["x"]= -6828.96, + ["y"]= -734.625, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46636", + "21929", + "38836", + "27137", + "38906", + "37641" + } + }, + [154]= { + ["x"]= -6820.83, + ["y"]= -3264.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40508", + "46897", + "35958", + "30393" + } + }, + [155]= { + ["x"]= -6820.83, + ["y"]= -1575.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "36949", + "6712", + "10031", + "41415" + } + }, + [156]= { + ["x"]= -6748.04, + ["y"]= 469.705, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "52220", + "55854", + "1572", + "47421", + "38538", + "23760", + "26564" + } + }, + [157]= { + ["x"]= -6747.96, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50570" + } + }, + [158]= { + ["x"]= -6747.23, + ["y"]= -5354.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41970" + } + }, + [159]= { + ["x"]= -6747.23, + ["y"]= -5004.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64210" + } + }, + [160]= { + ["x"]= -6721.77, + ["y"]= 5117.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "57279" + } + }, + [161]= { + ["x"]= -6705.94, + ["y"]= 3423.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12247", + "56359", + "2841", + "7285" + } + }, + [162]= { + ["x"]= -6704.71, + ["y"]= -6037.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5916", + "4713", + "6245", + "11505", + "29049" + } + }, + [163]= { + ["x"]= -6666.6, + ["y"]= -4474.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5935", + "9392", + "32932", + "47197", + "21974", + "25831" + } + }, + [164]= { + ["x"]= -6498.31, + ["y"]= 1345.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45163", + "5203", + "42106", + "10989", + "41305", + "58728" + } + }, + [165]= { + ["x"]= -6470.02, + ["y"]= 4400.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64221", + "39678", + "54629", + "48717" + } + }, + [166]= { + ["x"]= -6469.34, + ["y"]= 4904.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "3644" + } + }, + [167]= { + ["x"]= -6469.34, + ["y"]= 5399.76, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17527", + "9402", + "44191", + "22480" + } + }, + [168]= { + ["x"]= -6459.46, + ["y"]= 2775.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35977", + "63027", + "65400", + "36200", + "34973" + } + }, + [169]= { + ["x"]= -6403.61, + ["y"]= -6278.51, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63425" + } + }, + [170]= { + ["x"]= -6296.12, + ["y"]= 8427.24, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35070" + } + }, + [171]= { + ["x"]= -6235.44, + ["y"]= -3583.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40439", + "40776", + "53018", + "15973", + "19679", + "59070", + "21389" + } + }, + [172]= { + ["x"]= -6215.38, + ["y"]= 6072.29, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "25031", + "23036", + "40229", + "53987", + "11792", + "47426", + "10594", + "57992", + "31257", + "59423" + } + }, + [173]= { + ["x"]= -6195.83, + ["y"]= 469.705, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "27195", + "27166", + "7399", + "42792", + "48929", + "34917", + "15522", + "25989" + } + }, + [174]= { + ["x"]= -6186.4, + ["y"]= -4863.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58218", + "5743", + "9386", + "14057", + "32241" + } + }, + [175]= { + ["x"]= -6152.23, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22285" + } + }, + [176]= { + ["x"]= -6150.77, + ["y"]= -6644.11, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "64395", + "48349", + "34327", + "53945", + "45486", + "15716", + "22728", + "46672", + "56094" + } + }, + [177]= { + ["x"]= -6150.77, + ["y"]= -6037.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "7444" + } + }, + [178]= { + ["x"]= -6143.53, + ["y"]= -2418.83, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "29199" + } + }, + [179]= { + ["x"]= -6075.53, + ["y"]= -300.175, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7374", + "3533", + "11088", + "65108", + "48505" + } + }, + [180]= { + ["x"]= -6074.46, + ["y"]= 3794.65, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63422", + "28311", + "62108", + "28862" + } + }, + [181]= { + ["x"]= -6066.06, + ["y"]= -8240.17, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "40114" + } + }, + [182]= { + ["x"]= -6019.42, + ["y"]= 4582, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7528", + "20913", + "9361", + "40189", + "39437", + "223", + "50842" + } + }, + [183]= { + ["x"]= -5995.21, + ["y"]= -1100.35, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "494", + "63306", + "62879", + "59976", + "55017" + } + }, + [184]= { + ["x"]= -5928.13, + ["y"]= 849.435, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44941" + } + }, + [185]= { + ["x"]= -5913.84, + ["y"]= -665.845, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39713" + } + }, + [186]= { + ["x"]= -5850.88, + ["y"]= -5700.01, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46842", + "16123", + "63398", + "36452" + } + }, + [187]= { + ["x"]= -5843.81, + ["y"]= -3755.02, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "42343" + } + }, + [188]= { + ["x"]= -5830.3, + ["y"]= 4985.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28284", + "25531", + "19884", + "49772" + } + }, + [189]= { + ["x"]= -5751.73, + ["y"]= -4474.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38921", + "19919", + "62767", + "63138", + "55743", + "6967" + } + }, + [190]= { + ["x"]= -5749.1, + ["y"]= 8386.24, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58355", + "61666" + } + }, + [191]= { + ["x"]= -5694.69, + ["y"]= 6299.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23090" + } + }, + [192]= { + ["x"]= -5659.23, + ["y"]= -1897.57, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "31931", + "15064" + } + }, + [193]= { + ["x"]= -5659.23, + ["y"]= -812.845, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "15631" + } + }, + [194]= { + ["x"]= -5659.23, + ["y"]= -486.185, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "50422" + } + }, + [195]= { + ["x"]= -5659.23, + ["y"]= -381.175, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44967" + } + }, + [196]= { + ["x"]= -5659.23, + ["y"]= 686.855, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10221" + } + }, + [197]= { + ["x"]= -5659.23, + ["y"]= 1795.43, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "6446", + "55649" + } + }, + [198]= { + ["x"]= -5659.23, + ["y"]= 3066.9, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "53793", + "40653" + } + }, + [199]= { + ["x"]= -5659.23, + ["y"]= 4062.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38119", + "48284", + "9052", + "32738", + "5368" + } + }, + [200]= { + ["x"]= -5650.53, + ["y"]= -2950.04, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "10575", + "58402" + } + }, + [201]= { + ["x"]= -5581.6, + ["y"]= 9582.81, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "27475" + } + }, + [202]= { + ["x"]= -5519.05, + ["y"]= -8281.17, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55706", + "12613" + } + }, + [203]= { + ["x"]= -5515.19, + ["y"]= -5096.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40291", + "885", + "37163", + "24324", + "63268" + } + }, + [204]= { + ["x"]= -5465.32, + ["y"]= -3139.18, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59728" + } + }, + [205]= { + ["x"]= -5465.32, + ["y"]= -1675.85, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "62303" + } + }, + [206]= { + ["x"]= -5460.9, + ["y"]= 5527, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "43822", + "2411", + "35992", + "5126", + "27931" + } + }, + [207]= { + ["x"]= -5460.9, + ["y"]= 6072.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14930" + } + }, + [208]= { + ["x"]= -5460.9, + ["y"]= 6614.78, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40818", + "12664", + "41068", + "45565", + "31473", + "22295" + } + }, + [209]= { + ["x"]= -5429.29, + ["y"]= -6118.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14505", + "48713", + "7898", + "35685", + "35791", + "1722" + } + }, + [210]= { + ["x"]= -5422.56, + ["y"]= -9436.75, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "18361" + } + }, + [211]= { + ["x"]= -5370.94, + ["y"]= -159.685, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32245" + } + }, + [212]= { + ["x"]= -5370.94, + ["y"]= 173.315, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50197" + } + }, + [213]= { + ["x"]= -5362.15, + ["y"]= 1795.43, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "34130", + "14606", + "10282", + "39786", + "35663", + "64077", + "60169", + "2454", + "38777" + } + }, + [214]= { + ["x"]= -5362.15, + ["y"]= 3066.9, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6718", + "31928", + "61868", + "10542", + "31033", + "37884", + "32482", + "59861", + "65308" + } + }, + [215]= { + ["x"]= -5343.6, + ["y"]= 9088.58, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64166", + "51198" + } + }, + [216]= { + ["x"]= -5264.32, + ["y"]= -1040.84, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6968", + "49698", + "41599", + "55926", + "1761", + "36859" + } + }, + [217]= { + ["x"]= -5264.32, + ["y"]= -584.845, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25535", + "64426", + "62214", + "1593", + "20832" + } + }, + [218]= { + ["x"]= -5245.5, + ["y"]= -2418.83, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "30693", + "33435", + "44799", + "58453", + "21262", + "12536", + "54694" + } + }, + [219]= { + ["x"]= -5241.52, + ["y"]= 546.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2550", + "54396", + "1550", + "48267", + "25168", + "5430" + } + }, + [220]= { + ["x"]= -5241.52, + ["y"]= 1023.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50225", + "24155", + "15086", + "55772", + "59013" + } + }, + [221]= { + ["x"]= -5156.17, + ["y"]= -5460.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25313", + "63558", + "18239", + "55381" + } + }, + [222]= { + ["x"]= -5127.19, + ["y"]= 3807.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33098", + "49652", + "49645", + "22067" + } + }, + [223]= { + ["x"]= -5125.15, + ["y"]= 4488.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16756", + "30251", + "58540", + "7440" + } + }, + [224]= { + ["x"]= -5113.54, + ["y"]= -8983.51, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26661", + "16218" + } + }, + [225]= { + ["x"]= -5041.83, + ["y"]= 7475.71, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32376", + "64257", + "47902", + "38462", + "62109", + "15491", + "42495", + "56330", + "15226", + "41744" + } + }, + [226]= { + ["x"]= -4938.1, + ["y"]= 8386.24, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "10532", + "23756", + "46519", + "28650" + } + }, + [227]= { + ["x"]= -4925.05, + ["y"]= -7237.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57404", + "3089", + "60145", + "28034", + "9213" + } + }, + [228]= { + ["x"]= -4886.51, + ["y"]= -4619.33, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37698", + "44465", + "29472", + "45657" + } + }, + [229]= { + ["x"]= -4886.51, + ["y"]= -4085.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53677", + "24824", + "9505", + "54849", + "42668", + "43689" + } + }, + [230]= { + ["x"]= -4874.44, + ["y"]= -2998.88, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61308", + "40927", + "15365" + } + }, + [231]= { + ["x"]= -4874.19, + ["y"]= -1816.16, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46726", + "38516", + "31819" + } + }, + [232]= { + ["x"]= -4863.65, + ["y"]= 5908.21, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14767", + "62530", + "65112", + "14384", + "25781", + "13922", + "59335" + } + }, + [233]= { + ["x"]= -4863.65, + ["y"]= 6347.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34359", + "44916", + "62802", + "61529" + } + }, + [234]= { + ["x"]= -4853.15, + ["y"]= 4880.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62023", + "57923", + "46756", + "17038", + "38922", + "56982" + } + }, + [235]= { + ["x"]= -4782.65, + ["y"]= 5426.23, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6289", + "48287", + "5197", + "64587", + "25011" + } + }, + [236]= { + ["x"]= -4777.5, + ["y"]= -871.355, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10245", + "55913", + "45646", + "35192", + "55002" + } + }, + [237]= { + ["x"]= -4769.38, + ["y"]= -4529.03, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "6764", + "40366" + } + }, + [238]= { + ["x"]= -4750.09, + ["y"]= 546.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8460", + "19261", + "64181", + "49445", + "224", + "43833" + } + }, + [239]= { + ["x"]= -4736.79, + ["y"]= -329.645, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6359", + "7335", + "21413", + "3167", + "52462" + } + }, + [240]= { + ["x"]= -4712.84, + ["y"]= 4007.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "30160", + "1252", + "65456", + "52875" + } + }, + [241]= { + ["x"]= -4708.05, + ["y"]= -8281.17, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "29712", + "48679", + "9408", + "43989" + } + }, + [242]= { + ["x"]= -4635.92, + ["y"]= -5460.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26070", + "56922", + "20261", + "13712" + } + }, + [243]= { + ["x"]= -4532.6, + ["y"]= 9088.58, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37898", + "23984" + } + }, + [244]= { + ["x"]= -4483.59, + ["y"]= 7763, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "2491", + "18901", + "62319" + } + }, + [245]= { + ["x"]= -4435.9, + ["y"]= -3443.04, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17735" + } + }, + [246]= { + ["x"]= -4435.9, + ["y"]= -2998.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49254" + } + }, + [247]= { + ["x"]= -4435.9, + ["y"]= -2418.83, + ["orbits"]= { + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15599", + "44529", + "41472", + "61471", + "1203", + "6237" + } + }, + [248]= { + ["x"]= -4435.9, + ["y"]= -1816.16, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26866" + } + }, + [249]= { + ["x"]= -4435.9, + ["y"]= -1404.57, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44908" + } + }, + [250]= { + ["x"]= -4435.9, + ["y"]= -709.355, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "2913" + } + }, + [251]= { + ["x"]= -4435.9, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50862" + } + }, + [252]= { + ["x"]= -4435.9, + ["y"]= 1795.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "58449" + } + }, + [253]= { + ["x"]= -4435.9, + ["y"]= 2423.88, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39768", + "32739", + "61198", + "20551", + "5152", + "12795" + } + }, + [254]= { + ["x"]= -4435.9, + ["y"]= 3066.9, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24383" + } + }, + [255]= { + ["x"]= -4435.9, + ["y"]= 3559.9, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49412" + } + }, + [256]= { + ["x"]= -4435.88, + ["y"]= 686.855, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44606" + } + }, + [257]= { + ["x"]= -4435.88, + ["y"]= 1302.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26523" + } + }, + [258]= { + ["x"]= -4395.06, + ["y"]= -7575.06, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "52502", + "20987", + "7960" + } + }, + [259]= { + ["x"]= -4390.35, + ["y"]= -6640.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45558", + "12246", + "43061", + "27323", + "22577", + "6770" + } + }, + [260]= { + ["x"]= -4354.9, + ["y"]= -4815.69, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63963", + "58763", + "32455", + "7153", + "5726" + } + }, + [261]= { + ["x"]= -4354.9, + ["y"]= -4086.61, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "36915", + "48290", + "34880", + "10904", + "55563", + "1609" + } + }, + [262]= { + ["x"]= -4341.21, + ["y"]= 6923.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "27119", + "56595", + "29797", + "18009", + "2092" + } + }, + [263]= { + ["x"]= -4302.55, + ["y"]= -8983.51, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "13201", + "2311" + } + }, + [264]= { + ["x"]= -4260.48, + ["y"]= 4509.09, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7162", + "9695", + "54340", + "42009" + } + }, + [265]= { + ["x"]= -4260.21, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34400" + } + }, + [266]= { + ["x"]= -4251.69, + ["y"]= 4940.36, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "487" + } + }, + [267]= { + ["x"]= -4251.69, + ["y"]= 5410.96, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53216", + "5103", + "37895", + "14001" + } + }, + [268]= { + ["x"]= -4247.05, + ["y"]= -7237.92, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36678" + } + }, + [269]= { + ["x"]= -4223.59, + ["y"]= 9541.8, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "48128" + } + }, + [270]= { + ["x"]= -4219.84, + ["y"]= 4484.85, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "42800" + } + }, + [271]= { + ["x"]= -4213.85, + ["y"]= 3944.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25934", + "28728", + "15438", + "8426", + "29034", + "35436" + } + }, + [272]= { + ["x"]= -4177.11, + ["y"]= 7789.46, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21210" + } + }, + [273]= { + ["x"]= -4173.53, + ["y"]= 270.545, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21650" + } + }, + [274]= { + ["x"]= -4160.65, + ["y"]= -1539.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14079" + } + }, + [275]= { + ["x"]= -4145.92, + ["y"]= -980.045, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "30148", + "61007", + "45350", + "15880", + "38595" + } + }, + [276]= { + ["x"]= -4119.19, + ["y"]= -5843.48, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5230", + "22702", + "53957", + "24229", + "4977" + } + }, + [277]= { + ["x"]= -4076.67, + ["y"]= 1474.49, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "13739" + } + }, + [278]= { + ["x"]= -4064.55, + ["y"]= -9477.75, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "7956" + } + }, + [279]= { + ["x"]= -4061.73, + ["y"]= -494.755, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "27308", + "61992", + "54267", + "23185", + "43133" + } + }, + [280]= { + ["x"]= -3923.35, + ["y"]= 6271.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64695", + "36945", + "22133", + "53072", + "50562", + "37911" + } + }, + [281]= { + ["x"]= -3914.99, + ["y"]= 4599.62, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24720" + } + }, + [282]= { + ["x"]= -3883.4, + ["y"]= -2130.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4354" + } + }, + [283]= { + ["x"]= -3882.88, + ["y"]= 5786.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "21548", + "47785", + "49635", + "60963", + "13703", + "35321" + } + }, + [284]= { + ["x"]= -3878.75, + ["y"]= -7968.17, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32075", + "58869", + "39986", + "50540" + } + }, + [285]= { + ["x"]= -3822.96, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "38706" + } + }, + [286]= { + ["x"]= -3815.85, + ["y"]= 1795.43, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7828", + "40535", + "30335", + "32480" + } + }, + [287]= { + ["x"]= -3815.85, + ["y"]= 3066.9, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15868", + "36047", + "63048", + "50264" + } + }, + [288]= { + ["x"]= -3802.01, + ["y"]= -2523.44, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4568", + "420", + "9294", + "33923", + "59005", + "61217" + } + }, + [289]= { + ["x"]= -3802.01, + ["y"]= -1814.02, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29005", + "39631", + "17251", + "31758", + "42837", + "23456" + } + }, + [290]= { + ["x"]= -3795.27, + ["y"]= -74.185, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33631", + "33740", + "15405" + } + }, + [291]= { + ["x"]= -3773.12, + ["y"]= 4942.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40698", + "1354", + "18202", + "22706" + } + }, + [292]= { + ["x"]= -3751.33, + ["y"]= 7723, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26697", + "61050", + "64024", + "35053", + "43514", + "57839" + } + }, + [293]= { + ["x"]= -3728.95, + ["y"]= 1795.43, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "23881", + "9511" + } + }, + [294]= { + ["x"]= -3718.68, + ["y"]= -5991.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56029" + } + }, + [295]= { + ["x"]= -3704.96, + ["y"]= -1897.57, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "35556", + "39916" + } + }, + [296]= { + ["x"]= -3692.82, + ["y"]= -3114.59, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37512" + } + }, + [297]= { + ["x"]= -3691.22, + ["y"]= 7146.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9995", + "34513", + "33718", + "64128" + } + }, + [298]= { + ["x"]= -3667.95, + ["y"]= -7117.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39332", + "26585", + "5462", + "7364", + "65273", + "7347" + } + }, + [299]= { + ["x"]= -3613, + ["y"]= -4066.11, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "651", + "9149", + "43057", + "3398", + "11820", + "17127" + } + }, + [300]= { + ["x"]= -3536.19, + ["y"]= -5333.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12250", + "3471", + "38701", + "18767", + "48298" + } + }, + [301]= { + ["x"]= -3508.25, + ["y"]= 2135.16, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14587" + } + }, + [302]= { + ["x"]= -3497.53, + ["y"]= -2950.04, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "14151", + "27564" + } + }, + [303]= { + ["x"]= -3484.79, + ["y"]= 3066.9, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "6981", + "36543" + } + }, + [304]= { + ["x"]= -3464.58, + ["y"]= -2322.24, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35724" + } + }, + [305]= { + ["x"]= -3464.58, + ["y"]= -1816.16, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17352" + } + }, + [306]= { + ["x"]= -3452.99, + ["y"]= 1795.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33988" + } + }, + [307]= { + ["x"]= -3446.18, + ["y"]= -3776.55, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "13009" + } + }, + [308]= { + ["x"]= -3429.43, + ["y"]= -6158.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5456" + } + }, + [309]= { + ["x"]= -3388.33, + ["y"]= -4921.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "23215", + "54954", + "4854", + "12503" + } + }, + [310]= { + ["x"]= -3374.09, + ["y"]= -7993.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19897", + "39416", + "43716", + "34144", + "52412", + "4247", + "17412" + } + }, + [311]= { + ["x"]= -3326.22, + ["y"]= 5867.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14056" + } + }, + [312]= { + ["x"]= -3326.16, + ["y"]= 5524.46, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34601" + } + }, + [313]= { + ["x"]= -3312.55, + ["y"]= 4255.75, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "45341", + "6043", + "50340", + "60031", + "5065", + "33657" + } + }, + [314]= { + ["x"]= -3303.02, + ["y"]= 2466.05, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22627" + } + }, + [315]= { + ["x"]= -3294.84, + ["y"]= 7723, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19388", + "23852", + "32519", + "26188", + "52090", + "4424" + } + }, + [316]= { + ["x"]= -3245.22, + ["y"]= 6293.76, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8556", + "11700", + "50969", + "20835" + } + }, + [317]= { + ["x"]= -3224.83, + ["y"]= 4940.36, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "59494", + "16380", + "2225", + "35221" + } + }, + [318]= { + ["x"]= -3214.93, + ["y"]= 2951.63, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32853" + } + }, + [319]= { + ["x"]= -3163.95, + ["y"]= -6892.09, + ["orbits"]= {}, + ["nodes"]= { + "63447", + "39841" + } + }, + [320]= { + ["x"]= -3160.96, + ["y"]= -7409.31, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35038", + "20844", + "62217", + "56066", + "54043", + "30926", + "63944" + } + }, + [321]= { + ["x"]= -3160.96, + ["y"]= -6684.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2828", + "34423", + "48118", + "25970" + } + }, + [322]= { + ["x"]= -3103.98, + ["y"]= 7114.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12169", + "65107", + "60153", + "16860" + } + }, + [323]= { + ["x"]= -3037.77, + ["y"]= -4544.11, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17945", + "30370", + "51804", + "52742" + } + }, + [324]= { + ["x"]= -3037.77, + ["y"]= 5690.96, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18025" + } + }, + [325]= { + ["x"]= -2977.96, + ["y"]= -5896.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22088" + } + }, + [326]= { + ["x"]= -2956.77, + ["y"]= -5001.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "46340" + } + }, + [327]= { + ["x"]= -2898.21, + ["y"]= 3540.58, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "31080" + } + }, + [328]= { + ["x"]= -2875.77, + ["y"]= -5458.98, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61343", + "29033", + "51954", + "29861" + } + }, + [329]= { + ["x"]= -2837.03, + ["y"]= -1629.01, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "63965", + "20228", + "61525" + } + }, + [330]= { + ["x"]= -2824.29, + ["y"]= 1642.43, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "50904", + "47175", + "31628" + } + }, + [331]= { + ["x"]= -2804.43, + ["y"]= -4229.06, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34098" + } + }, + [332]= { + ["x"]= -2798.83, + ["y"]= 4940.36, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22703" + } + }, + [333]= { + ["x"]= -2783.94, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24914" + } + }, + [334]= { + ["x"]= -2783.94, + ["y"]= 8219.25, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35118", + "10016", + "1909", + "8533", + "11515", + "35362", + "56381", + "49318" + } + }, + [335]= { + ["x"]= -2783.75, + ["y"]= 6053.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "57257" + } + }, + [336]= { + ["x"]= -2734.74, + ["y"]= 4320.61, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40907" + } + }, + [337]= { + ["x"]= -2703.05, + ["y"]= -6978.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "23659", + "367", + "33864", + "35706", + "27307", + "50029" + } + }, + [338]= { + ["x"]= -2688.66, + ["y"]= 3779.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6912", + "27301", + "64816", + "6884", + "34959", + "27140" + } + }, + [339]= { + ["x"]= -2635.19, + ["y"]= 6935.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51583", + "38664", + "56460", + "61636", + "37647" + } + }, + [340]= { + ["x"]= -2628.79, + ["y"]= -3732.47, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "21330", + "39648", + "17821", + "43818" + } + }, + [341]= { + ["x"]= -2567.55, + ["y"]= -8128.6, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "48556", + "56671", + "47949", + "48971", + "29629", + "26620", + "44362", + "23547" + } + }, + [342]= { + ["x"]= -2562.75, + ["y"]= -6027.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64401", + "55558", + "51748", + "61283", + "61785" + } + }, + [343]= { + ["x"]= -2562.75, + ["y"]= -5615.56, + ["orbits"]= {}, + ["nodes"]= { + "42760", + "7938", + "55332", + "14021" + } + }, + [344]= { + ["x"]= -2461.59, + ["y"]= 5479.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26294", + "63710", + "17833", + "11568", + "23199", + "60887", + "13273" + } + }, + [345]= { + ["x"]= -2461.59, + ["y"]= 5867.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6741" + } + }, + [346]= { + ["x"]= -2461.59, + ["y"]= 6255.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "13498", + "53292", + "40841", + "59833", + "15124", + "9194", + "48982" + } + }, + [347]= { + ["x"]= -2451.83, + ["y"]= -4127.28, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60398" + } + }, + [348]= { + ["x"]= -2428.03, + ["y"]= -5082.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5591", + "34478", + "23690", + "10729" + } + }, + [349]= { + ["x"]= -2374.68, + ["y"]= 4211.38, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43374" + } + }, + [350]= { + ["x"]= -2370.83, + ["y"]= -4539.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60648", + "42981", + "53802", + "18750" + } + }, + [351]= { + ["x"]= -1500.0, + ["y"]= 9800.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "33179", + "8419", + "63490", + "2598", + "14726", + "758", + "48760", + "37623", + "3651", + "24538", + "1675", + "27864", + "15616", + "52575", + "32730" + } + }, + [352]= { + ["x"]= -2311.98, + ["y"]= -243.095, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8139", + "19958", + "60781", + "12244" + } + }, + [353]= { + ["x"]= -2311.98, + ["y"]= 257.205, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24256", + "8732", + "34906", + "41026" + } + }, + [354]= { + ["x"]= -2221.21, + ["y"]= 7200.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10311", + "45503", + "61190", + "43307" + } + }, + [355]= { + ["x"]= -2201.7, + ["y"]= -6675.31, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12379", + "44183", + "7555", + "240" + } + }, + [356]= { + ["x"]= -2184.36, + ["y"]= 4590.01, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28498", + "24544", + "12033", + "37956" + } + }, + [357]= { + ["x"]= -2184.36, + ["y"]= 5022.54, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62015", + "50858", + "61602", + "15451" + } + }, + [358]= { + ["x"]= -2164.23, + ["y"]= 7871.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17429", + "47854", + "63413", + "39904", + "31400" + } + }, + [359]= { + ["x"]= -2151.7, + ["y"]= -7793.46, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34723", + "12888", + "16954", + "12783", + "9261" + } + }, + [360]= { + ["x"]= -2151.7, + ["y"]= -7186.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4270", + "64355", + "52655", + "35035", + "21143" + } + }, + [361]= { + ["x"]= -2125.03, + ["y"]= 3616.16, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28475", + "30733", + "49178" + } + }, + [362]= { + ["x"]= -2122.11, + ["y"]= 5671.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17818" + } + }, + [363]= { + ["x"]= -2065.84, + ["y"]= -5674.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26608", + "17569", + "33779", + "45366", + "20142", + "44562" + } + }, + [364]= { + ["x"]= -2061.53, + ["y"]= -3613.27, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "47251", + "7388", + "36634" + } + }, + [365]= { + ["x"]= -2031.31, + ["y"]= -486.185, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "16775", + "46910" + } + }, + [366]= { + ["x"]= -1920.09, + ["y"]= 6852.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "52061", + "55420", + "15543", + "30170", + "53840" + } + }, + [367]= { + ["x"]= -1500.0, + ["y"]= -9850, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "31984", + "37492", + "27096", + "62504", + "31316", + "43242", + "25309", + "47630", + "29161", + "17018", + "32417", + "6728", + "48124", + "50935", + "37127", + "31344", + "5502", + "18378" + } + }, + [368]= { + ["x"]= -1903.4, + ["y"]= -634.955, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12239", + "59306", + "34207", + "19609", + "45803", + "28878" + } + }, + [369]= { + ["x"]= -1861.16, + ["y"]= -4771.42, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34552", + "22062", + "15081", + "7688" + } + }, + [370]= { + ["x"]= -1851.8, + ["y"]= 4017.26, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38436", + "53558", + "2355", + "57900" + } + }, + [371]= { + ["x"]= -1834.27, + ["y"]= 4378.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30691" + } + }, + [372]= { + ["x"]= -1810.14, + ["y"]= 5487.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16245", + "54862", + "49407", + "56920", + "2599", + "4327" + } + }, + [373]= { + ["x"]= -1810.14, + ["y"]= 6219.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50515", + "56370", + "27605", + "6139", + "1340", + "51974" + } + }, + [374]= { + ["x"]= -1780.16, + ["y"]= -4359.11, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31875" + } + }, + [375]= { + ["x"]= -1713.47, + ["y"]= 190.315, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50288" + } + }, + [376]= { + ["x"]= -1693.96, + ["y"]= 4836.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42086", + "20402", + "27422", + "65395" + } + }, + [377]= { + ["x"]= -1653.82, + ["y"]= -7186.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "27733", + "58210", + "19008", + "11689", + "62970", + "46904" + } + }, + [378]= { + ["x"]= -1652.42, + ["y"]= 7871.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37800", + "29547", + "4378", + "35507", + "22356", + "35859" + } + }, + [379]= { + ["x"]= -1637.17, + ["y"]= -6342.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "54657", + "34157", + "9432", + "28680" + } + }, + [380]= { + ["x"]= -1545.59, + ["y"]= 5867.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24865" + } + }, + [381]= { + ["x"]= -1543.86, + ["y"]= -1568.64, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "10490", + "33479" + } + }, + [382]= { + ["x"]= -1499.71, + ["y"]= 7200.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58541", + "6633", + "24772", + "26456", + "24721", + "11596" + } + }, + [383]= { + ["x"]= -1498.91, + ["y"]= -1815.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25714", + "26960", + "45680", + "25237", + "10835", + "63559" + } + }, + [384]= { + ["x"]= -1476.2, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "47312", + "55866", + "45317", + "5348" + } + }, + [385]= { + ["x"]= -1427.09, + ["y"]= 7475.25, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "61262" + } + }, + [386]= { + ["x"]= -1402.81, + ["y"]= 818.705, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "13714", + "19939", + "62021", + "65034", + "65167", + "15073", + "55485", + "12382", + "12702" + } + }, + [387]= { + ["x"]= -1378.34, + ["y"]= -4501.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4397" + } + }, + [388]= { + ["x"]= -1377.82, + ["y"]= 1939.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29292", + "27718", + "12809", + "8629" + } + }, + [389]= { + ["x"]= -1358.94, + ["y"]= -779.755, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63976" + } + }, + [390]= { + ["x"]= -1351.78, + ["y"]= -6767.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "21958", + "33755", + "14936", + "12125" + } + }, + [391]= { + ["x"]= -1320.39, + ["y"]= 6242.57, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26154", + "8904", + "49167", + "35756", + "23834", + "64226" + } + }, + [392]= { + ["x"]= -1287.23, + ["y"]= 7660.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50679" + } + }, + [393]= { + ["x"]= -1274.4, + ["y"]= -49.185, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25959", + "15400", + "62480", + "25431", + "35190", + "2081", + "22959" + } + }, + [394]= { + ["x"]= -1262.71, + ["y"]= -7803.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63903" + } + }, + [395]= { + ["x"]= -1235.43, + ["y"]= 4563.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "476" + } + }, + [396]= { + ["x"]= -1081.71, + ["y"]= -7490.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44184" + } + }, + [397]= { + ["x"]= -1072.84, + ["y"]= -5361.29, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "38148", + "12852", + "4184", + "44983", + "34661", + "44955", + "58604", + "30225" + } + }, + [398]= { + ["x"]= -1071.71, + ["y"]= -6040.67, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1031" + } + }, + [399]= { + ["x"]= -1059.19, + ["y"]= 6702.11, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "1325", + "29933", + "31471", + "62588" + } + }, + [400]= { + ["x"]= -1041.83, + ["y"]= -4099.38, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5574" + } + }, + [401]= { + ["x"]= -1017.52, + ["y"]= 1491.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12926" + } + }, + [402]= { + ["x"]= -966.805, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24083" + } + }, + [403]= { + ["x"]= -834.765, + ["y"]= -1999.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "22970", + "18359", + "21973", + "34306" + } + }, + [404]= { + ["x"]= -828.505, + ["y"]= -1587.95, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "45175" + } + }, + [405]= { + ["x"]= -812.165, + ["y"]= -6767.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24362", + "29781", + "60388", + "53188" + } + }, + [406]= { + ["x"]= -770.325, + ["y"]= -436.995, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "38450", + "5560", + "51291", + "6230", + "26740", + "38048", + "55906", + "37690", + "48423", + "6204" + } + }, + [407]= { + ["x"]= -757.605, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41522", + "13191", + "7614", + "1006" + } + }, + [408]= { + ["x"]= -742.375, + ["y"]= -8082.92, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "38789", + "61804", + "14040", + "18715", + "31462", + "10893", + "13559", + "8624", + "11924", + "60501", + "34927" + } + }, + [409]= { + ["x"]= -726.985, + ["y"]= 5391.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34666", + "43303", + "30842", + "36972", + "43412" + } + }, + [410]= { + ["x"]= -663.955, + ["y"]= 3776.28, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20605" + } + }, + [411]= { + ["x"]= -660.625, + ["y"]= 8005.26, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "49343", + "36761", + "1159", + "37795", + "43413", + "3319", + "12878", + "44207" + } + }, + [412]= { + ["x"]= -657.365, + ["y"]= 1947.74, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57061", + "22061", + "5289", + "25186" + } + }, + [413]= { + ["x"]= -647.025, + ["y"]= 4732.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34009" + } + }, + [414]= { + ["x"]= -646.775, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34031" + } + }, + [415]= { + ["x"]= -617.505, + ["y"]= 365.315, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "62662", + "17674", + "13782" + } + }, + [416]= { + ["x"]= -601.785, + ["y"]= 3971.51, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "40867", + "42911" + } + }, + [417]= { + ["x"]= -591.635, + ["y"]= 1260.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "65154", + "1696", + "25732", + "63933" + } + }, + [418]= { + ["x"]= -590.565, + ["y"]= 2105.26, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "46578", + "28330" + } + }, + [419]= { + ["x"]= -568.365, + ["y"]= 6699.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "49109", + "17566", + "21435", + "19750" + } + }, + [420]= { + ["x"]= -514.755, + ["y"]= 7214.26, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10073", + "49147", + "49416", + "45358" + } + }, + [421]= { + ["x"]= -482.865, + ["y"]= -4439.48, + ["orbits"]= {}, + ["nodes"]= { + "36542", + "37569" + } + }, + [422]= { + ["x"]= -474.595, + ["y"]= 4081.11, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39211", + "51856", + "48513", + "5612" + } + }, + [423]= { + ["x"]= -469.405, + ["y"]= -7150.35, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37403", + "27193", + "2474", + "55804" + } + }, + [424]= { + ["x"]= -419.445, + ["y"]= -6345.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32509", + "40075", + "49534", + "42485", + "7918" + } + }, + [425]= { + ["x"]= -284.375, + ["y"]= 5213.73, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19782", + "12236", + "46730", + "25324", + "49538" + } + }, + [426]= { + ["x"]= 0.0, + ["y"]= -9850.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61259", + "57197", + "4917", + "47873", + "258", + "12738", + "58998", + "12475", + "53123", + "27038", + "40810", + "37114", + "19595", + "6052", + "54279", + "56461", + "16023" + } + }, + [427]= { + ["x"]= 0.0, + ["y"]= 9800.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6982", + "56967", + "11412", + "27604", + "41433", + "13374", + "61478", + "60508", + "35185", + "25111", + "43725", + "31700", + "33940", + "35750", + "24984" + } + }, + [428]= { + ["x"]= -4.175, + ["y"]= -8121.6, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32431", + "49588", + "36121", + "55647", + "57362", + "58816", + "61264", + "46469", + "11645", + "56716" + } + }, + [429]= { + ["x"]= -4.175, + ["y"]= -6767.07, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15117", + "53279", + "61419", + "20528", + "8302", + "56158" + } + }, + [430]= { + ["x"]= -4.055, + ["y"]= -8805.58, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16246" + } + }, + [431]= { + ["x"]= -4.055, + ["y"]= -7490.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4367" + } + }, + [432]= { + ["x"]= -4.055, + ["y"]= -5546.94, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "19635" + } + }, + [433]= { + ["x"]= -4.055, + ["y"]= -4501.31, + ["orbits"]= { + 2, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38900", + "38805", + "21075", + "15711", + "1957", + "739", + "18866", + "53493", + "27929", + "59650", + "6949", + "19374", + "55643", + "2292", + "48362", + "27203", + "27611", + "40637", + "9650", + "60554", + "32024", + "25222", + "11420", + "44723", + "1346", + "16790", + "21934", + "36774", + "17579", + "33296", + "11659", + "11128", + "8135" + } + }, + [434]= { + ["x"]= -4.055, + ["y"]= -3179.89, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57226", + "57264", + "54447" + } + }, + [435]= { + ["x"]= -2.225, + ["y"]= -4029.12, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "62596" + } + }, + [436]= { + ["x"]= -1.355, + ["y"]= -3709.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33722" + } + }, + [437]= { + ["x"]= -0.205, + ["y"]= -2625.07, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27781" + } + }, + [438]= { + ["x"]= 2.415, + ["y"]= 4732.29, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "18302", + "25933", + "48438", + "50360", + "28265", + "54776" + } + }, + [439]= { + ["x"]= 2.665, + ["y"]= 3188.39, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "39725", + "50986", + "47389" + } + }, + [440]= { + ["x"]= 2.665, + ["y"]= 4116.94, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35568", + "59718", + "50306" + } + }, + [441]= { + ["x"]= 2.665, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56001" + } + }, + [442]= { + ["x"]= 2.665, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16544" + } + }, + [443]= { + ["x"]= 3.435, + ["y"]= -1647.64, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "60090", + "14211", + "42731", + "22473", + "14182", + "13322", + "3452", + "18240", + "37078" + } + }, + [444]= { + ["x"]= 3.435, + ["y"]= -710.185, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "22497", + "8643", + "63845" + } + }, + [445]= { + ["x"]= 3.435, + ["y"]= 6.815, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15144", + "55373", + "2151", + "48828", + "62103", + "58833", + "47062" + } + }, + [446]= { + ["x"]= 3.435, + ["y"]= 899.815, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "7903", + "20310", + "45887", + "36881", + "33508", + "31683", + "35503", + "43162", + "39773", + "23122" + } + }, + [447]= { + ["x"]= 3.435, + ["y"]= 1612.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19144" + } + }, + [448]= { + ["x"]= 4.565, + ["y"]= 3613.13, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41169" + } + }, + [449]= { + ["x"]= 4.605, + ["y"]= 8295.38, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57011", + "65485", + "32690", + "64882", + "23951", + "57449", + "16213", + "58921", + "4707" + } + }, + [450]= { + ["x"]= 5.935, + ["y"]= 6370.12, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "18103", + "37584", + "49971", + "54127", + "4833", + "23066", + "11859" + } + }, + [451]= { + ["x"]= 286.365, + ["y"]= 5213.73, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25456", + "3009", + "24641", + "22423", + "4565" + } + }, + [452]= { + ["x"]= 309.445, + ["y"]= -7671.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40351" + } + }, + [453]= { + ["x"]= 479.525, + ["y"]= -4439.48, + ["orbits"]= {}, + ["nodes"]= { + "32210", + "21678" + } + }, + [454]= { + ["x"]= 482.455, + ["y"]= 4105.85, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62694", + "45227", + "24377", + "56803" + } + }, + [455]= { + ["x"]= 490.135, + ["y"]= 7237.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57949", + "11364", + "43684", + "59766" + } + }, + [456]= { + ["x"]= 525.375, + ["y"]= -7139.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38246", + "60989", + "63039", + "35233", + "51213", + "36107", + "39836" + } + }, + [457]= { + ["x"]= 528.555, + ["y"]= -6345.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50826", + "18174", + "43000", + "12913", + "10115", + "13862" + } + }, + [458]= { + ["x"]= 550.025, + ["y"]= 3971.51, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "49806", + "63649" + } + }, + [459]= { + ["x"]= 566.045, + ["y"]= 6703.04, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17383", + "58545", + "14813", + "48859" + } + }, + [460]= { + ["x"]= 595.755, + ["y"]= 8005.26, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15085", + "54268", + "56231", + "2392", + "13807", + "33089", + "49547", + "51761" + } + }, + [461]= { + ["x"]= 597.435, + ["y"]= 1260.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29993", + "52099", + "14090", + "4207", + "22893", + "24472", + "53042" + } + }, + [462]= { + ["x"]= 597.435, + ["y"]= 2105.26, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "16167", + "10829" + } + }, + [463]= { + ["x"]= 624.375, + ["y"]= 365.315, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35179", + "60532", + "9009" + } + }, + [464]= { + ["x"]= 650.295, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17201" + } + }, + [465]= { + ["x"]= 652.555, + ["y"]= 4732.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48807" + } + }, + [466]= { + ["x"]= 659.775, + ["y"]= 3773.93, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56146" + } + }, + [467]= { + ["x"]= 664.085, + ["y"]= 1939.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41967", + "17546", + "21634", + "45019" + } + }, + [468]= { + ["x"]= 722.345, + ["y"]= -8082.92, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "40705", + "36226", + "40609", + "12439", + "22090", + "5972", + "36412", + "53732", + "21460", + "8833", + "60170" + } + }, + [469]= { + ["x"]= 723.915, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24334", + "57565", + "2348", + "44788" + } + }, + [470]= { + ["x"]= 729.725, + ["y"]= 5391.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60002", + "52632", + "36222", + "47030", + "30155" + } + }, + [471]= { + ["x"]= 764.515, + ["y"]= -2024.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34907", + "28424", + "45067", + "48007" + } + }, + [472]= { + ["x"]= 768.825, + ["y"]= -1635.07, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60247" + } + }, + [473]= { + ["x"]= 775.925, + ["y"]= -439.185, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "3992", + "49807", + "37575", + "918", + "28221", + "24643", + "48768", + "45456", + "56153", + "11688" + } + }, + [474]= { + ["x"]= 901.755, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8544" + } + }, + [475]= { + ["x"]= 1024.39, + ["y"]= 1496.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56116" + } + }, + [476]= { + ["x"]= 1030.04, + ["y"]= 6528.03, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39338", + "29185", + "58803", + "32059" + } + }, + [477]= { + ["x"]= 1037.99, + ["y"]= -4096.44, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56274" + } + }, + [478]= { + ["x"]= 1063.6, + ["y"]= -7490.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19501" + } + }, + [479]= { + ["x"]= 1063.6, + ["y"]= -7049.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46111", + "34591", + "35730", + "51382", + "34225", + "23796" + } + }, + [480]= { + ["x"]= 1063.6, + ["y"]= -5547.36, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "11551" + } + }, + [481]= { + ["x"]= 1064.73, + ["y"]= -5361.29, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "42795", + "13753", + "7503", + "4432", + "65203", + "48514", + "27163", + "22315" + } + }, + [482]= { + ["x"]= 1126.55, + ["y"]= 7085.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28863", + "38772", + "32053", + "19730" + } + }, + [483]= { + ["x"]= 1146.06, + ["y"]= -6404.42, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56128", + "63067", + "50472", + "22972" + } + }, + [484]= { + ["x"]= 1172.56, + ["y"]= 4529.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6580" + } + }, + [485]= { + ["x"]= 1173.43, + ["y"]= 6120.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34191", + "60529", + "33582", + "47059" + } + }, + [486]= { + ["x"]= 1222.19, + ["y"]= 7660.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10661" + } + }, + [487]= { + ["x"]= 1244.6, + ["y"]= -7803.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12128" + } + }, + [488]= { + ["x"]= 1316.69, + ["y"]= -48.685, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19287", + "61875", + "49379", + "38235" + } + }, + [489]= { + ["x"]= 1363.2, + ["y"]= -778.255, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33545" + } + }, + [490]= { + ["x"]= 1370.46, + ["y"]= -4501.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8948" + } + }, + [491]= { + ["x"]= 1384.69, + ["y"]= 1939.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8930", + "18402", + "42041", + "46665" + } + }, + [492]= { + ["x"]= 1416.43, + ["y"]= 822.605, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "60204", + "17814", + "8348", + "6534", + "20812", + "50757", + "19506", + "44103", + "32091" + } + }, + [493]= { + ["x"]= 1443.51, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57736", + "65097", + "6507", + "7594" + } + }, + [494]= { + ["x"]= 1464.21, + ["y"]= -1815.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "59926", + "17849", + "21602", + "33911", + "57615" + } + }, + [495]= { + ["x"]= 1479.76, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19711" + } + }, + [496]= { + ["x"]= 1502.02, + ["y"]= -7229.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15167", + "24872", + "34506", + "26393" + } + }, + [497]= { + ["x"]= 1510.17, + ["y"]= -1568.64, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "46092", + "18033" + } + }, + [498]= { + ["x"]= 1596.8, + ["y"]= -6341.4, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18663" + } + }, + [499]= { + ["x"]= 1500.0, + ["y"]= -9850.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "55646", + "48719", + "3554", + "36017", + "26298", + "11490", + "23509", + "23572", + "18309", + "60547", + "39818", + "18574", + "5415", + "54159", + "65153", + "14603", + "60791" + } + }, + [500]= { + ["x"]= 1653.19, + ["y"]= 4745.61, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58214", + "51976", + "12095", + "18357", + "52018" + } + }, + [501]= { + ["x"]= 1708.76, + ["y"]= 5471.17, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "48823", + "41047", + "8566", + "34510", + "50041", + "42720", + "24552" + } + }, + [502]= { + ["x"]= 1708.76, + ["y"]= 6256.98, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45372", + "25355", + "17020", + "8410", + "34284" + } + }, + [503]= { + ["x"]= 1719.48, + ["y"]= 2174.13, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56207" + } + }, + [504]= { + ["x"]= 1734.19, + ["y"]= 4298.82, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "11651" + } + }, + [505]= { + ["x"]= 1752.43, + ["y"]= -4352.09, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27659" + } + }, + [506]= { + ["x"]= 1760.96, + ["y"]= 187.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23540" + } + }, + [507]= { + ["x"]= 1833.43, + ["y"]= -4782.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61982", + "9083", + "49047", + "51517" + } + }, + [508]= { + ["x"]= 1833.43, + ["y"]= -3921.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "11784", + "24481", + "4105", + "127" + } + }, + [509]= { + ["x"]= 1848.44, + ["y"]= 6937.13, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56807", + "59016", + "21324", + "15021", + "15437", + "33725" + } + }, + [510]= { + ["x"]= 1848.44, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "29937" + } + }, + [511]= { + ["x"]= 1848.61, + ["y"]= 8219.25, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "33566", + "58336", + "7728", + "30038", + "35406", + "22908", + "35237", + "63033", + "58382", + "55281" + } + }, + [512]= { + ["x"]= 1871.28, + ["y"]= -603.265, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "30471", + "34579", + "40100", + "35085" + } + }, + [513]= { + ["x"]= 1892.09, + ["y"]= -6532.62, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60512", + "12032", + "47504", + "60085" + } + }, + [514]= { + ["x"]= 1895.97, + ["y"]= 3562.33, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "238", + "11497", + "34483" + } + }, + [515]= { + ["x"]= 2007.62, + ["y"]= -5502.27, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41273", + "15452", + "50082", + "47085", + "27623" + } + }, + [516]= { + ["x"]= 2074.46, + ["y"]= -486.185, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "51786", + "28574" + } + }, + [517]= { + ["x"]= 1500.0, + ["y"]= 9800.0, + ["orbits"]= { + 0, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61393", + "34484", + "10143", + "38180", + "50845", + "16306", + "15286", + "42293", + "34215", + "45696", + "20954", + "3184", + "17315", + "62817", + "33795" + } + }, + [518]= { + ["x"]= 2089.86, + ["y"]= -7229.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63482", + "13961", + "62697", + "26557" + } + }, + [519]= { + ["x"]= 2101.84, + ["y"]= 4491.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55348", + "37887", + "17934", + "29359", + "63727" + } + }, + [520]= { + ["x"]= 2117.76, + ["y"]= -7873.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "47242", + "9370", + "44360", + "6685", + "29381" + } + }, + [521]= { + ["x"]= 2154.91, + ["y"]= -3507.75, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48778", + "51923", + "41263" + } + }, + [522]= { + ["x"]= 2173.91, + ["y"]= 6198.04, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10808" + } + }, + [523]= { + ["x"]= 2175.82, + ["y"]= -5958.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41225", + "29171", + "30658", + "31103", + "25409" + } + }, + [524]= { + ["x"]= 2273.01, + ["y"]= 4083.73, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5408" + } + }, + [525]= { + ["x"]= 2273.3, + ["y"]= -6834.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17236", + "7641", + "62577", + "6338" + } + }, + [526]= { + ["x"]= 2324.51, + ["y"]= -4517.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12189", + "5875", + "40196", + "9788" + } + }, + [527]= { + ["x"]= 2343.57, + ["y"]= 4936.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42161", + "26365", + "12415", + "7187", + "36736", + "19749" + } + }, + [528]= { + ["x"]= 2357.17, + ["y"]= -238.985, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17906", + "36877", + "7136", + "22488" + } + }, + [529]= { + ["x"]= 2357.17, + ["y"]= 255.495, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "31137", + "35737", + "47471", + "33678" + } + }, + [530]= { + ["x"]= 2389.17, + ["y"]= 5526.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9171", + "39530", + "36704", + "54872", + "1382", + "25446" + } + }, + [531]= { + ["x"]= 2389.5, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20010" + } + }, + [532]= { + ["x"]= 2403.46, + ["y"]= 7085.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56659", + "53667", + "6783", + "49677" + } + }, + [533]= { + ["x"]= 2405.51, + ["y"]= -4102.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37671" + } + }, + [534]= { + ["x"]= 2432.77, + ["y"]= -5024.78, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40126", + "6109", + "53652", + "62506" + } + }, + [535]= { + ["x"]= 2446.13, + ["y"]= 3673.31, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46344", + "29089", + "36687", + "930", + "56855", + "13231", + "25349" + } + }, + [536]= { + ["x"]= 2524.35, + ["y"]= 7767.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42637", + "30030", + "29543", + "26096", + "28039" + } + }, + [537]= { + ["x"]= 2529.85, + ["y"]= -6130.73, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23950" + } + }, + [538]= { + ["x"]= 2529.85, + ["y"]= -5467.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58198", + "14209", + "21170", + "58603", + "17380" + } + }, + [539]= { + ["x"]= 2529.89, + ["y"]= -5616.94, + ["orbits"]= {}, + ["nodes"]= { + "32710", + "38176", + "49651", + "41635" + } + }, + [540]= { + ["x"]= 2610.89, + ["y"]= -8000.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4492", + "27592", + "44924", + "55114" + } + }, + [541]= { + ["x"]= 2627.64, + ["y"]= 4191.98, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39085" + } + }, + [542]= { + ["x"]= 2692.79, + ["y"]= 6264.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "49969", + "62235", + "55392", + "53002", + "4944", + "55085", + "18703" + } + }, + [543]= { + ["x"]= 2724.09, + ["y"]= -3655.52, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55247", + "63799", + "61320", + "18865", + "25281" + } + }, + [544]= { + ["x"]= 2757.26, + ["y"]= -4226.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31703" + } + }, + [545]= { + ["x"]= 2801.57, + ["y"]= 4936.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56589" + } + }, + [546]= { + ["x"]= 2801.57, + ["y"]= 5328.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "13019" + } + }, + [547]= { + ["x"]= 2807.75, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6363" + } + }, + [548]= { + ["x"]= 2844.17, + ["y"]= -1627.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44683" + } + }, + [549]= { + ["x"]= 2844.17, + ["y"]= 1642.43, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "45035", + "39821", + "50459" + } + }, + [550]= { + ["x"]= 2860.54, + ["y"]= -6834.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "27709", + "28887", + "38849", + "22647", + "40271" + } + }, + [551]= { + ["x"]= 2890.2, + ["y"]= -7275.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51219", + "13232", + "9567", + "55230" + } + }, + [552]= { + ["x"]= 2946.27, + ["y"]= -5900.27, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48411", + "64612", + "32942", + "64239", + "22407", + "63207", + "19098" + } + }, + [553]= { + ["x"]= 2960.24, + ["y"]= -6757.65, + ["orbits"]= {}, + ["nodes"]= { + "5296", + "33310" + } + }, + [554]= { + ["x"]= 2983.07, + ["y"]= -5467.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43988" + } + }, + [555]= { + ["x"]= 2983.07, + ["y"]= -5105.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27415" + } + }, + [556]= { + ["x"]= 2983.07, + ["y"]= -4559.5, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "54144", + "57457", + "13573", + "31619", + "39743", + "50071" + } + }, + [557]= { + ["x"]= 3052.59, + ["y"]= -1855.96, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "38129" + } + }, + [558]= { + ["x"]= 3053.77, + ["y"]= 5706.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36874" + } + }, + [559]= { + ["x"]= 3103.76, + ["y"]= 7085.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33037", + "64284", + "11456", + "55021", + "29522" + } + }, + [560]= { + ["x"]= 3103.76, + ["y"]= 7767.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55152", + "7786", + "55648", + "46291", + "544" + } + }, + [561]= { + ["x"]= 3119.9, + ["y"]= 2789.5, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "203" + } + }, + [562]= { + ["x"]= 3165.88, + ["y"]= 4078.63, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44330", + "53882", + "53809", + "24974", + "62721", + "64888", + "2275" + } + }, + [563]= { + ["x"]= 3187.88, + ["y"]= 4855.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "43787", + "29379", + "52230", + "42533" + } + }, + [564]= { + ["x"]= 3268.3, + ["y"]= -4958.32, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37175", + "36371", + "11200", + "25439", + "16970", + "32278" + } + }, + [565]= { + ["x"]= 3306.94, + ["y"]= 3671.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63139" + } + }, + [566]= { + ["x"]= 3312.19, + ["y"]= 2131.76, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24358" + } + }, + [567]= { + ["x"]= 3340.44, + ["y"]= 5024.29, + ["orbits"]= {}, + ["nodes"]= { + "23471" + } + }, + [568]= { + ["x"]= 3340.44, + ["y"]= 6424.04, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "52423", + "40287", + "570", + "59501" + } + }, + [569]= { + ["x"]= 3342.16, + ["y"]= 5540.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "15027" + } + }, + [570]= { + ["x"]= 3345.06, + ["y"]= -6591, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4036", + "15228", + "9586", + "47306" + } + }, + [571]= { + ["x"]= 3363, + ["y"]= -6155.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32345" + } + }, + [572]= { + ["x"]= 3375.98, + ["y"]= -8293.26, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "41476", + "16243", + "53828", + "52031", + "52848", + "27879", + "39521", + "40840", + "49779", + "29552", + "48878", + "51524", + "51146" + } + }, + [573]= { + ["x"]= 3379.59, + ["y"]= -7182.02, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53290", + "40483", + "62849", + "12831", + "53005", + "41870", + "38207" + } + }, + [574]= { + ["x"]= 3414.83, + ["y"]= 2612.2, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "444", + "52904", + "2094" + } + }, + [575]= { + ["x"]= 3415.41, + ["y"]= -3704.5, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21301" + } + }, + [576]= { + ["x"]= 3425.77, + ["y"]= 1647.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "465" + } + }, + [577]= { + ["x"]= 3503.29, + ["y"]= -5410.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51801", + "14745", + "53573", + "14113" + } + }, + [578]= { + ["x"]= 3581.96, + ["y"]= -3994.62, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57746", + "52095", + "57044", + "62490", + "10511", + "12873" + } + }, + [579]= { + ["x"]= 3597.43, + ["y"]= -1313.9, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23549" + } + }, + [580]= { + ["x"]= 3627.66, + ["y"]= -1604.45, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "45838", + "8640", + "45272" + } + }, + [581]= { + ["x"]= 3652.18, + ["y"]= 5027.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45033", + "53324", + "15344", + "3883" + } + }, + [582]= { + ["x"]= 3653.51, + ["y"]= 3914.75, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "55307", + "64241", + "26471", + "15837", + "40743", + "31818" + } + }, + [583]= { + ["x"]= 3660.86, + ["y"]= 87.815, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24496", + "39861", + "33989" + } + }, + [584]= { + ["x"]= 3687.33, + ["y"]= -3111.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1365" + } + }, + [585]= { + ["x"]= 3702.12, + ["y"]= -5959.63, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10153" + } + }, + [586]= { + ["x"]= 3767.38, + ["y"]= 5789.29, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46495", + "19196", + "23237", + "58851" + } + }, + [587]= { + ["x"]= 3793.25, + ["y"]= 7205.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10204", + "40135", + "9262", + "65093" + } + }, + [588]= { + ["x"]= 3793.6, + ["y"]= 1307.06, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "3195" + } + }, + [589]= { + ["x"]= 3802.19, + ["y"]= 1551.91, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "59370", + "63795" + } + }, + [590]= { + ["x"]= 3806.14, + ["y"]= 2611.82, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "54142" + } + }, + [591]= { + ["x"]= 3864.8, + ["y"]= 604.095, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64265", + "6799", + "53615", + "63194" + } + }, + [592]= { + ["x"]= 3865.28, + ["y"]= 2133.7, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41307" + } + }, + [593]= { + ["x"]= 3875.76, + ["y"]= -2639.76, + ["orbits"]= { + 2, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63639", + "64501", + "46136", + "58649", + "62069", + "31583", + "1600" + } + }, + [594]= { + ["x"]= 3878.64, + ["y"]= 1642.52, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38344", + "65033", + "10017", + "41250", + "41536", + "62712" + } + }, + [595]= { + ["x"]= 3878.93, + ["y"]= 2611.82, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6542", + "60803", + "94", + "29870", + "56149", + "720" + } + }, + [596]= { + ["x"]= 3884.04, + ["y"]= -2123.36, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "51360" + } + }, + [597]= { + ["x"]= 3898.59, + ["y"]= -2515.88, + ["orbits"]= {}, + ["nodes"]= { + "11334", + "15549" + } + }, + [598]= { + ["x"]= 3914.07, + ["y"]= 7769.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8620", + "27325", + "41595", + "58563" + } + }, + [599]= { + ["x"]= 3941.81, + ["y"]= -1604.45, + ["orbits"]= { + 2, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48477", + "23507", + "57248", + "41689", + "27276", + "62831", + "51220" + } + }, + [600]= { + ["x"]= 3948.22, + ["y"]= -741.835, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58968", + "37663", + "44988", + "21801" + } + }, + [601]= { + ["x"]= 3950.84, + ["y"]= -251.485, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39524", + "23439", + "9015", + "60834" + } + }, + [602]= { + ["x"]= 3955.07, + ["y"]= -7624.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56075" + } + }, + [603]= { + ["x"]= 3956.96, + ["y"]= 4676.27, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34625", + "46106", + "12068", + "16851", + "47743", + "37502" + } + }, + [604]= { + ["x"]= 3987.22, + ["y"]= -5763.84, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6588", + "48275", + "21184", + "45945" + } + }, + [605]= { + ["x"]= 4037.96, + ["y"]= 5108.19, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "3469" + } + }, + [606]= { + ["x"]= 4043.07, + ["y"]= 260.655, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49639" + } + }, + [607]= { + ["x"]= 4069.13, + ["y"]= 9718.12, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "37147" + } + }, + [608]= { + ["x"]= 4172.23, + ["y"]= -9316.08, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "63754" + } + }, + [609]= { + ["x"]= 4178.25, + ["y"]= 6313.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34678", + "26528", + "58271", + "3042", + "19069" + } + }, + [610]= { + ["x"]= 4215.76, + ["y"]= -7959.34, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "53759" + } + }, + [611]= { + ["x"]= 4216.21, + ["y"]= -7241.65, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49605" + } + }, + [612]= { + ["x"]= 4216.21, + ["y"]= -6723.62, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53738", + "42006", + "18661", + "44102" + } + }, + [613]= { + ["x"]= 4218.78, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52157" + } + }, + [614]= { + ["x"]= 4219.9, + ["y"]= -3837.32, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10166", + "31371", + "40751", + "6233" + } + }, + [615]= { + ["x"]= 4260.04, + ["y"]= 6936.23, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57199", + "7023", + "61327", + "51404" + } + }, + [616]= { + ["x"]= 4260.04, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5237" + } + }, + [617]= { + ["x"]= 4299.23, + ["y"]= 1638.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50338" + } + }, + [618]= { + ["x"]= 4299.25, + ["y"]= 523.095, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6538" + } + }, + [619]= { + ["x"]= 4299.25, + ["y"]= 1060.17, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "38662" + } + }, + [620]= { + ["x"]= 4299.25, + ["y"]= 3274.2, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "61306" + } + }, + [621]= { + ["x"]= 4299.25, + ["y"]= 4126.36, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17421", + "29104", + "51440", + "9458" + } + }, + [622]= { + ["x"]= 4301.1, + ["y"]= -487.965, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "9355" + } + }, + [623]= { + ["x"]= 4301.17, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49978" + } + }, + [624]= { + ["x"]= 4301.65, + ["y"]= -1111.45, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4011" + } + }, + [625]= { + ["x"]= 4308.13, + ["y"]= 9222.16, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35853", + "3109" + } + }, + [626]= { + ["x"]= 4353.27, + ["y"]= 5387.67, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63620" + } + }, + [627]= { + ["x"]= 4380.25, + ["y"]= 2129.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "65210", + "25178", + "57240", + "9373", + "32117", + "48099" + } + }, + [628]= { + ["x"]= 4405.04, + ["y"]= 7808.4, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "40132", + "58854", + "46882" + } + }, + [629]= { + ["x"]= 4407.88, + ["y"]= -2582.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1891" + } + }, + [630]= { + ["x"]= 4407.88, + ["y"]= -1877.68, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59009" + } + }, + [631]= { + ["x"]= 4432.23, + ["y"]= -7533.79, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "21984", + "22618", + "21033" + } + }, + [632]= { + ["x"]= 4481.73, + ["y"]= -8861.99, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58194", + "9797" + } + }, + [633]= { + ["x"]= 4547.4, + ["y"]= -2934.85, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "20546" + } + }, + [634]= { + ["x"]= 4558.21, + ["y"]= -2868.84, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35894" + } + }, + [635]= { + ["x"]= 4560.21, + ["y"]= -1604.45, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5823" + } + }, + [636]= { + ["x"]= 4625.56, + ["y"]= 298.865, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6042", + "19401", + "63453", + "10141" + } + }, + [637]= { + ["x"]= 4632.04, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "42178" + } + }, + [638]= { + ["x"]= 4647.34, + ["y"]= -793.395, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32227", + "64509", + "3863", + "20167", + "62853" + } + }, + [639]= { + ["x"]= 4647.34, + ["y"]= 782.685, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17788", + "42133", + "57259", + "50690", + "41016" + } + }, + [640]= { + ["x"]= 4651.31, + ["y"]= -250.355, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62094", + "43495", + "3634", + "41819" + } + }, + [641]= { + ["x"]= 4703.92, + ["y"]= -2582.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21835" + } + }, + [642]= { + ["x"]= 4709.92, + ["y"]= -1877.68, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "9877" + } + }, + [643]= { + ["x"]= 4713.27, + ["y"]= 3779.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "23438", + "16602", + "41137", + "46761" + } + }, + [644]= { + ["x"]= 4715, + ["y"]= 8517.45, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "22994", + "40400", + "46393", + "25134" + } + }, + [645]= { + ["x"]= 4742.38, + ["y"]= -3686.89, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14157", + "28758", + "39443", + "15409", + "56276" + } + }, + [646]= { + ["x"]= 4798.76, + ["y"]= -7267.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58168", + "52407", + "54645", + "14122" + } + }, + [647]= { + ["x"]= 4800.31, + ["y"]= 4689.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "38622", + "50734", + "13965", + "26763" + } + }, + [648]= { + ["x"]= 4808.28, + ["y"]= -6363.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50382", + "6616", + "48093", + "44824", + "16743", + "34560", + "17411" + } + }, + [649]= { + ["x"]= 4808.31, + ["y"]= 6046.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8370", + "63439", + "43608", + "63921" + } + }, + [650]= { + ["x"]= 4864.82, + ["y"]= -4754.52, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "20852", + "6785", + "36585", + "42649", + "13387" + } + }, + [651]= { + ["x"]= 4883.75, + ["y"]= 4207.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64709" + } + }, + [652]= { + ["x"]= 4887.73, + ["y"]= -8158.76, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "64583", + "61288", + "13170", + "18756" + } + }, + [653]= { + ["x"]= 4893.38, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "25058" + } + }, + [654]= { + ["x"]= 4926.4, + ["y"]= 1638.78, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "41380", + "57819", + "6654", + "6913", + "42964", + "65224" + } + }, + [655]= { + ["x"]= 5030.42, + ["y"]= 359.695, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44206", + "22845", + "21019", + "34978" + } + }, + [656]= { + ["x"]= 5050.25, + ["y"]= 5189.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "20730", + "4656", + "22217", + "6383", + "59866" + } + }, + [657]= { + ["x"]= 5072.35, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64217" + } + }, + [658]= { + ["x"]= 5110.28, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8938" + } + }, + [659]= { + ["x"]= 5112.08, + ["y"]= 2622.5, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2715", + "3187", + "903", + "30894", + "18670", + "15842" + } + }, + [660]= { + ["x"]= 5121.5, + ["y"]= 9221.52, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57194", + "12161" + } + }, + [661]= { + ["x"]= 5190.54, + ["y"]= 6394.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30679" + } + }, + [662]= { + ["x"]= 5190.54, + ["y"]= 6907, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5632", + "57651", + "12215", + "36764", + "45283", + "40170" + } + }, + [663]= { + ["x"]= 5238.98, + ["y"]= -6076.21, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55571", + "12143", + "55491", + "28859" + } + }, + [664]= { + ["x"]= 5251.84, + ["y"]= -407.825, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62795", + "56090", + "49408", + "4219", + "11032", + "48698" + } + }, + [665]= { + ["x"]= 5288.6, + ["y"]= -4327.57, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "33783", + "4502" + } + }, + [666]= { + ["x"]= 5293.73, + ["y"]= -8861.99, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34013", + "41876" + } + }, + [667]= { + ["x"]= 5309.23, + ["y"]= 4658.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38579", + "25766", + "32802", + "16236" + } + }, + [668]= { + ["x"]= 5351.48, + ["y"]= -2868.84, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "46965", + "28754", + "35283", + "10763", + "21575", + "40644", + "42686", + "60949", + "7920" + } + }, + [669]= { + ["x"]= 5351.48, + ["y"]= -1604.45, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "46289", + "30338", + "51212", + "58069", + "42623", + "30205", + "54338", + "33903", + "60737" + } + }, + [670]= { + ["x"]= 5373.1, + ["y"]= -4318.71, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "89", + "52522", + "11716", + "42744", + "45608" + } + }, + [671]= { + ["x"]= 5394.8, + ["y"]= -5242.17, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9769", + "49515", + "24067", + "54413" + } + }, + [672]= { + ["x"]= 5429, + ["y"]= 4207.29, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34660", + "30974", + "9933", + "56865" + } + }, + [673]= { + ["x"]= 5431.51, + ["y"]= 9676.49, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "44470" + } + }, + [674]= { + ["x"]= 5451.69, + ["y"]= 432.095, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45593", + "12801", + "53114", + "25067", + "31315", + "65528" + } + }, + [675]= { + ["x"]= 5473.85, + ["y"]= -3627.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38520", + "47321", + "265", + "56648", + "53365" + } + }, + [676]= { + ["x"]= 5485.88, + ["y"]= -7160.88, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32314", + "31973", + "10992", + "1652", + "3359", + "6250", + "2785", + "51191", + "30767", + "43010", + "6570", + "22535" + } + }, + [677]= { + ["x"]= 5485.88, + ["y"]= -6503.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60440" + } + }, + [678]= { + ["x"]= 5526.25, + ["y"]= 5412.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26820", + "50038", + "40383", + "61039" + } + }, + [679]= { + ["x"]= 5528, + ["y"]= 8517.45, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51233", + "61305" + } + }, + [680]= { + ["x"]= 5532.23, + ["y"]= -9357.08, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "54600" + } + }, + [681]= { + ["x"]= 5539.65, + ["y"]= -793.395, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45788", + "2121", + "12518", + "28503" + } + }, + [682]= { + ["x"]= 5625.38, + ["y"]= -159.685, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52714" + } + }, + [683]= { + ["x"]= 5625.38, + ["y"]= 173.315, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60180" + } + }, + [684]= { + ["x"]= 5648.1, + ["y"]= 763.265, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "11239" + } + }, + [685]= { + ["x"]= 5684.5, + ["y"]= 6907, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5622", + "25209", + "30626", + "8872", + "6" + } + }, + [686]= { + ["x"]= 5699.73, + ["y"]= -8158.76, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24452", + "59585" + } + }, + [687]= { + ["x"]= 5711.94, + ["y"]= 2129.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "1201", + "45491", + "7085" + } + }, + [688]= { + ["x"]= 5739.58, + ["y"]= 2611.82, + ["orbits"]= {}, + ["nodes"]= { + "41866", + "60942" + } + }, + [689]= { + ["x"]= 5739.58, + ["y"]= 3785.17, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "36801", + "19228", + "3362", + "4788", + "529" + } + }, + [690]= { + ["x"]= 5741.38, + ["y"]= -6061.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60210", + "5018", + "45810", + "13168", + "11984", + "58032" + } + }, + [691]= { + ["x"]= 5787.26, + ["y"]= -6677.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "11455" + } + }, + [692]= { + ["x"]= 5889.17, + ["y"]= 5087.11, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12794", + "30455", + "28658", + "14804", + "41119", + "47212" + } + }, + [693]= { + ["x"]= 5892.88, + ["y"]= 6475.33, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56023", + "11678", + "44306", + "8458", + "52288", + "31513" + } + }, + [694]= { + ["x"]= 5913.73, + ["y"]= -2868.8, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "3656", + "58244" + } + }, + [695]= { + ["x"]= 5913.73, + ["y"]= -487.945, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59252" + } + }, + [696]= { + ["x"]= 5913.96, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59606" + } + }, + [697]= { + ["x"]= 5913.98, + ["y"]= -1604.45, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "13885", + "28012" + } + }, + [698]= { + ["x"]= 5916.07, + ["y"]= 513.095, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39718" + } + }, + [699]= { + ["x"]= 5916.07, + ["y"]= 1553.17, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "27283", + "5616" + } + }, + [700]= { + ["x"]= 5970.17, + ["y"]= 5493.58, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22266" + } + }, + [701]= { + ["x"]= 5999.55, + ["y"]= -4551.19, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "62791" + } + }, + [702]= { + ["x"]= 5999.85, + ["y"]= 1638.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31508" + } + }, + [703]= { + ["x"]= 5999.85, + ["y"]= 2611.82, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37504" + } + }, + [704]= { + ["x"]= 6051.17, + ["y"]= 5947.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9786", + "4573", + "33558", + "3309", + "41163" + } + }, + [705]= { + ["x"]= 6071.73, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41989" + } + }, + [706]= { + ["x"]= 6077.01, + ["y"]= 8476.45, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35313" + } + }, + [707]= { + ["x"]= 6116.13, + ["y"]= 4586.13, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51420", + "49481", + "65053", + "6384" + } + }, + [708]= { + ["x"]= 6143.15, + ["y"]= -2868.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24050" + } + }, + [709]= { + ["x"]= 6143.15, + ["y"]= -1604.45, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "46408" + } + }, + [710]= { + ["x"]= 6161.55, + ["y"]= -4159.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46896", + "4973", + "5129", + "9864", + "59482", + "47294" + } + }, + [711]= { + ["x"]= 6166.98, + ["y"]= -4894.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "18769", + "61653", + "38190", + "1822", + "857" + } + }, + [712]= { + ["x"]= 6222.09, + ["y"]= -3627.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37616", + "27962", + "31501", + "59556" + } + }, + [713]= { + ["x"]= 6247.75, + ["y"]= -8199.76, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "27819" + } + }, + [714]= { + ["x"]= 6248.55, + ["y"]= -5716.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44540", + "39814", + "27190", + "25770" + } + }, + [715]= { + ["x"]= 6259.04, + ["y"]= -1878.44, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "47362" + } + }, + [716]= { + ["x"]= 6264.04, + ["y"]= -2582.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1767" + } + }, + [717]= { + ["x"]= 6292.06, + ["y"]= -778.435, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "20675", + "19210", + "43316", + "47065" + } + }, + [718]= { + ["x"]= 6292.06, + ["y"]= -278.035, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "54868", + "39938", + "45360", + "57030", + "9535", + "27865" + } + }, + [719]= { + ["x"]= 6293.55, + ["y"]= 245.085, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "18707", + "1427", + "51235", + "19725" + } + }, + [720]= { + ["x"]= 6293.55, + ["y"]= 602.755, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34317", + "4481", + "56646", + "25511" + } + }, + [721]= { + ["x"]= 6401.58, + ["y"]= 2129.71, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63843" + } + }, + [722]= { + ["x"]= 6406.54, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "7112" + } + }, + [723]= { + ["x"]= 6408.53, + ["y"]= 5574.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16882", + "43491", + "14400", + "41420", + "9393" + } + }, + [724]= { + ["x"]= 6504.09, + ["y"]= 3271.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33196", + "13202", + "17171", + "44179", + "43385", + "58474" + } + }, + [725]= { + ["x"]= 6511.65, + ["y"]= 989.835, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56814", + "46694", + "43457", + "11850", + "17608", + "38568" + } + }, + [726]= { + ["x"]= 6609.3, + ["y"]= -6224.5, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34763", + "30110", + "42907", + "53013", + "42361" + } + }, + [727]= { + ["x"]= 6693.21, + ["y"]= 3983.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48660", + "50150", + "45436", + "64878", + "30969", + "32477", + "36281" + } + }, + [728]= { + ["x"]= 6693.21, + ["y"]= 4667.13, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32555" + } + }, + [729]= { + ["x"]= 6711.3, + ["y"]= -5797.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36858" + } + }, + [730]= { + ["x"]= 6711.3, + ["y"]= -5042.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61981", + "63861", + "60405", + "25757", + "47507", + "49929" + } + }, + [731]= { + ["x"]= 6805.63, + ["y"]= -4419.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25789", + "54452", + "43328", + "59699", + "15852", + "16141" + } + }, + [732]= { + ["x"]= 6834.36, + ["y"]= 2130.82, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14292", + "38348", + "16079", + "21758", + "60735", + "48614" + } + }, + [733]= { + ["x"]= 6836.94, + ["y"]= 1557.78, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37619", + "64235", + "24133", + "27371" + } + }, + [734]= { + ["x"]= 6836.94, + ["y"]= 2693.91, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19858", + "36221", + "9206", + "44316" + } + }, + [735]= { + ["x"]= 6872.46, + ["y"]= -6076.38, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23616" + } + }, + [736]= { + ["x"]= 6872.67, + ["y"]= -3422.68, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32176", + "60259", + "11018", + "1215" + } + }, + [737]= { + ["x"]= 6872.67, + ["y"]= -1007.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38995", + "8012", + "7488", + "8001" + } + }, + [738]= { + ["x"]= 6873.34, + ["y"]= 4959.02, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54922" + } + }, + [739]= { + ["x"]= 6925.46, + ["y"]= -2949.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63228", + "49308", + "10495", + "42804" + } + }, + [740]= { + ["x"]= 6925.46, + ["y"]= -2222.54, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "53213", + "3314", + "27656", + "61834", + "42443", + "25411", + "3537" + } + }, + [741]= { + ["x"]= 6925.46, + ["y"]= -1523.45, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40362", + "25260", + "27788", + "292" + } + }, + [742]= { + ["x"]= 7120.69, + ["y"]= -4006.48, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6615", + "5022", + "37532", + "44339" + } + }, + [743]= { + ["x"]= 7133, + ["y"]= -5923.23, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64042", + "21693", + "5613", + "38539", + "54713" + } + }, + [744]= { + ["x"]= 7145.53, + ["y"]= 3423.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64769", + "23449", + "36849", + "23886", + "7263", + "1205" + } + }, + [745]= { + ["x"]= 7180.42, + ["y"]= 1008.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29454", + "62744", + "18770", + "63251", + "49820" + } + }, + [746]= { + ["x"]= 7191, + ["y"]= 6.795, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "1461" + } + }, + [747]= { + ["x"]= 7201.69, + ["y"]= -4559.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "53456" + } + }, + [748]= { + ["x"]= 7202.4, + ["y"]= -5285.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2959", + "30427", + "56186", + "11162", + "54887" + } + }, + [749]= { + ["x"]= 7219.81, + ["y"]= 4667.13, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53574", + "26002", + "7659", + "25738", + "62759" + } + }, + [750]= { + ["x"]= 7253.25, + ["y"]= -243.625, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "31585", + "3676", + "17790", + "20736" + } + }, + [751]= { + ["x"]= 7258.01, + ["y"]= 267.535, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15697", + "2413", + "30826", + "31438", + "11800", + "52030" + } + }, + [752]= { + ["x"]= 7267.19, + ["y"]= 1791.65, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9469", + "59220", + "65502", + "31039" + } + }, + [753]= { + ["x"]= 7267.19, + ["y"]= 2473.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57080", + "42104", + "49621", + "58302" + } + }, + [754]= { + ["x"]= 7286.55, + ["y"]= -769.775, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5802", + "3424", + "1405", + "31197" + } + }, + [755]= { + ["x"]= 7364.98, + ["y"]= -3542.49, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35255" + } + }, + [756]= { + ["x"]= 7407.03, + ["y"]= 669.295, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "13375", + "65427", + "45202", + "20953", + "49391" + } + }, + [757]= { + ["x"]= 7407.61, + ["y"]= -2872.02, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17749", + "18747", + "52789", + "10414" + } + }, + [758]= { + ["x"]= 7407.61, + ["y"]= -1725.33, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35851", + "60592", + "47484", + "26148" + } + }, + [759]= { + ["x"]= 7469.86, + ["y"]= -4880.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24426" + } + }, + [760]= { + ["x"]= 7684, + ["y"]= -3341.7, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18182" + } + }, + [761]= { + ["x"]= 7684, + ["y"]= -2222.56, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56295" + } + }, + [762]= { + ["x"]= 7684, + ["y"]= -1088.96, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "46277" + } + }, + [763]= { + ["x"]= 7684, + ["y"]= -507.985, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49900" + } + }, + [764]= { + ["x"]= 7684, + ["y"]= 939.335, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36287" + } + }, + [765]= { + ["x"]= 7684, + ["y"]= 2136.2, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20807" + } + }, + [766]= { + ["x"]= 7684, + ["y"]= 3504.79, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12412" + } + }, + [767]= { + ["x"]= 7684, + ["y"]= 4234.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48508", + "42632", + "27444", + "4750", + "58288", + "63618", + "15290" + } + }, + [768]= { + ["x"]= 7797.69, + ["y"]= -4559.48, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "27872", + "40409", + "4546", + "9055", + "33777", + "1655", + "8027", + "2260", + "35334", + "29549", + "61689" + } + }, + [769]= { + ["x"]= 7922.19, + ["y"]= 668.065, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54307" + } + }, + [770]= { + ["x"]= 7941.78, + ["y"]= -247.355, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23407" + } + }, + [771]= { + ["x"]= 8003.21, + ["y"]= 1686.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10840", + "35086", + "13935", + "3571" + } + }, + [772]= { + ["x"]= 8003.21, + ["y"]= 2581.71, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56519", + "655", + "45246", + "61573", + "6264", + "37425" + } + }, + [773]= { + ["x"]= 8038.44, + ["y"]= 47.815, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "32763", + "23334", + "6797" + } + }, + [774]= { + ["x"]= 8151.34, + ["y"]= -1088.96, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4269", + "55880", + "32681", + "32657" + } + }, + [775]= { + ["x"]= 8153.54, + ["y"]= -2692.15, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "55414", + "22261", + "56174", + "38864", + "47422", + "44134", + "11489", + "8920", + "36490", + "7634" + } + }, + [776]= { + ["x"]= 8153.54, + ["y"]= -1747.19, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "36225", + "30745", + "49568", + "17908", + "25775", + "5629", + "35384", + "15614", + "54791", + "19050" + } + }, + [777]= { + ["x"]= 8172.15, + ["y"]= -588.985, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "11811", + "28903", + "20127", + "1648", + "31359", + "37785" + } + }, + [778]= { + ["x"]= 8197.29, + ["y"]= -3636.07, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "10429", + "12824", + "45827", + "28753", + "55380", + "30319", + "54574", + "59605", + "54974", + "32432", + "21297" + } + }, + [779]= { + ["x"]= 8291, + ["y"]= 3504.79, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "59151", + "31291", + "12720", + "29856", + "1698", + "1568", + "54354", + "6108", + "56509", + "52213" + } + }, + [780]= { + ["x"]= 8532.18, + ["y"]= 1593.66, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "57006" + } + }, + [781]= { + ["x"]= 8533.09, + ["y"]= 939.335, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "45329", + "7069", + "5826", + "10843", + "33374", + "31222", + "38947", + "21228", + "51953", + "7609" + } + }, + [782]= { + ["x"]= 8533.09, + ["y"]= 2149.06, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "39665", + "38149", + "32514", + "55750", + "2185", + "23912", + "12948", + "51881", + "49459", + "6427" + } + }, + [783]= { + ["x"]= 8807.45, + ["y"]= 129.815, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6910", + "49684", + "33753", + "48132" + } + }, + [784]= { + ["x"]= 9213.95, + ["y"]= -574.265, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35926", + "18436" + } + }, + [785]= { + ["x"]= 9213.95, + ["y"]= 833.895, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50179", + "22748" + } + }, + [786]= { + ["x"]= 9452.95, + ["y"]= -1070.22, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "36414" + } + }, + [787]= { + ["x"]= 9523.96, + ["y"]= 1288.85, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "56439" + } + }, + [788]= { + ["x"]= 9620.45, + ["y"]= 129.815, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33833", + "11150" + } + }, + [789]= { + ["x"]= 10169.5, + ["y"]= 88.815, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "10643" + } + }, + [790]= { + ["x"]= 9755.0, + ["y"]= -5200.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21264" + } + }, + [791]= { + ["x"]= 9920.0, + ["y"]= -5104.7300000000005, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18335" + } + }, + [792]= { + ["x"]= 10200.0, + ["y"]= -5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "12850", + "19598", + "33954", + "1945", + "43215", + "28782", + "51402", + "29844", + "46676", + "21192", + "4242", + "47531", + "55686", + "48239", + "9014", + "6064", + "19083", + "23024", + "58229" + } + }, + [793]= { + ["x"]= 10200.0, + ["y"]= 3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "36242", + "6038", + "32662", + "40813", + "20480", + "1697", + "51101", + "14156", + "63293", + "32640", + "65296", + "40631", + "61805", + "59800", + "64111" + } + }, + [794]= { + ["x"]= 10200, + ["y"]= -3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "48999", + "37191", + "41891", + "2336", + "23225", + "13219", + "58454", + "32947", + "55867", + "63908", + "28884", + "19587", + "29825", + "35598", + "55236" + } + }, + [795]= { + ["x"]= 10200.0, + ["y"]= -2200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "64842", + "28535", + "25167", + "39834", + "869", + "38918", + "16212", + "47778", + "62067", + "57175", + "64785", + "16940", + "65085", + "1953", + "41081", + "5087", + "63135", + "14103", + "47366", + "51462", + "26446", + "18635" + } + }, + [796]= { + ["x"]= 10200.0, + ["y"]= 5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "53421", + "33645", + "15550", + "55509", + "2060", + "58650", + "61761", + "63940", + "29662", + "40104", + "36958", + "31364", + "24214", + "19488", + "5926", + "16848", + "27536", + "4849", + "12146", + "11597", + "24432", + "58427" + } + }, + [797]= { + ["x"]= 10200.0, + ["y"]= 2200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "53086", + "44482", + "55985", + "62136", + "24848", + "1729", + "2872", + "56134", + "64028", + "22852", + "5443", + "23169", + "59837", + "61627", + "5082", + "26067", + "28995", + "45313", + "56856" + } + }, + [44472]= { + ["x"]= 0, + ["y"]= -10850, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 27602 + } + }, + [50933]= { + ["x"]= -11400, + ["y"]= -3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 57568 + } + }, + [25519]= { + ["x"]= -11400, + ["y"]= 3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 52435 + } + }, + [60495]= { + ["x"]= -8800, + ["y"]= 8200, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 19355 + } + }, + [63033]= { + ["x"]= 0, + ["y"]= 10800, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 42469 + } + }, + [56600]= { + ["x"]= 11200, + ["y"]= 3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 18054 + } + }, + [37841]= { + ["x"]= 11200, + ["y"]= -3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 57331 + } + } + }, + ["nodes"]= { + ["root"]= { + ["group"]= 0, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50459", + "47175", + "50986", + "61525", + "54447", + "44683", + "58833", + "9414", + "42328", + "10622", + "17297", + "542", + "9086", + "10861", + "9920", + "31958", + "37815", + "41389", + "9939", + "63630", + "8133", + "7600", + "35214" + }, + ["in"]= {} + }, + [28609]= { + ["skill"]= 28609, + ["name"]= "Conjoined Spire", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampStygianSpires.png", + ["isNotable"]= true, + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "All other Summoned Totems die when you Summon a Totem", + "Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems", + "Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems", + "Totems have 5% more Life per maximum number of Summoned Totems" + }, + ["group"]= 1, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25703" + } + }, + [16287]= { + ["skill"]= 16287, + ["name"]= "Bone Feeders", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampAbyssalFiends.png", + ["isNotable"]= true, + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 2, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58999" + } + }, + [52349]= { + ["skill"]= 52349, + ["name"]= "The King's Contempt", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargeint.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Discipline has 50% increased Aura Effect while at Minimum Power Charges", + "Wrath has 50% increased Aura Effect while at maximum Power Charges" + }, + ["group"]= 3, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10696" + } + }, + [43376]= { + ["skill"]= 43376, + ["name"]= "The King's Heritage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargestr.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Determination has 50% increased Aura Effect while at Minimum Endurance Charges", + "Anger has 50% increased Aura Effect while at maximum Endurance Charges" + }, + ["group"]= 4, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10696" + } + }, + [57472]= { + ["skill"]= 57472, + ["name"]= "Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.png", + ["isNotable"]= true, + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 5, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "35380", + "19208", + "14588", + "64963" + }, + ["in"]= { + "2643" + } + }, + [25703]= { + ["skill"]= 25703, + ["name"]= "Totem Damage and Life ", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Totem Damage", + "15% increased Totem Life" + }, + ["group"]= 5, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "28609" + }, + ["in"]= { + "35214" + } + }, + [58999]= { + ["skill"]= 58999, + ["name"]= "Curse Effect on Self", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "25% reduced Effect of Curses on you" + }, + ["group"]= 5, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "16287" + }, + ["in"]= { + "35214" + } + }, + [2643]= { + ["skill"]= 2643, + ["name"]= "Debuff Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "Debuffs on you expire 15% faster" + }, + ["group"]= 5, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "57472" + }, + ["in"]= { + "35214" + } + }, + [35214]= { + ["skill"]= 35214, + ["name"]= "Abyssal Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Abyssal", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 5, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58999", + "2643", + "25703" + }, + ["in"]= {} + }, + [21785]= { + ["skill"]= 21785, + ["name"]= "The King's Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargedex.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grace has 50% increased Aura Effect while at Minimum Frenzy Charges", + "Hatred has 50% increased Aura Effect while at maximum Frenzy Charges" + }, + ["group"]= 6, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10696" + } + }, + [27121]= { + ["skill"]= 27121, + ["name"]= "Farric Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Raised Beast Spectres have Farrul's Farric Presence", + "Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area" + }, + ["reminderText"]= { + "(Farrul's Farric Presence is an Aura which grants 80% increased Accuracy Rating, 120% increased Critical Strike Chance and Take no Extra Damage from Critical Hits)" + }, + ["group"]= 7, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15739" + } + }, + [7442]= { + ["skill"]= 7442, + ["name"]= "Fertile Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Raised Beast Spectres have Farrul's Fertile Presence", + "Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area" + }, + ["reminderText"]= { + "(Farrul's Fertile Presence is an Aura which grants 100% increased Damage, Regenerate 3% of Life per second and Cannot be Stunned)" + }, + ["group"]= 8, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15739" + } + }, + [64963]= { + ["skill"]= 64963, + ["name"]= "Searching Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "While you have at least 3 Searching Eye Jewels socketed:", + "Targets affected by Maim you inflict cannot deal Critical Strikes", + "Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + }, + ["group"]= 9, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [19208]= { + ["skill"]= 19208, + ["name"]= "Murderous Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= {}, + ["group"]= 10, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [9437]= { + ["skill"]= 9437, + ["name"]= " Precursor's Release", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["stats"]= { + "Action Speed cannot be modified to below Base Value if you have Equipped Boots with no Socketed Gems", + "Cannot be Stunned if you have an Equipped Helmet with no Socketed Gems", + "Elemental Ailments cannot be inflicted on you if you have an Equipped Body Armour with no Socketed Gems", + "Take no Extra Damage from Critical Strikes if you have Equipped Gloves with no Socketed Gems" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 11, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "41464" + } + }, + [10696]= { + ["skill"]= 10696, + ["name"]= "Legacy of the King", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 11, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "52349", + "43376", + "21785" + }, + ["in"]= { + "16350" + } + }, + [41464]= { + ["skill"]= 41464, + ["name"]= "Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Defences" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 11, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9437" + }, + ["in"]= { + "542" + } + }, + [16350]= { + ["skill"]= 16350, + ["name"]= "Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["stats"]= { + "30% increased Endurance, Frenzy and Power Charge Duration" + }, + ["group"]= 11, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "10696" + }, + ["in"]= { + "542" + } + }, + [542]= { + ["skill"]= 542, + ["name"]= "Aul Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Aul", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 11, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41464", + "16350" + }, + ["in"]= {} + }, + [37670]= { + ["skill"]= 37670, + ["name"]= "Wild Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Raised Beast Spectres have Farrul's Wild Presence", + "Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area" + }, + ["reminderText"]= { + "(Farrul's Wild Presence is an Aura which grants 20% increased Attack, Cast and Movement Speed and prevents Action Speed from being lowered below the Base Value)" + }, + ["group"]= 12, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15739" + } + }, + [35011]= { + ["skill"]= 35011, + ["name"]= "Huntleader", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "Trigger Level 20 Summon Spectral Tiger on Critical Strike" + }, + ["reminderText"]= { + "(Summons a spectral tiger companion that attacks nearby enemies and dies after a duration. Each spectral tiger grants you a buff that increases Critical Strike Chance, and increases Attack and Cast Speed. If you have the maximum number of them, refreshes the duration and life of an existing one instead)" + }, + ["group"]= 13, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "41387" + } + }, + [48251]= { + ["skill"]= 48251, + ["name"]= "Primal Roar", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "4% increased Attack Speed per Minion, up to a maximum of 80%", + "Minions deal 80% increased Damage if you have Warcried Recently" + }, + ["group"]= 13, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "34952" + } + }, + [15739]= { + ["skill"]= 15739, + ["name"]= "Farrul's Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 13, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "7442", + "37670", + "27121" + }, + ["in"]= { + "31878" + } + }, + [41387]= { + ["skill"]= 41387, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 25% increased Damage" + }, + ["group"]= 13, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35011" + }, + ["in"]= { + "10861" + } + }, + [34952]= { + ["skill"]= 34952, + ["name"]= "Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Warcry Speed" + }, + ["group"]= 13, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "48251" + }, + ["in"]= { + "10861" + } + }, + [31878]= { + ["skill"]= 31878, + ["name"]= "Maximum Spectres and Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "Minions have 25% increased maximum Life", + "Maximum number of Raised Spectres is 1" + }, + ["group"]= 13, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15739" + }, + ["in"]= { + "10861" + } + }, + [10861]= { + ["skill"]= 10861, + ["name"]= "Farrul Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Farrul", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 13, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41387", + "31878", + "34952" + }, + ["in"]= {} + }, + [14588]= { + ["skill"]= 14588, + ["name"]= "Hypnotic Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "While you have at least 3 Hypnotic Eye Jewels socketed:", + "Arcane Surge also grants 20% of Damage taken Recouped as Mana to you", + "Arcane Surge also grants 20% increased Mana Cost Efficiency to you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 14, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [35380]= { + ["skill"]= 35380, + ["name"]= "Ghastly Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "While you have at least 3 Ghastly Eye Jewels socketed:", + "Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance", + "Unholy Might you grant also applies 20% Increased Effect of Withered" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)", + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 15, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [14190]= { + ["skill"]= 14190, + ["name"]= " Death Offering", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualAid.png", + ["isNotable"]= true, + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "50% increased effect of Offerings", + "Offerings Kill affected Damagable targets when Offering Duration expires" + }, + ["group"]= 16, + ["orbit"]= 3, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "38886" + } + }, + [59826]= { + ["skill"]= 59826, + ["name"]= "Umbral Army", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "2% increased Attack and Cast Speed per Summoned Raging Spirit", + "15% increased Attack Damage per Raised Zombie", + "10% increased Defences per Raised Spectre", + "2% increased Movement Speed per Summoned Phantasm", + "6% increased Spell Damage per Summoned Skeleton" + }, + ["group"]= 16, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "17570" + } + }, + [17309]= { + ["skill"]= 17309, + ["name"]= "Prolonged Servitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualCommand.png", + ["isNotable"]= true, + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 20% more Damage while they are on Low Life", + "Minions cannot be Killed, but die 6 seconds after being reduced to 1 Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + }, + ["group"]= 16, + ["orbit"]= 3, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "44848" + } + }, + [38886]= { + ["skill"]= 38886, + ["name"]= "Offering Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png", + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Offering Skills have 20% increased Duration" + }, + ["group"]= 16, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "14190" + }, + ["in"]= { + "9086" + } + }, + [17570]= { + ["skill"]= 17570, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png", + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Minions have 25% increased maximum Life" + }, + ["group"]= 16, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "59826" + }, + ["in"]= { + "9086" + } + }, + [44848]= { + ["skill"]= 44848, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png", + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 25% increased Damage" + }, + ["group"]= 16, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "17309" + }, + ["in"]= { + "9086" + } + }, + [9086]= { + ["skill"]= 9086, + ["name"]= "Catarina Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Catarina", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 16, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38886", + "44848", + "17570" + }, + ["in"]= {} + }, + [17080]= { + ["skill"]= 17080, + ["name"]= "Tide Caller", + ["icon"]= "Art/2DArt/SkillIcons/passives/TideCaller.png", + ["isNotable"]= true, + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "Trigger Level 20 Surging Torrent when you cast an Elemental Spell", + "Drop Brine Ground while moving, lasting 4 seconds" + }, + ["reminderText"]= { + "(A torrent rushes upwards after a short delay, dealing damage in an area while leaving Brine Ground)", + "(Enemies on your Brine Ground have 30% increased effect of Lightning and Cold Ailments on them and have 25% reduced Armour and Evasion Rating. Allies on your Brine Ground gain 10% of Physical Damage as extra Cold Damage and as extra Lightning Damage)" + }, + ["group"]= 17, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34977" + } + }, + [13362]= { + ["skill"]= 13362, + ["name"]= "Salt and Scale", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "Inflict Barnacles on nearby Enemies every second" + }, + ["reminderText"]= { + "(Enemies affected by Barnacles Convert 5% of Physical Damage to Cold and have 5% increased duration of Chill and Freeze on them. Each instance of Barnacles lasts 30 seconds and can be inflicted up to 10 times)" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "19078" + } + }, + [51685]= { + ["skill"]= 51685, + ["name"]= "Brine Rot", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrineRot.png", + ["isNotable"]= true, + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "Triggers Drowning Domain when Allocated" + }, + ["reminderText"]= { + "(30% of Damage over Time taken by Enemies within the Drowning Domain is inflicted as Brine Rot. Enemies lose life equal to stored Brine Rot when they leave the Drowning Domain)" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "39381" + } + }, + [34977]= { + ["skill"]= 34977, + ["name"]= "Cold Damage ", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png", + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Cold Damage" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 2, + ["out"]= { + "17080" + }, + ["in"]= { + "7600" + } + }, + [19078]= { + ["skill"]= 19078, + ["name"]= "Cold Resistance and Effect of Cold Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png", + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "+10% to Cold Resistance", + "10% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "13362" + }, + ["in"]= { + "7600" + } + }, + [39381]= { + ["skill"]= 39381, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png", + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "+8% to Damage over Time Multiplier" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "51685" + }, + ["in"]= { + "7600" + } + }, + [7600]= { + ["skill"]= 7600, + ["name"]= "Velka Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Brinerot", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 18, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "34977", + "39381", + "19078" + }, + ["in"]= {} + }, + [47543]= { + ["skill"]= 47543, + ["name"]= "The Primal Owl", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png", + ["isNotable"]= true, + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Unsealed Spells gain 5% more Damage each time their effects Reoccur", + "Skills supported by Unleash have +3 to maximum number of Seals" + }, + ["group"]= 19, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "36393" + } + }, + [18519]= { + ["skill"]= 18519, + ["name"]= "The Wild Bear", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png", + ["isNotable"]= true, + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "+20 to Maximum Rage", + "Lose all Rage on reaching Maximum Rage and gain Wild Savagery\nfor 1 second per 10 Rage lost this way" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Wild Savagery grants 100% increased Physical Damage, 10% increased Action Speed, Hits ignore Enemy Physical Damage Reduction and Cannot be Stunned)" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "12542" + } + }, + [32216]= { + ["skill"]= 32216, + ["name"]= "The Vivid Cat", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png", + ["isNotable"]= true, + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Elusive has 50% chance to be removed from you at 100% effect", + "50% increased Effect of your Marks while Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 19, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "63834" + } + }, + [36393]= { + ["skill"]= 36393, + ["name"]= "Seal gain frequency", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png", + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Skills Supported by Unleash have 20% increased Seal gain frequency" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "47543" + }, + ["in"]= { + "41389" + } + }, + [12542]= { + ["skill"]= 12542, + ["name"]= "Rage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png", + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Gain 2 Rage on Attack Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "18519" + }, + ["in"]= { + "41389" + } + }, + [63834]= { + ["skill"]= 63834, + ["name"]= "Elusive effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png", + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "20% increased Elusive Effect" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "32216" + }, + ["in"]= { + "41389" + } + }, + [41389]= { + ["skill"]= 41389, + ["name"]= "Oshabi Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Oshabi", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 19, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36393", + "63834", + "12542" + }, + ["in"]= {} + }, + [8138]= { + ["skill"]= 8138, + ["name"]= "Boon of the Mountain", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "50% less Damage Taken from Damage over Time while you have Unbroken Ward" + }, + ["group"]= 20, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58438" + }, + ["in"]= {} + }, + [40953]= { + ["skill"]= 40953, + ["name"]= "Boon of the River", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "5% chance to Restore your Ward on Hit" + }, + ["group"]= 21, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58438" + }, + ["in"]= {} + }, + [48816]= { + ["skill"]= 48816, + ["name"]= "Boon of the Sun", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "30% faster Restoration of Ward per Enemy Hit taken Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 22, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58438" + }, + ["in"]= {} + }, + [43902]= { + ["skill"]= 43902, + ["name"]= "The Unseen Hand", + ["icon"]= "Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "+1 Ring Slot" + }, + ["group"]= 23, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "44903", + "12354", + "46649" + } + }, + [52553]= { + ["skill"]= 52553, + ["name"]= "Unlight Silhouette", + ["icon"]= "Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Skills gain Added Chaos Damage equal to 25% of Life Cost, if Life Cost is not higher than the maximum you could spend", + "Skills gain a Base Life Cost equal to 100% of Base Mana Cost" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "48836" + } + }, + [44903]= { + ["skill"]= 44903, + ["name"]= "Toad's Price", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Unaffected by Poison", + "Utility Flasks are Disabled" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "43902" + }, + ["in"]= { + "9920" + } + }, + [12354]= { + ["skill"]= 12354, + ["name"]= "Serpent's Price", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Unaffected by Curses", + "Can't use Amulets" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "43902" + }, + ["in"]= { + "9920" + } + }, + [46649]= { + ["skill"]= 46649, + ["name"]= "Beetle's Price", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Unaffected by Bleeding", + "Can't use Belts" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "43902" + }, + ["in"]= { + "9920" + } + }, + [48836]= { + ["skill"]= 48836, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 23, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "52553" + }, + ["in"]= { + "9920" + } + }, + [9920]= { + ["skill"]= 9920, + ["name"]= "Nameless Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "KingInTheMists", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 23, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44903", + "12354", + "46649", + "48836" + }, + ["in"]= {} + }, + [32265]= { + ["skill"]= 32265, + ["name"]= "Enhanced Starlight", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "Damage taken bypasses Unbroken Ward if the Hit deals less Damage than 15% of Ward", + "70% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "63020" + } + }, + [10916]= { + ["skill"]= 10916, + ["name"]= "Volatile Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "Trigger Level 20 Ward Shatter when your Ward Breaks" + }, + ["reminderText"]= { + "(Explodes when your Ward is broken, dealing Physical Spell Damage around you equal to a percentage of your Ward and inflicting Enervation on Hit, a debuff that lowers Movement Speed by 20% and prevents Life and Energy Shield Recovery for 4 seconds)" + }, + ["group"]= 24, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "25187" + }, + ["in"]= {} + }, + [58438]= { + ["skill"]= 58438, + ["name"]= "Runic Boon", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 24, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "13988" + }, + ["in"]= { + "8138", + "40953", + "48816" + } + }, + [63020]= { + ["skill"]= 63020, + ["name"]= "Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32265" + }, + ["in"]= { + "37815" + } + }, + [25187]= { + ["skill"]= 25187, + ["name"]= "Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "10916", + "37815" + } + }, + [13988]= { + ["skill"]= 13988, + ["name"]= "Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "58438", + "37815" + } + }, + [37815]= { + ["skill"]= 37815, + ["name"]= "Olroth Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Olroth", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 24, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63020", + "13988", + "25187" + }, + ["in"]= {} + }, + [30061]= { + ["skill"]= 30061, + ["name"]= "You're the crazy one!", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 1 Embrace Madness Skill", + "While affected by Glorious Madness, inflict Mania on nearby Enemies every second" + }, + ["reminderText"]= { + "(Grants Glorious Madness. While under Glorious Madness gain a random Touched Debuff every 2 seconds. Using this skill again will remove Glorious Madness and the Touched Debuffs it inflicts, but you will be unable to Embrace Madness again until the cooldown expires)", + "(Mania applies 4% increased Damage taken, 2% reduced Action Speed and 10% reduced Life and Energy Shield Recovery Rate for 15 seconds, and can be inflicted up to 15 times)" + }, + ["group"]= 25, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "34442" + } + }, + [33670]= { + ["skill"]= 33670, + ["name"]= "It wasn't me!", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Misty Reflection Skill" + }, + ["reminderText"]= { + "(Dash backwards, leaving a short-lived mist copy of yourself that Taunts nearby Enemies for a short duration. The copy can be damaged by Enemies, and copies that are killed by an Enemy will apply a debuff in an area that makes affected targets take 30% increased Damage and deal 30% less Damage for 4 seconds)" + }, + ["group"]= 25, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "46704" + } + }, + [52408]= { + ["skill"]= 52408, + ["name"]= "That didn't happen!", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Take 40% less Damage from Hits", + "Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit", + "Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no effect" + }, + ["group"]= 25, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "39486" + } + }, + [34442]= { + ["skill"]= 34442, + ["name"]= "Debuff Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png", + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Debuffs on you expire 15% faster" + }, + ["group"]= 25, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "30061" + }, + ["in"]= { + "9939" + } + }, + [46704]= { + ["skill"]= 46704, + ["name"]= "Cooldown Recovery Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png", + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Cooldown Recovery Rate" + }, + ["group"]= 25, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33670" + }, + ["in"]= { + "9939" + } + }, + [39486]= { + ["skill"]= 39486, + ["name"]= "Life Recovery rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png", + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Life Recovery rate" + }, + ["group"]= 25, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52408" + }, + ["in"]= { + "9939" + } + }, + [9939]= { + ["skill"]= 9939, + ["name"]= "Delirious", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Delirious", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 25, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "34442", + "46704", + "39486" + }, + ["in"]= {} + }, + [27869]= { + ["skill"]= 27869, + ["name"]= "Bitter Heresy", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "Create Profane Ground instead of Consecrated Ground", + "Profane Ground you create inflicts Malediction on Enemies", + "Profane Ground you create also affects you and your Allies, granting Chaotic Might" + }, + ["reminderText"]= { + "(Hits against Enemies on Profane Ground have 100% increased Critical Strike Chance, and Curses have 10% increased Effect on them)", + "(Malediction causes 10% reduced Damage dealt and 10% increased Damage taken)", + "(Chaotic Might grants 30% of Physical Damage as extra Chaos Damage)" + }, + ["group"]= 26, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "36020" + } + }, + [47767]= { + ["skill"]= 47767, + ["name"]= "Sinner Saint", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "67% of Lightning Damage Converted to Chaos Damage", + "67% of Cold Damage Converted to Chaos Damage", + "67% of Fire Damage Converted to Chaos Damage" + }, + ["group"]= 26, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "8638" + } + }, + [3872]= { + ["skill"]= 3872, + ["name"]= "Farewell to Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "Herald Skills have 2% more Buff Effect for every 1% of Maximum Mana they Reserve", + "Herald Skills and Minions from Herald Skills deal 1% more Damage for every 1% of Maximum Life those Skills Reserve" + }, + ["group"]= 26, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "32740" + } + }, + [36020]= { + ["skill"]= 36020, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png", + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Effect of your Curses" + }, + ["group"]= 26, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27869" + }, + ["in"]= { + "31958" + } + }, + [8638]= { + ["skill"]= 8638, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png", + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Chaos Damage" + }, + ["group"]= 26, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "47767" + }, + ["in"]= { + "31958" + } + }, + [32740]= { + ["skill"]= 32740, + ["name"]= "Herald and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png", + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "Herald Skills deal 20% increased Damage", + "Minions deal 20% increased Damage while you are affected by a Herald" + }, + ["group"]= 26, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "3872" + }, + ["in"]= { + "31958" + } + }, + [31958]= { + ["skill"]= 31958, + ["name"]= "Lycia Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Lycia", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 26, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36020", + "8638", + "32740" + }, + ["in"]= {} + }, + [61092]= { + ["skill"]= 61092, + ["name"]= "Corruption's Embrace", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["stats"]= { + "You have Shepherd of Souls if at least 4 Corrupted Items are Equipped", + "You have Everlasting Sacrifice if at least 6 Corrupted Items are Equipped", + "You have Sacrifice of Blood if at least 8 Corrupted Items are Equipped" + }, + ["reminderText"]= { + "(Vaal Non-Aura Skills require 80% less Souls. Vaal Non-Aura Skills require 100% increased Souls per Vaal Skill used in the past 8 seconds)", + "(When you reach full Energy Shield, Sacrifice all Energy Shield to gain +5% to all Maximum Resistances for 4 seconds)", + "(Life Recovery from Regeneration grants Blood Barrier while on Full Life. Maximum Blood Barrier is equal to 30% of your Maximum Life. Damage from Hits is taken from Blood Barrier before your Life or Energy Shield. 50% less Life Regeneration Rate)" + }, + ["group"]= 27, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "60118" + } + }, + [57290]= { + ["skill"]= 57290, + ["name"]= "Deceitful Servant", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 27, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "49785", + "30271", + "27737" + }, + ["in"]= { + "7403" + } + }, + [60118]= { + ["skill"]= 60118, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 27, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "61092" + }, + ["in"]= { + "17297" + } + }, + [7403]= { + ["skill"]= 7403, + ["name"]= "Vaal Souls", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["stats"]= { + "Gain 1 Vaal Soul per second" + }, + ["group"]= 27, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "57290" + }, + ["in"]= { + "17297" + } + }, + [17297]= { + ["skill"]= 17297, + ["name"]= "Chaos Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Trialmaster", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 27, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60118", + "7403" + }, + ["in"]= {} + }, + [5865]= { + ["skill"]= 5865, + ["name"]= "Physical Damage, Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "15% increased Armour", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9271" + }, + ["in"]= { + "29294" + } + }, + [38999]= { + ["skill"]= 38999, + ["name"]= "Ancestral Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/Blitz.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Strike Skills also target the previous location they were used" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "8592" + } + }, + [24528]= { + ["skill"]= 24528, + ["name"]= "Crave the Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Every Rage also grants 1% increased Attack Speed", + "Inherent Rage Loss starts 2 seconds later" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)", + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "63583", + "42861" + } + }, + [59920]= { + ["skill"]= 59920, + ["name"]= "Aspect of Carnage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "10% increased Damage taken", + "40% more Damage" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "48904" + }, + ["in"]= { + "63673" + } + }, + [63673]= { + ["skill"]= 63673, + ["name"]= "Physical Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "59920" + }, + ["in"]= { + "29294" + } + }, + [29630]= { + ["skill"]= 29630, + ["name"]= "Gore Dancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "30% of Life Leech is Instant" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "48904" + } + }, + [48904]= { + ["skill"]= 48904, + ["name"]= "Physical Damage, Life Leeched per Second", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "30% increased total Recovery per second from Life Leech", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "29630" + }, + ["in"]= { + "59920" + } + }, + [8592]= { + ["skill"]= 8592, + ["name"]= "Physical Damage, Melee Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "+0.2 metres to Melee Strike Range", + "10% increased Physical Damage" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "38999" + }, + ["in"]= { + "29294" + } + }, + [63583]= { + ["skill"]= 63583, + ["name"]= "Physical Damage, Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Gain 1 Rage on Attack Hit", + "10% increased Physical Damage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "24528" + }, + ["in"]= { + "29294" + } + }, + [42861]= { + ["skill"]= 42861, + ["name"]= "Physical Damage, Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Gain 1 Rage on Attack Hit", + "10% increased Physical Damage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "24528" + }, + ["in"]= { + "57560" + } + }, + [50024]= { + ["skill"]= 50024, + ["name"]= "Physical Damage, Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "20% increased Warcry Speed", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "32251" + }, + ["in"]= { + "29294" + } + }, + [32251]= { + ["skill"]= 32251, + ["name"]= "War Bringer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Warcries Exert twice as many Attacks" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50024" + } + }, + [57560]= { + ["skill"]= 57560, + ["name"]= "Rite of Ruin", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Lose 0.1% of Life per second per Rage while you are not losing Rage", + "50% increased Rage Effect" + }, + ["reminderText"]= { + "(Every Rage has an inherent effect of 1% more Attack Damage, and modifiers can add extra effects to Rage)" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "42861" + }, + ["in"]= {} + }, + [9271]= { + ["skill"]= 9271, + ["name"]= "Defy Pain", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no\nmore than once every 0.3 seconds", + "Lose all Defiance when you reach 10 Defiance", + "Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "5865" + } + }, + [29294]= { + ["skill"]= 29294, + ["name"]= "Berserker", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Berserker", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 28, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50024", + "63673", + "63583", + "8592", + "5865" + }, + ["in"]= { + "47175" + } + }, + [32992]= { + ["skill"]= 32992, + ["name"]= "Armour and Energy Shield, Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "30% increased Block Recovery", + "14% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "39728" + }, + ["in"]= { + "409" + } + }, + [61372]= { + ["skill"]= 61372, + ["name"]= "Harmony of Purpose", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Gain a random Shrine buff every 10 seconds" + }, + ["reminderText"]= { + "(Random Shrine buffs have a base duration of 20 seconds)" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "46952" + } + }, + [64768]= { + ["skill"]= 64768, + ["name"]= "Unwavering Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "50% increased Reservation Efficiency of Skills" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "20050" + } + }, + [16745]= { + ["skill"]= 16745, + ["name"]= "Armour and Energy Shield, Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "Minions deal 10% increased Damage" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "19641" + }, + ["in"]= { + "4494" + } + }, + [4494]= { + ["skill"]= 4494, + ["name"]= "Radiant Crusade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Grants Level 20 Summon Sentinel of Radiance Skill", + "20% of Damage from Hits is taken from your Sentinel of Radiance's Life before you" + }, + ["reminderText"]= { + "(Summons a Sentinel of Radiance which follows you and attacks enemies in melee, while burning enemies around it and taking a portion of damage from hits for you. You can only have one Sentinel of Radiance)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "16745" + }, + ["in"]= { + "40010" + } + }, + [40010]= { + ["skill"]= 40010, + ["name"]= "Armour and Energy Shield, Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "Minions deal 10% increased Damage" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "4494" + }, + ["in"]= { + "409" + } + }, + [19641]= { + ["skill"]= 19641, + ["name"]= "Unwavering Crusade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "25% chance to Trigger Level 20 Summon Elemental Relic when you or a nearby Ally Kill an Enemy, or Hit a Rare or Unique Enemy" + }, + ["reminderText"]= { + "(Summons a Relic of a random element that stays near you. Depending on the element chosen, the relic minion will have an Anger, Hatred, or Wrath aura. These relics explode when they die, dealing elemental damage to enemies around them. If you already have a relic of the chosen element, its duration will be refreshed instead of summoning a new one)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 19, + ["out"]= {}, + ["in"]= { + "16745" + } + }, + [5929]= { + ["skill"]= 5929, + ["name"]= "Hallowing Flame Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "20% increased magnitude of Hallowing Flame you inflict" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "3458" + }, + ["in"]= { + "409" + } + }, + [3458]= { + ["skill"]= 3458, + ["name"]= "Marshal of Divinity", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Inflict Hallowing Flame on Melee Hit", + "You can inflict +1 Hallowing Flame on Enemies", + "Gain 10% of Physical Damage as Extra Lightning Damage for each of your Hallowing Flames that have been removed by an allied hit recently, up to 80%" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "5929" + } + }, + [55146]= { + ["skill"]= 55146, + ["name"]= "Time of Need", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Every 4 seconds, remove Curses and Ailments from you", + "Every 4 seconds, Regenerate 100% of Life over one second" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "32364" + } + }, + [42264]= { + ["skill"]= 42264, + ["name"]= "Radiant Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Grants Armour equal to 25% of your Reserved Mana to you and nearby Allies", + "Grants maximum Energy Shield equal to 10% of your Reserved Mana to\nyou and nearby Allies" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "20050" + }, + ["in"]= { + "37419" + } + }, + [39728]= { + ["skill"]= 39728, + ["name"]= "Bastion of Hope", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "If you've Attacked Recently, you and nearby Allies have +25% Chance to Block Attack Damage", + "If you've Cast a Spell Recently, you and nearby Allies have +25% Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "32992" + } + }, + [32364]= { + ["skill"]= 32364, + ["name"]= "Armour and Energy Shield, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "55146" + }, + ["in"]= { + "409" + } + }, + [37419]= { + ["skill"]= 37419, + ["name"]= "Armour and Energy Shield, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "42264" + }, + ["in"]= { + "409" + } + }, + [46952]= { + ["skill"]= 46952, + ["name"]= "Armour and Energy Shield, Shrine Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "10% increased Effect of Shrine Buffs on you" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "61372" + }, + ["in"]= { + "409" + } + }, + [20050]= { + ["skill"]= 20050, + ["name"]= "Armour and Energy Shield, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "64768" + }, + ["in"]= { + "42264" + } + }, + [409]= { + ["skill"]= 409, + ["name"]= "Guardian", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Guardian", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 29, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37419", + "32364", + "46952", + "32992", + "40010", + "5929" + }, + ["in"]= { + "61525" + } + }, + [49785]= { + ["skill"]= 49785, + ["name"]= "Priest of Yaomac", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "20% reduced Soul Gain Prevention Duration", + "Vaal Skills require 30% less Souls per Use", + "Vaal Skills have 20% chance to regain consumed Souls when used" + }, + ["group"]= 30, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57290" + } + }, + [27737]= { + ["skill"]= 27737, + ["name"]= "Priest of Kamasa", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Vaal Skills have 50% increased Skill Effect Duration", + "Vaal Skills have 50% increased Area of Effect", + "50% increased Effect of Auras from your Vaal Skills" + }, + ["group"]= 31, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57290" + } + }, + [30271]= { + ["skill"]= 30271, + ["name"]= "Priest of Kopec", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Vaal Skills deal 1% more Damage per Soul Required", + "Vaal Skills require 40% increased Souls per Use", + "Vaal Skills can store +1 Use" + }, + ["group"]= 32, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57290" + } + }, + [8066]= { + ["skill"]= 8066, + ["name"]= "Bitter Lash", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Skills from Equipped Main Hand Weapon are supported by level 1 Cruelty" + }, + ["group"]= 33, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38740" + } + }, + [17988]= { + ["skill"]= 17988, + ["name"]= "Untiring", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "40% increased Life Regeneration rate", + "1.5% of Physical Damage prevented from Hits in the past\n10 seconds is Regenerated as Life per second" + }, + ["group"]= 34, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "16093" + } + }, + [16093]= { + ["skill"]= 16093, + ["name"]= "Armour, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 34, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "17988" + }, + ["in"]= { + "17765" + } + }, + [63417]= { + ["skill"]= 63417, + ["name"]= "Armour, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "4% increased Movement Speed" + }, + ["group"]= 34, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "5819" + }, + ["in"]= { + "17765" + } + }, + [51998]= { + ["skill"]= 51998, + ["name"]= "Armour, Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "+11% to Chaos Resistance" + }, + ["group"]= 34, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53816" + }, + ["in"]= { + "17765" + } + }, + [5819]= { + ["skill"]= 5819, + ["name"]= "Unstoppable", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "10% increased Movement Speed", + "Cannot be Stunned", + "Action Speed cannot be modified to below Base Value", + "Movement Speed cannot be modified to below Base Value" + }, + ["group"]= 34, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "63417" + } + }, + [53816]= { + ["skill"]= 53816, + ["name"]= "Unbreakable", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "Armour from Equipped Body Armour is doubled", + "15% of Armour also applies to Chaos Damage taken from Hits" + }, + ["group"]= 34, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "51998" + } + }, + [23972]= { + ["skill"]= 23972, + ["name"]= "Armour, Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "15% increased Endurance Charge Duration" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "1734", + "56789" + } + }, + [44297]= { + ["skill"]= 44297, + ["name"]= "Undeniable", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "+500 to Accuracy Rating", + "1% increased Attack Speed per 150 Accuracy Rating", + "Gain Accuracy Rating equal to twice your Strength" + }, + ["group"]= 35, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "32115" + } + }, + [1734]= { + ["skill"]= 1734, + ["name"]= "Unflinching", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "30% chance to gain an Endurance Charge when you are Hit", + "25% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + "Gain 1 Endurance Charge every second if you've been Hit Recently", + "+1 to Maximum Endurance Charges" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "23972", + "62349" + }, + ["in"]= { + "49153" + } + }, + [56789]= { + ["skill"]= 56789, + ["name"]= "Unrelenting", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "1% additional Elemental Damage Reduction per Endurance Charge", + "1% additional Physical Damage Reduction per Endurance Charge" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 15, + ["out"]= { + "23972" + }, + ["in"]= {} + }, + [49153]= { + ["skill"]= 49153, + ["name"]= "Armour, Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "15% increased Endurance Charge Duration" + }, + ["group"]= 35, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "1734" + }, + ["in"]= { + "17765" + } + }, + [32115]= { + ["skill"]= 32115, + ["name"]= "Armour, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "5% increased Attack Speed", + "15% increased Armour" + }, + ["group"]= 35, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "44297" + }, + ["in"]= { + "17765" + } + }, + [62349]= { + ["skill"]= 62349, + ["name"]= "Armour, Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "20% increased Stun Duration on Enemies" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= { + "62595" + }, + ["in"]= { + "1734" + } + }, + [62595]= { + ["skill"]= 62595, + ["name"]= "Unyielding", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "8% increased Damage per Endurance Charge", + "6% increased Area of Effect per Endurance Charge", + "25% chance to gain an Endurance Charge when you Stun an Enemy", + "10% increased Stun Duration on Enemies per Endurance Charge" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "62349" + } + }, + [17765]= { + ["skill"]= 17765, + ["name"]= "Juggernaut", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Juggernaut", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 35, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32115", + "51998", + "49153", + "63417", + "16093" + }, + ["in"]= { + "47175" + } + }, + [6344]= { + ["skill"]= 6344, + ["name"]= "Esh of the Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "Your Hits ignore Enemy Monster Lightning Resistances if all Equipped Rings are Synaptic Rings", + "+2 to Level of all Lightning Skill Gems if at least 4 Foulborn Unique Items are Equipped", + "+30 to Intelligence" + }, + ["group"]= 36, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "35069" + } + }, + [48711]= { + ["skill"]= 48711, + ["name"]= "Tul of the Blizzard", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "30% increased Freeze Duration on Enemies", + "+2 to Level of all Cold Skill Gems if at least 4 Foulborn Unique Items are Equipped", + "Your Hits ignore Enemy Monster Cold Resistances if all Equipped Rings are Cryonic Rings" + }, + ["group"]= 36, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "53398" + } + }, + [52855]= { + ["skill"]= 52855, + ["name"]= "Cryogenesis", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "You gain Added Cold Damage instead of Added Damage of other types if Dexterity exceeds both other Attributes", + "You gain Added Lightning Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes", + "Elemental Hit's Added Damage cannot be replaced this way" + }, + ["reminderText"]= { + "(Local Modifiers on Weapons that add damage to that Weapon do not grant you Added Damage, so are unchanged by this)", + "(Attributes are Strength, Dexterity, and Intelligence)" + }, + ["group"]= 36, + ["orbit"]= 3, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "48406" + } + }, + [35069]= { + ["skill"]= 35069, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Lightning Damage" + }, + ["group"]= 36, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "6344" + }, + ["in"]= { + "63630" + } + }, + [53398]= { + ["skill"]= 53398, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Cold Damage" + }, + ["group"]= 36, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "48711" + }, + ["in"]= { + "63630" + } + }, + [48406]= { + ["skill"]= 48406, + ["name"]= "Maximum Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 36, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52855" + }, + ["in"]= { + "63630" + } + }, + [63630]= { + ["skill"]= 63630, + ["name"]= "Breachlord", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Breachlord", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 36, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35069", + "48406", + "53398" + }, + ["in"]= {} + }, + [44797]= { + ["skill"]= 44797, + ["name"]= "Mana Regeneration, Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "40510" + }, + ["in"]= { + "30940" + } + }, + [34434]= { + ["skill"]= 34434, + ["name"]= "Ritual of Awakening", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "3% more Damage per Summoned Totem", + "Regenerate 0.5% of Mana per second for each Summoned Totem", + "You and your Totems Regenerate 1% of Life per second for each Summoned Totem" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "14870" + } + }, + [25651]= { + ["skill"]= 25651, + ["name"]= "Conviction of Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "+4 to Minimum Endurance Charges", + "+4 to Minimum Power Charges", + "+1 to Maximum Power Charges and Maximum Endurance Charges" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "22637" + } + }, + [60462]= { + ["skill"]= 60462, + ["name"]= "Illuminated Devotion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Non-Damaging Ailments have 50% reduced Effect on you while you have Arcane Surge", + "30% increased Area of Effect while you have Arcane Surge", + "0.5% of Spell Damage Leeched as Life while you have Arcane Surge" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "33167" + } + }, + [33167]= { + ["skill"]= 33167, + ["name"]= "Mana Regeneration, Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= { + "60462" + }, + ["in"]= { + "40510" + } + }, + [40510]= { + ["skill"]= 40510, + ["name"]= "Arcane Blessing", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Arcane Surge also grants 20% more Spell Damage to you", + "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "33167" + }, + ["in"]= { + "44797" + } + }, + [38387]= { + ["skill"]= 38387, + ["name"]= "Mana Regeneration, Brand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "14% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 37, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "51492" + }, + ["in"]= { + "30940" + } + }, + [51492]= { + ["skill"]= 51492, + ["name"]= "Sign of Purpose", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Brands have 100% more Activation Frequency if 75% of Attached Duration expired", + "Brand Recall has 100% increased Cooldown Recovery Rate" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "38387" + } + }, + [26714]= { + ["skill"]= 26714, + ["name"]= "Mana Regeneration, Totem Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Totem Placement speed" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "1105" + }, + ["in"]= { + "30940" + } + }, + [14870]= { + ["skill"]= 14870, + ["name"]= "Mana Regeneration, Totem Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Totem Placement speed" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= { + "34434" + }, + ["in"]= { + "1105" + } + }, + [29994]= { + ["skill"]= 29994, + ["name"]= "Mana Regeneration, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "922", + "29026" + } + }, + [11046]= { + ["skill"]= 11046, + ["name"]= "Mana Regeneration, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "922" + }, + ["in"]= { + "30940" + } + }, + [22637]= { + ["skill"]= 22637, + ["name"]= "Mana Regeneration, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 37, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25651" + }, + ["in"]= { + "30940" + } + }, + [922]= { + ["skill"]= 922, + ["name"]= "Divine Guidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "30% increased maximum Mana", + "10% of Damage is taken from Mana before Life", + "Transfiguration of Mind" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Mana also apply to Damage at 30% of their value)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "29994" + }, + ["in"]= { + "11046" + } + }, + [29026]= { + ["skill"]= 29026, + ["name"]= "Sanctuary of Thought", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Gain 20% of Maximum Mana as Extra Maximum Energy Shield", + "1% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%", + "Regenerate 1% of Mana per second" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "29994" + }, + ["in"]= {} + }, + [1105]= { + ["skill"]= 1105, + ["name"]= "Pursuit of Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "100% increased Totem Duration", + "+1 to maximum number of Summoned Totems", + "100% increased Totem Placement speed" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "14870" + }, + ["in"]= { + "26714" + } + }, + [30940]= { + ["skill"]= 30940, + ["name"]= "Hierophant", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Hierophant", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 37, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11046", + "22637", + "44797", + "26714", + "38387" + }, + ["in"]= { + "61525" + } + }, + [24704]= { + ["skill"]= 24704, + ["name"]= "Chieftain", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Chieftain", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 38, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6028", + "5643", + "9971", + "14996", + "10238" + }, + ["in"]= { + "47175" + } + }, + [47486]= { + ["skill"]= 47486, + ["name"]= "Life Regeneration, Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Melee Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "53095", + "31667" + }, + ["in"]= {} + }, + [48480]= { + ["skill"]= 48480, + ["name"]= "Tasalio, Cleansing Water", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Modifiers to Fire Resistance also apply to Cold and Lightning Resistances at 50% of their Value", + "Unaffected by Ignite" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "42659" + }, + ["in"]= { + "5643" + } + }, + [53095]= { + ["skill"]= 53095, + ["name"]= "Tukohama, War's Herald", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Skills from Equipped Body Armour are Supported by Level 30 Ancestral Call", + "Skills from Equipped Body Armour are Supported by Level 20 Fist of War" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "47486", + "982" + } + }, + [14996]= { + ["skill"]= 14996, + ["name"]= "Life Regeneration, Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Fire Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "50692" + }, + ["in"]= { + "24704" + } + }, + [61355]= { + ["skill"]= 61355, + ["name"]= "Ramako, Sun's Light", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Nearby Enemy Monsters' Fire Resistance against\nDamage over Time is -20% while you are Stationary" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "10238" + } + }, + [32249]= { + ["skill"]= 32249, + ["name"]= "Valako, Storm's Embrace", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Modifiers to Maximum Fire Resistance also apply to Maximum Cold and Lightning Resistances" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "42659" + } + }, + [10238]= { + ["skill"]= 10238, + ["name"]= "Life Regeneration, Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Fire Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "61355" + }, + ["in"]= { + "24704" + } + }, + [42659]= { + ["skill"]= 42659, + ["name"]= "Life Regeneration, Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "+15% to Fire Resistance", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= { + "32249" + }, + ["in"]= { + "48480" + } + }, + [982]= { + ["skill"]= 982, + ["name"]= "Life Regeneration, Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Melee Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "53095" + }, + ["in"]= { + "1731" + } + }, + [9971]= { + ["skill"]= 9971, + ["name"]= "Life Regeneration, Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Fire Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "1731" + }, + ["in"]= { + "24704" + } + }, + [5643]= { + ["skill"]= 5643, + ["name"]= "Life Regeneration, Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "+15% to Fire Resistance", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "48480" + }, + ["in"]= { + "24704" + } + }, + [6028]= { + ["skill"]= 6028, + ["name"]= "Life Regeneration, Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Regenerate 0.5% of Life per second", + "15% increased Warcry Duration" + }, + ["group"]= 38, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "31667" + }, + ["in"]= { + "24704" + } + }, + [31667]= { + ["skill"]= 31667, + ["name"]= "Sione, Sun's Roar", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "30% increased Warcry Buff Effect", + "Warcries have infinite Power" + }, + ["reminderText"]= { + "(Normal Monsters have 1 Power, Magic Monsters 2, Rare Monsters 10, Unique Monsters 20, and Players 5)" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "47486", + "6028" + } + }, + [50692]= { + ["skill"]= 50692, + ["name"]= "Ngamahu, Flame's Advance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Non-Unique Jewels cause Increases and Reductions to other Damage Types in a Large Radius to be Transformed to apply to Fire Damage", + "Non-Unique Jewels cause Small and Notable Passive Skills in a Large Radius to\nalso grant +4 to Strength" + }, + ["reminderText"]= { + "(Passive Skills that are not Notable, Masteries, Keystones, or Jewel Sockets are Small)" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "14996" + } + }, + [1731]= { + ["skill"]= 1731, + ["name"]= "Hinekora, Death's Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Enemies you or your Totems Kill have 10% chance to Explode, dealing 250% of their maximum Life as Fire Damage" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "982" + }, + ["in"]= { + "9971" + } + }, + [12860]= { + ["skill"]= 12860, + ["name"]= "Bound Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Gain 20 Baryatic Tension per 20 Life Spent on Upfront Costs of Spells", + "Maximum Baryatic Tension is equal to 30% of maximum Life", + "When you take a Savage Hit, lose Baryatic Tension to recover that much Life, up to maximum" + }, + ["group"]= 39, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "5452" + } + }, + [43660]= { + ["skill"]= 43660, + ["name"]= "Afarud Ritual", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Damageable Minions deal 30% increased Damage for each second they have been alive,\nup to a maximum of 150%", + "Damageable Minions take 5% increased Damage for each second they have been alive,\nup to a maximum of 50%" + }, + ["group"]= 39, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "60686" + } + }, + [5452]= { + ["skill"]= 5452, + ["name"]= "Maximum Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png", + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 39, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12860" + }, + ["in"]= { + "8133" + } + }, + [60686]= { + ["skill"]= 60686, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png", + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 25% increased Damage" + }, + ["group"]= 39, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "43660" + }, + ["in"]= { + "8133" + } + }, + [38740]= { + ["skill"]= 38740, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png", + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "+8% to Damage over Time Multiplier" + }, + ["group"]= 39, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "8066" + }, + ["in"]= { + "8133" + } + }, + [8133]= { + ["skill"]= 8133, + ["name"]= "Necromantic", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Necromantic", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 39, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38740", + "5452", + "60686" + }, + ["in"]= {} + }, + [43193]= { + ["skill"]= 43193, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 40, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "19417" + }, + ["in"]= { + "61871" + } + }, + [3154]= { + ["skill"]= 3154, + ["name"]= "Instruments of Justice", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/CriticalStrikeChance.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= {}, + ["in"]= { + "35739" + } + }, + [39790]= { + ["skill"]= 39790, + ["name"]= "Sanctuary", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Consecrated Ground you create applies 15% increased Damage taken to Enemies", + "You have Consecrated Ground around you while stationary" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "57222" + }, + ["in"]= { + "10635" + } + }, + [32816]= { + ["skill"]= 32816, + ["name"]= "Pious Path", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Consecrated Ground you create causes Life Regeneration to\nalso Recover Energy Shield for you and Allies", + "Effects of Consecrated Ground you create Linger for 4 seconds" + }, + ["reminderText"]= { + "(The effects of the ground still apply to you, allies or enemies after leaving its area)" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "57222" + } + }, + [27055]= { + ["skill"]= 27055, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "13851" + }, + ["in"]= { + "19417" + } + }, + [13851]= { + ["skill"]= 13851, + ["name"]= "Instruments of Zeal", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges", + "Gain 1 Fanatic Charge every second if you've Attacked in the past second", + "Lose all Fanatic Charges on reaching Maximum Fanatic Charges", + "+3 to Maximum Fanatic Charges" + }, + ["reminderText"]= { + "(Fanaticism grants Spells you Cast yourself 75% more Cast Speed, 75% less Cost and 75% increased Area of Effect)" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= {}, + ["in"]= { + "27055" + } + }, + [19417]= { + ["skill"]= 19417, + ["name"]= "Instruments of Virtue", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% more Attack Damage for each Non-Instant Spell you've Cast in the past 8 seconds, up to a maximum of 30%", + "Battlemage" + }, + ["reminderText"]= { + "(Gain Added Spell Damage equal to the Damage of your Main Hand Weapon)" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "27055", + "35739" + }, + ["in"]= { + "43193" + } + }, + [35739]= { + ["skill"]= 35739, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "3154" + }, + ["in"]= { + "19417" + } + }, + [57222]= { + ["skill"]= 57222, + ["name"]= "Elemental Damage, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Regenerate 0.5% of Life per second", + "10% increased Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "32816" + }, + ["in"]= { + "39790" + } + }, + [10635]= { + ["skill"]= 10635, + ["name"]= "Elemental Damage, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Regenerate 0.5% of Life per second", + "10% increased Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "39790" + }, + ["in"]= { + "61871" + } + }, + [60769]= { + ["skill"]= 60769, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "40059" + }, + ["in"]= { + "61871" + } + }, + [662]= { + ["skill"]= 662, + ["name"]= "Elemental Damage, Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "+10% to Critical Strike Multiplier" + }, + ["group"]= 40, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53884" + }, + ["in"]= { + "61871" + } + }, + [37486]= { + ["skill"]= 37486, + ["name"]= "Elemental Damage, Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "+10% to Critical Strike Multiplier" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "48214" + }, + ["in"]= { + "53884" + } + }, + [53884]= { + ["skill"]= 53884, + ["name"]= "Righteous Providence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png", + ["isNotable"]= true, + ["grantedStrength"]= 50, + ["grantedIntelligence"]= 50, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "1% increased Critical Strike Chance per point of Strength or Intelligence, whichever is lower", + "+50 to Strength and Intelligence" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "37486" + }, + ["in"]= { + "662" + } + }, + [48214]= { + ["skill"]= 48214, + ["name"]= "Inevitable Judgement", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Critical Strikes ignore Enemy Monster Elemental Resistances", + "Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances" + }, + ["reminderText"]= { + "(Ignoring Resistances means your Damage cannot be modified in any way by any Resistance stats)" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 16, + ["out"]= {}, + ["in"]= { + "37486" + } + }, + [40059]= { + ["skill"]= 40059, + ["name"]= "Augury of Penitence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Nearby Enemies take 16% increased Elemental Damage", + "Nearby Enemies deal 8% less Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "60769" + } + }, + [61871]= { + ["skill"]= 61871, + ["name"]= "Inquisitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Inquisitor", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 40, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60769", + "10635", + "43193", + "662" + }, + ["in"]= { + "61525" + } + }, + [8982]= { + ["skill"]= 8982, + ["name"]= "Sanguimancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Skills Cost Life instead of Mana", + "Skills Reserve Life instead of Mana", + "Removes all Mana", + "50% increased Life Reservation Efficiency of Skills" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "39142", + "24924" + }, + ["in"]= { + "26596" + } + }, + [20931]= { + ["skill"]= 20931, + ["name"]= "Crimson Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Removes all Energy Shield", + "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", + "-6 Maximum Life per Level" + }, + ["reminderText"]= { + "(Characters inherently gain +12 Life per Level)" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= {}, + ["in"]= { + "24924" + } + }, + [52780]= { + ["skill"]= 52780, + ["name"]= "Cannibalised Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Spells you cast yourself gain Added Physical Damage equal to 75% of Life Cost, if Life Cost is not higher than the maximum you could spend" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= {}, + ["in"]= { + "39142" + } + }, + [699]= { + ["skill"]= 699, + ["name"]= "Foul Pact", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Enemies Pacified by you take 20% increased Damage", + "Minions affected by Affliction have Onslaught", + "Phantasms from Penance Mark have a 50% chance to grant a Vaal Soul when Killed", + "Phantasms from Penance Mark grant 50% increased Flask Charges" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "30632" + } + }, + [57850]= { + ["skill"]= 57850, + ["name"]= "Warlock Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "28601", + "10538", + "52417", + "30632" + }, + ["in"]= { + "19689" + } + }, + [58281]= { + ["skill"]= 58281, + ["name"]= "Blood Hunt", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Ravenous Skill", + "Enemies display their Monster Category" + }, + ["reminderText"]= { + "(Ravenous consumes a targeted corpse, granting you a buff that causes you to deal more damage to, and take less damage from, enemies of the same Monster Category as the corpse)" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "23155" + } + }, + [24924]= { + ["skill"]= 24924, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 24, + ["out"]= { + "20931" + }, + ["in"]= { + "8982" + } + }, + [39142]= { + ["skill"]= 39142, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "52780" + }, + ["in"]= { + "8982" + } + }, + [26596]= { + ["skill"]= 26596, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "8982" + }, + ["in"]= { + "42328" + } + }, + [23155]= { + ["skill"]= 23155, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "58281" + }, + ["in"]= { + "42328" + } + }, + [60511]= { + ["skill"]= 60511, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45727" + }, + ["in"]= { + "42328" + } + }, + [30632]= { + ["skill"]= 30632, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= { + "699" + }, + ["in"]= { + "57850" + } + }, + [19689]= { + ["skill"]= 19689, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "57850" + }, + ["in"]= { + "42328" + } + }, + [42328]= { + ["skill"]= 42328, + ["name"]= "Warlock of the Mists", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Warlock", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 41, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23155", + "60511", + "26596", + "19689" + }, + ["in"]= {} + }, + [45727]= { + ["skill"]= 45727, + ["name"]= "Soul Splitting", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Summon Dark Effigy Skill" + }, + ["reminderText"]= { + "(Creates a Dark Effigy tethered to you. Damage you take from enemy hits is taken from the Effigy's life before you, and damage the Effigy takes from enemy hits is taken from your life before it, at doubled value. The Effigy is destroyed if you get too far away from it)" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "60511" + } + }, + [49951]= { + ["skill"]= 49951, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 42, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "36931" + }, + ["in"]= {} + }, + [28601]= { + ["skill"]= 28601, + ["name"]= "Creeping Lobotomy", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Level 20 Pacify Skill" + }, + ["reminderText"]= { + "(You can only take one of the three Warlock Power passives)", + "(Pacify curses all targets in an area, having no effect at first, but causing them to deal no damage once 60% of the curse's duration has expired)" + }, + ["group"]= 43, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57850" + } + }, + [32669]= { + ["skill"]= 32669, + ["name"]= "Legendary Amulets", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable13.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Amulets" + }, + ["group"]= 44, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [52417]= { + ["skill"]= 52417, + ["name"]= "Black Mass", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Level 20 Affliction Skill" + }, + ["reminderText"]= { + "(You can only take one of the three Warlock Power passives)", + "(Affliction permanently Afflicts any of your damageable minions in a targeted area, causing them to take physical damage over time, at an accelerating rate. Each such minion causes you to regenerate life at a rate based on the current damage of its Affliction debuff. Afflicted Minions explode if their life is lowered to a fifth of maximum)" + }, + ["group"]= 45, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57850" + } + }, + [43645]= { + ["skill"]= 43645, + ["name"]= "Legendary Rings", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable14.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Rings" + }, + ["group"]= 46, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [10538]= { + ["skill"]= 10538, + ["name"]= "Choir of the Damned", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Level 20 Penance Mark Skill" + }, + ["reminderText"]= { + "(You can only take one of the three Warlock Power passives)", + "(Penance Mark curses a single enemy, causing them to spawn multiple phantasms when hit. The phantasms will be allies of the marked enemy with the same monster level. They cast a projectile spell which deals physical damage, and are immune to curses. You can only have one Mark at a time)" + }, + ["group"]= 47, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57850" + } + }, + [1977]= { + ["skill"]= 1977, + ["name"]= "Legendary Belts", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable12.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Belts" + }, + ["group"]= 48, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [61133]= { + ["skill"]= 61133, + ["name"]= "Mercenary Life, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary and their Minions have 15% increased maximum Life", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "56292" + }, + ["in"]= { + "1564" + } + }, + [15900]= { + ["skill"]= 15900, + ["name"]= "Oath of Fealty", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "50% less Cost of Link Skills", + "Link Skills have infinite Attachment Duration", + "If your Linked Mercenary dies, the Link owner does not also die" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "63954" + }, + ["in"]= { + "30675" + } + }, + [31517]= { + ["skill"]= 31517, + ["name"]= "Golden Glory", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Increases and Reductions to Light Radius also apply to Effect\nof your Link Skill Buffs on your Mercenary" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "63954" + } + }, + [1564]= { + ["skill"]= 1564, + ["name"]= "Loyal Bodyguard", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "If your Mercenary's Life is higher than your own, 20% of Damage from Hits is\ntaken from your Mercenary's Life before you", + "If your Mercenary's Life is lower than your own, 40% of Damage they take is Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "61133" + }, + ["in"]= { + "27123" + } + }, + [56292]= { + ["skill"]= 56292, + ["name"]= "Bestowed Knighthood", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable5.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary Taunts on Hit", + "Your Mercenary has 50% increased effect of Non-Curse Auras from Skills" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "61133" + } + }, + [25944]= { + ["skill"]= 25944, + ["name"]= "Legendary Arms", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable6.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Weapons, Shields and Quivers", + "Your Mercenary and their Minions deal 8% more Damage for\neach Unique item they have equipped" + }, + ["group"]= 49, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "32669", + "43645", + "1977", + "52633", + "32095", + "19993" + } + }, + [63954]= { + ["skill"]= 63954, + ["name"]= "Link Cast Speed, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Link Skills have 10% increased Cast Speed", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "31517" + }, + ["in"]= { + "15900" + } + }, + [27123]= { + ["skill"]= 27123, + ["name"]= "Mercenary Life, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary and their Minions have 15% increased maximum Life", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= { + "1564" + }, + ["in"]= { + "46479" + } + }, + [30675]= { + ["skill"]= 30675, + ["name"]= "Link Cast Speed, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Link Skills have 10% increased Cast Speed", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= { + "15900" + }, + ["in"]= { + "46479" + } + }, + [35877]= { + ["skill"]= 35877, + ["name"]= "Mercenary Damage, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary and their Minions deal 15% increased Damage", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "46479" + }, + ["in"]= { + "15726" + } + }, + [46479]= { + ["skill"]= 46479, + ["name"]= "Noble Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "You can hire a Mercenary permanently" + }, + ["reminderText"]= { + "(While you have this passive allocated, you will have the option to permanently hire Mercenaries found in the wild. Permanently hired Mercenaries and their Minions deal less Damage than temporarily hired Mercenaries, but you can change what gear they have equipped. Passives that affect your Mercenary do not affect temporarily hired Mercenaries. Permanently hired Mercenaries will only follow Luminaries with this passive allocated)" + }, + ["group"]= 49, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "30675", + "27123", + "32669", + "43645", + "1977", + "52633", + "32095", + "19993" + }, + ["in"]= { + "35877" + } + }, + [15726]= { + ["skill"]= 15726, + ["name"]= "Luminary", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Luminary", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 49, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35877" + }, + ["in"]= { + "58833" + } + }, + [28018]= { + ["skill"]= 28018, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 50, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "17219", + "36931" + }, + ["in"]= {} + }, + [36931]= { + ["skill"]= 36931, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "49951", + ["parent"]= "17219" + }, + ["stats"]= {}, + ["group"]= 50, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "49951", + "28018" + } + }, + [22046]= { + ["skill"]= 22046, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 51, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "14993" + }, + ["in"]= {} + }, + [52633]= { + ["skill"]= 52633, + ["name"]= "Legendary Gloves", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable9.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Gloves" + }, + ["group"]= 52, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [32095]= { + ["skill"]= 32095, + ["name"]= "Legendary Helmets", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable10.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Helmets" + }, + ["group"]= 53, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [3854]= { + ["skill"]= 3854, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 54, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "24970" + }, + ["in"]= {} + }, + [19993]= { + ["skill"]= 19993, + ["name"]= "Legendary Boots", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable11.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Boots" + }, + ["group"]= 55, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [4194]= { + ["skill"]= 4194, + ["name"]= "Berserker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "5% increased Damage taken", + "15% more Damage", + "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", + "Cannot be Stunned while you have at least 25 Rage", + "Inherent Rage Loss starts 1 second later" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)", + "(You can only take one of the three Marauder Ascendancy passives)", + "(Base Maximum Rage is 30)", + "(You lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 56, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61437" + } + }, + [53203]= { + ["skill"]= 53203, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 57, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "44169", + "14993" + }, + ["in"]= {} + }, + [14993]= { + ["skill"]= 14993, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "22046", + ["parent"]= "44169" + }, + ["stats"]= {}, + ["group"]= 57, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "22046", + "53203" + } + }, + [25441]= { + ["skill"]= 25441, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 58, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "49080", + "24970" + }, + ["in"]= {} + }, + [24970]= { + ["skill"]= 24970, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "3854", + ["parent"]= "49080" + }, + ["stats"]= {}, + ["group"]= 58, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "3854", + "25441" + } + }, + [57052]= { + ["skill"]= 57052, + ["name"]= "Chieftain", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", + "Unaffected by Ignite", + "20% increased Warcry Buff Effect", + "10% increased Strength" + }, + ["reminderText"]= { + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)", + "(You can only take one of the three Marauder Ascendancy passives)" + }, + ["group"]= 59, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61437" + } + }, + [63623]= { + ["skill"]= 63623, + ["name"]= "Might of the Bear", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png", + ["isNotable"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "5% increased Character Size", + "Equip a Wildwood Rucksack which has 20 Inventory Slots" + }, + ["group"]= 60, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "4245" + }, + ["in"]= { + "24462" + } + }, + [43670]= { + ["skill"]= 43670, + ["name"]= "Charm Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "22174" + }, + ["in"]= { + "4245" + } + }, + [29914]= { + ["skill"]= 29914, + ["name"]= "Charm Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "54139" + }, + ["in"]= { + "22174" + } + }, + [18060]= { + ["skill"]= 18060, + ["name"]= "Charm Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "54139" + } + }, + [34229]= { + ["skill"]= 34229, + ["name"]= "Howl of the Wolf", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png", + ["isNotable"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "Your Warcries attempt to shake extra items from Corpses", + "Your Warcries open Chests" + }, + ["group"]= 60, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "10539" + } + }, + [22174]= { + ["skill"]= 22174, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "29914" + }, + ["in"]= { + "43670" + } + }, + [4245]= { + ["skill"]= 4245, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "43670" + }, + ["in"]= { + "63623" + } + }, + [54139]= { + ["skill"]= 54139, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "18060" + }, + ["in"]= { + "29914" + } + }, + [24462]= { + ["skill"]= 24462, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "63623" + }, + ["in"]= { + "10622" + } + }, + [10539]= { + ["skill"]= 10539, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34229" + }, + ["in"]= { + "10622" + } + }, + [10622]= { + ["skill"]= 10622, + ["name"]= "Wildwood Primalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Primalist", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10539", + "24462" + }, + ["in"]= {} + }, + [42144]= { + ["skill"]= 42144, + ["name"]= "Hierophant", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% increased maximum Mana", + "+1 to maximum number of Summoned Totems", + "8% of Damage is taken from Mana before Life", + "Arcane Surge also grants 10% more Spell Damage to you", + "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)", + "(You can only take one of the three Templar Ascendancy passives)" + }, + ["group"]= 61, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15435" + } + }, + [61072]= { + ["skill"]= 61072, + ["name"]= "Juggernaut", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+1000 to Accuracy Rating", + "Cannot be Chilled", + "Cannot be Stunned", + "5% increased Damage per Endurance Charge", + "Gain 1 Endurance Charge every second if you've been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(You can only take one of the three Marauder Ascendancy passives)" + }, + ["group"]= 62, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61437" + } + }, + [43962]= { + ["skill"]= 43962, + ["name"]= "Inquisitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Damage Penetrates 8% of Enemy Elemental Resistances", + "10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", + "Effects of Consecrated Ground you create Linger for 4 seconds", + "Nearby Enemies take 10% increased Elemental Damage" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)", + "(The effects of the ground still apply to you, allies or enemies after leaving its area)", + "(You can only take one of the three Templar Ascendancy passives)" + }, + ["group"]= 63, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15435" + } + }, + [41534]= { + ["skill"]= 41534, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "15435" + }, + ["in"]= { + "22551" + } + }, + [22551]= { + ["skill"]= 22551, + ["name"]= "Strength and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png", + ["grantedStrength"]= 20, + ["grantedIntelligence"]= 20, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+20 to Strength and Intelligence" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41534" + }, + ["in"]= { + "35754" + } + }, + [15435]= { + ["skill"]= 15435, + ["name"]= "Templar Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "57429", + "43962", + "42144", + "30919" + }, + ["in"]= { + "41534" + } + }, + [54877]= { + ["skill"]= 54877, + ["name"]= "Path of the Templar", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Templar's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "63965", + "20228" + }, + ["in"]= { + "57429" + } + }, + [57429]= { + ["skill"]= 57429, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "54877" + }, + ["in"]= { + "15435" + } + }, + [33875]= { + ["skill"]= 33875, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61437" + }, + ["in"]= { + "193" + } + }, + [30690]= { + ["skill"]= 30690, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "24755" + }, + ["in"]= { + "61437" + } + }, + [193]= { + ["skill"]= 193, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 40, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+40 to Strength" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "33875" + }, + ["in"]= { + "35754" + } + }, + [61437]= { + ["skill"]= 61437, + ["name"]= "Marauder Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "30690", + "4194", + "61072", + "57052" + }, + ["in"]= { + "33875" + } + }, + [24755]= { + ["skill"]= 24755, + ["name"]= "Path of the Marauder", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Str.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Marauder's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31628", + "50904" + }, + ["in"]= { + "30690" + } + }, + [5624]= { + ["skill"]= 5624, + ["name"]= "Crusader", + ["icon"]= "Art/2DArt/SkillIcons/passives/MindPact.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Mana", + "Transfiguration of Mind" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Mana also apply to Damage at 30% of their value)" + }, + ["group"]= 66, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [30919]= { + ["skill"]= 30919, + ["name"]= "Guardian", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% increased Reservation Efficiency of Skills", + "Every 4 seconds, Regenerate 50% of Life over one second", + "If you've Attacked Recently, you and nearby Allies have +10% Chance to Block Attack Damage", + "If you've Cast a Spell Recently, you and nearby Allies have +10% Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(You can only take one of the three Templar Ascendancy passives)" + }, + ["group"]= 67, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15435" + } + }, + [43195]= { + ["skill"]= 43195, + ["name"]= "Slayer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Culling Strike", + "Life Leech effects are not removed when Unreserved Life is Filled", + "30% increased Area of Effect if you've Killed Recently", + "Cannot take Reflected Physical Damage" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)", + "(Recently refers to the past 4 seconds)", + "(You can only take one of the three Duelist Ascendancy passives)" + }, + ["group"]= 68, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24798" + } + }, + [52282]= { + ["skill"]= 52282, + ["name"]= "Tenacity", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodPact.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "5% increased maximum Life", + "Transfiguration of Body" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Life also apply to Attack Damage at 30% of their value)" + }, + ["group"]= 69, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [49080]= { + ["skill"]= 49080, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "25441", + ["parent"]= "55190" + }, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "25441", + "17219", + "30275" + } + }, + [17219]= { + ["skill"]= 17219, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "28018", + ["parent"]= "55190" + }, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "49080" + }, + ["in"]= { + "28018", + "44169" + } + }, + [44169]= { + ["skill"]= 44169, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "53203", + ["parent"]= "55190" + }, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "17219" + }, + ["in"]= { + "53203", + "30275" + } + }, + [30275]= { + ["skill"]= 30275, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "49080", + "44169", + "55190" + }, + ["in"]= {} + }, + [34774]= { + ["skill"]= 34774, + ["name"]= "Gladiator", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Attacks", + "Gain 50% Chance to Block from Equipped Shield instead of the Shield's value", + "Inherent Bonuses from Dual Wielding are doubled", + "Deal 1% more Damage with Hits and Ailments to Rare and Unique Enemies for every 2 seconds they've ever been in your Presence, up to a maximum of 50%" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)", + "(Dual Wielding inherently grants +20% chance to Block Attack Damage and 10% more Attack Speed)", + "(You can only take one of the three Duelist Ascendancy passives)" + }, + ["group"]= 71, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "24798" + } + }, + [39598]= { + ["skill"]= 39598, + ["name"]= "Champion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Melee Hits have 50% chance to Fortify", + "Taunt on Hit", + "15% increased effect of Non-Curse Auras from your Skills", + "Your Hits permanently Intimidate Enemies that are on Full Life", + "Enemies Taunted by you take 10% increased Damage" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)", + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)", + "(Intimidated enemies take 10% increased Attack Damage)", + "(You can only take one of the three Duelist Ascendancy passives)" + }, + ["group"]= 72, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24798" + } + }, + [35754]= { + ["skill"]= 35754, + ["name"]= "Ascendant", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Ascendant", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 73, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "22551", + "58029", + "45403", + "31598", + "607", + "193" + }, + ["in"]= { + "58833" + } + }, + [17445]= { + ["skill"]= 17445, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "63357" + }, + ["in"]= { + "24798" + } + }, + [41996]= { + ["skill"]= 41996, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "24798" + }, + ["in"]= { + "607" + } + }, + [607]= { + ["skill"]= 607, + ["name"]= "Strength and Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png", + ["grantedStrength"]= 20, + ["grantedDexterity"]= 20, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+20 to Strength and Dexterity" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "41996" + }, + ["in"]= { + "35754" + } + }, + [24798]= { + ["skill"]= 24798, + ["name"]= "Duelist Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "17445", + "39598", + "34774", + "43195" + }, + ["in"]= { + "41996" + } + }, + [63357]= { + ["skill"]= 63357, + ["name"]= "Path of the Duelist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Duelist's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "47389", + "39725" + }, + ["in"]= { + "17445" + } + }, + [2521]= { + ["skill"]= 2521, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "51782" + }, + ["in"]= { + "58029" + } + }, + [56722]= { + ["skill"]= 56722, + ["name"]= "Path of the Witch", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Int.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Witch's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "57264", + "57226" + }, + ["in"]= { + "62162" + } + }, + [58029]= { + ["skill"]= 58029, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 40, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+40 to Intelligence" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "2521" + }, + ["in"]= { + "35754" + } + }, + [51782]= { + ["skill"]= 51782, + ["name"]= "Witch Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62162", + "10099", + "8281", + "12597" + }, + ["in"]= { + "2521" + } + }, + [62162]= { + ["skill"]= 62162, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "56722" + }, + ["in"]= { + "51782" + } + }, + [56940]= { + ["skill"]= 56940, + ["name"]= "The Apostate", + ["icon"]= "Art/2DArt/SkillIcons/passives/ApostateNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Removes all Energy Shield", + "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", + "-12 Maximum Life per Level" + }, + ["group"]= 76, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [8281]= { + ["skill"]= 8281, + ["name"]= "Elementalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Shocks from your Hits always increase Damage taken by at least 10%", + "Cannot take Reflected Elemental Damage", + "Exposure you inflict applies an extra -20% to the affected Resistance", + "+1 to maximum number of Summoned Golems" + }, + ["reminderText"]= { + "(You can only take one of the three Witch Ascendancy passives)" + }, + ["group"]= 77, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51782" + } + }, + [8243]= { + ["skill"]= 8243, + ["name"]= "Wildwood Blessing", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Barkskin Skill" + }, + ["reminderText"]= { + "(Adopt the power of the forest, gradually covering your body in bark. Getting hit by enemy attacks causes bark to be removed. You take reduced damage from physical attack hits the more bark builds up, but higher chance to evade when less covered in bark)" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "53414" + }, + ["in"]= { + "33897" + } + }, + [34814]= { + ["skill"]= 34814, + ["name"]= "Lesson of the Seasons", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% chance to Avoid non-Damaging Ailments on you per Bark below maximum", + "10% reduced Duration of Damaging Ailments on you per Bark" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "53414" + } + }, + [5220]= { + ["skill"]= 5220, + ["name"]= "Oath of the Maji", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Defences from Equipped Body Armour are doubled if it has no Socketed Gems", + "+50% to all Elemental Resistances if you have an Equipped Helmet with no Socketed Gems", + "25% increased Maximum Life if you have Equipped Gloves with no Socketed Gems", + "30% increased Movement Speed if you have Equipped Boots with no Socketed Gems" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "32605" + } + }, + [41197]= { + ["skill"]= 41197, + ["name"]= "Coated Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "48606", + "24764" + }, + ["in"]= { + "20772" + } + }, + [34637]= { + ["skill"]= 34637, + ["name"]= "Nature's Concoction", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Flasks adjacent to active Tinctures gain 3 charges when you Hit an\nEnemy with a Melee Weapon, no more than once every second", + "Flasks adjacent to applied Tincture have 30% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "48606" + } + }, + [63362]= { + ["skill"]= 63362, + ["name"]= "Intensifying Suffusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Tinctures applied to you have 75% increased Effect per empty Flask Slot" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "24764" + } + }, + [53414]= { + ["skill"]= 53414, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "34814" + }, + ["in"]= { + "8243" + } + }, + [33897]= { + ["skill"]= 33897, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "8243" + }, + ["in"]= { + "9414" + } + }, + [48606]= { + ["skill"]= 48606, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "34637" + }, + ["in"]= { + "41197" + } + }, + [24764]= { + ["skill"]= 24764, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "63362" + }, + ["in"]= { + "41197" + } + }, + [20772]= { + ["skill"]= 20772, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "41197" + }, + ["in"]= { + "9414" + } + }, + [29259]= { + ["skill"]= 29259, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "29212" + }, + ["in"]= { + "9414" + } + }, + [32605]= { + ["skill"]= 32605, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "5220" + }, + ["in"]= { + "9414" + } + }, + [9414]= { + ["skill"]= 9414, + ["name"]= "Warden of the Maji", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Warden", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 78, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "33897", + "20772", + "29259", + "32605" + }, + ["in"]= {} + }, + [29212]= { + ["skill"]= 29212, + ["name"]= "Detect Evil", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Your Hits against Marked Enemy cannot be Blocked or Suppressed", + "Rare and Unique Enemies within 120 metres have Minimap Icons" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "29259" + } + }, + [48040]= { + ["skill"]= 48040, + ["name"]= "Elevore", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElvoreNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+25% chance to Suppress Spell Damage", + "25% chance to Avoid Elemental Ailments", + "Recover 200 Life when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)", + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 79, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [35448]= { + ["skill"]= 35448, + ["name"]= "Kaom's Roots", + ["icon"]= "Art/2DArt/SkillIcons/passives/KaomsRootsNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+100 to maximum Life", + "Cannot be Knocked Back", + "Action Speed cannot be modified to below Base Value", + "Cannot Evade enemy Attacks\nCannot be Stunned" + }, + ["group"]= 80, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [10099]= { + ["skill"]= 10099, + ["name"]= "Necromancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Your Offering Skills also affect you", + "Your Offerings have 50% reduced Effect on you", + "Minions deal 30% increased Damage", + "Auras from your Skills grant 2% increased Attack and Cast\nSpeed to you and Allies", + "If you've Consumed a corpse Recently, you and your Minions have 30% increased Area of Effect" + }, + ["reminderText"]= { + "(Auras can only grant bonuses to things they affect)", + "(Recently refers to the past 4 seconds)", + "(You can only take one of the three Witch Ascendancy passives)" + }, + ["group"]= 81, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51782" + } + }, + [16994]= { + ["skill"]= 16994, + ["name"]= "Vaal Caress", + ["icon"]= "Art/2DArt/SkillIcons/passives/VaalCaressNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "You gain Onslaught for 20 seconds on using a Vaal Skill", + "+2 to Level of all Vaal Skill Gems" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + }, + ["group"]= 82, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [22628]= { + ["skill"]= 22628, + ["name"]= "Dawnbreaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/DawnbreakerNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% of Cold Damage taken as Fire Damage", + "25% of Lightning Damage taken as Fire Damage", + "25% of Physical Damage taken as Fire Damage" + }, + ["group"]= 83, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [12597]= { + ["skill"]= 12597, + ["name"]= "Occultist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "You can apply an additional Curse", + "10% increased Effect of your Curses", + "Regenerate 1.5% of Energy Shield per second", + "Cannot Be Stunned while you have Energy Shield" + }, + ["reminderText"]= { + "(You can only take one of the three Witch Ascendancy passives)" + }, + ["group"]= 84, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51782" + } + }, + [8656]= { + ["skill"]= 8656, + ["name"]= "Warden", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+20% chance to Suppress Spell Damage", + "Attack Damage Penetrates 8% of Enemy Elemental Resistances", + "You can have an additional Tincture active" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)", + "(You can only take one of the three Ranger Ascendancy passives)" + }, + ["group"]= 85, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49532" + } + }, + [7092]= { + ["skill"]= 7092, + ["name"]= "Physical and Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineWrath.png", + ["stats"]= { + "8% increased Lightning Damage", + "8% increased Physical Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "14665" + }, + ["in"]= { + "29061" + } + }, + [31153]= { + ["skill"]= 31153, + ["name"]= "Physical and Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineFury.png", + ["stats"]= { + "8% increased Fire Damage", + "8% increased Physical Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "29061" + }, + ["in"]= { + "44347" + } + }, + [11016]= { + ["skill"]= 11016, + ["name"]= "Physical and Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "8% increased Elemental Damage", + "8% increased Physical Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "44347" + }, + ["in"]= { + "14665" + } + }, + [29061]= { + ["skill"]= 29061, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "7092", + "55993" + }, + ["in"]= { + "31153", + "60472" + } + }, + [55993]= { + ["skill"]= 55993, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "12% increased Elemental Damage" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "41251", + "8198" + }, + ["in"]= { + "29061" + } + }, + [41251]= { + ["skill"]= 41251, + ["name"]= "Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "20% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "13164" + }, + ["in"]= { + "55993" + } + }, + [8198]= { + ["skill"]= 8198, + ["name"]= "Chance to Ignite, Freeze and Shock", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "15% chance to Freeze, Shock and Ignite" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13164" + }, + ["in"]= { + "55993" + } + }, + [44298]= { + ["skill"]= 44298, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 86, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13164", + "44347", + "14665" + } + }, + [13164]= { + ["skill"]= 13164, + ["name"]= "Divine Judgement", + ["icon"]= "Art/2DArt/SkillIcons/passives/CelestialPunishment.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "50% increased Elemental Damage" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "44298" + }, + ["in"]= { + "41251", + "8198" + } + }, + [44347]= { + ["skill"]= 44347, + ["name"]= "Divine Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineFury.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "BlackOil" + }, + ["stats"]= { + "Gain 5% of Physical Damage as Extra Fire Damage", + "Damage Penetrates 5% Fire Resistance" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "31153", + "44298" + }, + ["in"]= { + "11016" + } + }, + [14665]= { + ["skill"]= 14665, + ["name"]= "Divine Wrath", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineWrath.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "OpalescentOil" + }, + ["stats"]= { + "Gain 5% of Physical Damage as Extra Lightning Damage", + "Damage Penetrates 5% Lightning Resistance" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "11016", + "44298" + }, + ["in"]= { + "7092" + } + }, + [25367]= { + ["skill"]= 25367, + ["name"]= "Blade Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/blademaster.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "SilverOil" + }, + ["stats"]= { + "20% increased Physical Damage with Swords", + "Sword Attacks deal 20% increased Damage with Ailments", + "8% increased Attack Speed with Swords", + "+200 to Accuracy Rating with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "55166", + "63184" + }, + ["in"]= {} + }, + [63184]= { + ["skill"]= 63184, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 87, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25367", + "33082" + } + }, + [33082]= { + ["skill"]= 33082, + ["name"]= "Razor's Edge", + ["icon"]= "Art/2DArt/SkillIcons/passives/razorsedge.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "35% increased Physical Damage with Swords", + "Sword Attacks deal 35% increased Damage with Ailments", + "Hits have 35% chance to ignore Enemy Physical Damage Reduction" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "63184" + }, + ["in"]= { + "62042" + } + }, + [7082]= { + ["skill"]= 7082, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "14% increased Physical Damage with Swords", + "Sword Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "4336", + "5233" + }, + ["in"]= { + "49415" + } + }, + [62042]= { + ["skill"]= 62042, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterysword.png", + ["stats"]= { + "16% increased Physical Damage with Swords", + "Sword Attacks deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "33082" + }, + ["in"]= { + "4336" + } + }, + [4336]= { + ["skill"]= 4336, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterysword.png", + ["stats"]= { + "16% increased Physical Damage with Swords", + "Sword Attacks deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62042" + }, + ["in"]= { + "7082" + } + }, + [55166]= { + ["skill"]= 55166, + ["name"]= "Sword Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "10% increased Physical Damage with Swords", + "Sword Attacks deal 10% increased Damage with Ailments", + "4% increased Attack Speed with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49415" + }, + ["in"]= { + "25367" + } + }, + [49415]= { + ["skill"]= 49415, + ["name"]= "Sword Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "10% increased Physical Damage with Swords", + "Sword Attacks deal 10% increased Damage with Ailments", + "4% increased Attack Speed with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "7082" + }, + ["in"]= { + "55166" + } + }, + [9976]= { + ["skill"]= 9976, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "18% increased Physical Damage with Axes", + "Axe Attacks deal 18% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "4940" + }, + ["in"]= { + "6113" + } + }, + [20018]= { + ["skill"]= 20018, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "18% increased Physical Damage with Axes", + "Axe Attacks deal 18% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "6113" + }, + ["in"]= { + "25682" + } + }, + [6113]= { + ["skill"]= 6113, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "18% increased Physical Damage with Axes", + "Axe Attacks deal 18% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "9976" + }, + ["in"]= { + "20018" + } + }, + [12407]= { + ["skill"]= 12407, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "12% increased Physical Damage with Axes", + "Axe Attacks deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "57953" + }, + ["in"]= { + "23038" + } + }, + [25682]= { + ["skill"]= 25682, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "14% increased Physical Damage with Axes", + "Axe Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "20018", + "63723" + }, + ["in"]= { + "49571" + } + }, + [49571]= { + ["skill"]= 49571, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "12% increased Physical Damage with Axes", + "Axe Attacks deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "25682" + }, + ["in"]= { + "57953" + } + }, + [57953]= { + ["skill"]= 57953, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "12% increased Physical Damage with Axes", + "Axe Attacks deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "49571" + }, + ["in"]= { + "12407" + } + }, + [4940]= { + ["skill"]= 4940, + ["name"]= "Cleaving", + ["icon"]= "Art/2DArt/SkillIcons/passives/hatchetmaster.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Physical Damage with Axes", + "Axe Attacks deal 30% increased Damage with Ailments", + "15% chance to Intimidate Enemies for 4 seconds on Hit with Attacks" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Intimidated enemies take 10% increased Attack Damage)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "24224" + }, + ["in"]= { + "9976" + } + }, + [24224]= { + ["skill"]= 24224, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 88, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4940", + "23038" + } + }, + [23038]= { + ["skill"]= 23038, + ["name"]= "Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/fellingtheweak.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "25% increased Physical Damage with Axes", + "Axe Attacks deal 25% increased Damage with Ailments", + "8% increased Attack Speed with Axes", + "Gain 1 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "12407", + "24224" + }, + ["in"]= {} + }, + [42546]= { + ["skill"]= 42546, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "772" + }, + ["in"]= { + "45403" + } + }, + [45403]= { + ["skill"]= 45403, + ["name"]= "Dexterity and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png", + ["grantedDexterity"]= 20, + ["grantedIntelligence"]= 20, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+20 to Dexterity and Intelligence" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "42546" + }, + ["in"]= { + "35754" + } + }, + [772]= { + ["skill"]= 772, + ["name"]= "Shadow Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "43336", + "43122", + "6778", + "58827" + }, + ["in"]= { + "42546" + } + }, + [53992]= { + ["skill"]= 53992, + ["name"]= "Path of the Shadow", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Shadow's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "45272", + "38129" + }, + ["in"]= { + "43336" + } + }, + [43336]= { + ["skill"]= 43336, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "53992" + }, + ["in"]= { + "772" + } + }, + [7618]= { + ["skill"]= 7618, + ["name"]= "Path of the Ranger", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Ranger's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "45035", + "39821" + }, + ["in"]= { + "42671" + } + }, + [42671]= { + ["skill"]= 42671, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "7618" + }, + ["in"]= { + "49532" + } + }, + [38689]= { + ["skill"]= 38689, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49532" + }, + ["in"]= { + "31598" + } + }, + [31598]= { + ["skill"]= 31598, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 40, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+40 to Dexterity" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "38689" + }, + ["in"]= { + "35754" + } + }, + [49532]= { + ["skill"]= 49532, + ["name"]= "Ranger Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42671", + "8656", + "34567", + "9327" + }, + ["in"]= { + "38689" + } + }, + [9327]= { + ["skill"]= 9327, + ["name"]= "Pathfinder", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "10% increased Movement Speed during any Flask Effect", + "10% increased Attack Speed during any Flask Effect", + "Removes Bleeding when you use a Flask", + "Flasks gain 3 Charges every 3 seconds", + "25% chance for Flasks you use to not consume Charges" + }, + ["reminderText"]= { + "(You can only take one of the three Ranger Ascendancy passives)" + }, + ["group"]= 91, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49532" + } + }, + [40849]= { + ["skill"]= 40849, + ["name"]= "Persistence", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShrugOff.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "-10 Physical Damage taken from Hits", + "-1 Physical Damage taken from Hits per Level" + }, + ["group"]= 92, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [34567]= { + ["skill"]= 34567, + ["name"]= "Deadeye", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% increased Effect of your Marks", + "Gain a Frenzy Charge every 3 seconds while Moving", + "Skills fire an additional Projectile", + "You and nearby Allies have Tailwind" + }, + ["reminderText"]= { + "(Tailwind increases Action Speed by 8%)", + "(You can only take one of the three Ranger Ascendancy passives)" + }, + ["group"]= 93, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "49532" + } + }, + [43122]= { + ["skill"]= 43122, + ["name"]= "Assassin", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+0.75% to Critical Strike Chance", + "10% chance to gain a Power Charge on Critical Strike", + "10% chance to gain Elusive on Critical Strike", + "Damage cannot be Reflected" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)", + "(You can only take one of the three Shadow Ascendancy passives)" + }, + ["group"]= 94, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "772" + } + }, + [62416]= { + ["skill"]= 62416, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 95, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51559", + "39761", + "42917" + } + }, + [51559]= { + ["skill"]= 51559, + ["name"]= "Smashing Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstaff.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "Staff Attacks deal 30% increased Damage with Hits and Ailments", + "30% increased Critical Strike Chance with Staves", + "10% chance to gain an Endurance Charge on Melee Critical Strike" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "37639", + "48282", + "62416" + }, + ["in"]= {} + }, + [54667]= { + ["skill"]= 54667, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstaff.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "16113" + }, + ["in"]= { + "23027" + } + }, + [16113]= { + ["skill"]= 16113, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstaff.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "18990" + }, + ["in"]= { + "54667" + } + }, + [18990]= { + ["skill"]= 18990, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstaff.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "42917" + }, + ["in"]= { + "16113" + } + }, + [48282]= { + ["skill"]= 48282, + ["name"]= "Staff Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffspeed.png", + ["stats"]= { + "30% increased Critical Strike Chance while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "39761" + }, + ["in"]= { + "51559" + } + }, + [16754]= { + ["skill"]= 16754, + ["name"]= "Staff Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffspeed.png", + ["stats"]= { + "30% increased Critical Strike Chance while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "39761" + }, + ["in"]= { + "42917" + } + }, + [39761]= { + ["skill"]= 39761, + ["name"]= "Counterweight", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffCrit.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "SilverOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance while wielding a Staff", + "+30% to Critical Strike Multiplier while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "62416" + }, + ["in"]= { + "48282", + "16754" + } + }, + [37639]= { + ["skill"]= 37639, + ["name"]= "Staff Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 16% increased Damage with Hits and Ailments", + "10% increased Stun Duration with Staves on Enemies" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "51559", + "60740" + } + }, + [47427]= { + ["skill"]= 47427, + ["name"]= "Staff Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 16% increased Damage with Hits and Ailments", + "10% increased Stun Duration with Staves on Enemies" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "60740" + }, + ["in"]= { + "23027" + } + }, + [60740]= { + ["skill"]= 60740, + ["name"]= "Staff Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 16% increased Damage with Hits and Ailments", + "10% increased Stun Duration with Staves on Enemies" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "37639" + }, + ["in"]= { + "47427" + } + }, + [42917]= { + ["skill"]= 42917, + ["name"]= "Whirling Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/whirlingstaff.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "20% chance to gain a Power Charge when you Block", + "+8% Chance to Block Attack Damage while wielding a Staff", + "+8% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "16754", + "62416" + }, + ["in"]= { + "18990" + } + }, + [6778]= { + ["skill"]= 6778, + ["name"]= "Trickster", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Prevent +6% of Suppressed Spell Damage while on Full Energy Shield", + "2% more Damage for each different type of Mastery you have Allocated", + "2% of Damage Leeched as Energy Shield", + "Nearby Enemy Monsters' Action Speed is at most 90% of base value" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(You can only take one of the three Shadow Ascendancy passives)" + }, + ["group"]= 96, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "772" + } + }, + [60992]= { + ["skill"]= 60992, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 97, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27806" + } + }, + [65125]= { + ["skill"]= 65125, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 97, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33623" + }, + ["in"]= { + "63282" + } + }, + [33623]= { + ["skill"]= 33623, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 97, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "27806" + }, + ["in"]= { + "65125" + } + }, + [27806]= { + ["skill"]= 27806, + ["name"]= "As The Thunder", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "IndigoOil" + }, + ["stats"]= { + "25% increased Warcry Duration", + "20% increased Warcry Buff Effect" + }, + ["group"]= 97, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "60992" + }, + ["in"]= { + "33623" + } + }, + [40645]= { + ["skill"]= 40645, + ["name"]= "Bone Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "30% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 30% increased Damage with Ailments", + "15% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "38023", + "14832" + }, + ["in"]= { + "15163" + } + }, + [46127]= { + ["skill"]= 46127, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "20% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "8500" + }, + ["in"]= { + "20966" + } + }, + [20966]= { + ["skill"]= 20966, + ["name"]= "Mace Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "14% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "46127", + "59928" + }, + ["in"]= { + "30547" + } + }, + [8500]= { + ["skill"]= 8500, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "20% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "46127", + "16703" + } + }, + [30547]= { + ["skill"]= 30547, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedmace.png", + ["stats"]= { + "14% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 14% increased Damage with Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "20966" + }, + ["in"]= { + "15163" + } + }, + [15163]= { + ["skill"]= 15163, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedmace.png", + ["stats"]= { + "14% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 14% increased Damage with Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "30547", + "40645" + }, + ["in"]= {} + }, + [57266]= { + ["skill"]= 57266, + ["name"]= "Mace Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunmace.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "5% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 98, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "38023" + }, + ["in"]= { + "16703" + } + }, + [38023]= { + ["skill"]= 38023, + ["name"]= "Mace Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunmace.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "5% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 98, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= {}, + ["in"]= { + "40645", + "57266" + } + }, + [14832]= { + ["skill"]= 14832, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 98, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "40645", + "16703" + } + }, + [16703]= { + ["skill"]= 16703, + ["name"]= "Skull Cracking", + ["icon"]= "Art/2DArt/SkillIcons/passives/skullcracking.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "36% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 36% increased Damage with Ailments", + "12% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 98, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "8500", + "57266", + "14832" + }, + ["in"]= {} + }, + [8081]= { + ["skill"]= 8081, + ["name"]= "The Sands of Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/SandsofTimeNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Trigger level 1 Suspend in Time on Casting a Spell" + }, + ["reminderText"]= { + "(Creates a Suspended Mirage - an astral-infused clone of yourself that is suspended in time, just before the release of the spellcast that triggered them. On reaching three Suspended Mirages, all Suspended Mirages will be released, using the spell which was cast to create them. Suspended Mirages are not created by Vaal spells, channelling spells, instant spells, or spells which create minions)" + }, + ["group"]= 99, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [20160]= { + ["skill"]= 20160, + ["name"]= "Fidelitas' Spike", + ["icon"]= "Art/2DArt/SkillIcons/passives/FidelitasSpikeNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Hits always Shock", + "Deal no Physical Damage", + "Herald of Thunder has 100% increased Buff Effect", + "Herald of Thunder has 100% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 100, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [43857]= { + ["skill"]= 43857, + ["name"]= "Arakaali's Fang", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArakaalisFangNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Trigger Level 20 Raise Spiders on Kill" + }, + ["reminderText"]= { + "(Raise two spectral spiders from each nearby corpse that will attack your enemies with Viper Strike. Each raised spider grants you increased Attack Speed and increased Damage with Poison. Enemies will not engage the spiders directly, and they are immune to damage)" + }, + ["group"]= 101, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [59067]= { + ["skill"]= 59067, + ["name"]= "Femurs of the Saints", + ["icon"]= "Art/2DArt/SkillIcons/passives/FemuroftheSaintsNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+1% Chance to Block Attack Damage per Summoned Skeleton", + "2% increased Attack and Cast Speed per Summoned Raging Spirit", + "Regenerate 0.6% of Life per second for each Raised Zombie", + "30% increased Mana Regeneration Rate per Raised Spectre" + }, + ["group"]= 102, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [47058]= { + ["skill"]= 47058, + ["name"]= "Ahn's Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/AhnsMightNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "20% more Accuracy Rating while at maximum Frenzy Charges", + "-1 to Maximum Frenzy Charges", + "+100% to Critical Strike Multiplier while you have no Frenzy Charges" + }, + ["group"]= 103, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [26055]= { + ["skill"]= 26055, + ["name"]= "The Shattered Divinity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShatteredDivinityNode.png", + ["grantedStrength"]= 40, + ["grantedDexterity"]= 40, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Summon Greater Harbinger of Directions Skill", + "+40 to Strength and Dexterity" + }, + ["reminderText"]= { + "(Summons an immortal Harbinger minion. The minion will cast a random buff on you that grants one or all of the following: Fire 2 additional Projectiles, Chain 2 additional times, Projectiles Pierce 2 additional targets, or Projectiles Fork then Fork an additional time)" + }, + ["group"]= 104, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [58556]= { + ["skill"]= 58556, + ["name"]= "Divine Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergisedFortress.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Recover Energy Shield to above Armour\n3% of Physical Damage prevented from Hits Recently is Regenerated as Energy Shield per second" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "My faith is my shield." + }, + ["group"]= 105, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44202" + }, + ["in"]= {} + }, + [26712]= { + ["skill"]= 26712, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "8% increased Armour" + }, + ["group"]= 106, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "55190" + }, + ["in"]= { + "35288" + } + }, + [35288]= { + ["skill"]= 35288, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "8% increased Armour" + }, + ["group"]= 106, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "26712" + }, + ["in"]= { + "29353" + } + }, + [55190]= { + ["skill"]= 55190, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 2, + ["proxy"]= "30275" + }, + ["stats"]= {}, + ["group"]= 106, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30275", + "26712" + } + }, + [58827]= { + ["skill"]= 58827, + ["name"]= "Saboteur", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "30% increased Area of Effect", + "15% increased Cooldown Recovery Rate", + "Hits have 20% chance to deal 50% more Area Damage", + "25% chance to Blind Enemies on Hit" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)", + "(You can only take one of the three Shadow Ascendancy passives)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 107, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "772" + } + }, + [35936]= { + ["skill"]= 35936, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "22441" + }, + ["in"]= { + "10108" + } + }, + [12003]= { + ["skill"]= 12003, + ["name"]= "Martial Weapon Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "9258", + "47058", + "26055", + "20160", + "54928", + "27054", + "25795" + }, + ["in"]= { + "60582" + } + }, + [36489]= { + ["skill"]= 36489, + ["name"]= "Armour Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "16633", + "52094", + "16994", + "48040", + "56940", + "35448", + "22628" + }, + ["in"]= { + "22441" + } + }, + [35989]= { + ["skill"]= 35989, + ["name"]= "Jewellery Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "48410", + "36072", + "54569", + "8967", + "33467", + "2768" + }, + ["in"]= { + "18147", + "9258" + } + }, + [22441]= { + ["skill"]= 22441, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "36489" + }, + ["in"]= { + "35936" + } + }, + [16633]= { + ["skill"]= 16633, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "15544" + }, + ["in"]= { + "36489" + } + }, + [15544]= { + ["skill"]= 15544, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "2460" + }, + ["in"]= { + "16633" + } + }, + [18147]= { + ["skill"]= 18147, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 5, + ["out"]= { + "35989" + }, + ["in"]= { + "2460" + } + }, + [9258]= { + ["skill"]= 9258, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 15, + ["out"]= { + "35989" + }, + ["in"]= { + "12003" + } + }, + [52094]= { + ["skill"]= 52094, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "60582" + }, + ["in"]= { + "36489" + } + }, + [60582]= { + ["skill"]= 60582, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "12003" + }, + ["in"]= { + "52094" + } + }, + [2460]= { + ["skill"]= 2460, + ["name"]= "Caster Weapon Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "18147", + "8081", + "17386", + "43857", + "37303", + "59067", + "40276" + }, + ["in"]= { + "15544" + } + }, + [10108]= { + ["skill"]= 10108, + ["name"]= "Reliquarian", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Reliquarian", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58833", + "35936" + }, + ["in"]= {} + }, + [19732]= { + ["skill"]= 19732, + ["name"]= "The Agnostic", + ["icon"]= "Art/2DArt/SkillIcons/passives/MiracleMaker.png", + ["isKeystone"]= true, + ["stats"]= { + "Removes all Energy Shield\nWhile not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life" + }, + ["flavourText"]= { + "Put your faith in intellect rather than mysticism." + }, + ["group"]= 109, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26270" + }, + ["in"]= {} + }, + [64238]= { + ["skill"]= 64238, + ["name"]= "Retaliation Skill Area Of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills have 15% increased Area of Effect" + }, + ["group"]= 110, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "4918" + }, + ["in"]= { + "44268" + } + }, + [44268]= { + ["skill"]= 44268, + ["name"]= "Retaliation Skill Area Of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills have 15% increased Area of Effect" + }, + ["group"]= 110, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64238" + }, + ["in"]= { + "5233" + } + }, + [4918]= { + ["skill"]= 4918, + ["name"]= "Indiscriminate Revenge", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationAoE.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "ClearOil" + }, + ["stats"]= { + "Retaliation Skills have 30% increased Area of Effect" + }, + ["group"]= 110, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26037" + }, + ["in"]= { + "64238" + } + }, + [26037]= { + ["skill"]= 26037, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 110, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4918" + } + }, + [35260]= { + ["skill"]= 35260, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "4177" + }, + ["in"]= { + "19103" + } + }, + [38989]= { + ["skill"]= 38989, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "15046", + "4177" + } + }, + [26481]= { + ["skill"]= 26481, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "19103" + }, + ["in"]= { + "41190" + } + }, + [41190]= { + ["skill"]= 41190, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "26481" + }, + ["in"]= { + "26270" + } + }, + [43647]= { + ["skill"]= 43647, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 111, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19103", + "15046", + "4177" + } + }, + [19103]= { + ["skill"]= 19103, + ["name"]= "Righteous Army", + ["icon"]= "Art/2DArt/SkillIcons/passives/RighteousArmy.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Regenerate 1% of Life per second", + "Minions deal 20% increased Damage", + "Minions Regenerate 1% of Life per second" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "35260", + "43647" + }, + ["in"]= { + "26481" + } + }, + [15046]= { + ["skill"]= 15046, + ["name"]= "Redemption", + ["icon"]= "Art/2DArt/SkillIcons/passives/Redemption.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "Minions deal 20% increased Damage", + "Minions have 10% increased Attack Speed", + "Minions have 10% increased Cast Speed" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "38989", + "43647" + }, + ["in"]= { + "29106" + } + }, + [4177]= { + ["skill"]= 4177, + ["name"]= "Spiritual Aid", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualAid.png", + ["isNotable"]= true, + ["recipe"]= { + "SilverOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Increases and Reductions to Minion Damage also affect you" + }, + ["group"]= 111, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "38989", + "43647" + }, + ["in"]= { + "35260" + } + }, + [29106]= { + ["skill"]= 29106, + ["name"]= "Minion Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "Minions have 3% increased Attack Speed", + "Minions have 3% increased Cast Speed" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "25332", + "15046" + }, + ["in"]= {} + }, + [25332]= { + ["skill"]= 25332, + ["name"]= "Minion Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "Minions have 3% increased Attack Speed", + "Minions have 3% increased Cast Speed" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "29106", + "26270" + } + }, + [31961]= { + ["skill"]= 31961, + ["name"]= "Resolute Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png", + ["isKeystone"]= true, + ["stats"]= { + "Your hits can't be Evaded\nNever deal Critical Strikes" + }, + ["flavourText"]= { + "Great tacticians learn that consistency often trumps potential." + }, + ["group"]= 112, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63282" + }, + ["in"]= {} + }, + [17386]= { + ["skill"]= 17386, + ["name"]= "Xirgil's Crank", + ["icon"]= "Art/2DArt/SkillIcons/passives/XirgilsCrankNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+1 to Level of all Spell Skill Gems", + "30% chance for Energy Shield Recharge to start when you Block" + }, + ["group"]= 113, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [40276]= { + ["skill"]= 40276, + ["name"]= "Shimmeron", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShimmeronNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+8% to Critical Strike Multiplier per Power Charge", + "+0.3% to Critical Strike Chance per Power Charge", + "+3% Chance to Block Spell Damage per Power Charge" + }, + ["group"]= 114, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [25795]= { + ["skill"]= 25795, + ["name"]= "Ngamahu's Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/RiriTeNgamahuNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Trigger Level 20 Molten Burst on Melee Hit", + "Damage Penetrates 20% Fire Resistance" + }, + ["reminderText"]= { + "(Molten Burst launches molten projectiles from the point of impact, causing area attack damage to enemies where they land)" + }, + ["group"]= 115, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [54928]= { + ["skill"]= 54928, + ["name"]= "The Sacred Chalice", + ["icon"]= "Art/2DArt/SkillIcons/passives/SacredChaliceNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Gain a Flask Charge when you deal a Critical Strike", + "Gain 20% of Physical Damage as Extra Cold Damage if you've\nused a Sapphire Flask Recently", + "Gain 20% of Physical Damage as Extra Fire Damage if you've\nused a Ruby Flask Recently", + "Gain 20% of Physical Damage as Extra Lightning Damage if you've\nused a Topaz Flask Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 116, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [37303]= { + ["skill"]= 37303, + ["name"]= "The Black Cane", + ["icon"]= "Art/2DArt/SkillIcons/passives/TheBlackCaneNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Each Summoned Phantasm grants you Phantasmal Might" + }, + ["reminderText"]= { + "(Phantasmal Might grants Added Spell Physical Damage based on the level of the Phantasm. Multiple instances of Phantasmal Might stack)" + }, + ["group"]= 117, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [27054]= { + ["skill"]= 27054, + ["name"]= "Al Dhih", + ["icon"]= "Art/2DArt/SkillIcons/passives/AldihNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage", + "Warcry Skills' Cooldown Time is 4 seconds" + }, + ["group"]= 118, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [26270]= { + ["skill"]= 26270, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 119, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41190", + "25332", + "22472", + "57283" + }, + ["in"]= { + "19732", + "60472", + "46897", + "64210" + } + }, + [60472]= { + ["skill"]= 60472, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 120, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23027", + "26270", + "29061" + }, + ["in"]= { + "34171" + } + }, + [23027]= { + ["skill"]= 23027, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 121, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "54667", + "47427", + "10555" + }, + ["in"]= { + "60472", + "44202", + "6712" + } + }, + [44202]= { + ["skill"]= 44202, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 122, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "29353", + "23027" + }, + ["in"]= { + "58556", + "18208", + "21929" + } + }, + [29353]= { + ["skill"]= 29353, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 123, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35288", + "50570", + "11431" + }, + ["in"]= { + "44202", + "63282" + } + }, + [63282]= { + ["skill"]= 63282, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 124, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "29353", + "59928", + "34590", + "65125" + }, + ["in"]= { + "31961", + "37501" + } + }, + [59928]= { + ["skill"]= 59928, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 125, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63723" + }, + ["in"]= { + "20966", + "63282", + "44624", + "2219", + "30380" + } + }, + [63723]= { + ["skill"]= 63723, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 126, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5233" + }, + ["in"]= { + "25682", + "59928", + "48109", + "62429" + } + }, + [5233]= { + ["skill"]= 5233, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 127, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "3644", + "10851", + "44268" + }, + ["in"]= { + "7082", + "63723", + "61388", + "55676", + "46585", + "7285" + } + }, + [16810]= { + ["skill"]= 16810, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 128, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "861" + } + }, + [44922]= { + ["skill"]= 44922, + ["name"]= "Shield Damage and Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "14% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 14% increased Damage with Ailments while holding a Shield", + "30% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "861" + }, + ["in"]= { + "10851" + } + }, + [48813]= { + ["skill"]= 48813, + ["name"]= "Shield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "10% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10851" + }, + ["in"]= { + "861" + } + }, + [10851]= { + ["skill"]= 10851, + ["name"]= "Shield Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "12% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 12% increased Damage with Ailments while holding a Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "44922" + }, + ["in"]= { + "5233", + "48813" + } + }, + [861]= { + ["skill"]= 861, + ["name"]= "Aggressive Bastion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while holding a Shield", + "30% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 30% increased Damage with Ailments while holding a Shield", + "10% chance to gain an Endurance Charge on Kill while holding a Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48813", + "16810" + }, + ["in"]= { + "44922" + } + }, + [2768]= { + ["skill"]= 2768, + ["name"]= "Melding of the Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeldingoftheFleshNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "-5% to all maximum Elemental Resistances", + "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 129, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [33467]= { + ["skill"]= 33467, + ["name"]= "Kaom's Binding", + ["icon"]= "Art/2DArt/SkillIcons/passives/KaomBeltNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Nearby Enemies Convert 25% of their Physical Damage to Fire", + "15% increased Strength" + }, + ["group"]= 130, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [48410]= { + ["skill"]= 48410, + ["name"]= "Polaric Devastation", + ["icon"]= "Art/2DArt/SkillIcons/passives/PolaricDevastationNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "40% increased Duration of Ailments on Enemies", + "Cover Enemies in Ash for 5 seconds when you Ignite them", + "Cover Enemies in Frost for 5 seconds when you Freeze them" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)", + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken)", + "(Being Covered in Frost applies 50% less Critical Strike Chance and 20% increased Cold Damage Taken)" + }, + ["group"]= 131, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [8967]= { + ["skill"]= 8967, + ["name"]= "Screams of the Desiccated", + ["icon"]= "Art/2DArt/SkillIcons/passives/ScreamsoftheDesiccatedNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "You have Impenetrable Shrine Buff while affected by no Flasks" + }, + ["group"]= 132, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [36072]= { + ["skill"]= 36072, + ["name"]= "Gloomfang", + ["icon"]= "Art/2DArt/SkillIcons/passives/GloomfangNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Skills Chain +1 times", + "Projectiles that have Chained gain 20% of Non-Chaos Damage as extra Chaos Damage" + }, + ["group"]= 133, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [57283]= { + ["skill"]= 57283, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 134, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26270", + "33943" + } + }, + [33943]= { + ["skill"]= 33943, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 134, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "57283" + }, + ["in"]= { + "28449" + } + }, + [28449]= { + ["skill"]= 28449, + ["name"]= "Surge of Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "Every 4 seconds, Regenerate 15% of Life over one second" + }, + ["group"]= 134, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "33943", + "27235" + }, + ["in"]= {} + }, + [27235]= { + ["skill"]= 27235, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 134, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "28449" + } + }, + [48144]= { + ["skill"]= 48144, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 135, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46471" + } + }, + [21048]= { + ["skill"]= 21048, + ["name"]= "Link Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode2.png", + ["stats"]= { + "Link Skills have 15% increased Skill Effect Duration" + }, + ["group"]= 135, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46471" + }, + ["in"]= { + "10555" + } + }, + [10555]= { + ["skill"]= 10555, + ["name"]= "Link Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode2.png", + ["stats"]= { + "Link Skills have 15% increased Skill Effect Duration" + }, + ["group"]= 135, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "21048" + }, + ["in"]= { + "23027" + } + }, + [46471]= { + ["skill"]= 46471, + ["name"]= "Powerful Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLink3.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "20% increased Buff Effect of your Links for which 50% of Link Duration has Expired", + "Curses are inflicted on you instead of Linked targets" + }, + ["group"]= 135, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "48144" + }, + ["in"]= { + "21048" + } + }, + [54569]= { + ["skill"]= 54569, + ["name"]= "Presence of Chayula", + ["icon"]= "Art/2DArt/SkillIcons/passives/PresenceofChayulaNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Cannot be Stunned", + "20% of Maximum Life Converted to Energy Shield" + }, + ["group"]= 136, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [60619]= { + ["skill"]= 60619, + ["name"]= "Galvanic Hammer", + ["icon"]= "Art/2DArt/SkillIcons/passives/galvanichammer.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "CrimsonOil" + }, + ["stats"]= { + "10% increased Accuracy Rating with Maces or Sceptres", + "30% increased Elemental Damage with Maces or Sceptres", + "Damage with Weapons Penetrates 5% Elemental Resistances" + }, + ["group"]= 137, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "31292" + }, + ["in"]= { + "24677" + } + }, + [20467]= { + ["skill"]= 20467, + ["name"]= "Mace Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "16% increased Critical Strike Chance with Maces or Sceptres", + "+16% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "18379" + }, + ["in"]= { + "5068" + } + }, + [5068]= { + ["skill"]= 5068, + ["name"]= "Mace Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "16% increased Critical Strike Chance with Maces or Sceptres", + "+16% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "20467" + }, + ["in"]= { + "27134" + } + }, + [18379]= { + ["skill"]= 18379, + ["name"]= "Mace Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "16% increased Critical Strike Chance with Maces or Sceptres", + "+16% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "39657" + }, + ["in"]= { + "20467" + } + }, + [39657]= { + ["skill"]= 39657, + ["name"]= "Pain Forger", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance with Maces or Sceptres", + "10% reduced Enemy Stun Threshold with Maces or Sceptres", + "10% chance to gain a Power Charge when you Stun with Melee Damage" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "31292" + }, + ["in"]= { + "18379" + } + }, + [24677]= { + ["skill"]= 24677, + ["name"]= "Mace Elemental Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceElemental.png", + ["stats"]= { + "8% increased Accuracy Rating with Maces or Sceptres", + "12% increased Elemental Damage with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "60619" + }, + ["in"]= { + "61950" + } + }, + [61950]= { + ["skill"]= 61950, + ["name"]= "Mace Elemental Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceElemental.png", + ["stats"]= { + "8% increased Accuracy Rating with Maces or Sceptres", + "12% increased Elemental Damage with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "24677" + }, + ["in"]= { + "27134" + } + }, + [27134]= { + ["skill"]= 27134, + ["name"]= "Mace Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 14% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "5068", + "61950", + "64210" + }, + ["in"]= {} + }, + [31292]= { + ["skill"]= 31292, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 137, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60619", + "39657" + } + }, + [55027]= { + ["skill"]= 55027, + ["name"]= "Shining Justice", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplar1.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Effect of Consecrated Ground you create", + "Consecrated Ground you create grants 30% increased Accuracy Rating to you and Allies" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "27157" + }, + ["in"]= { + "22180", + "15783" + } + }, + [22180]= { + ["skill"]= 22180, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "15% increased Accuracy Rating" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "55027" + }, + ["in"]= { + "18208" + } + }, + [15783]= { + ["skill"]= 15783, + ["name"]= "Consecrated Ground Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png", + ["stats"]= { + "20% increased Effect of Consecrated Ground you create" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55027" + }, + ["in"]= { + "18208" + } + }, + [18208]= { + ["skill"]= 18208, + ["name"]= "Consecrated Ground Effect and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png", + ["stats"]= { + "10% increased Effect of Consecrated Ground you create", + "10% increased Accuracy Rating" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "44202", + "15783", + "22180" + }, + ["in"]= {} + }, + [27157]= { + ["skill"]= 27157, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 138, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55027" + } + }, + [44624]= { + ["skill"]= 44624, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "31604", + "59928", + "25796" + }, + ["in"]= {} + }, + [31604]= { + ["skill"]= 31604, + ["name"]= "Faster Bleeding", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Bleeding you inflict deals Damage 5% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "26023" + }, + ["in"]= { + "44624" + } + }, + [43601]= { + ["skill"]= 43601, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 139, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26023" + } + }, + [25796]= { + ["skill"]= 25796, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26023" + }, + ["in"]= { + "44624" + } + }, + [26023]= { + ["skill"]= 26023, + ["name"]= "Savage Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/FasterBleeding2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "43601" + }, + ["in"]= { + "31604", + "25796" + } + }, + [864]= { + ["skill"]= 864, + ["name"]= "Impale Effect with Two Handed Weapons", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "10% increased Effect of Impales you inflict with Two Handed Weapons" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 140, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "24858" + }, + ["in"]= { + "61388" + } + }, + [61388]= { + ["skill"]= 61388, + ["name"]= "Impale Chance with Two Handed Weapons", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Two Handed Weapons" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 140, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "864", + "5233" + }, + ["in"]= {} + }, + [24858]= { + ["skill"]= 24858, + ["name"]= "Harpooner", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Two Handed Weapons", + "30% increased Effect of Impales you inflict with Two Handed Weapons on Non-Impaled Enemies", + "50% increased Impale Duration" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 140, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "52074" + }, + ["in"]= { + "864" + } + }, + [52074]= { + ["skill"]= 52074, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 140, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24858" + } + }, + [15727]= { + ["skill"]= 15727, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "53630" + }, + ["in"]= { + "34750" + } + }, + [53630]= { + ["skill"]= 53630, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "55194" + }, + ["in"]= { + "15727" + } + }, + [34750]= { + ["skill"]= 34750, + ["name"]= "Weapon Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "12% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "14419", + "15727" + }, + ["in"]= { + "3644" + } + }, + [30439]= { + ["skill"]= 30439, + ["name"]= "Lava Lash", + ["icon"]= "Art/2DArt/SkillIcons/passives/lavalash.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "GoldenOil" + }, + ["stats"]= { + "Damage with Weapons Penetrates 8% Fire Resistance", + "30% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "38320", + "27697" + }, + ["in"]= { + "8879" + } + }, + [38320]= { + ["skill"]= 38320, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 141, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30439", + "55194", + "19794" + } + }, + [55194]= { + ["skill"]= 55194, + ["name"]= "Settling Ash", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteAshNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "Nearby Enemies are Covered in Ash if you haven't moved in the past 2 seconds" + }, + ["reminderText"]= { + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken)" + }, + ["group"]= 141, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "61351", + "38320" + }, + ["in"]= { + "53630" + } + }, + [19794]= { + ["skill"]= 19794, + ["name"]= "Concussive Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteStunNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Hits Stun as though dealing 50% more Melee Fire Damage", + "Ignites from Stunning Melee Hits deal 20% more Damage" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "27697", + "38320" + }, + ["in"]= { + "61351" + } + }, + [61351]= { + ["skill"]= 61351, + ["name"]= "Stun Threshold Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "19794" + }, + ["in"]= { + "55194" + } + }, + [27697]= { + ["skill"]= 27697, + ["name"]= "Stun Threshold Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "30439", + "19794" + } + }, + [8879]= { + ["skill"]= 8879, + ["name"]= "Weapon Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "16% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "30439" + }, + ["in"]= { + "14419" + } + }, + [14419]= { + ["skill"]= 14419, + ["name"]= "Weapon Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "16% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "8879" + }, + ["in"]= { + "34750" + } + }, + [38377]= { + ["skill"]= 38377, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 142, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53757", + "63150" + } + }, + [24157]= { + ["skill"]= 24157, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53757" + }, + ["in"]= { + "11431" + } + }, + [53757]= { + ["skill"]= 53757, + ["name"]= "Shamanistic Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/shamsnisticfury.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "VioletOil" + }, + ["stats"]= { + "25% increased Totem Damage", + "25% increased Totem Placement speed" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "38377" + }, + ["in"]= { + "24157" + } + }, + [11431]= { + ["skill"]= 11431, + ["name"]= "Totem Life and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Life" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "24157", + "30825" + }, + ["in"]= { + "29353" + } + }, + [30825]= { + ["skill"]= 30825, + ["name"]= "Totem Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "15% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "63150" + }, + ["in"]= { + "11431" + } + }, + [63150]= { + ["skill"]= 63150, + ["name"]= "Ironwood", + ["icon"]= "Art/2DArt/SkillIcons/passives/ironwoodtotem.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "TealOil" + }, + ["stats"]= { + "40% increased Totem Life", + "Totems have 40% additional Physical Damage Reduction" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38377" + }, + ["in"]= { + "30825" + } + }, + [9471]= { + ["skill"]= 9471, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 143, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24716" + } + }, + [34590]= { + ["skill"]= 34590, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "48199", + "53332" + }, + ["in"]= { + "63282" + } + }, + [48199]= { + ["skill"]= 48199, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "24716" + }, + ["in"]= { + "34590" + } + }, + [53332]= { + ["skill"]= 53332, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "30714" + }, + ["in"]= { + "34590" + } + }, + [30714]= { + ["skill"]= 30714, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24716" + }, + ["in"]= { + "53332" + } + }, + [24716]= { + ["skill"]= 24716, + ["name"]= "Battle Trance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "AmberOil" + }, + ["stats"]= { + "+10 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9471" + }, + ["in"]= { + "48199", + "30714" + } + }, + [58831]= { + ["skill"]= 58831, + ["name"]= "Disemboweling", + ["icon"]= "Art/2DArt/SkillIcons/passives/deadlyprecision.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "50% increased Melee Critical Strike Chance", + "+25% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15678", + "33823" + }, + ["in"]= { + "39023" + } + }, + [33823]= { + ["skill"]= 33823, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 144, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58831" + } + }, + [56355]= { + ["skill"]= 56355, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "20% increased Melee Critical Strike Chance", + "+10% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "39023" + }, + ["in"]= { + "37501" + } + }, + [39023]= { + ["skill"]= 39023, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "20% increased Melee Critical Strike Chance", + "+10% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "58831" + }, + ["in"]= { + "56355" + } + }, + [37501]= { + ["skill"]= 37501, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "25% increased Melee Critical Strike Chance" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "56355", + "63282" + }, + ["in"]= { + "15678" + } + }, + [15678]= { + ["skill"]= 15678, + ["name"]= "Melee Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png", + ["stats"]= { + "+12% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "37501" + }, + ["in"]= { + "58831" + } + }, + [34487]= { + ["skill"]= 34487, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 145, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63635" + } + }, + [65159]= { + ["skill"]= 65159, + ["name"]= "Totem Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png", + ["stats"]= { + "Spells Cast by Totems have 5% increased Cast Speed", + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "31520" + }, + ["in"]= { + "4300" + } + }, + [31520]= { + ["skill"]= 31520, + ["name"]= "Totem Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png", + ["stats"]= { + "Spells Cast by Totems have 5% increased Cast Speed", + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63635" + }, + ["in"]= { + "65159" + } + }, + [4300]= { + ["skill"]= 4300, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "65159" + }, + ["in"]= { + "11190", + "64210" + } + }, + [63635]= { + ["skill"]= 63635, + ["name"]= "Primal Manifestation", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemicmastery.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Totem Damage", + "30% increased Totem Life", + "50% increased Totem Duration" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "35910", + "34487" + }, + ["in"]= { + "31520" + } + }, + [35910]= { + ["skill"]= 35910, + ["name"]= "Totem Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "15% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "11190" + }, + ["in"]= { + "63635" + } + }, + [11190]= { + ["skill"]= 11190, + ["name"]= "Totem Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "15% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "4300" + }, + ["in"]= { + "35910" + } + }, + [22472]= { + ["skill"]= 22472, + ["name"]= "Mana and Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "28076", + "57167" + }, + ["in"]= { + "26270" + } + }, + [57167]= { + ["skill"]= 57167, + ["name"]= "Mana and Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "51108" + }, + ["in"]= { + "22472" + } + }, + [28076]= { + ["skill"]= 28076, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "51108" + }, + ["in"]= { + "22472" + } + }, + [51108]= { + ["skill"]= 51108, + ["name"]= "Arcane Capacitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "15% increased maximum Mana", + "10% increased Effect of Arcane Surge on you per\n200 Mana spent Recently, up to 50%", + "10% chance to gain Arcane Surge when you Kill an Enemy" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "44948" + }, + ["in"]= { + "57167", + "28076" + } + }, + [44948]= { + ["skill"]= 44948, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 146, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51108" + } + }, + [30302]= { + ["skill"]= 30302, + ["name"]= "Hearty", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hearty.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "15% increased Life Regeneration rate", + "Regenerate 1.8% of Life per second" + }, + ["group"]= 147, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53517" + }, + ["in"]= { + "48822" + } + }, + [53517]= { + ["skill"]= 53517, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 147, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30302" + } + }, + [2219]= { + ["skill"]= 2219, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 147, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "48822", + "59928" + }, + ["in"]= {} + }, + [48822]= { + ["skill"]= 48822, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 147, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "30302" + }, + ["in"]= { + "2219" + } + }, + [62017]= { + ["skill"]= 62017, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increased armor.png", + ["stats"]= { + "8% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 148, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "33287", + "53793" + }, + ["in"]= {} + }, + [55676]= { + ["skill"]= 55676, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increased armor.png", + ["stats"]= { + "8% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 148, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "5233" + }, + ["in"]= { + "33287" + } + }, + [33287]= { + ["skill"]= 33287, + ["name"]= "Juggernaut", + ["icon"]= "Art/2DArt/SkillIcons/passives/increased armor.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "24% increased Armour", + "8% increased maximum Life" + }, + ["group"]= 148, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55676", + "64406" + }, + ["in"]= { + "62017" + } + }, + [64406]= { + ["skill"]= 64406, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 148, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33287" + } + }, + [46585]= { + ["skill"]= 46585, + ["name"]= "Banner Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 12% increased Area of Effect" + }, + ["group"]= 149, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "54880", + "5233" + }, + ["in"]= {} + }, + [54880]= { + ["skill"]= 54880, + ["name"]= "Banner Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 12% increased Area of Effect" + }, + ["group"]= 149, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "40619" + }, + ["in"]= { + "46585" + } + }, + [40619]= { + ["skill"]= 40619, + ["name"]= "Awe and Terror", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Enemies Killed near your Banner have 20% chance to Explode, dealing a tenth of their Life as Physical Damage", + "Banner Skills have 20% increased Area of Effect" + }, + ["group"]= 149, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32242" + }, + ["in"]= { + "54880" + } + }, + [32242]= { + ["skill"]= 32242, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 149, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "40619" + } + }, + [44429]= { + ["skill"]= 44429, + ["name"]= "Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "+3% to all Elemental Resistances" + }, + ["group"]= 150, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53118", + "55649" + }, + ["in"]= {} + }, + [30380]= { + ["skill"]= 30380, + ["name"]= "Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "+3% to all Elemental Resistances" + }, + ["group"]= 150, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "59928" + }, + ["in"]= { + "53118" + } + }, + [53118]= { + ["skill"]= 53118, + ["name"]= "Barbarism", + ["icon"]= "Art/2DArt/SkillIcons/passives/titanicmight.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Life", + "+1% to maximum Fire Resistance", + "+8% to Fire Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 150, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30380", + "4139" + }, + ["in"]= { + "44429" + } + }, + [4139]= { + ["skill"]= 4139, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 150, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53118" + } + }, + [38508]= { + ["skill"]= 38508, + ["name"]= "Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "20% increased Endurance Charge Duration" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "37326" + }, + ["in"]= { + "22285" + } + }, + [26725]= { + ["skill"]= 26725, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "62429" + }, + ["in"]= { + "62363" + } + }, + [48109]= { + ["skill"]= 48109, + ["name"]= "Life Regeneration per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "Regenerate 0.2% of Life per second per Endurance Charge" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "63723" + }, + ["in"]= { + "37326" + } + }, + [37326]= { + ["skill"]= 37326, + ["name"]= "Stamina", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Endurance Charges" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "48109" + }, + ["in"]= { + "38508" + } + }, + [62429]= { + ["skill"]= 62429, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "63723" + }, + ["in"]= { + "26725" + } + }, + [62363]= { + ["skill"]= 62363, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26725" + }, + ["in"]= { + "22285" + } + }, + [40766]= { + ["skill"]= 40766, + ["name"]= "Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "20% increased Endurance Charge Duration" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "11730", + "37999" + }, + ["in"]= {} + }, + [37999]= { + ["skill"]= 37999, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "34173", + "29199" + }, + ["in"]= { + "40766", + "26196" + } + }, + [26196]= { + ["skill"]= 26196, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 152, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37999", + "34171" + }, + ["in"]= {} + }, + [11730]= { + ["skill"]= 11730, + ["name"]= "Endurance", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+1 to Maximum Endurance Charges" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "40766", + "34171" + } + }, + [34173]= { + ["skill"]= 34173, + ["name"]= "Overcharge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Power Charges" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "27575" + }, + ["in"]= { + "37999" + } + }, + [27575]= { + ["skill"]= 27575, + ["name"]= "Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "20% increased Power Charge Duration" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "34171" + }, + ["in"]= { + "34173" + } + }, + [34171]= { + ["skill"]= 34171, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "11730", + "60472" + }, + ["in"]= { + "26196", + "27575" + } + }, + [46636]= { + ["skill"]= 46636, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38906" + }, + ["in"]= { + "27137" + } + }, + [21929]= { + ["skill"]= 21929, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "38836", + "44202" + }, + ["in"]= {} + }, + [38836]= { + ["skill"]= 38836, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "27137" + }, + ["in"]= { + "21929" + } + }, + [27137]= { + ["skill"]= 27137, + ["name"]= "Sanctum of Thought", + ["icon"]= "Art/2DArt/SkillIcons/passives/Unwavering.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes", + "18% increased Armour", + "12% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "37641", + "46636" + }, + ["in"]= { + "38836" + } + }, + [38906]= { + ["skill"]= 38906, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "50570" + }, + ["in"]= { + "46636" + } + }, + [37641]= { + ["skill"]= 37641, + ["name"]= "Armour and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40578, + ["stats"]= { + "2% chance to Defend with 150% of Armour per 5% missing Energy Shield" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 37614, + ["stats"]= { + "Recover 5% of Energy Shield over 1 second when you take Physical Damage from an Enemy Hit" + } + }, + { + ["effect"]= 16215, + ["stats"]= { + "You take 20% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 18301, + ["stats"]= { + "Increases and Reductions to Armour also apply to Energy\nShield Recharge Rate at 20% of their value" + } + }, + { + ["effect"]= 8653, + ["stats"]= { + "100% increased Armour and Energy Shield from Equipped Body Armour if Equipped Helmet,\nGloves and Boots all have Armour and Energy Shield" + } + }, + { + ["effect"]= 65504, + ["stats"]= { + "20% reduced Effect of Curses on you" + } + } + }, + ["stats"]= {}, + ["group"]= 153, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27137" + } + }, + [40508]= { + ["skill"]= 40508, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "8% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 154, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35958" + }, + ["in"]= { + "10575" + } + }, + [46897]= { + ["skill"]= 46897, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "8% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 154, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26270" + }, + ["in"]= { + "35958" + } + }, + [35958]= { + ["skill"]= 35958, + ["name"]= "Faith and Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/bodysoul.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "15% increased Armour", + "10% increased maximum Energy Shield", + "+8% to all Elemental Resistances" + }, + ["group"]= 154, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46897", + "30393" + }, + ["in"]= { + "40508" + } + }, + [30393]= { + ["skill"]= 30393, + ["name"]= "Armour and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40578, + ["stats"]= { + "2% chance to Defend with 150% of Armour per 5% missing Energy Shield" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 37614, + ["stats"]= { + "Recover 5% of Energy Shield over 1 second when you take Physical Damage from an Enemy Hit" + } + }, + { + ["effect"]= 16215, + ["stats"]= { + "You take 20% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 18301, + ["stats"]= { + "Increases and Reductions to Armour also apply to Energy\nShield Recharge Rate at 20% of their value" + } + }, + { + ["effect"]= 8653, + ["stats"]= { + "100% increased Armour and Energy Shield from Equipped Body Armour if Equipped Helmet,\nGloves and Boots all have Armour and Energy Shield" + } + }, + { + ["effect"]= 65504, + ["stats"]= { + "20% reduced Effect of Curses on you" + } + } + }, + ["stats"]= {}, + ["group"]= 154, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35958" + } + }, + [36949]= { + ["skill"]= 36949, + ["name"]= "Devotion", + ["icon"]= "Art/2DArt/SkillIcons/passives/titanicmight.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "25% increased Effect of Consecrated Ground you create" + }, + ["group"]= 155, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "10031", + "41415" + }, + ["in"]= { + "6712" + } + }, + [6712]= { + ["skill"]= 6712, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 155, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "36949", + "23027" + }, + ["in"]= {} + }, + [10031]= { + ["skill"]= 10031, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 155, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "15064" + }, + ["in"]= { + "36949" + } + }, + [41415]= { + ["skill"]= 41415, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 155, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36949" + } + }, + [52220]= { + ["skill"]= 52220, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 156, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26564" + } + }, + [55854]= { + ["skill"]= 55854, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "12% increased Physical Damage" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "1572", + "38538", + "50570" + }, + ["in"]= {} + }, + [1572]= { + ["skill"]= 1572, + ["name"]= "Physical Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png", + ["stats"]= { + "+6% to Physical Damage over Time Multiplier" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "47421" + }, + ["in"]= { + "55854" + } + }, + [47421]= { + ["skill"]= 47421, + ["name"]= "Physical Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png", + ["stats"]= { + "+6% to Physical Damage over Time Multiplier" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26564" + }, + ["in"]= { + "1572" + } + }, + [38538]= { + ["skill"]= 38538, + ["name"]= "Physical Damage and Overwhelm", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "10% increased Physical Damage" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "23760" + }, + ["in"]= { + "55854" + } + }, + [23760]= { + ["skill"]= 23760, + ["name"]= "Physical Damage and Overwhelm", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "10% increased Physical Damage" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "26564" + }, + ["in"]= { + "38538" + } + }, + [26564]= { + ["skill"]= 26564, + ["name"]= "Vanquisher", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Crush Enemies for 4 seconds when you Hit them while they are on Full Life", + "40% increased Physical Damage" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15%)" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52220" + }, + ["in"]= { + "47421", + "23760" + } + }, + [50570]= { + ["skill"]= 50570, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 157, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50422" + }, + ["in"]= { + "29353", + "38906", + "55854", + "7399" + } + }, + [41970]= { + ["skill"]= 41970, + ["name"]= "Ancestral Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemmax.png", + ["isKeystone"]= true, + ["stats"]= { + "You can't deal Damage with Skills yourself\n+1 to maximum number of Summoned Totems" + }, + ["flavourText"]= { + "A wooden construct, mute and blind.", + "But fear the wrath of shackled mind." + }, + ["group"]= 158, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64210" + } + }, + [64210]= { + ["skill"]= 64210, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 159, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26270", + "5935", + "41970", + "4300" + }, + ["in"]= { + "27134", + "5743", + "7444" + } + }, + [57279]= { + ["skill"]= 57279, + ["name"]= "Blood Magic", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png", + ["isKeystone"]= true, + ["stats"]= { + "Removes all mana\n10% more maximum Life\nSkills Cost Life instead of Mana\nSkills Reserve Life instead of Mana" + }, + ["flavourText"]= { + "Lay open your veins, and draw power from your own spilled life." + }, + ["group"]= 160, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "3644" + }, + ["in"]= {} + }, + [12247]= { + ["skill"]= 12247, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 161, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "53793" + }, + ["in"]= { + "56359" + } + }, + [56359]= { + ["skill"]= 56359, + ["name"]= "Cannibalistic Rite", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "Attack Skills Cost Life instead of 10% of Mana Cost", + "25% increased Cost Efficiency of Attacks" + }, + ["group"]= 161, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "12247", + "2841" + }, + ["in"]= { + "7285" + } + }, + [2841]= { + ["skill"]= 2841, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 161, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56359" + } + }, + [7285]= { + ["skill"]= 7285, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 161, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56359", + "5233" + }, + ["in"]= {} + }, + [5916]= { + ["skill"]= 5916, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "4713" + }, + ["in"]= { + "29049" + } + }, + [4713]= { + ["skill"]= 4713, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "+4% to Fire Damage over Time Multiplier" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "7444", + "6245" + }, + ["in"]= { + "5916" + } + }, + [6245]= { + ["skill"]= 6245, + ["name"]= "Chance to Ignite", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "20% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "29049" + }, + ["in"]= { + "4713" + } + }, + [11505]= { + ["skill"]= 11505, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 162, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29049" + } + }, + [29049]= { + ["skill"]= 29049, + ["name"]= "Holy Fire", + ["icon"]= "Art/2DArt/SkillIcons/passives/pyromaniac.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "+24% to Fire Resistance" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5916", + "11505" + }, + ["in"]= { + "6245" + } + }, + [5935]= { + ["skill"]= 5935, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "9392" + }, + ["in"]= { + "64210", + "25831" + } + }, + [9392]= { + ["skill"]= 9392, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "32932" + }, + ["in"]= { + "5935" + } + }, + [32932]= { + ["skill"]= 32932, + ["name"]= "Sovereignty", + ["icon"]= "Art/2DArt/SkillIcons/passives/sovereignty.png", + ["isNotable"]= true, + ["recipe"]= { + "SilverOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills", + "10% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "21974", + "47197" + }, + ["in"]= { + "9392" + } + }, + [47197]= { + ["skill"]= 47197, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 163, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32932" + } + }, + [21974]= { + ["skill"]= 21974, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "25831" + }, + ["in"]= { + "32932" + } + }, + [25831]= { + ["skill"]= 25831, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5935" + }, + ["in"]= { + "21974" + } + }, + [45163]= { + ["skill"]= 45163, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 16% increased Damage" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42106", + "5203", + "55649" + }, + ["in"]= {} + }, + [5203]= { + ["skill"]= 5203, + ["name"]= "Retaliation Skill Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills have 25% increased Stun Duration on Enemies" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41305" + }, + ["in"]= { + "45163" + } + }, + [42106]= { + ["skill"]= 42106, + ["name"]= "Retaliation Skill Damage and Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills deal 15% increased Damage", + "Retaliation Skills have 10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "10989" + }, + ["in"]= { + "45163" + } + }, + [10989]= { + ["skill"]= 10989, + ["name"]= "Retaliation Skill Damage and Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills deal 15% increased Damage", + "Retaliation Skills have 10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "41305" + }, + ["in"]= { + "42106" + } + }, + [41305]= { + ["skill"]= 41305, + ["name"]= "Crushing Reply", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationStun.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "AmberOil" + }, + ["stats"]= { + "Retaliation Skills have 50% increased Stun Duration on Enemies", + "Retaliation Skills Fortify on Melee Hit" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "58728" + }, + ["in"]= { + "5203", + "10989" + } + }, + [58728]= { + ["skill"]= 58728, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 164, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41305" + } + }, + [64221]= { + ["skill"]= 64221, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "20% increased Armour" + }, + ["group"]= 165, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "54629" + }, + ["in"]= { + "39678" + } + }, + [39678]= { + ["skill"]= 39678, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "14% increased Armour" + }, + ["group"]= 165, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "64221" + }, + ["in"]= { + "3644" + } + }, + [54629]= { + ["skill"]= 54629, + ["name"]= "Inexorable", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "25% chance to gain an Endurance Charge when you are Hit", + "50% increased Armour while stationary" + }, + ["group"]= 165, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "48717" + }, + ["in"]= { + "64221" + } + }, + [48717]= { + ["skill"]= 48717, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 165, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "54629" + } + }, + [3644]= { + ["skill"]= 3644, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 166, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14930", + "39678", + "34750", + "20913", + "9402" + }, + ["in"]= { + "5233", + "57279", + "25531" + } + }, + [17527]= { + ["skill"]= 17527, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 167, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "44191" + }, + ["in"]= { + "9402" + } + }, + [9402]= { + ["skill"]= 9402, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 167, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "17527" + }, + ["in"]= { + "3644" + } + }, + [44191]= { + ["skill"]= 44191, + ["name"]= "As The Mountain", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "+12% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "+3% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + }, + ["group"]= 167, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "22480" + }, + ["in"]= { + "17527" + } + }, + [22480]= { + ["skill"]= 22480, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 167, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44191" + } + }, + [35977]= { + ["skill"]= 35977, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 168, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34973" + } + }, + [63027]= { + ["skill"]= 63027, + ["name"]= "Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png", + ["stats"]= { + "Exerted Attacks deal 20% increased Damage" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "65400", + "36200", + "53793" + } + }, + [65400]= { + ["skill"]= 65400, + ["name"]= "Warcry Cooldown Recovery and Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png", + ["stats"]= { + "12% increased Warcry Cooldown Recovery Rate", + "Exerted Attacks deal 15% increased Damage" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "63027" + }, + ["in"]= { + "34973" + } + }, + [36200]= { + ["skill"]= 36200, + ["name"]= "Warcry Speed and Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Speed", + "Exerted Attacks deal 15% increased Damage" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "63027" + }, + ["in"]= { + "34973" + } + }, + [34973]= { + ["skill"]= 34973, + ["name"]= "Measured Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Warcries Exert 1 additional Attack" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "36200", + "65400", + "35977" + }, + ["in"]= {} + }, + [63425]= { + ["skill"]= 63425, + ["name"]= "Zealot's Oath", + ["icon"]= "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png", + ["isKeystone"]= true, + ["stats"]= { + "Life Regeneration is applied to Energy Shield instead" + }, + ["flavourText"]= { + "Tear my flesh and splinter my bones. You will never break my spirit." + }, + ["group"]= 169, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7444" + } + }, + [35070]= { + ["skill"]= 35070, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 170, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "61666" + }, + ["in"]= {} + }, + [40439]= { + ["skill"]= 40439, + ["name"]= "Brand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBrand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37186, + ["stats"]= { + "Recover 10% of Mana when a Brand expires while Attached" + } + }, + { + ["effect"]= 5907, + ["stats"]= { + "Brands have 30% increased Area of Effect if 50% of Attached Duration expired" + } + }, + { + ["effect"]= 20630, + ["stats"]= { + "Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds" + } + }, + { + ["effect"]= 39863, + ["stats"]= { + "Brand Recall has 50% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 32877, + ["stats"]= { + "You can Cast 2 additional Brands" + } + }, + { + ["effect"]= 46672, + ["stats"]= { + "40% increased Brand Attachment range" + } + } + }, + ["stats"]= {}, + ["group"]= 171, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21389" + } + }, + [40776]= { + ["skill"]= 40776, + ["name"]= "Brand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "12% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "19679", + "53018" + }, + ["in"]= { + "58402" + } + }, + [53018]= { + ["skill"]= 53018, + ["name"]= "Brand Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "10% increased Brand Damage", + "Brand Skills have 10% increased Duration" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "15973" + }, + ["in"]= { + "40776" + } + }, + [15973]= { + ["skill"]= 15973, + ["name"]= "Brand Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "10% increased Brand Damage", + "Brand Skills have 10% increased Duration" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "21389" + }, + ["in"]= { + "53018" + } + }, + [19679]= { + ["skill"]= 19679, + ["name"]= "Brand Range and Brand Recall Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Recall has 10% increased Cooldown Recovery Rate", + "10% increased Brand Attachment range" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59070" + }, + ["in"]= { + "40776" + } + }, + [59070]= { + ["skill"]= 59070, + ["name"]= "Brand Range and Brand Recall Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Recall has 10% increased Cooldown Recovery Rate", + "10% increased Brand Attachment range" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "21389" + }, + ["in"]= { + "19679" + } + }, + [21389]= { + ["skill"]= 21389, + ["name"]= "Runesmith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand4.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "12% increased Cast Speed with Brand Skills", + "Enemies take 5% increased Damage for each of your Brands Attached to them" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "40439" + }, + ["in"]= { + "15973", + "59070" + } + }, + [25031]= { + ["skill"]= 25031, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 172, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31257", + "59423" + } + }, + [23036]= { + ["skill"]= 23036, + ["name"]= "Warcry Cooldown Recovery and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate", + "Warcry Skills have 15% increased Area of Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "59423" + }, + ["in"]= { + "40229" + } + }, + [40229]= { + ["skill"]= 40229, + ["name"]= "Warcry Cooldown Recovery and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate", + "Warcry Skills have 15% increased Area of Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "23036" + }, + ["in"]= { + "31257" + } + }, + [53987]= { + ["skill"]= 53987, + ["name"]= "Warcry Duration and Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png", + ["stats"]= { + "10% increased Warcry Duration", + "5% increased Warcry Buff Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "10594", + "11792", + "14930" + }, + ["in"]= {} + }, + [11792]= { + ["skill"]= 11792, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "47426" + }, + ["in"]= { + "53987" + } + }, + [47426]= { + ["skill"]= 47426, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "59423" + }, + ["in"]= { + "11792" + } + }, + [10594]= { + ["skill"]= 10594, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "57992" + }, + ["in"]= { + "53987" + } + }, + [57992]= { + ["skill"]= 57992, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "31257" + }, + ["in"]= { + "10594" + } + }, + [31257]= { + ["skill"]= 31257, + ["name"]= "Natural Authority", + ["icon"]= "Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Enemies Taunted by your Warcries take 8% increased Damage", + "20% increased Warcry Buff Effect" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "25031", + "40229" + }, + ["in"]= { + "57992" + } + }, + [59423]= { + ["skill"]= 59423, + ["name"]= "Escalation", + ["icon"]= "Art/2DArt/SkillIcons/passives/EscalationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "10% increased Melee Damage for each second you've been affected by a Warcry Buff, up to a maximum of 60%" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "25031" + }, + ["in"]= { + "23036", + "47426" + } + }, + [27195]= { + ["skill"]= 27195, + ["name"]= "Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/coldresist.png", + ["stats"]= { + "+8% to Cold Resistance" + }, + ["group"]= 173, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "50422" + }, + ["in"]= { + "34917" + } + }, + [27166]= { + ["skill"]= 27166, + ["name"]= "Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/fireresist.png", + ["stats"]= { + "+8% to Fire Resistance" + }, + ["group"]= 173, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "6446" + }, + ["in"]= { + "48929" + } + }, + [7399]= { + ["skill"]= 7399, + ["name"]= "Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningstr.png", + ["stats"]= { + "+8% to Lightning Resistance" + }, + ["group"]= 173, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "50570" + }, + ["in"]= { + "15522" + } + }, + [42792]= { + ["skill"]= 42792, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 173, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25989" + } + }, + [48929]= { + ["skill"]= 48929, + ["name"]= "Maximum Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "+1% to maximum Fire Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "27166" + }, + ["in"]= { + "25989" + } + }, + [34917]= { + ["skill"]= 34917, + ["name"]= "Maximum Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "+1% to maximum Cold Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "27195" + }, + ["in"]= { + "25989" + } + }, + [15522]= { + ["skill"]= 15522, + ["name"]= "Maximum Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "+1% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "7399" + }, + ["in"]= { + "25989" + } + }, + [25989]= { + ["skill"]= 25989, + ["name"]= "Nomadic Teachings", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+2% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42792", + "15522", + "48929", + "34917" + }, + ["in"]= {} + }, + [58218]= { + ["skill"]= 58218, + ["name"]= "Purity of Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "8% increased maximum Energy Shield", + "10% increased maximum Life", + "+8% to Chaos Resistance" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "32241" + }, + ["in"]= { + "5743" + } + }, + [5743]= { + ["skill"]= 5743, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "64210", + "58218" + }, + ["in"]= { + "9386" + } + }, + [9386]= { + ["skill"]= 9386, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "5743" + }, + ["in"]= { + "14057" + } + }, + [14057]= { + ["skill"]= 14057, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "9386", + "6764" + }, + ["in"]= {} + }, + [32241]= { + ["skill"]= 32241, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 174, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58218" + } + }, + [22285]= { + ["skill"]= 22285, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 175, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "55649", + "53793", + "38508", + "62363" + }, + ["in"]= {} + }, + [64395]= { + ["skill"]= 64395, + ["name"]= "Blunt Trauma", + ["icon"]= "Art/2DArt/SkillIcons/passives/hammerblows.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "40% increased Critical Strike Chance with Staves", + "+20% to Critical Strike Multiplier with Staves", + "Knocks Back Enemies if you get a Critical Strike with a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Knockback pushes Enemies away when Hit)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "48349" + }, + ["in"]= { + "53945", + "15716" + } + }, + [48349]= { + ["skill"]= 48349, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 176, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64395", + "56094" + } + }, + [34327]= { + ["skill"]= 34327, + ["name"]= "Staff Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffaccuracy.png", + ["stats"]= { + "14% increased Accuracy Rating with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "53945" + }, + ["in"]= { + "56094" + } + }, + [53945]= { + ["skill"]= 53945, + ["name"]= "Staff Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffaccuracy.png", + ["stats"]= { + "14% increased Accuracy Rating with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "64395" + }, + ["in"]= { + "34327" + } + }, + [45486]= { + ["skill"]= 45486, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "20% increased Critical Strike Chance with Staves", + "+12% to Critical Strike Multiplier with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "15716" + }, + ["in"]= { + "7444" + } + }, + [15716]= { + ["skill"]= 15716, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "20% increased Critical Strike Chance with Staves", + "+12% to Critical Strike Multiplier with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "64395" + }, + ["in"]= { + "45486" + } + }, + [22728]= { + ["skill"]= 22728, + ["name"]= "Staff Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "10% increased Elemental Damage with Staves", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "56094" + }, + ["in"]= { + "46672" + } + }, + [46672]= { + ["skill"]= 46672, + ["name"]= "Staff Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "10% increased Elemental Damage with Staves", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "22728" + }, + ["in"]= { + "7444" + } + }, + [56094]= { + ["skill"]= 56094, + ["name"]= "One with the River", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Elemental Damage with Staves", + "Damage with Weapons Penetrates 5% Elemental Resistances" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "34327", + "48349" + }, + ["in"]= { + "22728" + } + }, + [7444]= { + ["skill"]= 7444, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 177, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "64210", + "45486", + "46672", + "63425" + }, + ["in"]= { + "4713", + "63398", + "48713", + "36678" + } + }, + [29199]= { + ["skill"]= 29199, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 178, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "15064" + }, + ["in"]= { + "37999", + "10575" + } + }, + [7374]= { + ["skill"]= 7374, + ["name"]= "Life and Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "44967" + }, + ["in"]= { + "11088" + } + }, + [3533]= { + ["skill"]= 3533, + ["name"]= "Life and Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11088" + }, + ["in"]= { + "65108" + } + }, + [11088]= { + ["skill"]= 11088, + ["name"]= "Life and Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "7374" + }, + ["in"]= { + "3533" + } + }, + [65108]= { + ["skill"]= 65108, + ["name"]= "Tireless", + ["icon"]= "Art/2DArt/SkillIcons/passives/Unrelenting.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "10% increased maximum Life", + "10% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "3533", + "48505" + }, + ["in"]= {} + }, + [48505]= { + ["skill"]= 48505, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 179, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65108" + } + }, + [63422]= { + ["skill"]= 63422, + ["name"]= "Lust for Carnage", + ["icon"]= "Art/2DArt/SkillIcons/passives/LustforCarnage.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "12% increased Attack Speed", + "1.5% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 180, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "28862" + }, + ["in"]= { + "28311" + } + }, + [28311]= { + ["skill"]= 28311, + ["name"]= "Life Leech Speed and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["stats"]= { + "3% increased Attack Speed", + "40% increased total Recovery per second from Life Leech" + }, + ["group"]= 180, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63422" + }, + ["in"]= { + "62108" + } + }, + [62108]= { + ["skill"]= 62108, + ["name"]= "Life Leech and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["stats"]= { + "3% increased Attack Speed", + "0.4% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 180, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "28311", + "40653" + }, + ["in"]= {} + }, + [28862]= { + ["skill"]= 28862, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 180, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63422" + } + }, + [40114]= { + ["skill"]= 40114, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 181, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "12613" + }, + ["in"]= {} + }, + [7528]= { + ["skill"]= 7528, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 182, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50842" + } + }, + [20913]= { + ["skill"]= 20913, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "39437", + "9361" + }, + ["in"]= { + "3644" + } + }, + [9361]= { + ["skill"]= 9361, + ["name"]= "Maximum Rage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "+3 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "40189" + }, + ["in"]= { + "20913" + } + }, + [40189]= { + ["skill"]= 40189, + ["name"]= "Maximum Rage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "+3 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "50842" + }, + ["in"]= { + "9361" + } + }, + [39437]= { + ["skill"]= 39437, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "223" + }, + ["in"]= { + "20913" + } + }, + [223]= { + ["skill"]= 223, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50842" + }, + ["in"]= { + "39437" + } + }, + [50842]= { + ["skill"]= 50842, + ["name"]= "Veteran's Wrath", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "Gain 2 Rage on Melee Hit", + "Inherent Rage Loss starts 1 second later" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "7528" + }, + ["in"]= { + "40189", + "223" + } + }, + [494]= { + ["skill"]= 494, + ["name"]= "Retaliation Skill Damage and Shield Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode3.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "Retaliation Skills deal 12% increased Damage" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "63306", + "59976" + } + }, + [63306]= { + ["skill"]= 63306, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 16% increased Damage" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "494" + }, + ["in"]= { + "62879", + "15631" + } + }, + [62879]= { + ["skill"]= 62879, + ["name"]= "Retaliation Skill Speed and Shield Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode3.png", + ["stats"]= { + "+3% chance to Block Spell Damage while holding a Shield", + "Retaliation Skills have 6% increased Speed" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63306", + "59976" + }, + ["in"]= {} + }, + [59976]= { + ["skill"]= 59976, + ["name"]= "Careful Counterattack", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "AmberOil" + }, + ["stats"]= { + "10% chance to Block Attack Damage if you've used a Retaliation Skill Recently", + "10% chance to Block Spell Damage if you've used a Retaliation Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "494", + "55017" + }, + ["in"]= { + "62879" + } + }, + [55017]= { + ["skill"]= 55017, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 183, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59976" + } + }, + [44941]= { + ["skill"]= 44941, + ["name"]= "Avatar of Fire", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png", + ["isKeystone"]= true, + ["stats"]= { + "50% of Physical, Cold and Lightning Damage Converted to Fire Damage\nDeal no Non-Fire Damage" + }, + ["flavourText"]= { + "\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"" + }, + ["group"]= 184, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10221" + }, + ["in"]= {} + }, + [39713]= { + ["skill"]= 39713, + ["name"]= "Glancing Blows", + ["icon"]= "Art/2DArt/SkillIcons/passives/GlancingBlows.png", + ["isKeystone"]= true, + ["stats"]= { + "Chance to Block Attack Damage is doubled\nChance to Block Spell Damage is doubled\nYou take 65% of Damage from Blocked Hits" + }, + ["flavourText"]= { + "Utter trust in your defence unleashes ultimate potential." + }, + ["group"]= 185, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "15631" + }, + ["in"]= {} + }, + [46842]= { + ["skill"]= 46842, + ["name"]= "Arcane Potency", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcanepotency.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Spell Critical Strike Chance", + "+30% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 186, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "36452", + "16123" + }, + ["in"]= {} + }, + [16123]= { + ["skill"]= 16123, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 186, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46842" + } + }, + [63398]= { + ["skill"]= 63398, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 186, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "7444" + }, + ["in"]= { + "36452" + } + }, + [36452]= { + ["skill"]= 36452, + ["name"]= "Spell Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + ["stats"]= { + "+10% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 186, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63398" + }, + ["in"]= { + "46842" + } + }, + [42343]= { + ["skill"]= 42343, + ["name"]= "Runebinder", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "-1 to maximum number of Summoned Totems\nYou can have an additional Brand Attached to an Enemy" + }, + ["flavourText"]= { + "An arcane pattern, secrets bound. Blind truth splinters with lies abound." + }, + ["group"]= 187, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58402" + } + }, + [28284]= { + ["skill"]= 28284, + ["name"]= "Attributes Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 5356, + ["stats"]= { + "5% increased Attributes" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 41483, + ["stats"]= { + "1% increased Damage per 5 of your lowest Attribute" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 26621, + ["stats"]= { + "+5 to Strength per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 52604, + ["stats"]= { + "+5 to Intelligence per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 15826, + ["stats"]= { + "+5 to Dexterity per Allocated Mastery Passive Skill" + } + } + }, + ["stats"]= {}, + ["group"]= 188, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49772" + } + }, + [25531]= { + ["skill"]= 25531, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 15, + ["stats"]= { + "+15 to Strength" + }, + ["group"]= 188, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "3644" + }, + ["in"]= { + "19884" + } + }, + [19884]= { + ["skill"]= 19884, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 15, + ["stats"]= { + "+15 to Strength" + }, + ["group"]= 188, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "25531" + }, + ["in"]= { + "49772" + } + }, + [49772]= { + ["skill"]= 49772, + ["name"]= "Utmost Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "CrimsonOil" + }, + ["grantedStrength"]= 40, + ["stats"]= { + "+40 to Strength", + "8% increased Strength" + }, + ["group"]= 188, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "19884", + "28284" + }, + ["in"]= {} + }, + [38921]= { + ["skill"]= 38921, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 189, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6967" + } + }, + [19919]= { + ["skill"]= 19919, + ["name"]= "Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+3% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "55743", + "62767", + "6764" + }, + ["in"]= {} + }, + [62767]= { + ["skill"]= 62767, + ["name"]= "Spell Block and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "+3% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "63138" + }, + ["in"]= { + "19919" + } + }, + [63138]= { + ["skill"]= 63138, + ["name"]= "Spell Block and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "+3% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6967" + }, + ["in"]= { + "62767" + } + }, + [55743]= { + ["skill"]= 55743, + ["name"]= "Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "6967" + }, + ["in"]= { + "19919" + } + }, + [6967]= { + ["skill"]= 6967, + ["name"]= "Safeguard", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "+3% to maximum Chance to Block Spell Damage", + "Recover 50 Energy Shield when you Block Spell Damage", + "+10% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "38921" + }, + ["in"]= { + "63138", + "55743" + } + }, + [58355]= { + ["skill"]= 58355, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 190, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "46519" + }, + ["in"]= { + "61666" + } + }, + [61666]= { + ["skill"]= 61666, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "35070", + ["parent"]= "46519" + }, + ["stats"]= {}, + ["group"]= 190, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58355" + }, + ["in"]= { + "35070" + } + }, + [23090]= { + ["skill"]= 23090, + ["name"]= "Call to Arms", + ["icon"]= "Art/2DArt/SkillIcons/passives/CallToArms.png", + ["isKeystone"]= true, + ["stats"]= { + "Your Warcries do not grant Buffs or Charges to You\n100% more Warcry Duration" + }, + ["flavourText"]= { + "Follow me, and I will show you strength!" + }, + ["group"]= 191, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14930" + } + }, + [31931]= { + ["skill"]= 31931, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 192, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "15064", + "15631" + }, + ["in"]= { + "62303", + "44908" + } + }, + [15064]= { + ["skill"]= 15064, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 192, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "10031", + "29199", + "31931", + "12536" + } + }, + [15631]= { + ["skill"]= 15631, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 193, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "64426", + "44967", + "41599", + "63306" + }, + ["in"]= { + "39713", + "31931" + } + }, + [50422]= { + ["skill"]= 50422, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 194, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "50197", + "10221", + "50862" + }, + ["in"]= { + "50570", + "27195", + "44967", + "32245" + } + }, + [44967]= { + ["skill"]= 44967, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 195, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50422" + }, + ["in"]= { + "7374", + "15631" + } + }, + [10221]= { + ["skill"]= 10221, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 196, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6446", + "24155", + "25168" + }, + ["in"]= { + "44941", + "50422", + "54396" + } + }, + [6446]= { + ["skill"]= 6446, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 197, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "55649" + }, + ["in"]= { + "27166", + "10221", + "26523" + } + }, + [55649]= { + ["skill"]= 55649, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 197, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "44429", + "45163", + "22285", + "6446", + "34130" + } + }, + [53793]= { + ["skill"]= 53793, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 198, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "40653", + "63027" + }, + ["in"]= { + "62017", + "12247", + "22285", + "37884" + } + }, + [40653]= { + ["skill"]= 40653, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 198, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "42800", + "9052" + }, + ["in"]= { + "62108", + "53793", + "33098", + "49412" + } + }, + [38119]= { + ["skill"]= 38119, + ["name"]= "Block and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "12% increased Armour" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "32738" + }, + ["in"]= { + "9052" + } + }, + [48284]= { + ["skill"]= 48284, + ["name"]= "Block and Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "30% increased Block Recovery" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "32738" + }, + ["in"]= { + "9052" + } + }, + [9052]= { + ["skill"]= 9052, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "38119", + "48284" + }, + ["in"]= { + "40653" + } + }, + [32738]= { + ["skill"]= 32738, + ["name"]= "Wall of Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "+300 Armour if you've Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "5368" + }, + ["in"]= { + "38119", + "48284" + } + }, + [5368]= { + ["skill"]= 5368, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 199, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32738" + } + }, + [10575]= { + ["skill"]= 10575, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 200, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "40508", + "29199" + }, + ["in"]= { + "58402", + "21262" + } + }, + [58402]= { + ["skill"]= 58402, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 200, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "10575", + "6764", + "59728", + "40776", + "42343" + }, + ["in"]= { + "17735" + } + }, + [27475]= { + ["skill"]= 27475, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 201, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "51198" + }, + ["in"]= {} + }, + [55706]= { + ["skill"]= 55706, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 202, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "12613", + "29712" + }, + ["in"]= {} + }, + [12613]= { + ["skill"]= 12613, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "40114", + ["parent"]= "29712" + }, + ["stats"]= {}, + ["group"]= 202, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "40114", + "55706" + } + }, + [40291]= { + ["skill"]= 40291, + ["name"]= "Fire Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "8% increased Fire Damage", + "8% increased Area of Effect" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "24324" + }, + ["in"]= { + "885" + } + }, + [885]= { + ["skill"]= 885, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "12% increased Fire Damage" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40291" + }, + ["in"]= { + "37163", + "40366" + } + }, + [37163]= { + ["skill"]= 37163, + ["name"]= "Fire Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "8% increased Fire Damage", + "3% increased Cast Speed" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24324", + "885" + }, + ["in"]= {} + }, + [24324]= { + ["skill"]= 24324, + ["name"]= "Explosive Impact", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Fire Damage", + "12% increased Area of Effect" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63268" + }, + ["in"]= { + "40291", + "37163" + } + }, + [63268]= { + ["skill"]= 63268, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 203, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24324" + } + }, + [59728]= { + ["skill"]= 59728, + ["name"]= "Area of Effect Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/areaofeffect.png", + ["stats"]= { + "10% increased Area Damage" + }, + ["group"]= 204, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "61308" + }, + ["in"]= { + "58402" + } + }, + [62303]= { + ["skill"]= 62303, + ["name"]= "Mana and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "8% increased maximum Mana", + "6% increased Mana Cost Efficiency" + }, + ["group"]= 205, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31931" + }, + ["in"]= { + "38516" + } + }, + [43822]= { + ["skill"]= 43822, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "12% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 12% increased Damage with Ailments", + "10% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35992", + "2411", + "14930" + }, + ["in"]= {} + }, + [2411]= { + ["skill"]= 2411, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "10% chance to double Stun Duration" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "5126" + }, + ["in"]= { + "43822" + } + }, + [35992]= { + ["skill"]= 35992, + ["name"]= "Mace Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "10% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5126" + }, + ["in"]= { + "43822" + } + }, + [5126]= { + ["skill"]= 5126, + ["name"]= "Spinecruncher", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunmace.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 30% increased Damage with Ailments", + "100% increased Stun Duration against Enemies that are on Full Life" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "27931" + }, + ["in"]= { + "2411", + "35992" + } + }, + [27931]= { + ["skill"]= 27931, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 206, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5126" + } + }, + [14930]= { + ["skill"]= 14930, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 207, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23090", + "40818", + "44916" + }, + ["in"]= { + "3644", + "53987", + "43822", + "25781", + "48287", + "34400" + } + }, + [40818]= { + ["skill"]= 40818, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12664" + }, + ["in"]= { + "14930", + "41068" + } + }, + [12664]= { + ["skill"]= 12664, + ["name"]= "Faster Bleeding", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Bleeding you inflict deals Damage 5% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "31473" + }, + ["in"]= { + "40818" + } + }, + [41068]= { + ["skill"]= 41068, + ["name"]= "Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% increased Bleeding Duration" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "40818" + }, + ["in"]= { + "45565" + } + }, + [45565]= { + ["skill"]= 45565, + ["name"]= "Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% increased Bleeding Duration" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41068" + }, + ["in"]= { + "31473" + } + }, + [31473]= { + ["skill"]= 31473, + ["name"]= "Master of Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedingNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "+12% to Damage over Time Multiplier for Bleeding", + "30% reduced Bleed Duration on you" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "22295", + "45565" + }, + ["in"]= { + "12664" + } + }, + [22295]= { + ["skill"]= 22295, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 208, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31473" + } + }, + [14505]= { + ["skill"]= 14505, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 209, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35685" + } + }, + [48713]= { + ["skill"]= 48713, + ["name"]= "Minion Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have 20% increased Critical Strike Chance" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "7898", + "7444", + "35791" + }, + ["in"]= {} + }, + [7898]= { + ["skill"]= 7898, + ["name"]= "Minion Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have 25% increased Critical Strike Chance" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35685" + }, + ["in"]= { + "48713" + } + }, + [35685]= { + ["skill"]= 35685, + ["name"]= "Fearsome Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "Minions have 60% increased Critical Strike Chance", + "Minions have +20% to Critical Strike Multiplier" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "14505" + }, + ["in"]= { + "7898", + "1722" + } + }, + [35791]= { + ["skill"]= 35791, + ["name"]= "Minion Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have +20% to Critical Strike Multiplier" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "1722" + }, + ["in"]= { + "48713" + } + }, + [1722]= { + ["skill"]= 1722, + ["name"]= "Minion Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have +20% to Critical Strike Multiplier" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "35685" + }, + ["in"]= { + "35791" + } + }, + [18361]= { + ["skill"]= 18361, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 210, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "16218" + }, + ["in"]= {} + }, + [32245]= { + ["skill"]= 32245, + ["name"]= "Expertise", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 211, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50422" + }, + ["in"]= {} + }, + [50197]= { + ["skill"]= 50197, + ["name"]= "Ancestral Knowledge", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 212, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50422" + } + }, + [34130]= { + ["skill"]= 34130, + ["name"]= "Melee Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/meleeattackspeed.png", + ["stats"]= { + "4% increased Melee Attack Speed" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "60169", + "55649" + }, + ["in"]= { + "39786", + "64077" + } + }, + [14606]= { + ["skill"]= 14606, + ["name"]= "Butchery", + ["icon"]= "Art/2DArt/SkillIcons/passives/butchery.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "CrimsonOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "25% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments", + "5% increased Attack Speed with Two Handed Melee Weapons", + "+20 to Strength" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "2454" + }, + ["in"]= { + "60169" + } + }, + [10282]= { + ["skill"]= 10282, + ["name"]= "One Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehanddamage.png", + ["stats"]= { + "16% increased Physical Damage with One Handed Melee Weapons", + "Attacks with One Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "35663" + }, + ["in"]= { + "64077", + "38777" + } + }, + [39786]= { + ["skill"]= 39786, + ["name"]= "One Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehanddamage.png", + ["stats"]= { + "16% increased Physical Damage with One Handed Melee Weapons", + "Attacks with One Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "34130" + }, + ["in"]= { + "35663" + } + }, + [35663]= { + ["skill"]= 35663, + ["name"]= "Strong Arm", + ["icon"]= "Art/2DArt/SkillIcons/passives/strongarm.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "OpalescentOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "25% increased Physical Damage with One Handed Melee Weapons", + "Attacks with One Handed Melee Weapons deal 25% increased Damage with Ailments", + "5% increased Attack Speed with One Handed Melee Weapons", + "+20 to Strength" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "39786" + }, + ["in"]= { + "10282" + } + }, + [64077]= { + ["skill"]= 64077, + ["name"]= "Warrior Training", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeUtility.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "+0.2 metres to Melee Strike Range", + "Melee Skills have 12% increased Area of Effect" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 213, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10282", + "2454", + "34130" + }, + ["in"]= {} + }, + [60169]= { + ["skill"]= 60169, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "16% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "14606" + }, + ["in"]= { + "34130" + } + }, + [2454]= { + ["skill"]= 2454, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "16% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "38777" + }, + ["in"]= { + "14606", + "64077" + } + }, + [38777]= { + ["skill"]= 38777, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "Attacks with Melee Weapons deal 12% increased Damage with Ailments", + "12% increased Melee Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "10282", + "58449" + }, + ["in"]= { + "2454" + } + }, + [6718]= { + ["skill"]= 6718, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% to all Elemental Resistances" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "59861", + "24383", + "61868", + "65308" + }, + ["in"]= {} + }, + [31928]= { + ["skill"]= 31928, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "14% increased Armour" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "10542", + "37884" + }, + ["in"]= { + "65308" + } + }, + [61868]= { + ["skill"]= 61868, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "14% increased Armour" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "10542" + }, + ["in"]= { + "6718" + } + }, + [10542]= { + ["skill"]= 10542, + ["name"]= "Spiked Bulwark", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpikedBulwark.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "TealOil" + }, + ["stats"]= { + "28% increased Armour", + "Reflects 50 Physical Damage to Melee Attackers" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31928", + "61868" + } + }, + [31033]= { + ["skill"]= 31033, + ["name"]= "Robust", + ["icon"]= "Art/2DArt/SkillIcons/passives/Robust.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "TealOil" + }, + ["stats"]= { + "Regenerate 10 Life per second", + "Regenerate 1.2% of Life per second" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "59861", + "32482" + }, + ["in"]= {} + }, + [37884]= { + ["skill"]= 37884, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% to all Elemental Resistances" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "53793" + }, + ["in"]= { + "31928", + "32482" + } + }, + [32482]= { + ["skill"]= 32482, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "37884" + }, + ["in"]= { + "31033", + "65308" + } + }, + [59861]= { + ["skill"]= 59861, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "6718", + "31033" + } + }, + [65308]= { + ["skill"]= 65308, + ["name"]= "Diamond Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/DiamondSkin2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "+15% to all Elemental Resistances" + }, + ["group"]= 214, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31928", + "32482" + }, + ["in"]= { + "6718" + } + }, + [64166]= { + ["skill"]= 64166, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 215, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "23756" + }, + ["in"]= { + "51198" + } + }, + [51198]= { + ["skill"]= 51198, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "27475", + ["parent"]= "23756" + }, + ["stats"]= {}, + ["group"]= 215, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64166" + }, + ["in"]= { + "27475" + } + }, + [6968]= { + ["skill"]= 6968, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 216, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36859" + } + }, + [49698]= { + ["skill"]= 49698, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "36859" + }, + ["in"]= { + "55926" + } + }, + [41599]= { + ["skill"]= 41599, + ["name"]= "Staff Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 10% increased Damage with Hits and Ailments", + "+2% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "55926" + }, + ["in"]= { + "15631", + "1761" + } + }, + [55926]= { + ["skill"]= 55926, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "49698" + }, + ["in"]= { + "41599" + } + }, + [1761]= { + ["skill"]= 1761, + ["name"]= "Staff Damage and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 15% increased Damage with Hits and Ailments", + "15% increased Armour" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41599", + "36859" + }, + ["in"]= {} + }, + [36859]= { + ["skill"]= 36859, + ["name"]= "Steelwood Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "Staff Attacks deal 30% increased Damage with Hits and Ailments", + "+800 Armour if you've Blocked Recently", + "+10% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "6968" + }, + ["in"]= { + "49698", + "1761" + } + }, + [25535]= { + ["skill"]= 25535, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 217, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20832" + } + }, + [64426]= { + ["skill"]= 64426, + ["name"]= "Elemental Resistances with a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% Elemental Resistances while holding a Shield" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "1593", + "62214" + }, + ["in"]= { + "15631" + } + }, + [62214]= { + ["skill"]= 62214, + ["name"]= "Shield Spell Block and Elemental Resistances with a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while holding a Shield", + "+3% Elemental Resistances while holding a Shield" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "64426", + "20832" + } + }, + [1593]= { + ["skill"]= 1593, + ["name"]= "Shield Block and Elemental Resistances with a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "+3% Elemental Resistances while holding a Shield" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "20832" + }, + ["in"]= { + "64426" + } + }, + [20832]= { + ["skill"]= 20832, + ["name"]= "Sanctuary", + ["icon"]= "Art/2DArt/SkillIcons/passives/Sanctuary.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "+4% Chance to Block Attack Damage while holding a Shield", + "+4% Chance to Block Spell Damage while holding a Shield", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "62214", + "25535" + }, + ["in"]= { + "1593" + } + }, + [30693]= { + ["skill"]= 30693, + ["name"]= "Divine Fervour", + ["icon"]= "Art/2DArt/SkillIcons/passives/catalyse.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "IndigoOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Attack Damage", + "30% increased Melee Critical Strike Chance", + "+10 to Strength and Intelligence" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "12536" + }, + ["in"]= { + "58453" + } + }, + [33435]= { + ["skill"]= 33435, + ["name"]= "Holy Dominion", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementalist.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "+12% to all Elemental Resistances", + "24% increased Elemental Damage", + "10% chance to Freeze, Shock and Ignite" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 218, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12536", + "21262" + }, + ["in"]= { + "44799", + "58453" + } + }, + [44799]= { + ["skill"]= 44799, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "54694", + "40927", + "33435" + }, + ["in"]= { + "41472" + } + }, + [58453]= { + ["skill"]= 58453, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "30693", + "46726", + "33435" + }, + ["in"]= { + "41472" + } + }, + [21262]= { + ["skill"]= 21262, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "54694", + "10575" + }, + ["in"]= { + "33435" + } + }, + [12536]= { + ["skill"]= 12536, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "15064" + }, + ["in"]= { + "30693", + "33435" + } + }, + [54694]= { + ["skill"]= 54694, + ["name"]= "Light of Divinity", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightOfDivinity.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "CrimsonOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Spell Damage", + "30% increased Spell Critical Strike Chance", + "+10 to Strength and Intelligence", + "10% increased Light Radius" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44799", + "21262" + } + }, + [2550]= { + ["skill"]= 2550, + ["name"]= "Arsonist", + ["icon"]= "Art/2DArt/SkillIcons/passives/arsonist.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "+10% to Fire Damage over Time Multiplier", + "Regenerate 1.2% of Life per second" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "54396", + "48267" + }, + ["in"]= { + "1550" + } + }, + [54396]= { + ["skill"]= 54396, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "+4% to Fire Damage over Time Multiplier" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "10221" + }, + ["in"]= { + "2550" + } + }, + [1550]= { + ["skill"]= 1550, + ["name"]= "Fire Damage and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "12% increased Fire Damage", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2550", + "5430" + }, + ["in"]= {} + }, + [48267]= { + ["skill"]= 48267, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 219, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2550", + "5430" + } + }, + [25168]= { + ["skill"]= 25168, + ["name"]= "Physical Damage as Extra Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeFireNode.png", + ["stats"]= { + "Gain 4% of Physical Damage as Extra Fire Damage" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5430" + }, + ["in"]= { + "10221" + } + }, + [5430]= { + ["skill"]= 5430, + ["name"]= "Magmatic Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeFireNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Every 10 seconds, gain 30% of Physical Damage\nas Extra Fire Damage for 4 seconds" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "48267" + }, + ["in"]= { + "1550", + "25168" + } + }, + [50225]= { + ["skill"]= 50225, + ["name"]= "Mace Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "55772" + }, + ["in"]= { + "24155" + } + }, + [24155]= { + ["skill"]= 24155, + ["name"]= "Mace Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "20% increased Critical Strike Chance with Maces or Sceptres" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50225", + "15086" + }, + ["in"]= { + "10221" + } + }, + [15086]= { + ["skill"]= 15086, + ["name"]= "Mace Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "10% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 10% increased Damage with Ailments", + "20% increased Critical Strike Chance with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "55772" + }, + ["in"]= { + "24155" + } + }, + [55772]= { + ["skill"]= 55772, + ["name"]= "Blacksmith's Clout", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "35% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 35% increased Damage with Ailments", + "+35% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "59013" + }, + ["in"]= { + "50225", + "15086" + } + }, + [59013]= { + ["skill"]= 59013, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 220, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55772" + } + }, + [25313]= { + ["skill"]= 25313, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 221, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55381" + } + }, + [63558]= { + ["skill"]= 63558, + ["name"]= "Spell Damage and Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage", + "10% increased Stun and Block Recovery" + }, + ["group"]= 221, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "55381" + }, + ["in"]= { + "18239" + } + }, + [18239]= { + ["skill"]= 18239, + ["name"]= "Spell Damage and Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage", + "10% increased Stun and Block Recovery" + }, + ["group"]= 221, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "63558" + }, + ["in"]= { + "40366" + } + }, + [55381]= { + ["skill"]= 55381, + ["name"]= "Arcane Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "25% more Spell Damage if you've been Stunned while Casting Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 221, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "25313" + }, + ["in"]= { + "63558" + } + }, + [33098]= { + ["skill"]= 33098, + ["name"]= "Ignite and Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteBleedNode.png", + ["stats"]= { + "25% increased Ignite Duration on Enemies", + "25% increased Bleeding Duration" + }, + ["group"]= 222, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "40653" + }, + ["in"]= { + "49652" + } + }, + [49652]= { + ["skill"]= 49652, + ["name"]= "Ignite and Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteBleedNode.png", + ["stats"]= { + "25% increased Ignite Duration on Enemies", + "25% increased Bleeding Duration" + }, + ["group"]= 222, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "33098" + }, + ["in"]= { + "49645" + } + }, + [49645]= { + ["skill"]= 49645, + ["name"]= "Cauterisation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "IndigoOil" + }, + ["stats"]= { + "Bleeding enemies cannot inflict Bleeding on you", + "Ignited enemies cannot Ignite you" + }, + ["group"]= 222, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "22067", + "49652" + }, + ["in"]= {} + }, + [22067]= { + ["skill"]= 22067, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 222, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49645" + } + }, + [16756]= { + ["skill"]= 16756, + ["name"]= "Axe Damage and Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "14% increased Physical Damage with Axes", + "Axe Attacks deal 14% increased Damage with Ailments", + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 223, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "7440" + }, + ["in"]= { + "30251" + } + }, + [30251]= { + ["skill"]= 30251, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "14% increased Physical Damage with Axes", + "Axe Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 223, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "16756", + "42800" + }, + ["in"]= {} + }, + [58540]= { + ["skill"]= 58540, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 223, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7440" + } + }, + [7440]= { + ["skill"]= 7440, + ["name"]= "Harvester of Foes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "IndigoOil" + }, + ["stats"]= { + "30% increased Physical Damage with Axes", + "Axe Attacks deal 30% increased Damage with Ailments", + "12% increased Impale Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 223, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58540" + }, + ["in"]= { + "16756" + } + }, + [26661]= { + ["skill"]= 26661, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 224, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "16218", + "48679" + }, + ["in"]= {} + }, + [16218]= { + ["skill"]= 16218, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "18361", + ["parent"]= "48679" + }, + ["stats"]= {}, + ["group"]= 224, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "18361", + "26661" + } + }, + [32376]= { + ["skill"]= 32376, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 16% increased Damage" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "34400", + "47902", + "64257" + }, + ["in"]= {} + }, + [64257]= { + ["skill"]= 64257, + ["name"]= "Retaliation Skill Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills have 8% increased Speed" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "32376", + "38462" + } + }, + [47902]= { + ["skill"]= 47902, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 20% increased Damage" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "15491" + }, + ["in"]= { + "32376" + } + }, + [38462]= { + ["skill"]= 38462, + ["name"]= "Retaliation Skill Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills have 8% increased Speed" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "64257" + }, + ["in"]= { + "15226" + } + }, + [62109]= { + ["skill"]= 62109, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 15% increased Cooldown Recovery Rate" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "42495" + }, + ["in"]= { + "15226" + } + }, + [15491]= { + ["skill"]= 15491, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 20% increased Damage" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "56330" + }, + ["in"]= { + "47902" + } + }, + [42495]= { + ["skill"]= 42495, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 15% increased Cooldown Recovery Rate" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "56330" + }, + ["in"]= { + "62109" + } + }, + [56330]= { + ["skill"]= 56330, + ["name"]= "Flow of Battle", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "AmberOil" + }, + ["stats"]= { + "Retaliation Skills deal 30% increased Damage", + "Gain 5 Rage on Hit with Retaliation Skills" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "41744" + }, + ["in"]= { + "15491", + "42495" + } + }, + [15226]= { + ["skill"]= 15226, + ["name"]= "Cruel Retort", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "SepiaOil" + }, + ["stats"]= { + "Every fourth Retaliation Skill you use always Critically Strikes", + "Retaliation Skills have 20% increased Speed" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "41744", + "38462", + "62109" + }, + ["in"]= {} + }, + [41744]= { + ["skill"]= 41744, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 225, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56330", + "15226" + } + }, + [10532]= { + ["skill"]= 10532, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "37898", + ["parent"]= "2491" + }, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "28650", + "37898" + }, + ["in"]= { + "23756" + } + }, + [23756]= { + ["skill"]= 23756, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "64166", + ["parent"]= "2491" + }, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "10532", + "46519" + }, + ["in"]= { + "64166" + } + }, + [46519]= { + ["skill"]= 46519, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "58355", + ["parent"]= "2491" + }, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "28650" + }, + ["in"]= { + "58355", + "23756" + } + }, + [28650]= { + ["skill"]= 28650, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "2491" + }, + ["in"]= { + "10532", + "46519" + } + }, + [57404]= { + ["skill"]= 57404, + ["name"]= "Link Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 5% increased Buff Effect" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "3089" + }, + ["in"]= { + "36678" + } + }, + [3089]= { + ["skill"]= 3089, + ["name"]= "Link Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 5% increased Buff Effect" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "60145" + }, + ["in"]= { + "57404" + } + }, + [60145]= { + ["skill"]= 60145, + ["name"]= "Link Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 5% increased Buff Effect" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "28034" + }, + ["in"]= { + "3089" + } + }, + [28034]= { + ["skill"]= 28034, + ["name"]= "Empowered Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/LinkNotable4.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "+2 to Level of all Link Skill Gems" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9213" + }, + ["in"]= { + "60145" + } + }, + [9213]= { + ["skill"]= 9213, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 227, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "28034" + } + }, + [37698]= { + ["skill"]= 37698, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 228, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45657" + } + }, + [44465]= { + ["skill"]= 44465, + ["name"]= "Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun and Block Recovery" + }, + ["group"]= 228, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "29472" + }, + ["in"]= { + "6764" + } + }, + [29472]= { + ["skill"]= 29472, + ["name"]= "Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun and Block Recovery" + }, + ["group"]= 228, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45657" + }, + ["in"]= { + "44465" + } + }, + [45657]= { + ["skill"]= 45657, + ["name"]= "Trial of the Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/AntiStunNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "50% increased Stun and Block Recovery", + "Regenerate 5% of Energy Shield over 1 second when Stunned", + "Regenerate 5% of Life over 1 second when Stunned" + }, + ["group"]= 228, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "37698" + }, + ["in"]= { + "29472" + } + }, + [53677]= { + ["skill"]= 53677, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "43689" + }, + ["in"]= { + "9505" + } + }, + [24824]= { + ["skill"]= 24824, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "9505", + "6764", + "42668" + }, + ["in"]= {} + }, + [9505]= { + ["skill"]= 9505, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53677" + }, + ["in"]= { + "24824" + } + }, + [54849]= { + ["skill"]= 54849, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 229, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "43689" + } + }, + [42668]= { + ["skill"]= 42668, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10904" + }, + ["in"]= { + "24824", + "43689" + } + }, + [43689]= { + ["skill"]= 43689, + ["name"]= "Spiritual Command", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualCommand.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "GoldenOil" + }, + ["stats"]= { + "Minions have 8% increased Attack Speed", + "Minions have 8% increased Cast Speed", + "Increases and Reductions to Minion Attack Speed also affect you" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "42668", + "54849" + }, + ["in"]= { + "53677" + } + }, + [61308]= { + ["skill"]= 61308, + ["name"]= "Amplify", + ["icon"]= "Art/2DArt/SkillIcons/passives/amplify.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "10% increased Area of Effect", + "20% increased Area Damage" + }, + ["group"]= 230, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "59728", + "40927", + "15365" + } + }, + [40927]= { + ["skill"]= 40927, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 230, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "61308", + "15365" + }, + ["in"]= { + "44799" + } + }, + [15365]= { + ["skill"]= 15365, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 230, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "61308", + "49254" + }, + ["in"]= { + "40927" + } + }, + [46726]= { + ["skill"]= 46726, + ["name"]= "Mana and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "6% increased maximum Mana", + "6% increased Mana Cost Efficiency" + }, + ["group"]= 231, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "58453", + "38516", + "31819" + } + }, + [38516]= { + ["skill"]= 38516, + ["name"]= "Righteous Decree", + ["icon"]= "Art/2DArt/SkillIcons/passives/Righteous Decree.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "TealOil" + }, + ["stats"]= { + "22% increased maximum Mana", + "12% increased Mana Cost Efficiency" + }, + ["group"]= 231, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "31819", + "46726", + "62303" + }, + ["in"]= {} + }, + [31819]= { + ["skill"]= 31819, + ["name"]= "Mana and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "6% increased maximum Mana", + "6% increased Mana Cost Efficiency" + }, + ["group"]= 231, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26866", + "46726" + }, + ["in"]= { + "38516" + } + }, + [14767]= { + ["skill"]= 14767, + ["name"]= "Fortification Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "40% increased Fortification Duration" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "62530" + }, + ["in"]= { + "25781" + } + }, + [62530]= { + ["skill"]= 62530, + ["name"]= "Fortification Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "40% increased Fortification Duration" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "13922" + }, + ["in"]= { + "14767" + } + }, + [65112]= { + ["skill"]= 65112, + ["name"]= "Maximum Fortification", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "+1 to maximum Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13922" + }, + ["in"]= { + "14384" + } + }, + [14384]= { + ["skill"]= 14384, + ["name"]= "Maximum Fortification", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "+1 to maximum Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "65112" + }, + ["in"]= { + "25781" + } + }, + [25781]= { + ["skill"]= 25781, + ["name"]= "Maximum Fortification", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "+1 to maximum Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "14384", + "14767", + "14930" + }, + ["in"]= {} + }, + [13922]= { + ["skill"]= 13922, + ["name"]= "Steadfast", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+3 to maximum Fortification", + "Regenerate 0.1% of Life per second per Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59335" + }, + ["in"]= { + "62530", + "65112" + } + }, + [59335]= { + ["skill"]= 59335, + ["name"]= "Fortify Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37925, + ["stats"]= { + "Recover 100 Life for each Fortification lost" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification)" + } + }, + { + ["effect"]= 51153, + ["stats"]= { + "Gain 20 Fortification on Melee Kill against a Rare or Unique Enemy" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 27173, + ["stats"]= { + "2% reduced Duration of Ailments inflicted on you per Fortification" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 4710, + ["stats"]= { + "4% increased Stun and Block Recovery per Fortification" + } + }, + { + ["effect"]= 28469, + ["stats"]= { + "Melee Hits Fortify", + "-3 to maximum Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 23472, + ["stats"]= { + "10% reduced Damage over Time Taken while you have at least 20 Fortification" + } + } + }, + ["stats"]= {}, + ["group"]= 232, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13922" + } + }, + [34359]= { + ["skill"]= 34359, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 233, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "62802" + }, + ["in"]= { + "44916" + } + }, + [44916]= { + ["skill"]= 44916, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 233, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "34359" + }, + ["in"]= { + "14930" + } + }, + [62802]= { + ["skill"]= 62802, + ["name"]= "Brink of Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "Regenerate 4% of Life per second while on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + }, + ["group"]= 233, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "61529" + }, + ["in"]= { + "34359" + } + }, + [61529]= { + ["skill"]= 61529, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 233, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62802" + } + }, + [62023]= { + ["skill"]= 62023, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 234, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38922" + } + }, + [57923]= { + ["skill"]= 57923, + ["name"]= "Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "25% increased Stun Duration on Enemies" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "17038" + }, + ["in"]= { + "38922" + } + }, + [46756]= { + ["skill"]= 46756, + ["name"]= "Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "20% increased Stun Duration on Enemies" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42800" + }, + ["in"]= { + "17038", + "56982" + } + }, + [17038]= { + ["skill"]= 17038, + ["name"]= "Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "25% increased Stun Duration on Enemies" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "46756" + }, + ["in"]= { + "57923" + } + }, + [38922]= { + ["skill"]= 38922, + ["name"]= "Goliath", + ["icon"]= "Art/2DArt/SkillIcons/passives/StunMastery.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "GoldenOil" + }, + ["stats"]= { + "50% chance to double Stun Duration" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "57923", + "62023" + }, + ["in"]= { + "56982" + } + }, + [56982]= { + ["skill"]= 56982, + ["name"]= "Stun Threshold Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "46756", + "38922" + }, + ["in"]= {} + }, + [6289]= { + ["skill"]= 6289, + ["name"]= "Bloodless", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "10% increased maximum Life", + "Enemies Cannot Leech Life From you" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "48287", + "25011" + }, + ["in"]= {} + }, + [48287]= { + ["skill"]= 48287, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "14930", + "64587" + }, + ["in"]= { + "6289" + } + }, + [5197]= { + ["skill"]= 5197, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "487" + }, + ["in"]= { + "64587" + } + }, + [64587]= { + ["skill"]= 64587, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "5197" + }, + ["in"]= { + "48287" + } + }, + [25011]= { + ["skill"]= 25011, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 235, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6289" + } + }, + [10245]= { + ["skill"]= 10245, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 236, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55002" + } + }, + [55913]= { + ["skill"]= 55913, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45646" + }, + ["in"]= { + "2913" + } + }, + [45646]= { + ["skill"]= 45646, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35192" + }, + ["in"]= { + "55913" + } + }, + [35192]= { + ["skill"]= 35192, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "55002" + }, + ["in"]= { + "45646" + } + }, + [55002]= { + ["skill"]= 55002, + ["name"]= "Righteous Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "10% chance to create Consecrated Ground on Melee Kill, lasting 4 seconds", + "40% increased Melee Damage with Hits at Close Range" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)", + "(Close Range is up to 2 metres)" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10245" + }, + ["in"]= { + "35192" + } + }, + [6764]= { + ["skill"]= 6764, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 237, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "40366", + "44465" + }, + ["in"]= { + "14057", + "19919", + "58402", + "24824" + } + }, + [40366]= { + ["skill"]= 40366, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 237, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "42760", + "885", + "58763", + "18239", + "26070" + }, + ["in"]= { + "6764" + } + }, + [8460]= { + ["skill"]= 8460, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 238, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49445" + } + }, + [19261]= { + ["skill"]= 19261, + ["name"]= "Warcry Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png", + ["stats"]= { + "12% increased Warcry Cooldown Recovery Rate" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "64181", + "44606", + "43833" + }, + ["in"]= {} + }, + [64181]= { + ["skill"]= 64181, + ["name"]= "Warcry Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png", + ["stats"]= { + "Warcry Skills have 20% increased Area of Effect" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "49445" + }, + ["in"]= { + "19261" + } + }, + [49445]= { + ["skill"]= 49445, + ["name"]= "Deep Breaths", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "35% increased Warcry Cooldown Recovery Rate", + "Warcry Skills have 40% increased Area of Effect" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "8460" + }, + ["in"]= { + "64181", + "224" + } + }, + [224]= { + ["skill"]= 224, + ["name"]= "Warcry Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "43833", + "49445" + }, + ["in"]= {} + }, + [43833]= { + ["skill"]= 43833, + ["name"]= "Warcry Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "19261", + "224" + } + }, + [6359]= { + ["skill"]= 6359, + ["name"]= "Armour and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "10% increased Armour", + "3% increased maximum Life" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "21413" + }, + ["in"]= { + "3167" + } + }, + [7335]= { + ["skill"]= 7335, + ["name"]= "Armour and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "10% increased Armour", + "Regenerate 0.6% of Life per second" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "3167" + }, + ["in"]= { + "21413" + } + }, + [21413]= { + ["skill"]= 21413, + ["name"]= "Combat Stamina", + ["icon"]= "Art/2DArt/SkillIcons/passives/CombatStamina.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "BlackOil" + }, + ["stats"]= { + "20% increased Armour", + "5% increased maximum Life", + "Regenerate 1% of Life per second" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "7335", + "52462" + }, + ["in"]= { + "6359" + } + }, + [3167]= { + ["skill"]= 3167, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.5% of Life per second" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6359" + }, + ["in"]= { + "7335", + "50862" + } + }, + [52462]= { + ["skill"]= 52462, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 239, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21413" + } + }, + [30160]= { + ["skill"]= 30160, + ["name"]= "Fending", + ["icon"]= "Art/2DArt/SkillIcons/passives/fending.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "VerdantOil" + }, + ["stats"]= { + "15% chance to Knock Enemies Back on hit", + "25% increased Knockback Distance" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + }, + ["group"]= 240, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "52875" + }, + ["in"]= { + "65456" + } + }, + [1252]= { + ["skill"]= 1252, + ["name"]= "Knockback Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/knockback.png", + ["stats"]= { + "10% chance to Knock Enemies Back on hit" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + }, + ["group"]= 240, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "65456" + }, + ["in"]= { + "42800" + } + }, + [65456]= { + ["skill"]= 65456, + ["name"]= "Knockback Distance", + ["icon"]= "Art/2DArt/SkillIcons/passives/knockback.png", + ["stats"]= { + "25% increased Knockback Distance" + }, + ["group"]= 240, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "30160" + }, + ["in"]= { + "1252" + } + }, + [52875]= { + ["skill"]= 52875, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 240, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30160" + } + }, + [29712]= { + ["skill"]= 29712, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "55706", + ["parent"]= "7960" + }, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "43989" + }, + ["in"]= { + "55706", + "48679" + } + }, + [48679]= { + ["skill"]= 48679, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "26661", + ["parent"]= "7960" + }, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "29712" + }, + ["in"]= { + "26661", + "9408" + } + }, + [9408]= { + ["skill"]= 9408, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "13201", + ["parent"]= "7960" + }, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "48679", + "43989" + }, + ["in"]= { + "13201" + } + }, + [43989]= { + ["skill"]= 43989, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "7960" + }, + ["in"]= { + "29712", + "9408" + } + }, + [26070]= { + ["skill"]= 26070, + ["name"]= "Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "15% increased Cost Efficiency" + }, + ["group"]= 242, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "20261" + }, + ["in"]= { + "40366", + "56922" + } + }, + [56922]= { + ["skill"]= 56922, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "6% increased Reservation Efficiency of Skills", + "10% increased Cost Efficiency" + }, + ["group"]= 242, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "20261", + "26070" + }, + ["in"]= {} + }, + [20261]= { + ["skill"]= 20261, + ["name"]= "Contemplative Meditation", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "8% increased Reservation Efficiency of Skills", + "20% increased Cost Efficiency" + }, + ["group"]= 242, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "13712" + }, + ["in"]= { + "26070", + "56922" + } + }, + [13712]= { + ["skill"]= 13712, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 242, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20261" + } + }, + [37898]= { + ["skill"]= 37898, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 243, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "23984" + }, + ["in"]= { + "10532" + } + }, + [23984]= { + ["skill"]= 23984, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "48128", + ["parent"]= "10532" + }, + ["stats"]= {}, + ["group"]= 243, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "48128" + }, + ["in"]= { + "37898" + } + }, + [2491]= { + ["skill"]= 2491, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 3, + ["proxy"]= "28650" + }, + ["stats"]= {}, + ["group"]= 244, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= { + "18901" + }, + ["in"]= { + "28650" + } + }, + [18901]= { + ["skill"]= 18901, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "Attacks with Melee Weapons deal 4% increased Damage with Ailments", + "4% increased Melee Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 244, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "2491", + "62319" + } + }, + [62319]= { + ["skill"]= 62319, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "Attacks with Melee Weapons deal 4% increased Damage with Ailments", + "4% increased Melee Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 244, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "34400", + "18901" + }, + ["in"]= {} + }, + [17735]= { + ["skill"]= 17735, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 245, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "13009", + "58402" + }, + ["in"]= { + "49254", + "34880", + "27564" + } + }, + [49254]= { + ["skill"]= 49254, + ["name"]= "Retribution", + ["icon"]= "Art/2DArt/SkillIcons/passives/Retribution.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "OpalescentOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "15% increased Damage", + "Minions deal 15% increased Damage", + "5% increased Attack and Cast Speed", + "+10 to Strength and Intelligence" + }, + ["group"]= 246, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "17735" + }, + ["in"]= { + "15365", + "44529", + "1203", + "420", + "61217" + } + }, + [15599]= { + ["skill"]= 15599, + ["name"]= "Attack and Cast Speed, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "4% increased Attack and Cast Speed" + }, + ["group"]= 247, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "6237", + "26866" + } + }, + [44529]= { + ["skill"]= 44529, + ["name"]= "Attack and Cast Speed, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "4% increased Attack and Cast Speed" + }, + ["group"]= 247, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49254" + }, + ["in"]= { + "6237" + } + }, + [41472]= { + ["skill"]= 41472, + ["name"]= "Discipline and Training", + ["icon"]= "Art/2DArt/SkillIcons/passives/newtitanicmight.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+30 to maximum Life", + "10% increased maximum Life" + }, + ["group"]= 247, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "61471", + "44799", + "58453" + }, + ["in"]= { + "1203" + } + }, + [61471]= { + ["skill"]= 61471, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 247, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "26866" + }, + ["in"]= { + "41472" + } + }, + [1203]= { + ["skill"]= 1203, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 247, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "41472", + "49254" + }, + ["in"]= {} + }, + [6237]= { + ["skill"]= 6237, + ["name"]= "Precision", + ["icon"]= "Art/2DArt/SkillIcons/passives/precision.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "CrimsonOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "6% increased Attack and Cast Speed", + "+20 to Dexterity", + "10% increased Accuracy Rating" + }, + ["group"]= 247, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "15599", + "44529" + }, + ["in"]= {} + }, + [26866]= { + ["skill"]= 26866, + ["name"]= "Sanctity", + ["icon"]= "Art/2DArt/SkillIcons/passives/bodysoul.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "BlackOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Armour", + "10% increased maximum Energy Shield", + "Regenerate 1% of Life per second", + "+10 to Strength and Intelligence" + }, + ["group"]= 248, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44908", + "15599" + }, + ["in"]= { + "31819", + "61471", + "17251", + "31758" + } + }, + [44908]= { + ["skill"]= 44908, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 249, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "2913", + "31931" + }, + ["in"]= { + "26866", + "35556" + } + }, + [2913]= { + ["skill"]= 2913, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 250, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50862", + "54267", + "55913" + }, + ["in"]= { + "44908", + "61007" + } + }, + [50862]= { + ["skill"]= 50862, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 251, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44606", + "15405", + "3167", + "21650" + }, + ["in"]= { + "50422", + "2913" + } + }, + [58449]= { + ["skill"]= 58449, + ["name"]= "Born to Fight", + ["icon"]= "Art/2DArt/SkillIcons/passives/borntofight.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "GoldenOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "4% increased Attack Speed", + "+20 to Strength", + "26% increased Physical Damage" + }, + ["group"]= 252, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26523", + "39768" + }, + ["in"]= { + "38777", + "20551", + "40535" + } + }, + [39768]= { + ["skill"]= 39768, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "6% increased Accuracy Rating" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "12795" + }, + ["in"]= { + "58449" + } + }, + [32739]= { + ["skill"]= 32739, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "6% increased Accuracy Rating" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "24383" + }, + ["in"]= { + "12795" + } + }, + [61198]= { + ["skill"]= 61198, + ["name"]= "Heart of the Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/heartofthegladiator.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "SilverOil", + "GoldenOil" + }, + ["grantedStrength"]= 10, + ["stats"]= { + "+20 to maximum Life", + "10% increased maximum Life", + "+10 to Strength" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "20551" + }, + ["in"]= { + "5152" + } + }, + [20551]= { + ["skill"]= 20551, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "58449" + }, + ["in"]= { + "61198" + } + }, + [5152]= { + ["skill"]= 5152, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "61198" + }, + ["in"]= { + "24383" + } + }, + [12795]= { + ["skill"]= 12795, + ["name"]= "Versatility", + ["icon"]= "Art/2DArt/SkillIcons/passives/precision.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "OpalescentOil" + }, + ["grantedDexterity"]= 20, + ["grantedIntelligence"]= 20, + ["stats"]= { + "5% increased Movement Speed", + "+20 to Dexterity and Intelligence", + "15% increased Accuracy Rating" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "32739" + }, + ["in"]= { + "39768" + } + }, + [24383]= { + ["skill"]= 24383, + ["name"]= "Warrior's Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/trollblood.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "BlackOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "Regenerate 1.8% of Life per second", + "20% increased Stun Threshold", + "+20 to Strength" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 254, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49412", + "5152" + }, + ["in"]= { + "6718", + "32739", + "63048" + } + }, + [49412]= { + ["skill"]= 49412, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 255, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31080", + "40653" + }, + ["in"]= { + "24383", + "15438", + "36543" + } + }, + [44606]= { + ["skill"]= 44606, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 256, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26523" + }, + ["in"]= { + "19261", + "50862" + } + }, + [26523]= { + ["skill"]= 26523, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 257, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6446" + }, + ["in"]= { + "58449", + "44606", + "23881" + } + }, + [52502]= { + ["skill"]= 52502, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "6% increased Elemental Damage" + }, + ["group"]= 258, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= { + "7960" + }, + ["in"]= { + "20987" + } + }, + [20987]= { + ["skill"]= 20987, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "6% increased Elemental Damage" + }, + ["group"]= 258, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "52502" + }, + ["in"]= { + "36678" + } + }, + [7960]= { + ["skill"]= 7960, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 0, + ["proxy"]= "43989" + }, + ["stats"]= {}, + ["group"]= 258, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "43989", + "52502" + } + }, + [45558]= { + ["skill"]= 45558, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 259, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6770" + } + }, + [12246]= { + ["skill"]= 12246, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "30% increased Energy Shield from Equipped Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "43061" + }, + ["in"]= { + "22577", + "36678" + } + }, + [43061]= { + ["skill"]= 43061, + ["name"]= "Shield Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while holding a Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "27323" + }, + ["in"]= { + "12246" + } + }, + [27323]= { + ["skill"]= 27323, + ["name"]= "Shield Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while holding a Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6770" + }, + ["in"]= { + "43061" + } + }, + [22577]= { + ["skill"]= 22577, + ["name"]= "Block Recovery and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "50% increased Block Recovery", + "50% increased Energy Shield from Equipped Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "6770", + "12246" + }, + ["in"]= {} + }, + [6770]= { + ["skill"]= 6770, + ["name"]= "Arcane Guarding", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "+10% Chance to Block Spell Damage while holding a Shield", + "60% increased Energy Shield from Equipped Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "45558" + }, + ["in"]= { + "27323", + "22577" + } + }, + [63963]= { + ["skill"]= 63963, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "58763", + "32455" + } + }, + [58763]= { + ["skill"]= 58763, + ["name"]= "Cold and Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png", + ["stats"]= { + "8% increased Cold Damage", + "8% increased Lightning Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63963" + }, + ["in"]= { + "40366", + "7153" + } + }, + [32455]= { + ["skill"]= 32455, + ["name"]= "Storm Weaver", + ["icon"]= "Art/2DArt/SkillIcons/passives/Storm Weaver.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Cold Damage", + "25% increased Lightning Damage", + "Enemies Shocked or Frozen by you take 5% increased Elemental Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63963", + "5726" + }, + ["in"]= { + "7153" + } + }, + [7153]= { + ["skill"]= 7153, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "58763", + "32455" + }, + ["in"]= {} + }, + [5726]= { + ["skill"]= 5726, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 260, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32455" + } + }, + [36915]= { + ["skill"]= 36915, + ["name"]= "Sacrifice", + ["icon"]= "Art/2DArt/SkillIcons/passives/graveexpectations.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "Minions have 20% increased maximum Life", + "Regenerate 1% of Life per second", + "Minions Regenerate 1% of Life per second" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "48290" + }, + ["in"]= { + "10904", + "1609" + } + }, + [48290]= { + ["skill"]= 48290, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 261, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36915" + } + }, + [34880]= { + ["skill"]= 34880, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "55563", + "17735", + "10904" + }, + ["in"]= {} + }, + [10904]= { + ["skill"]= 10904, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "36915" + }, + ["in"]= { + "42668", + "34880" + } + }, + [55563]= { + ["skill"]= 55563, + ["name"]= "Minion Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions Regenerate 1.5% of Life per second" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "1609" + }, + ["in"]= { + "34880" + } + }, + [1609]= { + ["skill"]= 1609, + ["name"]= "Minion Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions Regenerate 1.5% of Life per second" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "36915" + }, + ["in"]= { + "55563" + } + }, + [27119]= { + ["skill"]= 27119, + ["name"]= "Tribal Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Melee Strike Skills deal Splash Damage to surrounding targets" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "56595" + }, + ["in"]= { + "2092" + } + }, + [56595]= { + ["skill"]= 56595, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 262, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27119" + } + }, + [29797]= { + ["skill"]= 29797, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "18009" + }, + ["in"]= { + "34400" + } + }, + [18009]= { + ["skill"]= 18009, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StrikeRangeNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "2092" + }, + ["in"]= { + "29797" + } + }, + [2092]= { + ["skill"]= 2092, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StrikeRangeNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "27119" + }, + ["in"]= { + "18009" + } + }, + [13201]= { + ["skill"]= 13201, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 263, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "2311", + "9408" + }, + ["in"]= {} + }, + [2311]= { + ["skill"]= 2311, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "7956", + ["parent"]= "9408" + }, + ["stats"]= {}, + ["group"]= 263, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7956" + }, + ["in"]= { + "13201" + } + }, + [7162]= { + ["skill"]= 7162, + ["name"]= "Armour and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "10% increased Armour", + "+5% to all Elemental Resistances" + }, + ["group"]= 264, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9695" + }, + ["in"]= { + "487" + } + }, + [9695]= { + ["skill"]= 9695, + ["name"]= "Armour and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "10% increased Armour", + "+5% to all Elemental Resistances" + }, + ["group"]= 264, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "7162", + "42009" + } + }, + [54340]= { + ["skill"]= 54340, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 264, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42009" + } + }, + [42009]= { + ["skill"]= 42009, + ["name"]= "Soul of Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/armourmastery.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+150 to Armour", + "30% increased Armour", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 264, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9695", + "54340" + }, + ["in"]= {} + }, + [34400]= { + ["skill"]= 34400, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 265, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "24914", + "14930", + "14056", + "35053", + "29797", + "34513", + "21210" + }, + ["in"]= { + "32376", + "62319" + } + }, + [487]= { + ["skill"]= 487, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 266, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "7162", + "24720", + "5103", + "1354" + }, + ["in"]= { + "5197", + "42800", + "14056" + } + }, + [53216]= { + ["skill"]= 53216, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 267, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14001" + } + }, + [5103]= { + ["skill"]= 5103, + ["name"]= "Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 267, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "37895" + }, + ["in"]= { + "487" + } + }, + [37895]= { + ["skill"]= 37895, + ["name"]= "Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 267, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "14001" + }, + ["in"]= { + "5103" + } + }, + [14001]= { + ["skill"]= 14001, + ["name"]= "Unfaltering", + ["icon"]= "Art/2DArt/SkillIcons/passives/Unfaltering.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "50% increased Stun Threshold", + "10% of Damage taken from Stunning Hits is Recovered as Life" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 267, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "53216" + }, + ["in"]= { + "37895" + } + }, + [36678]= { + ["skill"]= 36678, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 268, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42760", + "7444", + "20987", + "12246", + "57404" + }, + ["in"]= { + "39841" + } + }, + [48128]= { + ["skill"]= 48128, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 269, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "23984" + } + }, + [42800]= { + ["skill"]= 42800, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 270, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "487", + "1252" + }, + ["in"]= { + "40653", + "30251", + "46756" + } + }, + [25934]= { + ["skill"]= 25934, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 271, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35436" + } + }, + [28728]= { + ["skill"]= 28728, + ["name"]= "Two Handed Melee Damage and Ignore Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments", + "Hits have 15% chance to ignore Enemy Physical Damage Reduction" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "35436" + }, + ["in"]= { + "15438" + } + }, + [15438]= { + ["skill"]= 15438, + ["name"]= "Two Handed Melee Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "10% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 10% increased Damage with Ailments", + "10% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49412", + "8426", + "28728" + }, + ["in"]= {} + }, + [8426]= { + ["skill"]= 8426, + ["name"]= "Two Handed Melee Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments", + "5% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "29034" + }, + ["in"]= { + "15438" + } + }, + [29034]= { + ["skill"]= 29034, + ["name"]= "Two Handed Melee Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments", + "20% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35436" + }, + ["in"]= { + "8426" + } + }, + [35436]= { + ["skill"]= 35436, + ["name"]= "Kinetic Impacts", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "25% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments", + "10% chance to double Stun Duration", + "5% chance to deal Double Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "25934" + }, + ["in"]= { + "28728", + "29034" + } + }, + [21210]= { + ["skill"]= 21210, + ["name"]= "Arsenal of Vengeance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "Damaging Retaliation Skills become Usable every sixth Hit from Enemies instead" + }, + ["flavourText"]= { + "Never start the war... but be sure to end it." + }, + ["group"]= 272, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34400" + } + }, + [21650]= { + ["skill"]= 21650, + ["name"]= "Eternal Youth", + ["icon"]= "Art/2DArt/SkillIcons/passives/EternalYouth.png", + ["isKeystone"]= true, + ["stats"]= { + "50% less Life Regeneration Rate\n50% less maximum Total Life Recovery per Second from Leech\nEnergy Shield Recharge instead applies to Life" + }, + ["flavourText"]= { + "Burn the spirit to vitalise the flesh." + }, + ["group"]= 273, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50862" + } + }, + [14079]= { + ["skill"]= 14079, + ["name"]= "Wood, Stone, and Spell", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "10% increased effect of Arcane Surge on you per Summoned Totem" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate)" + }, + ["group"]= 274, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [30148]= { + ["skill"]= 30148, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+30 to Accuracy Rating", + "10% increased Accuracy Rating" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "45350" + }, + ["in"]= { + "61007" + } + }, + [61007]= { + ["skill"]= 61007, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "6% increased Accuracy Rating" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "2913", + "15880", + "30148" + }, + ["in"]= {} + }, + [45350]= { + ["skill"]= 45350, + ["name"]= "Glory of Command", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplar2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "40% increased Accuracy Rating while you have at least 1 nearby Ally", + "15% increased Area of Effect for Attacks while you have at least 1 nearby Ally" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "38595" + }, + ["in"]= { + "30148", + "15880" + } + }, + [15880]= { + ["skill"]= 15880, + ["name"]= "Attack Area of Effect and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + ["stats"]= { + "8% increased Area of Effect for Attacks", + "10% increased Accuracy Rating" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "45350" + }, + ["in"]= { + "61007" + } + }, + [38595]= { + ["skill"]= 38595, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 275, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45350" + } + }, + [5230]= { + ["skill"]= 5230, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 276, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22702" + } + }, + [22702]= { + ["skill"]= 22702, + ["name"]= "Serpent Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/serpentstance.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "40% increased Critical Strike Chance while wielding a Staff", + "+30% to Critical Strike Multiplier while wielding a Staff", + "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "5230" + }, + ["in"]= { + "53957" + } + }, + [53957]= { + ["skill"]= 53957, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/critstrchnc.png", + ["stats"]= { + "20% increased Critical Strike Chance while wielding a Staff", + "+10% to Critical Strike Multiplier while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "22702" + }, + ["in"]= { + "4977" + } + }, + [24229]= { + ["skill"]= 24229, + ["name"]= "Staff Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/critstrchnc.png", + ["stats"]= { + "20% increased Critical Strike Chance while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "4977", + "42760" + } + }, + [4977]= { + ["skill"]= 4977, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/critstrchnc.png", + ["stats"]= { + "20% increased Critical Strike Chance while wielding a Staff", + "+10% to Critical Strike Multiplier while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "24229", + "53957" + }, + ["in"]= {} + }, + [13739]= { + ["skill"]= 13739, + ["name"]= "Always Angry", + ["icon"]= "Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "+8 to Minimum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 277, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [7956]= { + ["skill"]= 7956, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 278, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "2311" + } + }, + [27308]= { + ["skill"]= 27308, + ["name"]= "Gravepact", + ["icon"]= "Art/2DArt/SkillIcons/passives/gravepact.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "+7% to Chaos Resistance", + "Minions have 8% chance to deal Double Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "61992" + }, + ["in"]= { + "43133" + } + }, + [61992]= { + ["skill"]= 61992, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 279, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27308" + } + }, + [54267]= { + ["skill"]= 54267, + ["name"]= "Chaos Resistance and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "+3% to Chaos Resistance", + "Minions deal 12% increased Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "23185" + }, + ["in"]= { + "2913" + } + }, + [23185]= { + ["skill"]= 23185, + ["name"]= "Chaos Resistance and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "+3% to Chaos Resistance", + "Minions deal 12% increased Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "43133" + }, + ["in"]= { + "54267" + } + }, + [43133]= { + ["skill"]= 43133, + ["name"]= "Chaos Resistance and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "+3% to Chaos Resistance", + "Minions deal 12% increased Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "27308" + }, + ["in"]= { + "23185" + } + }, + [64695]= { + ["skill"]= 64695, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "22133" + }, + ["in"]= { + "36945" + } + }, + [36945]= { + ["skill"]= 36945, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "64695" + }, + ["in"]= { + "53072", + "14056" + } + }, + [22133]= { + ["skill"]= 22133, + ["name"]= "Invigorating Blaze", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "+10% to Fire Damage over Time Multiplier with Attack Skills", + "Recover 2% of Life when you Ignite a non-Ignited Enemy" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "37911", + "50562" + }, + ["in"]= { + "64695" + } + }, + [53072]= { + ["skill"]= 53072, + ["name"]= "Burning Damage Multiplier with Attacks", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier with Attack Skills" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "36945" + }, + ["in"]= { + "50562" + } + }, + [50562]= { + ["skill"]= 50562, + ["name"]= "Burning Damage Multiplier with Attacks", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier with Attack Skills" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "53072" + }, + ["in"]= { + "22133" + } + }, + [37911]= { + ["skill"]= 37911, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 280, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22133" + } + }, + [24720]= { + ["skill"]= 24720, + ["name"]= "Imbalanced Guard", + ["icon"]= "Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "100% chance to Defend with 200% of Armour\nMaximum Damage Reduction for any Damage Type is 50%" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + }, + ["flavourText"]= { + "Layer only your most vital areas, child. We have less steel,", + "but we are willing to bleed, and that is why we will be victorious." + }, + ["group"]= 281, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "487" + } + }, + [4354]= { + ["skill"]= 4354, + ["name"]= "Beacon of Hope", + ["icon"]= "Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "80% increased Area of Effect of Aura Skills" + }, + ["group"]= 282, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [21548]= { + ["skill"]= 21548, + ["name"]= "Banner Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 20% increased Duration" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13703" + }, + ["in"]= { + "47785" + } + }, + [47785]= { + ["skill"]= 47785, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "21548" + }, + ["in"]= { + "49635", + "14056" + } + }, + [49635]= { + ["skill"]= 49635, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "47785" + }, + ["in"]= { + "60963" + } + }, + [60963]= { + ["skill"]= 60963, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49635" + }, + ["in"]= { + "13703" + } + }, + [13703]= { + ["skill"]= 13703, + ["name"]= "Defiant Stand", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Gain 3 Endurance Charges when you consume maximum Valour to place a Banner", + "Gain 3 Frenzy Charges when you consume maximum Valour to place a Banner" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "35321", + "60963" + }, + ["in"]= { + "21548" + } + }, + [35321]= { + ["skill"]= 35321, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 283, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13703" + } + }, + [32075]= { + ["skill"]= 32075, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 284, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "58869", + "39841" + }, + ["in"]= {} + }, + [58869]= { + ["skill"]= 58869, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 284, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "39986" + }, + ["in"]= { + "32075" + } + }, + [39986]= { + ["skill"]= 39986, + ["name"]= "Defiled Forces", + ["icon"]= "Art/2DArt/SkillIcons/passives/SkitteringRunes.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "Curse Skills have 15% increased Cast Speed", + "Refresh Duration of Chill and Shock on Enemies you Curse", + "Remove Elemental Ailments when you Cast a Curse Spell" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 284, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "50540" + }, + ["in"]= { + "58869" + } + }, + [50540]= { + ["skill"]= 50540, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 284, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39986" + } + }, + [38706]= { + ["skill"]= 38706, + ["name"]= "Way of the Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "OpalescentOil" + }, + ["grantedStrength"]= 30, + ["stats"]= { + "16% increased Melee Damage", + "16% increased Armour", + "+16 to maximum Life", + "+30 to Strength" + }, + ["group"]= 285, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [7828]= { + ["skill"]= 7828, + ["name"]= "Melee Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/meleeattackspeed.png", + ["stats"]= { + "5% increased Melee Attack Speed" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32480" + }, + ["in"]= { + "40535" + } + }, + [40535]= { + ["skill"]= 40535, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Physical Damage" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "7828", + "58449" + }, + ["in"]= { + "30335" + } + }, + [30335]= { + ["skill"]= 30335, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "16% increased Melee Physical Damage" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "40535" + }, + ["in"]= { + "32480" + } + }, + [32480]= { + ["skill"]= 32480, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Physical Damage" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "30335", + "33988" + }, + ["in"]= { + "7828" + } + }, + [15868]= { + ["skill"]= 15868, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "22627", + "36047" + }, + ["in"]= { + "50264" + } + }, + [36047]= { + ["skill"]= 36047, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "12% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "63048" + }, + ["in"]= { + "15868" + } + }, + [63048]= { + ["skill"]= 63048, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "50264", + "24383" + }, + ["in"]= { + "36047" + } + }, + [50264]= { + ["skill"]= 50264, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.8% of Life per second" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15868" + }, + ["in"]= { + "63048" + } + }, + [4568]= { + ["skill"]= 4568, + ["name"]= "Physical and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "10% increased Physical Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "35724" + }, + ["in"]= { + "9294" + } + }, + [420]= { + ["skill"]= 420, + ["name"]= "Physical and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "10% increased Physical Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49254", + "9294" + }, + ["in"]= {} + }, + [9294]= { + ["skill"]= 9294, + ["name"]= "Physical and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "10% increased Physical Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "4568" + }, + ["in"]= { + "420" + } + }, + [33923]= { + ["skill"]= 33923, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59005" + }, + ["in"]= { + "35724" + } + }, + [59005]= { + ["skill"]= 59005, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "61217" + }, + ["in"]= { + "33923" + } + }, + [61217]= { + ["skill"]= 61217, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49254" + }, + ["in"]= { + "59005" + } + }, + [29005]= { + ["skill"]= 29005, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "17352" + }, + ["in"]= { + "39631" + } + }, + [39631]= { + ["skill"]= 39631, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "29005" + }, + ["in"]= { + "17251" + } + }, + [17251]= { + ["skill"]= 17251, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "39631", + "26866" + }, + ["in"]= {} + }, + [31758]= { + ["skill"]= 31758, + ["name"]= "Mana and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Mana Regeneration Rate", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "26866" + }, + ["in"]= { + "42837" + } + }, + [42837]= { + ["skill"]= 42837, + ["name"]= "Mana and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Mana Regeneration Rate", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31758" + }, + ["in"]= { + "23456" + } + }, + [23456]= { + ["skill"]= 23456, + ["name"]= "Mana and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Mana Regeneration Rate", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42837" + }, + ["in"]= { + "17352" + } + }, + [33631]= { + ["skill"]= 33631, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 290, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "15405" + } + }, + [33740]= { + ["skill"]= 33740, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 290, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46910", + "15405" + }, + ["in"]= {} + }, + [15405]= { + ["skill"]= 15405, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 290, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "33631" + }, + ["in"]= { + "50862", + "33740" + } + }, + [40698]= { + ["skill"]= 40698, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 291, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22706" + } + }, + [1354]= { + ["skill"]= 1354, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 291, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "18202" + }, + ["in"]= { + "487" + } + }, + [18202]= { + ["skill"]= 18202, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 291, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "22706" + }, + ["in"]= { + "1354" + } + }, + [22706]= { + ["skill"]= 22706, + ["name"]= "Savage Intensity", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Cost Efficiency of Attacks", + "Inherent loss of Rage is 20% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 291, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "40698" + }, + ["in"]= { + "18202" + } + }, + [26697]= { + ["skill"]= 26697, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 292, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57839" + } + }, + [61050]= { + ["skill"]= 61050, + ["name"]= "Sword Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "57839" + }, + ["in"]= { + "64024" + } + }, + [64024]= { + ["skill"]= 64024, + ["name"]= "Sword Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "61050" + }, + ["in"]= { + "35053" + } + }, + [35053]= { + ["skill"]= 35053, + ["name"]= "Sword Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "25% increased Critical Strike Chance with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "64024", + "43514" + }, + ["in"]= { + "34400" + } + }, + [43514]= { + ["skill"]= 43514, + ["name"]= "Sword Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "6% increased Accuracy Rating with Swords", + "20% increased Critical Strike Chance with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "35053", + "57839" + } + }, + [57839]= { + ["skill"]= 57839, + ["name"]= "Blade of Cunning", + ["icon"]= "Art/2DArt/SkillIcons/passives/legendaryswordsman.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "15% increased Accuracy Rating with Swords", + "45% increased Critical Strike Chance with Swords", + "+15% to Critical Strike Multiplier with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "43514", + "26697" + }, + ["in"]= { + "61050" + } + }, + [23881]= { + ["skill"]= 23881, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 293, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "26523" + }, + ["in"]= { + "9511" + } + }, + [9511]= { + ["skill"]= 9511, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 293, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "23881" + }, + ["in"]= { + "31628" + } + }, + [56029]= { + ["skill"]= 56029, + ["name"]= "Agility", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 294, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42760" + }, + ["in"]= {} + }, + [35556]= { + ["skill"]= 35556, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 295, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "44908" + }, + ["in"]= { + "39916" + } + }, + [39916]= { + ["skill"]= 39916, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 295, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "35556", + "20228" + }, + ["in"]= {} + }, + [37512]= { + ["skill"]= 37512, + ["name"]= "Bastion of Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "Consecrated Ground you create also grants\n50% reduced duration of Damaging Ailments on you" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 296, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [9995]= { + ["skill"]= 9995, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 297, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "33718" + }, + ["in"]= { + "34513" + } + }, + [34513]= { + ["skill"]= 34513, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 297, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "9995" + }, + ["in"]= { + "34400" + } + }, + [33718]= { + ["skill"]= 33718, + ["name"]= "Champion of the Cause", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "12% increased Area of Effect of Aura Skills", + "8% increased Reservation Efficiency of Skills", + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 297, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "64128" + }, + ["in"]= { + "9995" + } + }, + [64128]= { + ["skill"]= 64128, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 297, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33718" + } + }, + [39332]= { + ["skill"]= 39332, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 298, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65273" + } + }, + [26585]= { + ["skill"]= 26585, + ["name"]= "Staff Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "7347" + }, + ["in"]= { + "5462" + } + }, + [5462]= { + ["skill"]= 5462, + ["name"]= "Staff Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png", + ["stats"]= { + "12% increased Area of Effect while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7364", + "26585" + }, + ["in"]= { + "39841" + } + }, + [7364]= { + ["skill"]= 7364, + ["name"]= "Staff Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png", + ["stats"]= { + "15% increased Area of Effect while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "65273" + }, + ["in"]= { + "5462" + } + }, + [65273]= { + ["skill"]= 65273, + ["name"]= "Enigmatic Reach", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "3% increased Area of Effect per Power Charge", + "25% chance to gain a Power Charge when you Block Spell Damage", + "+8% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "39332" + }, + ["in"]= { + "7364", + "7347" + } + }, + [7347]= { + ["skill"]= 7347, + ["name"]= "Staff Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "65273" + }, + ["in"]= { + "26585" + } + }, + [651]= { + ["skill"]= 651, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/crystalskin.png", + ["stats"]= { + "10% reduced Elemental Ailment Duration on you", + "10% reduced Effect of Chill and Shock on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 299, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9149", + "13009", + "3398", + "43057" + }, + ["in"]= {} + }, + [9149]= { + ["skill"]= 9149, + ["name"]= "Chill and Freeze Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "20% reduced Effect of Chill on you", + "20% reduced Freeze Duration on you" + }, + ["reminderText"]= { + "(Chill reduces Action Speed by up to 30%)" + }, + ["group"]= 299, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "11820" + }, + ["in"]= { + "651" + } + }, + [43057]= { + ["skill"]= 43057, + ["name"]= "Ignite Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "20% reduced Ignite Duration on you" + }, + ["group"]= 299, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "11820" + }, + ["in"]= { + "651" + } + }, + [3398]= { + ["skill"]= 3398, + ["name"]= "Shock Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "20% reduced Effect of Shock on you" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%)" + }, + ["group"]= 299, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "11820" + }, + ["in"]= { + "651" + } + }, + [11820]= { + ["skill"]= 11820, + ["name"]= "Anointed Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+1% to all maximum Elemental Resistances", + "20% reduced Elemental Ailment Duration on you", + "20% reduced Effect of Chill and Shock on you" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)", + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 299, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "17127" + }, + ["in"]= { + "9149", + "43057", + "3398" + } + }, + [17127]= { + ["skill"]= 17127, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 299, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "11820" + } + }, + [12250]= { + ["skill"]= 12250, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "6% increased maximum Mana" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "38701", + "42760" + }, + ["in"]= {} + }, + [3471]= { + ["skill"]= 3471, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 300, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48298" + } + }, + [38701]= { + ["skill"]= 38701, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "6% increased maximum Mana" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "18767" + }, + ["in"]= { + "12250" + } + }, + [18767]= { + ["skill"]= 18767, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "6% increased maximum Mana" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48298" + }, + ["in"]= { + "38701" + } + }, + [48298]= { + ["skill"]= 48298, + ["name"]= "Insightfulness", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inspiration.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "10% increased maximum Energy Shield", + "16% increased maximum Mana", + "16% increased Mana Cost Efficiency" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "3471" + }, + ["in"]= { + "18767" + } + }, + [14587]= { + ["skill"]= 14587, + ["name"]= "Adaptive Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "5% chance to Defend with 200% of Armour for each\ntime you've been Hit by an Enemy Recently, up to 30%" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 301, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [14151]= { + ["skill"]= 14151, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 302, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "27564" + }, + ["in"]= { + "63965" + } + }, + [27564]= { + ["skill"]= 27564, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 302, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "17735" + }, + ["in"]= { + "14151" + } + }, + [6981]= { + ["skill"]= 6981, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 303, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "36543" + }, + ["in"]= { + "50904" + } + }, + [36543]= { + ["skill"]= 36543, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 303, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "49412" + }, + ["in"]= { + "6981" + } + }, + [35724]= { + ["skill"]= 35724, + ["name"]= "Damage and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "12% increased Damage", + "+10 to maximum Mana" + }, + ["group"]= 304, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63965", + "33923" + }, + ["in"]= { + "4568" + } + }, + [17352]= { + ["skill"]= 17352, + ["name"]= "Mana and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased maximum Mana" + }, + ["group"]= 305, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20228", + "23456" + }, + ["in"]= { + "29005" + } + }, + [33988]= { + ["skill"]= 33988, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Physical Damage" + }, + ["group"]= 306, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31628" + }, + ["in"]= { + "32480" + } + }, + [13009]= { + ["skill"]= 13009, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 307, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60398" + }, + ["in"]= { + "17735", + "651" + } + }, + [5456]= { + ["skill"]= 5456, + ["name"]= "Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 308, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42760" + } + }, + [23215]= { + ["skill"]= 23215, + ["name"]= "Curse and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + ["stats"]= { + "+6% to Chaos Resistance", + "6% reduced Effect of Curses on you" + }, + ["group"]= 309, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "54954" + }, + ["in"]= { + "4854" + } + }, + [54954]= { + ["skill"]= 54954, + ["name"]= "Curse and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + ["stats"]= { + "+6% to Chaos Resistance", + "6% reduced Effect of Curses on you" + }, + ["group"]= 309, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "23215", + "46340" + } + }, + [4854]= { + ["skill"]= 4854, + ["name"]= "Asylum", + ["icon"]= "Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "+18% to Chaos Resistance", + "18% reduced Effect of Curses on you" + }, + ["group"]= 309, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "23215", + "12503" + }, + ["in"]= {} + }, + [12503]= { + ["skill"]= 12503, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 309, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4854" + } + }, + [19897]= { + ["skill"]= 19897, + ["name"]= "Death Attunement", + ["icon"]= "Art/2DArt/SkillIcons/passives/deathattunement.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum number of Spectres", + "+1 to Maximum number of Raised Zombies", + "+1 to Maximum number of Skeletons" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "39416" + }, + ["in"]= { + "34144", + "4247" + } + }, + [39416]= { + ["skill"]= 39416, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 310, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19897" + } + }, + [43716]= { + ["skill"]= 43716, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "34144" + }, + ["in"]= { + "52412" + } + }, + [34144]= { + ["skill"]= 34144, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "19897" + }, + ["in"]= { + "43716" + } + }, + [52412]= { + ["skill"]= 52412, + ["name"]= "Minion Life and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "17412", + "43716", + "39841" + }, + ["in"]= {} + }, + [4247]= { + ["skill"]= 4247, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19897" + }, + ["in"]= { + "17412" + } + }, + [17412]= { + ["skill"]= 17412, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "4247" + }, + ["in"]= { + "52412" + } + }, + [14056]= { + ["skill"]= 14056, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 311, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "487", + "34601", + "11700", + "36945", + "47785" + }, + ["in"]= { + "34400", + "18025", + "22703", + "6741" + } + }, + [34601]= { + ["skill"]= 34601, + ["name"]= "Proficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 312, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14056" + } + }, + [45341]= { + ["skill"]= 45341, + ["name"]= "Maximum Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "+1% to maximum Cold Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "50340", + "60031" + } + }, + [6043]= { + ["skill"]= 6043, + ["name"]= "Maximum Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "+1% to maximum Fire Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "60031" + }, + ["in"]= { + "50340" + } + }, + [50340]= { + ["skill"]= 50340, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% to all Elemental Resistances" + }, + ["group"]= 313, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "6043", + "45341", + "31080", + "5065" + }, + ["in"]= {} + }, + [60031]= { + ["skill"]= 60031, + ["name"]= "Prismatic Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png", + ["isNotable"]= true, + ["recipe"]= { + "SilverOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+2% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "45341", + "33657" + }, + ["in"]= { + "6043", + "5065" + } + }, + [5065]= { + ["skill"]= 5065, + ["name"]= "Maximum Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "+1% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "60031" + }, + ["in"]= { + "50340" + } + }, + [33657]= { + ["skill"]= 33657, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 313, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60031" + } + }, + [22627]= { + ["skill"]= 22627, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "+30 to Armour", + "5% increased maximum Life" + }, + ["group"]= 314, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50904" + }, + ["in"]= { + "15868" + } + }, + [19388]= { + ["skill"]= 19388, + ["name"]= "Axe Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 10% increased Damage with Hits and Ailments", + "10% increased Accuracy Rating with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23852", + "52090" + }, + ["in"]= {} + }, + [23852]= { + ["skill"]= 23852, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "32519" + }, + ["in"]= { + "19388", + "24914" + } + }, + [32519]= { + ["skill"]= 32519, + ["name"]= "Axe Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 10% increased Damage with Hits and Ailments", + "25% increased Critical Strike Chance with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "23852", + "26188" + } + }, + [26188]= { + ["skill"]= 26188, + ["name"]= "Axe Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 10% increased Damage with Hits and Ailments", + "25% increased Critical Strike Chance with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "32519" + }, + ["in"]= { + "52090" + } + }, + [52090]= { + ["skill"]= 52090, + ["name"]= "Feller of Foes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "Axe Attacks deal 30% increased Damage with Hits and Ailments", + "+40% to Critical Strike Multiplier with Axes", + "+200 to Accuracy Rating with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "4424", + "26188" + }, + ["in"]= { + "19388" + } + }, + [4424]= { + ["skill"]= 4424, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 315, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52090" + } + }, + [8556]= { + ["skill"]= 8556, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 316, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20835" + } + }, + [11700]= { + ["skill"]= 11700, + ["name"]= "Melee Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + ["stats"]= { + "Melee Skills have 10% increased Area of Effect" + }, + ["group"]= 316, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50969" + }, + ["in"]= { + "14056" + } + }, + [50969]= { + ["skill"]= 50969, + ["name"]= "Melee Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + ["stats"]= { + "Melee Skills have 10% increased Area of Effect" + }, + ["group"]= 316, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20835" + }, + ["in"]= { + "11700" + } + }, + [20835]= { + ["skill"]= 20835, + ["name"]= "Brinkmanship", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "OpalescentOil" + }, + ["stats"]= { + "Melee Skills have 20% increased Area of Effect" + }, + ["group"]= 316, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "8556" + }, + ["in"]= { + "50969" + } + }, + [59494]= { + ["skill"]= 59494, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Critical Strike Chance", + "12% increased Accuracy Rating" + }, + ["group"]= 317, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "16380", + "2225" + } + }, + [16380]= { + ["skill"]= 16380, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Critical Strike Chance", + "12% increased Accuracy Rating" + }, + ["group"]= 317, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59494" + }, + ["in"]= { + "22703" + } + }, + [2225]= { + ["skill"]= 2225, + ["name"]= "Eagle Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/eagleeye.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "OpalescentOil" + }, + ["stats"]= { + "+150 to Accuracy Rating", + "20% increased Critical Strike Chance", + "20% increased Accuracy Rating" + }, + ["group"]= 317, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "59494", + "35221" + }, + ["in"]= {} + }, + [35221]= { + ["skill"]= 35221, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 317, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2225" + } + }, + [32853]= { + ["skill"]= 32853, + ["name"]= "Sione's Ambition", + ["icon"]= "Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "Strike Skills which target additional Enemies can do so from 40% further away" + }, + ["group"]= 318, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [63447]= { + ["skill"]= 63447, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 319, + ["orbit"]= 6, + ["orbitIndex"]= 9, + ["out"]= { + "44184", + "56066", + "12888" + }, + ["in"]= { + "39841", + "33864", + "47949", + "52655" + } + }, + [39841]= { + ["skill"]= 39841, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 319, + ["orbit"]= 6, + ["orbitIndex"]= 66, + ["out"]= { + "63447", + "36678", + "5462" + }, + ["in"]= { + "32075", + "52412" + } + }, + [35038]= { + ["skill"]= 35038, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 320, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63944" + } + }, + [20844]= { + ["skill"]= 20844, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "5% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "63944" + }, + ["in"]= { + "62217" + } + }, + [62217]= { + ["skill"]= 62217, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "5% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "20844", + "56066" + }, + ["in"]= {} + }, + [56066]= { + ["skill"]= 56066, + ["name"]= "Wand Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Elemental Damage with Wands" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "63447", + "62217", + "30926" + } + }, + [54043]= { + ["skill"]= 54043, + ["name"]= "Wand Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "10% increased Elemental Damage with Wands", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30926" + }, + ["in"]= { + "63944" + } + }, + [30926]= { + ["skill"]= 30926, + ["name"]= "Wand Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "10% increased Elemental Damage with Wands", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "56066" + }, + ["in"]= { + "54043" + } + }, + [63944]= { + ["skill"]= 63944, + ["name"]= "Prism Weave", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "6% increased Attack Speed with Wands", + "24% increased Elemental Damage with Wands", + "Damage with Weapons Penetrates 5% Elemental Resistances" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "54043", + "35038" + }, + ["in"]= { + "20844" + } + }, + [2828]= { + ["skill"]= 2828, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 321, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25970" + } + }, + [34423]= { + ["skill"]= 34423, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+6% to Damage over Time Multiplier" + }, + ["group"]= 321, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25970" + }, + ["in"]= { + "48118" + } + }, + [48118]= { + ["skill"]= 48118, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+6% to Damage over Time Multiplier" + }, + ["group"]= 321, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "34423" + }, + ["in"]= { + "55332" + } + }, + [25970]= { + ["skill"]= 25970, + ["name"]= "Acrimony", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "+15% to Damage over Time Multiplier" + }, + ["group"]= 321, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "2828" + }, + ["in"]= { + "34423" + } + }, + [12169]= { + ["skill"]= 12169, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 322, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65107" + } + }, + [65107]= { + ["skill"]= 65107, + ["name"]= "Bastion Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/ByTheBlade.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "30% increased Attack Physical Damage", + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + }, + ["group"]= 322, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12169" + }, + ["in"]= { + "60153" + } + }, + [60153]= { + ["skill"]= 60153, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "14% increased Attack Physical Damage" + }, + ["group"]= 322, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "65107" + }, + ["in"]= { + "16860" + } + }, + [16860]= { + ["skill"]= 16860, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "14% increased Attack Physical Damage" + }, + ["group"]= 322, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "60153" + }, + ["in"]= { + "24914" + } + }, + [17945]= { + ["skill"]= 17945, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 323, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52742" + } + }, + [30370]= { + ["skill"]= 30370, + ["name"]= "Spell Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "12% increased Damage Over Time with Spell Skills" + }, + ["group"]= 323, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "51804" + }, + ["in"]= { + "46340" + } + }, + [51804]= { + ["skill"]= 51804, + ["name"]= "Spell Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "16% increased Damage Over Time with Spell Skills" + }, + ["group"]= 323, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52742" + }, + ["in"]= { + "30370" + } + }, + [52742]= { + ["skill"]= 52742, + ["name"]= "Hasty Demise", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Damage Over Time with Spell Skills", + "8% increased Cast Speed", + "10% reduced Skill Effect Duration" + }, + ["group"]= 323, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "17945" + }, + ["in"]= { + "51804" + } + }, + [18025]= { + ["skill"]= 18025, + ["name"]= "Hard Knocks", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 324, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14056" + }, + ["in"]= {} + }, + [22088]= { + ["skill"]= 22088, + ["name"]= "Elemental Overload", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png", + ["isKeystone"]= true, + ["stats"]= { + "Skills that have dealt a Critical Strike in the past 8 seconds deal 40% more Elemental Damage with Hits and Ailments\nYour Critical Strikes do not deal extra Damage\nAilments never count as being from Critical Strikes" + }, + ["flavourText"]= { + "You are not a vanishing spark, but a patient ember waiting to seed a great fire." + }, + ["group"]= 325, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "55332" + }, + ["in"]= {} + }, + [46340]= { + ["skill"]= 46340, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 326, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42760", + "51954", + "54954", + "30370" + }, + ["in"]= { + "60398", + "34478" + } + }, + [31080]= { + ["skill"]= 31080, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 327, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "43374" + }, + ["in"]= { + "49412", + "50340" + } + }, + [61343]= { + ["skill"]= 61343, + ["name"]= "Brand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBrand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37186, + ["stats"]= { + "Recover 10% of Mana when a Brand expires while Attached" + } + }, + { + ["effect"]= 5907, + ["stats"]= { + "Brands have 30% increased Area of Effect if 50% of Attached Duration expired" + } + }, + { + ["effect"]= 20630, + ["stats"]= { + "Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds" + } + }, + { + ["effect"]= 39863, + ["stats"]= { + "Brand Recall has 50% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 32877, + ["stats"]= { + "You can Cast 2 additional Brands" + } + }, + { + ["effect"]= 46672, + ["stats"]= { + "40% increased Brand Attachment range" + } + } + }, + ["stats"]= {}, + ["group"]= 328, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29861" + } + }, + [29033]= { + ["skill"]= 29033, + ["name"]= "Brand Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "25% increased Brand Critical Strike Chance" + }, + ["reminderText"]= { + "(Brand Critical Strikes are any Critical Strikes dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 328, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "29861" + }, + ["in"]= { + "51954" + } + }, + [51954]= { + ["skill"]= 51954, + ["name"]= "Brand Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "25% increased Brand Critical Strike Chance" + }, + ["reminderText"]= { + "(Brand Critical Strikes are any Critical Strikes dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 328, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "29033" + }, + ["in"]= { + "46340" + } + }, + [29861]= { + ["skill"]= 29861, + ["name"]= "Explosive Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/ExplosiveRunes.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "+30% to Brand Critical Strike Multiplier", + "30% increased Brand Attachment range" + }, + ["reminderText"]= { + "(Brand Critical Strikes are any Critical Strikes dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 328, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "61343" + }, + ["in"]= { + "29033" + } + }, + [63965]= { + ["skill"]= 63965, + ["name"]= "Damage and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "14% increased Damage", + "+14 to maximum Mana" + }, + ["group"]= 329, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "14151" + }, + ["in"]= { + "54877", + "35724", + "61525" + } + }, + [20228]= { + ["skill"]= 20228, + ["name"]= "Mana Regeneration and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "+14 to maximum Life", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 329, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "61525" + }, + ["in"]= { + "54877", + "39916", + "17352" + } + }, + [61525]= { + ["skill"]= 61525, + ["name"]= "TEMPLAR", + ["icon"]= "Art/2DArt/SkillIcons/passives/axedmgspeed.png", + ["stats"]= {}, + ["classStartIndex"]= 5, + ["group"]= 329, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63965", + "61871", + "30940", + "409" + }, + ["in"]= { + "20228" + } + }, + [50904]= { + ["skill"]= 50904, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "+20 to Armour", + "+16 to maximum Life" + }, + ["group"]= 330, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "6981" + }, + ["in"]= { + "24755", + "22627", + "47175" + } + }, + [47175]= { + ["skill"]= 47175, + ["name"]= "MARAUDER", + ["icon"]= "Art/2DArt/SkillIcons/passives/blankStr.png", + ["stats"]= {}, + ["classStartIndex"]= 1, + ["group"]= 330, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31628", + "50904", + "17765", + "24704", + "29294" + }, + ["in"]= {} + }, + [31628]= { + ["skill"]= 31628, + ["name"]= "Melee Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "+16 to maximum Life", + "16% increased Melee Physical Damage" + }, + ["group"]= 330, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "9511" + }, + ["in"]= { + "24755", + "33988", + "47175" + } + }, + [34098]= { + ["skill"]= 34098, + ["name"]= "Mind Over Matter", + ["icon"]= "Art/2DArt/SkillIcons/passives/heroicspirit.png", + ["isKeystone"]= true, + ["stats"]= { + "40% of Damage is taken from Mana before Life" + }, + ["flavourText"]= { + "While the mind endures, so too will the body." + }, + ["group"]= 331, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60398" + }, + ["in"]= {} + }, + [22703]= { + ["skill"]= 22703, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 332, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14056", + "16380", + "15451" + }, + ["in"]= { + "43374" + } + }, + [24914]= { + ["skill"]= 24914, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 333, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "61262", + "8533", + "38664", + "16860", + "23852" + }, + ["in"]= { + "34400" + } + }, + [35118]= { + ["skill"]= 35118, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 334, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10016", + "49318" + } + }, + [10016]= { + ["skill"]= 10016, + ["name"]= "Executioner", + ["icon"]= "Art/2DArt/SkillIcons/passives/reaver.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "60% increased Damage with Hits against Enemies that are on Low Life", + "15% increased Area of Effect if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "35118" + }, + ["in"]= { + "35362" + } + }, + [1909]= { + ["skill"]= 1909, + ["name"]= "Two Handed Melee Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handedspeed.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Two Handed Melee Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "56381" + }, + ["in"]= { + "49318" + } + }, + [8533]= { + ["skill"]= 8533, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "11515" + }, + ["in"]= { + "24914", + "56381" + } + }, + [11515]= { + ["skill"]= 11515, + ["name"]= "Two Handed Melee Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "5% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "35362" + }, + ["in"]= { + "8533" + } + }, + [35362]= { + ["skill"]= 35362, + ["name"]= "Two Handed Melee Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "5% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "10016" + }, + ["in"]= { + "11515" + } + }, + [56381]= { + ["skill"]= 56381, + ["name"]= "Two Handed Melee Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handedspeed.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Two Handed Melee Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "8533" + }, + ["in"]= { + "1909" + } + }, + [49318]= { + ["skill"]= 49318, + ["name"]= "Wrecking Ball", + ["icon"]= "Art/2DArt/SkillIcons/passives/wreckingball.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Hits and Ailments", + "10% increased Attack Speed with Two Handed Melee Weapons", + "40% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "1909", + "35118" + }, + ["in"]= {} + }, + [57257]= { + ["skill"]= 57257, + ["name"]= "The Impaler", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "When your Hits Impale Enemies, also Impale other Enemies near them\nInflict 5 additional Impales on Enemies you Impale\nFor 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them" + }, + ["flavourText"]= { + "Punish your enemies with the excessive cruelty of a tyrant,", + "then move on without a second thought." + }, + ["group"]= 335, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6741" + }, + ["in"]= {} + }, + [40907]= { + ["skill"]= 40907, + ["name"]= "Unwavering Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Evade enemy Attacks\nCannot be Stunned" + }, + ["flavourText"]= { + "Stand your ground, child, keep your senses.", + "The pain is fleeting, but victory is forever." + }, + ["group"]= 336, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "43374" + }, + ["in"]= {} + }, + [23659]= { + ["skill"]= 23659, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50029" + }, + ["in"]= { + "33864" + } + }, + [367]= { + ["skill"]= 367, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "33864" + }, + ["in"]= { + "35706", + "14021" + } + }, + [33864]= { + ["skill"]= 33864, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63447", + "23659" + }, + ["in"]= { + "367" + } + }, + [35706]= { + ["skill"]= 35706, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "367", + "50029" + }, + ["in"]= {} + }, + [27307]= { + ["skill"]= 27307, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 337, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50029" + } + }, + [50029]= { + ["skill"]= 50029, + ["name"]= "Unnatural Calm", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcane focus.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "18% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate", + "+1% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "27307" + }, + ["in"]= { + "23659", + "35706" + } + }, + [6912]= { + ["skill"]= 6912, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 338, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27301" + } + }, + [27301]= { + ["skill"]= 27301, + ["name"]= "Martial Experience", + ["icon"]= "Art/2DArt/SkillIcons/passives/MartialExperience.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "30% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 30% increased Damage with Ailments", + "100% increased total Recovery per second from Life Leech", + "Hits have 30% chance to ignore Enemy Physical Damage Reduction" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "27140", + "6912" + }, + ["in"]= { + "6884" + } + }, + [64816]= { + ["skill"]= 64816, + ["name"]= "Two Handed Melee Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "0.4% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "27140", + "43374" + }, + ["in"]= { + "34959" + } + }, + [6884]= { + ["skill"]= 6884, + ["name"]= "Two Handed Melee Damage and Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "60% increased total Recovery per second from Life Leech" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27301" + }, + ["in"]= { + "34959" + } + }, + [34959]= { + ["skill"]= 34959, + ["name"]= "Two Handed Melee Damage and Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "60% increased total Recovery per second from Life Leech" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "64816", + "6884" + }, + ["in"]= {} + }, + [27140]= { + ["skill"]= 27140, + ["name"]= "Two Handed Melee Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy2h.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "0.8% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "27301", + "64816" + } + }, + [51583]= { + ["skill"]= 51583, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 339, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37647" + } + }, + [38664]= { + ["skill"]= 38664, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "20% increased Melee Critical Strike Chance" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56460" + }, + ["in"]= { + "24914", + "61636" + } + }, + [56460]= { + ["skill"]= 56460, + ["name"]= "Melee Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png", + ["stats"]= { + "+10% to Melee Critical Strike Multiplier" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "38664", + "37647" + } + }, + [61636]= { + ["skill"]= 61636, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "25% increased Melee Critical Strike Chance" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "38664", + "37647" + }, + ["in"]= {} + }, + [37647]= { + ["skill"]= 37647, + ["name"]= "Dismembering", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "40% increased Melee Critical Strike Chance", + "+20% to Melee Critical Strike Multiplier", + "20% chance to Maim Enemies on Critical Strike with Attacks" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "56460", + "51583" + }, + ["in"]= { + "61636" + } + }, + [21330]= { + ["skill"]= 21330, + ["name"]= "Quick Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/QuickRecovery.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "7% increased maximum Life", + "20% increased Mana Regeneration Rate", + "Regenerate 0.8% of Life per second" + }, + ["group"]= 340, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "17821", + "43818" + }, + ["in"]= {} + }, + [39648]= { + ["skill"]= 39648, + ["name"]= "Mana Regeneration and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 340, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "17821", + "60398" + } + }, + [17821]= { + ["skill"]= 17821, + ["name"]= "Mana Regeneration and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 340, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "39648" + }, + ["in"]= { + "21330" + } + }, + [43818]= { + ["skill"]= 43818, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 340, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21330" + } + }, + [48556]= { + ["skill"]= 48556, + ["name"]= "Heart of Darkness", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeartofChaos.png", + ["isNotable"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "27% increased Chaos Damage", + "Damage Penetrates 7% Chaos Resistance" + }, + ["group"]= 341, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "23547" + }, + ["in"]= { + "29629" + } + }, + [56671]= { + ["skill"]= 56671, + ["name"]= "Chaos Damage and Withered Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "Withered you Inflict expires 10% slower" + }, + ["reminderText"]= { + "(Effects cannot be slowed below 25% of their normal expiry rate)" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44362" + }, + ["in"]= { + "47949" + } + }, + [47949]= { + ["skill"]= 47949, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "12% increased Chaos Damage" + }, + ["group"]= 341, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "48971", + "56671", + "63447" + }, + ["in"]= {} + }, + [48971]= { + ["skill"]= 48971, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "16% increased Chaos Damage" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "29629" + }, + ["in"]= { + "47949" + } + }, + [29629]= { + ["skill"]= 29629, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "16% increased Chaos Damage" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "48556" + }, + ["in"]= { + "48971" + } + }, + [26620]= { + ["skill"]= 26620, + ["name"]= "Corruption", + ["icon"]= "Art/2DArt/SkillIcons/passives/Corruption.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "20% increased Effect of Withered" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 341, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "23547" + }, + ["in"]= { + "44362" + } + }, + [44362]= { + ["skill"]= 44362, + ["name"]= "Chaos Damage and Withered Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "Withered you Inflict expires 10% slower" + }, + ["reminderText"]= { + "(Effects cannot be slowed below 25% of their normal expiry rate)" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26620" + }, + ["in"]= { + "56671" + } + }, + [23547]= { + ["skill"]= 23547, + ["name"]= "Chaos Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50933, + ["stats"]= { + "Recover 1% of Life per Withered Debuff on each Enemy you Kill" + } + }, + { + ["effect"]= 59574, + ["stats"]= { + "+1 to Level of all Chaos Skill Gems", + "Lose 10% of Life and Energy Shield when you use a Chaos Skill" + } + }, + { + ["effect"]= 1727, + ["stats"]= { + "+1% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 21652, + ["stats"]= { + "40% of Physical Damage Converted to Chaos Damage" + } + }, + { + ["effect"]= 28678, + ["stats"]= { + "Deal 10% more Chaos Damage to enemies which have Energy Shield" + } + }, + { + ["effect"]= 65015, + ["stats"]= { + "5% chance when you inflict Withered to inflict up to 15 Withered Debuffs instead" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + } + }, + ["stats"]= {}, + ["group"]= 341, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48556", + "26620" + } + }, + [64401]= { + ["skill"]= 64401, + ["name"]= "Life and Mana on Kill against Cursed Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandMana.png", + ["stats"]= { + "Recover 1% of Mana when you Kill a Cursed Enemy", + "Recover 1% of Life when you Kill a Cursed Enemy" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "55558" + }, + ["in"]= { + "61283", + "14021" + } + }, + [55558]= { + ["skill"]= 55558, + ["name"]= "Life on Kill against Cursed Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandCurses.png", + ["stats"]= { + "Recover 2% of Life when you Kill a Cursed Enemy" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "51748" + }, + ["in"]= { + "64401" + } + }, + [51748]= { + ["skill"]= 51748, + ["name"]= "Last Rites", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandCursesN.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Cursed Enemies you Kill are destroyed", + "Enemies Cursed by you have 50% reduced Life Regeneration Rate", + "Enemies you Curse cannot Recharge Energy Shield" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "61785", + "61283" + }, + ["in"]= { + "55558" + } + }, + [61283]= { + ["skill"]= 61283, + ["name"]= "Mana on Kill against Cursed Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandCurses2.png", + ["stats"]= { + "Recover 2% of Mana when you Kill a Cursed Enemy" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "64401" + }, + ["in"]= { + "51748" + } + }, + [61785]= { + ["skill"]= 61785, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 342, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51748" + } + }, + [42760]= { + ["skill"]= 42760, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 56, + ["out"]= { + "5456", + "55332", + "24229" + }, + ["in"]= { + "40366", + "36678", + "56029", + "12250", + "46340" + } + }, + [7938]= { + ["skill"]= 7938, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 12, + ["out"]= { + "1031", + "33779", + "34157" + }, + ["in"]= { + "14021", + "4397" + } + }, + [55332]= { + ["skill"]= 55332, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 63, + ["out"]= { + "14021", + "48118" + }, + ["in"]= { + "22088", + "42760" + } + }, + [14021]= { + ["skill"]= 14021, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "7938", + "367", + "64401" + }, + ["in"]= { + "55332", + "12379" + } + }, + [26294]= { + ["skill"]= 26294, + ["name"]= "Bloodletting", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "+15% to Damage over Time Multiplier for Bleeding", + "10% chance to Aggravate Bleeding on targets you Hit with Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "17833", + "63710" + }, + ["in"]= { + "60887" + } + }, + [63710]= { + ["skill"]= 63710, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 344, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26294" + } + }, + [17833]= { + ["skill"]= 17833, + ["name"]= "Bleed Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "11568" + }, + ["in"]= { + "26294" + } + }, + [11568]= { + ["skill"]= 11568, + ["name"]= "Bleed Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "23199" + }, + ["in"]= { + "17833" + } + }, + [23199]= { + ["skill"]= 23199, + ["name"]= "Bleed Damage and Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "15% increased Damage with Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6741", + "13273" + }, + ["in"]= { + "11568" + } + }, + [60887]= { + ["skill"]= 60887, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "26294" + }, + ["in"]= { + "13273" + } + }, + [13273]= { + ["skill"]= 13273, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "60887" + }, + ["in"]= { + "23199" + } + }, + [6741]= { + ["skill"]= 6741, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 345, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14056", + "17818", + "40841" + }, + ["in"]= { + "57257", + "23199", + "24865" + } + }, + [13498]= { + ["skill"]= 13498, + ["name"]= "Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "59833" + }, + ["in"]= { + "40841" + } + }, + [53292]= { + ["skill"]= 53292, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "15124" + }, + ["in"]= { + "40841" + } + }, + [40841]= { + ["skill"]= 40841, + ["name"]= "Impale Chance and Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% increased Attack Physical Damage", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "53292", + "13498" + }, + ["in"]= { + "6741" + } + }, + [59833]= { + ["skill"]= 59833, + ["name"]= "Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9194" + }, + ["in"]= { + "13498" + } + }, + [15124]= { + ["skill"]= 15124, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "9194" + }, + ["in"]= { + "53292" + } + }, + [9194]= { + ["skill"]= 9194, + ["name"]= "Merciless Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "15% chance to Impale Enemies on Hit with Attacks", + "12% increased Impale Effect" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48982" + }, + ["in"]= { + "59833", + "15124" + } + }, + [48982]= { + ["skill"]= 48982, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 346, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9194" + } + }, + [60398]= { + ["skill"]= 60398, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 347, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39648", + "46340" + }, + ["in"]= { + "13009", + "34098", + "60648", + "7388", + "31875" + } + }, + [5591]= { + ["skill"]= 5591, + ["name"]= "Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 348, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23690" + }, + ["in"]= { + "34478" + } + }, + [34478]= { + ["skill"]= 34478, + ["name"]= "Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 348, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "5591", + "46340" + }, + ["in"]= {} + }, + [23690]= { + ["skill"]= 23690, + ["name"]= "Essence Infusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcaneradience.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "VerdantOil" + }, + ["stats"]= { + "15% faster start of Energy Shield Recharge", + "30% increased Energy Shield Recharge Rate" + }, + ["group"]= 348, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "10729" + }, + ["in"]= { + "5591" + } + }, + [10729]= { + ["skill"]= 10729, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 348, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "23690" + } + }, + [43374]= { + ["skill"]= 43374, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 349, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "22703", + "30691" + }, + ["in"]= { + "31080", + "40907", + "64816", + "49178", + "2355" + } + }, + [60648]= { + ["skill"]= 60648, + ["name"]= "Mana Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "10% increased Mana Recovery from Flasks", + "5% increased Flask Charges gained" + }, + ["group"]= 350, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "42981", + "60398" + }, + ["in"]= {} + }, + [42981]= { + ["skill"]= 42981, + ["name"]= "Mana Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "10% increased Mana Recovery from Flasks", + "5% increased Flask Charges gained" + }, + ["group"]= 350, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "53802" + }, + ["in"]= { + "60648" + } + }, + [53802]= { + ["skill"]= 53802, + ["name"]= "Essence Extraction", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaFlasksOften.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Flask Charges gained", + "15% increased Mana Recovery Rate during Effect of any Mana Flask" + }, + ["group"]= 350, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18750" + }, + ["in"]= { + "42981" + } + }, + [18750]= { + ["skill"]= 18750, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 350, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53802" + } + }, + [33179]= { + ["skill"]= 33179, + ["name"]= "Attack Speed, Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "15616" + }, + ["in"]= { + "27864" + } + }, + [8419]= { + ["skill"]= 8419, + ["name"]= "Determined Survivor", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Gain 50% Chance to Block from Equipped Shield instead of the Shield's value", + "Inherent Bonuses from Dual Wielding are doubled" + }, + ["reminderText"]= { + "(Dual Wielding inherently grants +20% chance to Block Attack Damage and 10% more Attack Speed)" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "24538" + }, + ["in"]= { + "1675" + } + }, + [63490]= { + ["skill"]= 63490, + ["name"]= "Measured Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Retaliation Skills become Usable for an additional 2 seconds", + "50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use" + }, + ["reminderText"]= { + "(They will also not be put on cooldown if they remain Usable)" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "37623" + } + }, + [2598]= { + ["skill"]= 2598, + ["name"]= "More Than Skill", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Chance to Block Attack or Spell Damage is Lucky if you've Blocked Recently" + }, + ["reminderText"]= { + "(Lucky things are rolled twice and the best result used)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "24538" + } + }, + [14726]= { + ["skill"]= 14726, + ["name"]= "Attack Speed, Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "10% increased Attack Damage", + "5% increased Attack Speed" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "758" + }, + ["in"]= { + "32730" + } + }, + [758]= { + ["skill"]= 758, + ["name"]= "War of Attrition", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Deal 1% more Damage with Hits and Ailments to Rare and Unique Enemies for each second they've ever been in your Presence, up to a maximum of 100%" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "14726" + } + }, + [48760]= { + ["skill"]= 48760, + ["name"]= "Attack Speed, Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 351, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "27864" + }, + ["in"]= { + "32730" + } + }, + [37623]= { + ["skill"]= 37623, + ["name"]= "Attack Speed, Block Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "+3% Chance to Block Attack Damage" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "63490" + }, + ["in"]= { + "32730" + } + }, + [3651]= { + ["skill"]= 3651, + ["name"]= "Attack Speed and One Handed Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Damage with One Handed Weapons" + }, + ["group"]= 351, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52575" + }, + ["in"]= { + "32730" + } + }, + [24538]= { + ["skill"]= 24538, + ["name"]= "Attack Speed, Block Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "+3% Chance to Block Attack Damage" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "2598" + }, + ["in"]= { + "8419" + } + }, + [1675]= { + ["skill"]= 1675, + ["name"]= "Attack Speed, Block Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "+3% Chance to Block Attack Damage" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "8419" + }, + ["in"]= { + "32730" + } + }, + [27864]= { + ["skill"]= 27864, + ["name"]= "Gratuitous Violence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Bleeding Enemies you Kill Explode, dealing 20% of\ntheir Maximum Life as Physical Damage" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "33179" + }, + ["in"]= { + "48760" + } + }, + [15616]= { + ["skill"]= 15616, + ["name"]= "Jagged Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Bleeding you inflict is Aggravated" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "33179" + } + }, + [52575]= { + ["skill"]= 52575, + ["name"]= "Weapon Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "25% more Accuracy Rating while wielding a Sword", + "20% more Area of Effect while wielding a Mace or Sceptre", + "20% more Critical Strike Chance while wielding a Dagger", + "20% of Leech is Instant while wielding a Claw", + "30% more Damage with Hits and Ailments against Enemies that are on Low Life while you are wielding an Axe" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(You are on Low Life if you have 50% of your Maximum Life or less)" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "3651" + } + }, + [32730]= { + ["skill"]= 32730, + ["name"]= "Gladiator", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Gladiator", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 351, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "3651", + "1675", + "48760", + "14726", + "37623" + }, + ["in"]= { + "50986" + } + }, + [8139]= { + ["skill"]= 8139, + ["name"]= "Link Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 10% increased Cast Speed" + }, + ["group"]= 352, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "19958" + }, + ["in"]= { + "46910" + } + }, + [19958]= { + ["skill"]= 19958, + ["name"]= "Link Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 10% increased Cast Speed" + }, + ["group"]= 352, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "60781" + }, + ["in"]= { + "8139" + } + }, + [60781]= { + ["skill"]= 60781, + ["name"]= "Inspiring Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/LinkNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "10% chance for Energy Shield Recharge to start when you Link to a target", + "Link Skills have 20% increased Buff Effect if you have Linked to a target Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 352, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "12244" + }, + ["in"]= { + "19958" + } + }, + [12244]= { + ["skill"]= 12244, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 352, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60781" + } + }, + [24256]= { + ["skill"]= 24256, + ["name"]= "Dynamo", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaGuardNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "AzureOil" + }, + ["stats"]= { + "18% increased maximum Mana", + "Guard Skills have 40% increased Duration" + }, + ["group"]= 353, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41026", + "8732" + }, + ["in"]= { + "34906" + } + }, + [8732]= { + ["skill"]= 8732, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 353, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24256" + } + }, + [34906]= { + ["skill"]= 34906, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 353, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24256" + }, + ["in"]= { + "41026", + "46910" + } + }, + [41026]= { + ["skill"]= 41026, + ["name"]= "Mana and Guard Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "10% increased maximum Mana", + "Guard Skills have 20% increased Cooldown Recovery Rate" + }, + ["group"]= 353, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34906" + }, + ["in"]= { + "24256" + } + }, + [10311]= { + ["skill"]= 10311, + ["name"]= "Banner Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 10% increased Aura Effect" + }, + ["group"]= 354, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61190" + }, + ["in"]= { + "45503" + } + }, + [45503]= { + ["skill"]= 45503, + ["name"]= "Banner Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 10% increased Aura Effect" + }, + ["group"]= 354, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "10311", + "61262" + }, + ["in"]= {} + }, + [61190]= { + ["skill"]= 61190, + ["name"]= "Rallying Icon", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "Banner Skills have 15% increased Aura Effect", + "Banners also grant +5% to all Elemental Resistances to you and Allies" + }, + ["group"]= 354, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "43307" + }, + ["in"]= { + "10311" + } + }, + [43307]= { + ["skill"]= 43307, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 354, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61190" + } + }, + [12379]= { + ["skill"]= 12379, + ["name"]= "Lightning Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "8% increased Lightning Damage", + "3% increased Cast Speed" + }, + ["group"]= 355, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44183", + "14021" + }, + ["in"]= {} + }, + [44183]= { + ["skill"]= 44183, + ["name"]= "Lightning Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "8% increased Lightning Damage", + "3% increased Cast Speed" + }, + ["group"]= 355, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "7555" + }, + ["in"]= { + "12379" + } + }, + [7555]= { + ["skill"]= 7555, + ["name"]= "Crackling Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "24% increased Lightning Damage", + "8% increased Cast Speed" + }, + ["group"]= 355, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "240" + }, + ["in"]= { + "44183" + } + }, + [240]= { + ["skill"]= 240, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 355, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7555" + } + }, + [28498]= { + ["skill"]= 28498, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 356, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "24544", + "30691" + } + }, + [24544]= { + ["skill"]= 24544, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 356, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "28498" + }, + ["in"]= { + "12033" + } + }, + [12033]= { + ["skill"]= 12033, + ["name"]= "Wicked Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedingNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "30% increased Damage with Bleeding", + "20% increased Bleeding Duration" + }, + ["group"]= 356, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "37956", + "24544" + }, + ["in"]= {} + }, + [37956]= { + ["skill"]= 37956, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 356, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12033" + } + }, + [62015]= { + ["skill"]= 62015, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 357, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50858" + } + }, + [50858]= { + ["skill"]= 50858, + ["name"]= "Admonisher", + ["icon"]= "Art/2DArt/SkillIcons/passives/AdmonisherNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Warcry Speed", + "15% increased Damage for each time you've Warcried Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 357, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62015" + }, + ["in"]= { + "61602" + } + }, + [61602]= { + ["skill"]= 61602, + ["name"]= "Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Speed" + }, + ["group"]= 357, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15451", + "50858" + }, + ["in"]= {} + }, + [15451]= { + ["skill"]= 15451, + ["name"]= "Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Speed" + }, + ["group"]= 357, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "22703", + "61602" + } + }, + [17429]= { + ["skill"]= 17429, + ["name"]= "Impale Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "2% increased Attack Speed", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63413" + }, + ["in"]= { + "61262" + } + }, + [47854]= { + ["skill"]= 47854, + ["name"]= "Impale Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "2% increased Attack Speed", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "63413", + "39904" + } + }, + [63413]= { + ["skill"]= 63413, + ["name"]= "Impale Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "2% increased Attack Speed", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "47854" + }, + ["in"]= { + "17429" + } + }, + [39904]= { + ["skill"]= 39904, + ["name"]= "Brutal Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/Impale1HandNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "Impales you inflict last 1 additional Hit" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31400", + "47854" + }, + ["in"]= {} + }, + [31400]= { + ["skill"]= 31400, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 358, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39904" + } + }, + [34723]= { + ["skill"]= 34723, + ["name"]= "Charge Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28720, + ["stats"]= { + "Cannot be Ignited while at maximum Endurance Charges" + } + }, + { + ["effect"]= 48661, + ["stats"]= { + "Cannot be Chilled while at maximum Frenzy Charges" + } + }, + { + ["effect"]= 14100, + ["stats"]= { + "Cannot be Shocked while at maximum Power Charges" + } + }, + { + ["effect"]= 29652, + ["stats"]= { + "100% increased Charge Duration" + } + }, + { + ["effect"]= 40307, + ["stats"]= { + "3% increased Damage per Endurance, Frenzy or Power Charge" + } + }, + { + ["effect"]= 19142, + ["stats"]= { + "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" + } + } + }, + ["stats"]= {}, + ["group"]= 359, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9261" + } + }, + [12888]= { + ["skill"]= 12888, + ["name"]= "Mana Regeneration per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "8% increased Mana Regeneration Rate per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "16954" + }, + ["in"]= { + "63447" + } + }, + [16954]= { + ["skill"]= 16954, + ["name"]= "Critical Strike Chance per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "8% increased Critical Strike Chance per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "12783" + }, + ["in"]= { + "12888" + } + }, + [12783]= { + ["skill"]= 12783, + ["name"]= "Critical Strike Multiplier per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "+5% to Critical Strike Multiplier per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "9261" + }, + ["in"]= { + "16954" + } + }, + [9261]= { + ["skill"]= 9261, + ["name"]= "Disciple of the Forbidden", + ["icon"]= "Art/2DArt/SkillIcons/passives/PowerChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "+1 to Minimum Power Charges", + "8% chance to gain a Power Charge on Kill", + "8% increased Damage per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34723" + }, + ["in"]= { + "12783" + } + }, + [4270]= { + ["skill"]= 4270, + ["name"]= "Brand Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Skills have 15% increased Duration" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64355" + }, + ["in"]= { + "52655" + } + }, + [64355]= { + ["skill"]= 64355, + ["name"]= "Brand Equity", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "You can Cast 2 additional Brands", + "Brand Skills have 20% increased Duration", + "Brand Recall has 20% increased Cooldown Recovery Rate" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "21143" + }, + ["in"]= { + "4270", + "35035" + } + }, + [52655]= { + ["skill"]= 52655, + ["name"]= "Brand Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Skills have 12% increased Duration" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35035", + "4270", + "63447" + }, + ["in"]= {} + }, + [35035]= { + ["skill"]= 35035, + ["name"]= "Brand Recall Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Recall has 15% increased Cooldown Recovery Rate" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "64355" + }, + ["in"]= { + "52655" + } + }, + [21143]= { + ["skill"]= 21143, + ["name"]= "Brand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBrand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37186, + ["stats"]= { + "Recover 10% of Mana when a Brand expires while Attached" + } + }, + { + ["effect"]= 5907, + ["stats"]= { + "Brands have 30% increased Area of Effect if 50% of Attached Duration expired" + } + }, + { + ["effect"]= 20630, + ["stats"]= { + "Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds" + } + }, + { + ["effect"]= 39863, + ["stats"]= { + "Brand Recall has 50% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 32877, + ["stats"]= { + "You can Cast 2 additional Brands" + } + }, + { + ["effect"]= 46672, + ["stats"]= { + "40% increased Brand Attachment range" + } + } + }, + ["stats"]= {}, + ["group"]= 360, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64355" + } + }, + [28475]= { + ["skill"]= 28475, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 361, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "49178" + } + }, + [30733]= { + ["skill"]= 30733, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 361, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "49178" + }, + ["in"]= { + "46578" + } + }, + [49178]= { + ["skill"]= 49178, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 361, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "43374", + "28475" + }, + ["in"]= { + "30733" + } + }, + [17818]= { + ["skill"]= 17818, + ["name"]= "Crimson Dance", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrimsonDance.png", + ["isKeystone"]= true, + ["stats"]= { + "You can inflict Bleeding on an Enemy up to 8 times\nYour Bleeding does not deal extra Damage while the Enemy is moving and cannot be Aggravated\n50% less Damage with Bleeding" + }, + ["flavourText"]= { + "My blade sings so sweetly, your body cannot help but weep." + }, + ["group"]= 362, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6741" + } + }, + [26608]= { + ["skill"]= 26608, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 363, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44562" + } + }, + [17569]= { + ["skill"]= 17569, + ["name"]= "Totem Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandrange.png", + ["stats"]= { + "25% increased Critical Strike Chance with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "44562" + }, + ["in"]= { + "33779" + } + }, + [33779]= { + ["skill"]= 33779, + ["name"]= "Totem Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandrange.png", + ["stats"]= { + "20% increased Critical Strike Chance with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "17569" + }, + ["in"]= { + "7938", + "20142" + } + }, + [45366]= { + ["skill"]= 45366, + ["name"]= "Totem Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "+16% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20142" + }, + ["in"]= { + "44562" + } + }, + [20142]= { + ["skill"]= 20142, + ["name"]= "Totem Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "+16% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "33779" + }, + ["in"]= { + "45366" + } + }, + [44562]= { + ["skill"]= 44562, + ["name"]= "Shaman's Dominion", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandrange.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance with Totem Skills", + "+20% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "45366", + "26608" + }, + ["in"]= { + "17569" + } + }, + [47251]= { + ["skill"]= 47251, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 364, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "7388" + }, + ["in"]= { + "10490" + } + }, + [7388]= { + ["skill"]= 7388, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 364, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "60398", + "36634" + }, + ["in"]= { + "47251" + } + }, + [36634]= { + ["skill"]= 36634, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 364, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "7388" + } + }, + [16775]= { + ["skill"]= 16775, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 365, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "34207" + }, + ["in"]= { + "46910", + "63976", + "25959" + } + }, + [46910]= { + ["skill"]= 46910, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 365, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "16775", + "65034", + "34906", + "50288", + "8139" + }, + ["in"]= { + "33740" + } + }, + [52061]= { + ["skill"]= 52061, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 366, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53840" + } + }, + [55420]= { + ["skill"]= 55420, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15543", + "30170" + }, + ["in"]= { + "61262" + } + }, + [15543]= { + ["skill"]= 15543, + ["name"]= "Maximum Rage and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "8% increased Armour", + "+2 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53840" + }, + ["in"]= { + "55420" + } + }, + [30170]= { + ["skill"]= 30170, + ["name"]= "Slower Rage Decay and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "8% increased Armour", + "Inherent loss of Rage is 8% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53840" + }, + ["in"]= { + "55420" + } + }, + [53840]= { + ["skill"]= 53840, + ["name"]= "Vengeance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "Every Rage also grants 1% increased Armour", + "Gain 3 Rage when Hit by an Enemy" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "52061" + }, + ["in"]= { + "15543", + "30170" + } + }, + [31984]= { + ["skill"]= 31984, + ["name"]= "Energy Shield, Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "5% increased Effect of your Curses" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "37127" + }, + ["in"]= { + "18378" + } + }, + [37492]= { + ["skill"]= 37492, + ["name"]= "Vile Bastion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Regenerate 100 Energy Shield per second", + "Cannot Be Stunned while you have Energy Shield", + "Maximum Energy Shield is increased by Chance to Block Spell Damage" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "29161" + }, + ["in"]= { + "48124" + } + }, + [27096]= { + ["skill"]= 27096, + ["name"]= "Void Beacon", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Nearby Enemies have -20% to Cold Resistance", + "Nearby Enemies have -20% to Chaos Resistance", + "Nearby Enemies have 100% reduced Life Regeneration rate" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "31316", + "43242" + }, + ["in"]= { + "32417" + } + }, + [62504]= { + ["skill"]= 62504, + ["name"]= "Forbidden Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased Area of Effect per Power Charge", + "6% increased Damage per Power Charge", + "Gain a Power Charge after Spending a total of 200 Mana", + "+1 to Maximum Power Charges" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 9, + ["out"]= { + "50935" + }, + ["in"]= { + "6728" + } + }, + [31316]= { + ["skill"]= 31316, + ["name"]= "Energy Shield, Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "10% increased Chaos Damage", + "6% increased maximum Energy Shield" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 24, + ["out"]= { + "25309" + }, + ["in"]= { + "27096" + } + }, + [43242]= { + ["skill"]= 43242, + ["name"]= "Energy Shield, Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "10% increased Cold Damage", + "6% increased maximum Energy Shield" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= { + "47630" + }, + ["in"]= { + "27096" + } + }, + [25309]= { + ["skill"]= 25309, + ["name"]= "Withering Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "+60% to Chaos Resistance", + "15% more Chaos Damage", + "Every second, inflict Withered on nearby Enemies for 15 seconds", + "Nearby Hindered Enemies deal 15% reduced Damage over Time" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= {}, + ["in"]= { + "31316" + } + }, + [47630]= { + ["skill"]= 47630, + ["name"]= "Frigid Wake", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Cannot be Chilled", + "Cannot be Frozen", + "15% more Cold Damage", + "Every 4 seconds, 50% chance to Freeze nearby Non-Frozen Enemies for 0.4 seconds", + "Nearby Chilled Enemies deal 10% reduced Damage with Hits" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "43242" + } + }, + [29161]= { + ["skill"]= 29161, + ["name"]= "Energy Shield, Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "5502" + }, + ["in"]= { + "37492" + } + }, + [17018]= { + ["skill"]= 17018, + ["name"]= "Energy Shield, Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "5% increased Effect of your Curses" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "31344" + }, + ["in"]= { + "18378" + } + }, + [32417]= { + ["skill"]= 32417, + ["name"]= "Energy Shield, Cold and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "10% increased Cold Damage", + "10% increased Chaos Damage", + "6% increased maximum Energy Shield" + }, + ["group"]= 367, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "27096" + }, + ["in"]= { + "18378" + } + }, + [6728]= { + ["skill"]= 6728, + ["name"]= "Energy Shield, Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Power Charge Duration" + }, + ["group"]= 367, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62504" + }, + ["in"]= { + "18378" + } + }, + [48124]= { + ["skill"]= 48124, + ["name"]= "Energy Shield, Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 367, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "37492" + }, + ["in"]= { + "18378" + } + }, + [50935]= { + ["skill"]= 50935, + ["name"]= "Energy Shield, Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "5502" + }, + ["in"]= { + "62504" + } + }, + [37127]= { + ["skill"]= 37127, + ["name"]= "Profane Bloom", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Cursed Enemies you or your Minions Kill have a 50% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= {}, + ["in"]= { + "31984" + } + }, + [31344]= { + ["skill"]= 31344, + ["name"]= "Unholy Authority", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "You can apply an additional Curse", + "Your Hexes can affect Hexproof Enemies" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 32, + ["out"]= {}, + ["in"]= { + "17018" + } + }, + [5502]= { + ["skill"]= 5502, + ["name"]= "Unhallowed Rite", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Gain {SpiritInfusion|Spirit Infusion} every 0.5 seconds while Channelling a Spell" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "29161", + "50935" + } + }, + [18378]= { + ["skill"]= 18378, + ["name"]= "Occultist", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Occultist", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 367, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "48124", + "6728", + "31984", + "32417", + "17018" + }, + ["in"]= { + "54447" + } + }, + [12239]= { + ["skill"]= 12239, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 368, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45803", + "28878" + } + }, + [59306]= { + ["skill"]= 59306, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "14% increased Physical Damage" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "28878" + }, + ["in"]= { + "34207" + } + }, + [34207]= { + ["skill"]= 34207, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "12% increased Physical Damage" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "19609", + "59306" + }, + ["in"]= { + "16775" + } + }, + [19609]= { + ["skill"]= 19609, + ["name"]= "Physical Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png", + ["stats"]= { + "+5% to Physical Damage over Time Multiplier" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "45803" + }, + ["in"]= { + "34207" + } + }, + [45803]= { + ["skill"]= 45803, + ["name"]= "Veteran Soldier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "+15% to Physical Damage over Time Multiplier", + "+25 to maximum Life" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12239" + }, + ["in"]= { + "19609" + } + }, + [28878]= { + ["skill"]= 28878, + ["name"]= "Relentless", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "Regenerate 1% of Life per second if you have Stunned an Enemy Recently", + "25% increased Physical Damage" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "12239" + }, + ["in"]= { + "59306" + } + }, + [34552]= { + ["skill"]= 34552, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 369, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7688" + } + }, + [22062]= { + ["skill"]= 22062, + ["name"]= "Minion Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png", + ["stats"]= { + "Minions deal 12% increased Damage", + "12% increased Minion Duration" + }, + ["group"]= 369, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "15081" + }, + ["in"]= { + "31875" + } + }, + [15081]= { + ["skill"]= 15081, + ["name"]= "Minion Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png", + ["stats"]= { + "Minions deal 12% increased Damage", + "12% increased Minion Duration" + }, + ["group"]= 369, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "7688" + }, + ["in"]= { + "22062" + } + }, + [7688]= { + ["skill"]= 7688, + ["name"]= "Enduring Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Skill Effect Duration", + "Minions deal 30% increased Damage if you've used a Minion Skill Recently", + "20% increased Minion Duration" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 369, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "34552" + }, + ["in"]= { + "15081" + } + }, + [38436]= { + ["skill"]= 38436, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 370, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57900" + } + }, + [53558]= { + ["skill"]= 53558, + ["name"]= "Shield Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 370, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "57900" + }, + ["in"]= { + "2355" + } + }, + [2355]= { + ["skill"]= 2355, + ["name"]= "Shield Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 370, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "53558", + "43374" + }, + ["in"]= {} + }, + [57900]= { + ["skill"]= 57900, + ["name"]= "Command of Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/CommandofSteel.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while holding a Shield", + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 370, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38436" + }, + ["in"]= { + "53558" + } + }, + [30691]= { + ["skill"]= 30691, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 371, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "476", + "28498", + "42086" + }, + ["in"]= { + "43374" + } + }, + [16245]= { + ["skill"]= 16245, + ["name"]= "Retaliation Skill Usable Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode1.png", + ["stats"]= { + "Retaliation Skills become Usable for 20% longer" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54862" + }, + ["in"]= { + "56920" + } + }, + [54862]= { + ["skill"]= 54862, + ["name"]= "Retaliation Skill Usable Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode1.png", + ["stats"]= { + "Retaliation Skills become Usable for 20% longer" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2599" + }, + ["in"]= { + "16245" + } + }, + [49407]= { + ["skill"]= 49407, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 15% increased Cooldown Recovery Rate" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "2599" + }, + ["in"]= { + "56920" + } + }, + [56920]= { + ["skill"]= 56920, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 12% increased Cooldown Recovery Rate" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "16245", + "49407" + }, + ["in"]= { + "24865" + } + }, + [2599]= { + ["skill"]= 2599, + ["name"]= "Prepared Response", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "SepiaOil" + }, + ["stats"]= { + "25% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable", + "Retaliation Skills become Usable for 30% longer" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "4327" + }, + ["in"]= { + "54862", + "49407" + } + }, + [4327]= { + ["skill"]= 4327, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 372, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2599" + } + }, + [50515]= { + ["skill"]= 50515, + ["name"]= "Fortify on Melee Stun", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Melee Hits which Stun have 10% chance to Fortify" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "27605", + "56370" + }, + ["in"]= { + "24865" + } + }, + [56370]= { + ["skill"]= 56370, + ["name"]= "Fortify on Melee Stun", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Melee Hits which Stun have 10% chance to Fortify" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "1340" + }, + ["in"]= { + "50515" + } + }, + [27605]= { + ["skill"]= 27605, + ["name"]= "Fortification Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Fortifying Hits grant 40% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6139" + }, + ["in"]= { + "50515" + } + }, + [6139]= { + ["skill"]= 6139, + ["name"]= "Fortification Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Fortifying Hits grant 40% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "1340" + }, + ["in"]= { + "27605" + } + }, + [1340]= { + ["skill"]= 1340, + ["name"]= "Rampart", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Armour and Evasion Rating while Fortified", + "Fortifying Hits against Unique Enemies grant 100% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "51974" + }, + ["in"]= { + "56370", + "6139" + } + }, + [51974]= { + ["skill"]= 51974, + ["name"]= "Fortify Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37925, + ["stats"]= { + "Recover 100 Life for each Fortification lost" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification)" + } + }, + { + ["effect"]= 51153, + ["stats"]= { + "Gain 20 Fortification on Melee Kill against a Rare or Unique Enemy" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 27173, + ["stats"]= { + "2% reduced Duration of Ailments inflicted on you per Fortification" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 4710, + ["stats"]= { + "4% increased Stun and Block Recovery per Fortification" + } + }, + { + ["effect"]= 28469, + ["stats"]= { + "Melee Hits Fortify", + "-3 to maximum Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 23472, + ["stats"]= { + "10% reduced Damage over Time Taken while you have at least 20 Fortification" + } + } + }, + ["stats"]= {}, + ["group"]= 373, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1340" + } + }, + [31875]= { + ["skill"]= 31875, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 374, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "4397", + "60398", + "22062" + }, + ["in"]= {} + }, + [50288]= { + ["skill"]= 50288, + ["name"]= "Iron Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneIronWill.png", + ["isKeystone"]= true, + ["stats"]= { + "Strength's Damage bonus applies to all Spell Damage as well" + }, + ["flavourText"]= { + "Legend tells of incantations so powerful that only giants could recite them." + }, + ["group"]= 375, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46910" + } + }, + [42086]= { + ["skill"]= 42086, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 376, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27422" + }, + ["in"]= { + "30691", + "20402" + } + }, + [20402]= { + ["skill"]= 20402, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 376, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42086" + }, + ["in"]= { + "27422" + } + }, + [27422]= { + ["skill"]= 27422, + ["name"]= "Spirit of War", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "0.5% of Physical Attack Damage Leeched as Mana", + "25% increased Cost Efficiency of Attacks" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 376, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "20402", + "65395" + }, + ["in"]= { + "42086" + } + }, + [65395]= { + ["skill"]= 65395, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 376, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27422" + } + }, + [27733]= { + ["skill"]= 27733, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 377, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46904" + } + }, + [58210]= { + ["skill"]= 58210, + ["name"]= "Shield Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "12% increased Spell Damage while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19008", + "62970" + }, + ["in"]= { + "44184" + } + }, + [19008]= { + ["skill"]= 19008, + ["name"]= "Shield Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while holding a Shield", + "8% increased Spell Damage while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "11689" + }, + ["in"]= { + "58210" + } + }, + [11689]= { + ["skill"]= 11689, + ["name"]= "Shield Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while holding a Shield", + "8% increased Spell Damage while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46904" + }, + ["in"]= { + "19008" + } + }, + [62970]= { + ["skill"]= 62970, + ["name"]= "Shield Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "4% increased Cast Speed while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "46904" + }, + ["in"]= { + "58210" + } + }, + [46904]= { + ["skill"]= 46904, + ["name"]= "Arcane Sanctuary", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+8% Chance to Block Spell Damage while holding a Shield", + "25% increased Spell Damage while holding a Shield", + "25% reduced Elemental Ailment Duration on you while holding a Shield" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "27733" + }, + ["in"]= { + "11689", + "62970" + } + }, + [37800]= { + ["skill"]= 37800, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "0.6% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35507", + "4378" + }, + ["in"]= { + "61262" + } + }, + [29547]= { + ["skill"]= 29547, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "15% increased Maximum total Life Recovery per second from Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "4378", + "22356" + }, + ["in"]= {} + }, + [4378]= { + ["skill"]= 4378, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "15% increased Maximum total Life Recovery per second from Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "37800", + "29547" + } + }, + [35507]= { + ["skill"]= 35507, + ["name"]= "Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "60% increased total Recovery per second from Life Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "22356" + }, + ["in"]= { + "37800" + } + }, + [22356]= { + ["skill"]= 22356, + ["name"]= "Hematophagy", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "40% increased Maximum total Life Recovery per second from Leech", + "100% increased total Recovery per second from Life Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35859" + }, + ["in"]= { + "29547", + "35507" + } + }, + [35859]= { + ["skill"]= 35859, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 378, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22356" + } + }, + [54657]= { + ["skill"]= 54657, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 379, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34157", + "9432" + }, + ["in"]= {} + }, + [34157]= { + ["skill"]= 34157, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 379, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "7938", + "54657" + } + }, + [9432]= { + ["skill"]= 9432, + ["name"]= "Mental Rapidity", + ["icon"]= "Art/2DArt/SkillIcons/passives/MentalRapidity.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "10% increased Cast Speed", + "30% increased Mana Regeneration Rate" + }, + ["group"]= 379, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "28680" + }, + ["in"]= { + "54657" + } + }, + [28680]= { + ["skill"]= 28680, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 379, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9432" + } + }, + [24865]= { + ["skill"]= 24865, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 380, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6741", + "34031", + "50515", + "56920", + "8904" + }, + ["in"]= { + "476" + } + }, + [10490]= { + ["skill"]= 10490, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 381, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "47251", + "45175", + "18359" + }, + ["in"]= { + "33479", + "45680", + "22473" + } + }, + [33479]= { + ["skill"]= 33479, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 381, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "10490", + "7614" + }, + ["in"]= { + "47312", + "63976" + } + }, + [58541]= { + ["skill"]= 58541, + ["name"]= "Mace Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 8% increased Damage with Hits and Ailments", + "3% increased Attack Speed with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "26456", + "24772" + }, + ["in"]= { + "61262" + } + }, + [6633]= { + ["skill"]= 6633, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 10% increased Damage with Hits and Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "24772", + "24721" + }, + ["in"]= {} + }, + [24772]= { + ["skill"]= 24772, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 10% increased Damage with Hits and Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "58541", + "6633" + } + }, + [26456]= { + ["skill"]= 26456, + ["name"]= "Mace Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 8% increased Damage with Hits and Ailments", + "3% increased Attack Speed with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "58541", + "24721" + } + }, + [24721]= { + ["skill"]= 24721, + ["name"]= "Ribcage Crusher", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Mace or Sceptre Attacks deal 24% increased Damage with Hits and Ailments", + "6% increased Attack Speed with Maces or Sceptres", + "15% increased Area of Effect if you have Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26456", + "11596" + }, + ["in"]= { + "6633" + } + }, + [11596]= { + ["skill"]= 11596, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 382, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24721" + } + }, + [25714]= { + ["skill"]= 25714, + ["name"]= "Mana and Increased Mana Cost", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png", + ["stats"]= { + "10% increased maximum Mana", + "5% increased Mana Cost of Skills" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "26960" + }, + ["in"]= { + "45680" + } + }, + [26960]= { + ["skill"]= 26960, + ["name"]= "Forethought", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "30% increased maximum Mana", + "10% increased Mana Cost of Skills" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63559" + }, + ["in"]= { + "25714" + } + }, + [45680]= { + ["skill"]= 45680, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25237", + "25714", + "10490" + }, + ["in"]= {} + }, + [25237]= { + ["skill"]= 25237, + ["name"]= "Mana Regeneration and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png", + ["stats"]= { + "10% increased Mana Regeneration Rate", + "8% increased Mana Cost Efficiency" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "10835" + }, + ["in"]= { + "45680" + } + }, + [10835]= { + ["skill"]= 10835, + ["name"]= "Dreamer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Dreamer.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "30% increased Mana Regeneration Rate", + "15% increased Mana Cost Efficiency" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63559" + }, + ["in"]= { + "25237" + } + }, + [63559]= { + ["skill"]= 63559, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 383, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26960", + "10835" + } + }, + [47312]= { + ["skill"]= 47312, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 384, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "55866", + "33479" + }, + ["in"]= {} + }, + [55866]= { + ["skill"]= 55866, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 384, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "47312", + "45317" + } + }, + [45317]= { + ["skill"]= 45317, + ["name"]= "Ash, Frost and Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Elemental Damage", + "10% chance to Freeze, Shock and Ignite", + "30% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 384, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "5348", + "55866" + }, + ["in"]= {} + }, + [5348]= { + ["skill"]= 5348, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 384, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45317" + } + }, + [61262]= { + ["skill"]= 61262, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 385, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "24083", + "37800", + "55420", + "17429", + "58541" + }, + ["in"]= { + "24914", + "45503" + } + }, + [13714]= { + ["skill"]= 13714, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "65167", + "55485", + "46578" + } + }, + [19939]= { + ["skill"]= 19939, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "65167", + "12702" + }, + ["in"]= {} + }, + [62021]= { + ["skill"]= 62021, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "65034", + "15073" + } + }, + [65034]= { + ["skill"]= 65034, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "62021" + }, + ["in"]= { + "46910", + "55485" + } + }, + [65167]= { + ["skill"]= 65167, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "13714" + }, + ["in"]= { + "19939" + } + }, + [15073]= { + ["skill"]= 15073, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "62021", + "12702" + }, + ["in"]= {} + }, + [55485]= { + ["skill"]= 55485, + ["name"]= "Constitution", + ["icon"]= "Art/2DArt/SkillIcons/passives/Constitution.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "+20 to maximum Life", + "10% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "13714", + "65034", + "12382" + }, + ["in"]= {} + }, + [12382]= { + ["skill"]= 12382, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 386, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55485", + "12702" + } + }, + [12702]= { + ["skill"]= 12702, + ["name"]= "Path of the Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warrior.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "AmberOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "+50 to Armour", + "+20 to Strength", + "16% increased Physical Damage" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "12382" + }, + ["in"]= { + "19939", + "15073", + "13782" + } + }, + [4397]= { + ["skill"]= 4397, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 387, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36542", + "11420", + "7938" + }, + ["in"]= { + "31875" + } + }, + [29292]= { + ["skill"]= 29292, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed2h.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 388, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "27718", + "46578" + }, + ["in"]= {} + }, + [27718]= { + ["skill"]= 27718, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed2h.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 388, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "29292", + "12809" + } + }, + [12809]= { + ["skill"]= 12809, + ["name"]= "Berserking", + ["icon"]= "Art/2DArt/SkillIcons/passives/berserking.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "OpalescentOil" + }, + ["stats"]= { + "6% increased Attack Speed", + "+5 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 388, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "27718", + "8629" + }, + ["in"]= {} + }, + [8629]= { + ["skill"]= 8629, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 388, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12809" + } + }, + [63976]= { + ["skill"]= 63976, + ["name"]= "Shaper", + ["icon"]= "Art/2DArt/SkillIcons/passives/Shaper.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "40% increased Mana Regeneration Rate", + "Regenerate 1% of Life per second" + }, + ["group"]= 389, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "33479", + "16775" + }, + ["in"]= { + "26740", + "6204" + } + }, + [21958]= { + ["skill"]= 21958, + ["name"]= "Cruel Preparation", + ["icon"]= "Art/2DArt/SkillIcons/passives/thickskin.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "+5% to all Elemental Resistances" + }, + ["group"]= 390, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "14936", + "12125" + }, + ["in"]= { + "33755" + } + }, + [33755]= { + ["skill"]= 33755, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 390, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "1031", + "21958" + }, + ["in"]= {} + }, + [14936]= { + ["skill"]= 14936, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 390, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "44184" + }, + ["in"]= { + "21958" + } + }, + [12125]= { + ["skill"]= 12125, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 390, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21958" + } + }, + [26154]= { + ["skill"]= 26154, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 391, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64226" + } + }, + [8904]= { + ["skill"]= 8904, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "12% increased Warcry Duration" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49167", + "35756" + }, + ["in"]= { + "24865" + } + }, + [49167]= { + ["skill"]= 49167, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "64226" + }, + ["in"]= { + "8904" + } + }, + [35756]= { + ["skill"]= 35756, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "23834" + }, + ["in"]= { + "8904" + } + }, + [23834]= { + ["skill"]= 23834, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64226" + }, + ["in"]= { + "35756" + } + }, + [64226]= { + ["skill"]= 64226, + ["name"]= "Roaring Challenge", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "VerdantOil" + }, + ["stats"]= { + "25% increased total Power counted by Warcries" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "26154" + }, + ["in"]= { + "49167", + "23834" + } + }, + [50679]= { + ["skill"]= 50679, + ["name"]= "Versatile Combatant", + ["icon"]= "Art/2DArt/SkillIcons/passives/VersatileCombatant.png", + ["isKeystone"]= true, + ["stats"]= { + "-10% to maximum Chance to Block Attack Damage\n-10% to maximum Chance to Block Spell Damage\n+2% Chance to Block Spell Damage for each 1% Overcapped Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Overcapped Chance to Block is the amount by which Uncapped Chance to Block is higher than Maximum Chance to Block)", + "(Uncapped Chance to Block is the value Chance to Block would have if ignoring Maximum Chance to Block)" + }, + ["flavourText"]= { + "To master the arena, you must be prepared for anything." + }, + ["group"]= 392, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "24083" + }, + ["in"]= {} + }, + [25959]= { + ["skill"]= 25959, + ["name"]= "Hex Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png", + ["stats"]= { + "15% increased Area of Effect of Hex Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "2081", + "16775" + }, + ["in"]= { + "25431" + } + }, + [15400]= { + ["skill"]= 15400, + ["name"]= "Skittering Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "50% increased Area of Effect of Hex Skills", + "20% increased Mana Cost Efficiency of Curse Skills", + "20% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "62480", + "22959" + }, + ["in"]= { + "35190" + } + }, + [62480]= { + ["skill"]= 62480, + ["name"]= "Curse Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaCost.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Curse Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "25431" + }, + ["in"]= { + "15400" + } + }, + [25431]= { + ["skill"]= 25431, + ["name"]= "Curse Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaCost.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Curse Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "25959" + }, + ["in"]= { + "62480" + } + }, + [35190]= { + ["skill"]= 35190, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15400" + }, + ["in"]= { + "2081" + } + }, + [2081]= { + ["skill"]= 2081, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "35190" + }, + ["in"]= { + "25959" + } + }, + [22959]= { + ["skill"]= 22959, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 393, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15400" + } + }, + [63903]= { + ["skill"]= 63903, + ["name"]= "Voracious Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/FirePureElementalCasterKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "You can inflict an additional Ignite on each Enemy\nBase Ignite Duration is 1 second\n25% less Damage with Ignite\nCannot deal non-Fire Damage" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["flavourText"]= { + "Sacrifice your foes upon the pyre of your supremacy." + }, + ["group"]= 394, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44184" + } + }, + [476]= { + ["skill"]= 476, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 395, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "24865" + }, + ["in"]= { + "30691", + "34009", + "40867" + } + }, + [44184]= { + ["skill"]= 44184, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 396, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "29781", + "58210", + "63903" + }, + ["in"]= { + "63447", + "14936", + "61804", + "4367" + } + }, + [38148]= { + ["skill"]= 38148, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "44955", + "12852" + }, + ["in"]= {} + }, + [12852]= { + ["skill"]= 12852, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "44983", + "1031" + }, + ["in"]= { + "38148", + "58604" + } + }, + [4184]= { + ["skill"]= 4184, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "34661", + "11420" + }, + ["in"]= { + "44955", + "30225" + } + }, + [44983]= { + ["skill"]= 44983, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "34661" + }, + ["in"]= { + "12852" + } + }, + [34661]= { + ["skill"]= 34661, + ["name"]= "Fire Walker", + ["icon"]= "Art/2DArt/SkillIcons/passives/flameborn.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Fire Damage", + "5% increased Cast Speed with Fire Skills", + "+15% to Fire Resistance" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "4184", + "44983" + } + }, + [44955]= { + ["skill"]= 44955, + ["name"]= "Frost Walker", + ["icon"]= "Art/2DArt/SkillIcons/passives/frostborn.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "25% increased Cold Damage", + "5% increased Cast Speed with Cold Skills", + "+15% to Cold Resistance" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "4184" + }, + ["in"]= { + "38148" + } + }, + [58604]= { + ["skill"]= 58604, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 397, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12852" + }, + ["in"]= { + "30225" + } + }, + [30225]= { + ["skill"]= 30225, + ["name"]= "Lightning Walker", + ["icon"]= "Art/2DArt/SkillIcons/passives/stormborn.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Lightning Damage", + "5% increased Cast Speed with Lightning Skills", + "+15% to Lightning Resistance" + }, + ["group"]= 397, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58604", + "4184" + }, + ["in"]= {} + }, + [1031]= { + ["skill"]= 1031, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 398, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "19635" + }, + ["in"]= { + "7938", + "33755", + "12852", + "60388" + } + }, + [1325]= { + ["skill"]= 1325, + ["name"]= "Golem's Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/golemsblood.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "10% increased maximum Life", + "Regenerate 1.6% of Life per second" + }, + ["group"]= 399, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "31471", + "62588" + }, + ["in"]= { + "29933" + } + }, + [29933]= { + ["skill"]= 29933, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 399, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "1325", + "34031" + }, + ["in"]= {} + }, + [31471]= { + ["skill"]= 31471, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 399, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "24083" + }, + ["in"]= { + "1325" + } + }, + [62588]= { + ["skill"]= 62588, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 399, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1325" + } + }, + [5574]= { + ["skill"]= 5574, + ["name"]= "Force of Darkness", + ["icon"]= "Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "Damage Penetrates 15% Chaos Resistance" + }, + ["group"]= 400, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [12926]= { + ["skill"]= 12926, + ["name"]= "Iron Grip", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png", + ["isKeystone"]= true, + ["stats"]= { + "Strength's Damage bonus applies to Projectile Attack Damage as well as Melee Damage" + }, + ["flavourText"]= { + "Legend tells of bows so powerful that only giants could draw them back." + }, + ["group"]= 401, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46578" + } + }, + [24083]= { + ["skill"]= 24083, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 402, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49343" + }, + ["in"]= { + "61262", + "50679", + "31471", + "17566", + "10073", + "16544" + } + }, + [22970]= { + ["skill"]= 22970, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 403, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21973" + } + }, + [18359]= { + ["skill"]= 18359, + ["name"]= "Minion Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionblockchance.png", + ["stats"]= { + "Minions have +12% Chance to Block Attack Damage" + }, + ["group"]= 403, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "10490", + "34306" + } + }, + [21973]= { + ["skill"]= 21973, + ["name"]= "Decay Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionblockchance.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "TealOil" + }, + ["stats"]= { + "Minions have +18% Chance to Block Attack Damage", + "Minions have +18% Chance to Block Spell Damage", + "Minions Recover 2% of their Life when they Block" + }, + ["group"]= 403, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "34306", + "22970" + }, + ["in"]= {} + }, + [34306]= { + ["skill"]= 34306, + ["name"]= "Minion Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionblockchance.png", + ["stats"]= { + "Minions have +12% Chance to Block Spell Damage" + }, + ["group"]= 403, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18359" + }, + ["in"]= { + "21973" + } + }, + [45175]= { + ["skill"]= 45175, + ["name"]= "Necromantic Aegis", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png", + ["isKeystone"]= true, + ["stats"]= { + "All bonuses from an Equipped Shield apply to your Minions instead of you" + }, + ["flavourText"]= { + "I give you everything, my pets. My trust, my strength, my safety. Do not disappoint me." + }, + ["group"]= 404, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10490" + } + }, + [24362]= { + ["skill"]= 24362, + ["name"]= "Deep Thoughts", + ["icon"]= "Art/2DArt/SkillIcons/passives/deepthoughts.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "VioletOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "20% increased maximum Mana", + "20% increased Mana Regeneration Rate", + "+20 to Intelligence" + }, + ["group"]= 405, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "60388", + "29781", + "53188" + }, + ["in"]= {} + }, + [29781]= { + ["skill"]= 29781, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 405, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44184", + "24362" + } + }, + [60388]= { + ["skill"]= 60388, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 405, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "1031" + }, + ["in"]= { + "24362" + } + }, + [53188]= { + ["skill"]= 53188, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 405, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24362" + } + }, + [38450]= { + ["skill"]= 38450, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "12% increased Area of Effect" + }, + ["group"]= 406, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51291" + } + }, + [5560]= { + ["skill"]= 5560, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "12% increased Area of Effect" + }, + ["group"]= 406, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "51291" + }, + ["in"]= { + "2151" + } + }, + [51291]= { + ["skill"]= 51291, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "12% increased Area of Effect" + }, + ["group"]= 406, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "38450" + }, + ["in"]= { + "5560" + } + }, + [6230]= { + ["skill"]= 6230, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 406, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "48423" + }, + ["in"]= { + "55906" + } + }, + [26740]= { + ["skill"]= 26740, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.3% of Life per second" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "63976" + }, + ["in"]= { + "55906" + } + }, + [38048]= { + ["skill"]= 38048, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.3% of Life per second" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "55906" + }, + ["in"]= { + "55373" + } + }, + [55906]= { + ["skill"]= 55906, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.4% of Life per second" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "26740", + "6230" + }, + ["in"]= { + "38048" + } + }, + [37690]= { + ["skill"]= 37690, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "48423" + }, + ["in"]= { + "2151" + } + }, + [48423]= { + ["skill"]= 48423, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "6204" + }, + ["in"]= { + "6230", + "37690" + } + }, + [6204]= { + ["skill"]= 6204, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63976" + }, + ["in"]= { + "48423" + } + }, + [41522]= { + ["skill"]= 41522, + ["name"]= "Duration Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryDuration.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 17852, + ["stats"]= { + "10% more Skill Effect Duration" + } + }, + { + ["effect"]= 21730, + ["stats"]= { + "10% less Skill Effect Duration" + } + }, + { + ["effect"]= 24352, + ["stats"]= { + "Debuffs on you expire 15% faster" + } + }, + { + ["effect"]= 14881, + ["stats"]= { + "20% reduced Elemental Ailment Duration on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 407, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1006" + } + }, + [13191]= { + ["skill"]= 13191, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 407, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "7614" + }, + ["in"]= { + "1006" + } + }, + [7614]= { + ["skill"]= 7614, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 407, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "33479", + "13191" + } + }, + [1006]= { + ["skill"]= 1006, + ["name"]= "Potency of Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/potencyofwill.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "OpalescentOil" + }, + ["stats"]= { + "25% increased Skill Effect Duration" + }, + ["group"]= 407, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13191", + "41522" + }, + ["in"]= {} + }, + [38789]= { + ["skill"]= 38789, + ["name"]= "Ignite Chance and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% increased Ignite Duration on Enemies", + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "11924" + }, + ["in"]= { + "8624" + } + }, + [61804]= { + ["skill"]= 61804, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "12% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "44184", + "14040" + }, + ["in"]= { + "13559" + } + }, + [14040]= { + ["skill"]= 14040, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "18715" + }, + ["in"]= { + "61804" + } + }, + [18715]= { + ["skill"]= 18715, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "10893" + }, + ["in"]= { + "14040" + } + }, + [31462]= { + ["skill"]= 31462, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "+5% to Fire Damage over Time Multiplier" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "11924" + }, + ["in"]= { + "13559" + } + }, + [10893]= { + ["skill"]= 10893, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "18715", + "60501" + } + }, + [13559]= { + ["skill"]= 13559, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+5% to Fire Damage over Time Multiplier" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "61804", + "31462" + }, + ["in"]= { + "8624" + } + }, + [8624]= { + ["skill"]= 8624, + ["name"]= "Ignite Chance and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% increased Ignite Duration on Enemies", + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13559", + "38789" + }, + ["in"]= {} + }, + [11924]= { + ["skill"]= 11924, + ["name"]= "Breath of Flames", + ["icon"]= "Art/2DArt/SkillIcons/passives/BreathofFlames2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "+10% to Fire Damage over Time Multiplier", + "30% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34927" + }, + ["in"]= { + "38789", + "31462" + } + }, + [60501]= { + ["skill"]= 60501, + ["name"]= "Heart of Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/hellfire.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Fire Damage", + "Damage Penetrates 6% Fire Resistance" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "10893", + "34927" + }, + ["in"]= {} + }, + [34927]= { + ["skill"]= 34927, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 408, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "11924", + "60501" + } + }, + [34666]= { + ["skill"]= 34666, + ["name"]= "Destroyer", + ["icon"]= "Art/2DArt/SkillIcons/passives/executioner.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "OpalescentOil" + }, + ["stats"]= { + "25% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments", + "5% increased Attack Speed with Two Handed Melee Weapons", + "25% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "36972" + }, + ["in"]= { + "43412" + } + }, + [43303]= { + ["skill"]= 43303, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "30842", + "34031" + }, + ["in"]= { + "36972" + } + }, + [30842]= { + ["skill"]= 30842, + ["name"]= "Two Handed Melee Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy2h.png", + ["stats"]= { + "12% increased Accuracy Rating with Two Handed Melee Weapons" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "43412" + }, + ["in"]= { + "43303" + } + }, + [36972]= { + ["skill"]= 36972, + ["name"]= "Two Handed Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handedspeed.png", + ["stats"]= { + "4% increased Attack Speed with Two Handed Melee Weapons" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "43303" + }, + ["in"]= { + "34666" + } + }, + [43412]= { + ["skill"]= 43412, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34666", + "34009" + }, + ["in"]= { + "30842" + } + }, + [20605]= { + ["skill"]= 20605, + ["name"]= "No Forgiveness", + ["icon"]= "Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "20% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use" + }, + ["reminderText"]= { + "(They will also not be put on cooldown if they remain Usable)" + }, + ["group"]= 410, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [49343]= { + ["skill"]= 49343, + ["name"]= "Block Chance and Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while holding a Shield", + "Attack Skills deal 8% increased Damage while holding a Shield" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "24083", + "1159", + "43413" + } + }, + [36761]= { + ["skill"]= 36761, + ["name"]= "Attack Damage and Attack Speed with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while holding a Shield", + "3% increased Attack Speed while holding a Shield" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "1159" + }, + ["in"]= { + "12878" + } + }, + [1159]= { + ["skill"]= 1159, + ["name"]= "Attack Damage and Attack Speed with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while holding a Shield", + "3% increased Attack Speed while holding a Shield" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "49343" + }, + ["in"]= { + "36761" + } + }, + [37795]= { + ["skill"]= 37795, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 411, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12878", + "44207" + } + }, + [43413]= { + ["skill"]= 43413, + ["name"]= "Shield Block and Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "30% increased Block Recovery" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "3319", + "49343" + }, + ["in"]= {} + }, + [3319]= { + ["skill"]= 3319, + ["name"]= "Shield Block and Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "30% increased Block Recovery" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "44207" + }, + ["in"]= { + "43413" + } + }, + [12878]= { + ["skill"]= 12878, + ["name"]= "Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/Retaliation.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "Attack Skills deal 20% increased Damage while holding a Shield", + "8% increased Attack Speed while holding a Shield", + "60% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "36761", + "37795" + }, + ["in"]= {} + }, + [44207]= { + ["skill"]= 44207, + ["name"]= "Testudo", + ["icon"]= "Art/2DArt/SkillIcons/passives/barricade.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "BlackOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while holding a Shield", + "60% increased Block Recovery", + "Recover 30 Life when you Block" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "37795" + }, + ["in"]= { + "3319" + } + }, + [57061]= { + ["skill"]= 57061, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 412, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "22061", + "46578" + }, + ["in"]= { + "5289" + } + }, + [22061]= { + ["skill"]= 22061, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "+25 to maximum Mana", + "10% increased maximum Mana" + }, + ["group"]= 412, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "57061", + "5289" + } + }, + [5289]= { + ["skill"]= 5289, + ["name"]= "Battle Rouse", + ["icon"]= "Art/2DArt/SkillIcons/passives/BattleRouse.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "15% increased maximum Mana", + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 412, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "57061", + "22061", + "25186" + }, + ["in"]= {} + }, + [25186]= { + ["skill"]= 25186, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 412, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5289" + } + }, + [34009]= { + ["skill"]= 34009, + ["name"]= "Master of the Arena", + ["icon"]= "Art/2DArt/SkillIcons/passives/Meleerange.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "OpalescentOil", + "SilverOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "Regenerate 1% of Life per second", + "10% increased Melee Physical Damage", + "+0.3 metres to Melee Strike Range", + "+20 to Strength" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 413, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "51856", + "50360", + "18302", + "476" + }, + ["in"]= { + "43412", + "12236" + } + }, + [34031]= { + ["skill"]= 34031, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 414, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49109" + }, + ["in"]= { + "24865", + "29933", + "43303", + "25324", + "56001" + } + }, + [62662]= { + ["skill"]= 62662, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "8% increased Physical Damage" + }, + ["group"]= 415, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "13782" + }, + ["in"]= { + "48828" + } + }, + [17674]= { + ["skill"]= 17674, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "8% increased Physical Damage" + }, + ["group"]= 415, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "13782" + }, + ["in"]= { + "55373" + } + }, + [13782]= { + ["skill"]= 13782, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "8% increased Physical Damage" + }, + ["group"]= 415, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "12702" + }, + ["in"]= { + "62662", + "17674" + } + }, + [40867]= { + ["skill"]= 40867, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 416, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "476" + }, + ["in"]= { + "42911" + } + }, + [42911]= { + ["skill"]= 42911, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 416, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "40867" + }, + ["in"]= { + "47389" + } + }, + [65154]= { + ["skill"]= 65154, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 417, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63933" + } + }, + [1696]= { + ["skill"]= 1696, + ["name"]= "Totem Placement Speed and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + ["stats"]= { + "30% increased Totem Duration", + "15% increased Totem Placement speed" + }, + ["group"]= 417, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "25732", + "63933" + }, + ["in"]= {} + }, + [25732]= { + ["skill"]= 25732, + ["name"]= "Totem Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + ["stats"]= { + "Spells Cast by Totems have 4% increased Cast Speed", + "Attacks used by Totems have 5% increased Attack Speed" + }, + ["group"]= 417, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "1696", + "28330" + } + }, + [63933]= { + ["skill"]= 63933, + ["name"]= "Totemic Zeal", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemiczeal.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Totem Placement speed", + "Spells Cast by Totems have 8% increased Cast Speed", + "Attacks used by Totems have 10% increased Attack Speed" + }, + ["group"]= 417, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "65154" + }, + ["in"]= { + "1696" + } + }, + [46578]= { + ["skill"]= 46578, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 418, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "28330", + "13714", + "30733", + "12926" + }, + ["in"]= { + "29292", + "57061" + } + }, + [28330]= { + ["skill"]= 28330, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 418, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "19144", + "25732" + }, + ["in"]= { + "46578" + } + }, + [49109]= { + ["skill"]= 49109, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "12% increased Evasion Rating and Armour", + "+4% to all Elemental Resistances" + }, + ["group"]= 419, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "34031", + "21435" + } + }, + [17566]= { + ["skill"]= 17566, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "12% increased Evasion Rating and Armour", + "+4% to all Elemental Resistances" + }, + ["group"]= 419, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "24083" + }, + ["in"]= { + "21435" + } + }, + [21435]= { + ["skill"]= 21435, + ["name"]= "Cloth and Chain", + ["icon"]= "Art/2DArt/SkillIcons/passives/newevadepercentage.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "AzureOil" + }, + ["stats"]= { + "24% increased Evasion Rating and Armour", + "+12% to all Elemental Resistances" + }, + ["group"]= 419, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "49109", + "17566", + "19750" + }, + ["in"]= {} + }, + [19750]= { + ["skill"]= 19750, + ["name"]= "Armour and Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 49522, + ["stats"]= { + "Defend with 120% of Armour against Projectile Attacks", + "5% more chance to Evade Melee Attacks" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 62285, + ["stats"]= { + "8% increased Evasion Rating per Frenzy Charge", + "8% increased Armour per Endurance Charge" + } + }, + { + ["effect"]= 5108, + ["stats"]= { + "80% increased Stun and Block Recovery" + } + }, + { + ["effect"]= 23955, + ["stats"]= { + "Every 4 seconds, Regenerate Life equal to 1% of Armour and Evasion Rating over 1 second" + } + }, + { + ["effect"]= 58876, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently", + "40% increased Armour if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 43258, + ["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" + } + } + }, + ["stats"]= {}, + ["group"]= 419, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21435" + } + }, + [10073]= { + ["skill"]= 10073, + ["name"]= "Armour and Guard Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "12% increased Armour", + "Guard Skills have 20% increased Cooldown Recovery Rate" + }, + ["group"]= 420, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49147", + "24083" + }, + ["in"]= {} + }, + [49147]= { + ["skill"]= 49147, + ["name"]= "Armour and Guard Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "12% increased Armour", + "Guard Skills have 20% increased Cooldown Recovery Rate" + }, + ["group"]= 420, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49416" + }, + ["in"]= { + "10073" + } + }, + [49416]= { + ["skill"]= 49416, + ["name"]= "Adamant", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourGuardsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Armour", + "Remove Bleeding when you use a Guard Skill", + "Remove Corrupted Blood when you use a Guard Skill", + "Guard Skills have 25% increased Duration" + }, + ["group"]= 420, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "45358" + }, + ["in"]= { + "49147" + } + }, + [45358]= { + ["skill"]= 45358, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 420, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49416" + } + }, + [36542]= { + ["skill"]= 36542, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 421, + ["orbit"]= 6, + ["orbitIndex"]= 50, + ["out"]= {}, + ["in"]= { + "4397", + "37569" + } + }, + [37569]= { + ["skill"]= 37569, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 421, + ["orbit"]= 6, + ["orbitIndex"]= 42, + ["out"]= { + "36542", + "57264" + }, + ["in"]= {} + }, + [39211]= { + ["skill"]= 39211, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "16% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "48513", + "5612" + } + }, + [51856]= { + ["skill"]= 51856, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "12% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "59718", + "48513" + }, + ["in"]= { + "34009" + } + }, + [48513]= { + ["skill"]= 48513, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "16% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "39211" + }, + ["in"]= { + "51856" + } + }, + [5612]= { + ["skill"]= 5612, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "12% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "39211", + "35568" + }, + ["in"]= { + "47389" + } + }, + [37403]= { + ["skill"]= 37403, + ["name"]= "Infused Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/InfusedFlesh.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "18% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 423, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "27193" + }, + ["in"]= { + "2474" + } + }, + [27193]= { + ["skill"]= 27193, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 423, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37403" + } + }, + [2474]= { + ["skill"]= 2474, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 423, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "37403" + }, + ["in"]= { + "55804" + } + }, + [55804]= { + ["skill"]= 55804, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 423, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "2474" + }, + ["in"]= { + "4367" + } + }, + [32509]= { + ["skill"]= 32509, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 424, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7918" + } + }, + [40075]= { + ["skill"]= 40075, + ["name"]= "Staff Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png", + ["stats"]= { + "12% increased Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "49534", + "42485" + }, + ["in"]= { + "19635" + } + }, + [49534]= { + ["skill"]= 49534, + ["name"]= "Staff Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "10% increased Spell Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7918" + }, + ["in"]= { + "40075" + } + }, + [42485]= { + ["skill"]= 42485, + ["name"]= "Staff Spell Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "10% increased Spell Damage while wielding a Staff", + "+3% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "7918" + }, + ["in"]= { + "40075" + } + }, + [7918]= { + ["skill"]= 7918, + ["name"]= "Enigmatic Defence", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "20% increased Spell Damage while wielding a Staff", + "+8% Chance to Block Attack Damage while wielding a Staff", + "+8% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "32509" + }, + ["in"]= { + "49534", + "42485" + } + }, + [19782]= { + ["skill"]= 19782, + ["name"]= "Defences with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "40% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "49538" + }, + ["in"]= { + "25324" + } + }, + [12236]= { + ["skill"]= 12236, + ["name"]= "Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while holding a Shield" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "46730", + "34009" + }, + ["in"]= { + "49538" + } + }, + [46730]= { + ["skill"]= 46730, + ["name"]= "Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while holding a Shield" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "25324" + }, + ["in"]= { + "12236" + } + }, + [25324]= { + ["skill"]= 25324, + ["name"]= "Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while holding a Shield" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "19782", + "34031" + }, + ["in"]= { + "46730" + } + }, + [49538]= { + ["skill"]= 49538, + ["name"]= "Defiance", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldwall.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "Attack Skills deal 24% increased Damage while holding a Shield", + "60% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "12236" + }, + ["in"]= { + "19782" + } + }, + [61259]= { + ["skill"]= 61259, + ["name"]= "Mastermind of Discord", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Exposure you inflict applies an extra -25% to the affected Resistance", + "Regenerate 1% of Mana per second if you've inflicted Exposure Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "19595" + }, + ["in"]= { + "37114" + } + }, + [57197]= { + ["skill"]= 57197, + ["name"]= "Heart of Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Gain Convergence when you Hit a Unique Enemy, no more than once every 8 seconds", + "60% increased Area of Effect while you don't have Convergence" + }, + ["reminderText"]= { + "(Convergence grants 30% more Elemental Damage and lasts 4 seconds)" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= {}, + ["in"]= { + "19595" + } + }, + [4917]= { + ["skill"]= 4917, + ["name"]= "Bastion of Elements", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Triggers Level 20 Primal Aegis when Allocated\nPrimal Aegis can take 75 Elemental Damage per Allocated Notable Passive Skill", + "Other Aegis Skills are Disabled", + "Cannot take Reflected Elemental Damage" + }, + ["reminderText"]= { + "(Primal Aegis calls forth a protective aegis which takes elemental damage from hits for you until depleted. The aegis will be restored to its full value after a short delay if you stop taking elemental damage from hits, or if depleted)" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "6052" + } + }, + [47873]= { + ["skill"]= 47873, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "258" + }, + ["in"]= { + "16023" + } + }, + [258]= { + ["skill"]= 258, + ["name"]= "Bringer of Ruin", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "66% increased Effect of Herald Buffs on you", + "66% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "47873" + } + }, + [12738]= { + ["skill"]= 12738, + ["name"]= "Elemental Damage, Fire Damage over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+4% to Fire Damage over Time Multiplier", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "53123" + }, + ["in"]= { + "16023" + } + }, + [58998]= { + ["skill"]= 58998, + ["name"]= "Elemental Damage, Lightning Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "10% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "27038" + }, + ["in"]= { + "16023" + } + }, + [12475]= { + ["skill"]= 12475, + ["name"]= "Elemental Damage, Cold Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "10% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "40810" + }, + ["in"]= { + "16023" + } + }, + [53123]= { + ["skill"]= 53123, + ["name"]= "Shaper of Flames", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Hits always Ignite", + "All Damage can Ignite", + "Enemies Ignited by you have 40% of Physical Damage they deal converted to Fire" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "12738" + } + }, + [27038]= { + ["skill"]= 27038, + ["name"]= "Shaper of Storms", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Hits always Shock", + "Shocks from your Hits always increase Damage taken by at least 25%", + "All Damage can Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "58998" + } + }, + [40810]= { + ["skill"]= 40810, + ["name"]= "Shaper of Winter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "All Damage with Hits can Chill", + "Your Chills can reduce Action Speed by up to a maximum of 40%", + "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "12475" + } + }, + [37114]= { + ["skill"]= 37114, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 426, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "61259" + }, + ["in"]= { + "16023" + } + }, + [19595]= { + ["skill"]= 19595, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "57197" + }, + ["in"]= { + "61259" + } + }, + [6052]= { + ["skill"]= 6052, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "4917" + }, + ["in"]= { + "16023" + } + }, + [54279]= { + ["skill"]= 54279, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "56461", + "16023" + } + }, + [56461]= { + ["skill"]= 56461, + ["name"]= "Liege of the Primordial", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Summoned Golems are Immune to Elemental Damage", + "Summoned Golems are Resummoned 4 seconds after being Killed", + "+2 to maximum number of Summoned Golems" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "54279" + }, + ["in"]= {} + }, + [16023]= { + ["skill"]= 16023, + ["name"]= "Elementalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Elementalist", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 426, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37114", + "54279", + "6052", + "58998", + "12475", + "12738", + "47873" + }, + ["in"]= { + "54447" + } + }, + [6982]= { + ["skill"]= 6982, + ["name"]= "Armour and Evasion, Taunt Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "20% increased Taunt Duration" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "56967" + }, + ["in"]= { + "24984" + } + }, + [56967]= { + ["skill"]= 56967, + ["name"]= "Worthy Foe", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Taunt on Hit", + "Enemies Taunted by you take 15% increased Damage", + "Enemies Taunted by you cannot Evade Attacks" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "6982" + } + }, + [11412]= { + ["skill"]= 11412, + ["name"]= "Inspirational", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "30% increased effect of Non-Curse Auras from your Skills", + "You and Allies near your Banner Regenerate 0.1% of Life per second for each Valour consumed for that Banner", + "When you leave your Banner's Area, recover 30% of the Valour consumed for that Banner" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "61478" + }, + ["in"]= { + "25111" + } + }, + [27604]= { + ["skill"]= 27604, + ["name"]= "First to Strike, Last to Fall", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Your Hits permanently Intimidate Enemies that are on Full Life", + "Gain Adrenaline for 20 seconds when you reach Low Life", + "Recover 25% of Life when you gain Adrenaline", + "Remove all Ailments and Burning when you gain Adrenaline" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)", + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)", + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= {}, + ["in"]= { + "43725" + } + }, + [41433]= { + ["skill"]= 41433, + ["name"]= "Armour and Evasion, Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "13374" + }, + ["in"]= { + "24984" + } + }, + [13374]= { + ["skill"]= 13374, + ["name"]= "Master of Metal", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Impales you inflict last 1 additional Hit", + "If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour", + "You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "41433" + } + }, + [61478]= { + ["skill"]= 61478, + ["name"]= "Armour and Evasion, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "35750" + }, + ["in"]= { + "11412" + } + }, + [60508]= { + ["skill"]= 60508, + ["name"]= "Armour and Evasion, Attack Damage while Fortified", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "10% increased Damage with Attack Skills while Fortified" + }, + ["group"]= 427, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "31700" + }, + ["in"]= { + "24984" + } + }, + [35185]= { + ["skill"]= 35185, + ["name"]= "Armour and Evasion, Attack Damage while Fortified", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "10% increased Damage with Attack Skills while Fortified" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "33940" + }, + ["in"]= { + "31700" + } + }, + [25111]= { + ["skill"]= 25111, + ["name"]= "Armour and Evasion, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "11412" + }, + ["in"]= { + "24984" + } + }, + [43725]= { + ["skill"]= 43725, + ["name"]= "Armour and Evasion, Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "10% increased Attack Damage", + "15% increased Evasion Rating and Armour" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "27604" + }, + ["in"]= { + "24984" + } + }, + [31700]= { + ["skill"]= 31700, + ["name"]= "Fortitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Nearby Allies count as having Fortification equal to yours", + "You have your maximum Fortification" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification)" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "35185" + }, + ["in"]= { + "60508" + } + }, + [33940]= { + ["skill"]= 33940, + ["name"]= "Unstoppable Hero", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "3% more Armour and Evasion Rating per Fortification above 20", + "3% increased Attack Speed per Fortification above 20" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= {}, + ["in"]= { + "35185" + } + }, + [35750]= { + ["skill"]= 35750, + ["name"]= "Worthy Causes", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Having a placed Banner does not prevent you gaining Valour", + "Banner Skills have 100% increased Duration" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "61478" + } + }, + [24984]= { + ["skill"]= 24984, + ["name"]= "Champion", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Champion", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 427, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25111", + "60508", + "6982", + "43725", + "41433" + }, + ["in"]= { + "50986" + } + }, + [32431]= { + ["skill"]= 32431, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "12% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "4367" + }, + ["in"]= { + "49588", + "36121" + } + }, + [49588]= { + ["skill"]= 49588, + ["name"]= "Lightning Damage and Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "10% increased Lightning Damage", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "32431" + }, + ["in"]= { + "61264" + } + }, + [36121]= { + ["skill"]= 36121, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "32431", + "57362" + }, + ["in"]= {} + }, + [55647]= { + ["skill"]= 55647, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "56716" + }, + ["in"]= { + "57362" + } + }, + [57362]= { + ["skill"]= 57362, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "55647" + }, + ["in"]= { + "36121" + } + }, + [58816]= { + ["skill"]= 58816, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 428, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "11645", + "56716" + } + }, + [61264]= { + ["skill"]= 61264, + ["name"]= "Lightning Damage and Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "10% increased Lightning Damage", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "49588" + }, + ["in"]= { + "46469" + } + }, + [46469]= { + ["skill"]= 46469, + ["name"]= "Lightning Damage and Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "10% increased Lightning Damage", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "61264", + "11645" + }, + ["in"]= {} + }, + [11645]= { + ["skill"]= 11645, + ["name"]= "Breath of Lightning", + ["icon"]= "Art/2DArt/SkillIcons/passives/BreathofLightening2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Lightning Damage", + "50% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "58816" + }, + ["in"]= { + "46469" + } + }, + [56716]= { + ["skill"]= 56716, + ["name"]= "Heart of Thunder", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Lightning Damage", + "Damage Penetrates 6% Lightning Resistance" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "58816" + }, + ["in"]= { + "55647" + } + }, + [15117]= { + ["skill"]= 15117, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "4367", + "61419" + }, + ["in"]= {} + }, + [53279]= { + ["skill"]= 53279, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "19635" + }, + ["in"]= { + "61419" + } + }, + [61419]= { + ["skill"]= 61419, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53279" + }, + ["in"]= { + "15117" + } + }, + [20528]= { + ["skill"]= 20528, + ["name"]= "Instability", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Power Charges" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "56158" + }, + ["in"]= { + "8302" + } + }, + [8302]= { + ["skill"]= 8302, + ["name"]= "Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "20% increased Power Charge Duration" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20528" + }, + ["in"]= { + "19635" + } + }, + [56158]= { + ["skill"]= 56158, + ["name"]= "Spell Damage per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "4% increased Spell Damage per Power Charge" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "20528", + "4367" + } + }, + [16246]= { + ["skill"]= 16246, + ["name"]= "Tranquility", + ["icon"]= "Art/2DArt/SkillIcons/passives/SoulPact.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "5% increased maximum Energy Shield", + "Transfiguration of Soul" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Energy Shield", + "also apply to Spell Damage at 30% of their value)" + }, + ["group"]= 430, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [4367]= { + ["skill"]= 4367, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 431, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "19501", + "44184", + "56158", + "55804", + "40351" + }, + ["in"]= { + "32431", + "15117", + "60989" + } + }, + [19635]= { + ["skill"]= 19635, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 432, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "11551", + "8302", + "40075", + "50826" + }, + ["in"]= { + "1031", + "53279", + "38805", + "27611", + "44723" + } + }, + [38900]= { + ["skill"]= 38900, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 8, + ["out"]= { + "38805" + }, + ["in"]= { + "21075", + "27929" + } + }, + [38805]= { + ["skill"]= 38805, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 5, + ["out"]= { + "19635" + }, + ["in"]= { + "38900", + "21075" + } + }, + [21075]= { + ["skill"]= 21075, + ["name"]= "Area of Effect Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/areaofeffect.png", + ["stats"]= { + "10% increased Area Damage" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 7, + ["out"]= { + "38805", + "38900" + }, + ["in"]= { + "15711" + } + }, + [15711]= { + ["skill"]= 15711, + ["name"]= "Blast Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "OpalescentOil" + }, + ["stats"]= { + "10% increased Area of Effect", + "20% increased Area Damage" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 12, + ["out"]= { + "21075" + }, + ["in"]= {} + }, + [1957]= { + ["skill"]= 1957, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 45, + ["out"]= { + "739" + }, + ["in"]= { + "33296" + } + }, + [739]= { + ["skill"]= 739, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 48, + ["out"]= { + "18866" + }, + ["in"]= { + "1957" + } + }, + [18866]= { + ["skill"]= 18866, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 51, + ["out"]= { + "11420" + }, + ["in"]= { + "739" + } + }, + [53493]= { + ["skill"]= 53493, + ["name"]= "Annihilation", + ["icon"]= "Art/2DArt/SkillIcons/passives/Annihilation.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "BlackOil" + }, + ["stats"]= { + "50% increased Spell Critical Strike Chance", + "+15% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 60, + ["out"]= { + "16790" + }, + ["in"]= {} + }, + [27929]= { + ["skill"]= 27929, + ["name"]= "Deep Wisdom", + ["icon"]= "Art/2DArt/SkillIcons/passives/deepwisdom.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "TealOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "+20 to maximum Energy Shield", + "+20 to maximum Mana", + "+20 to Intelligence" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 18, + ["out"]= { + "40637", + "55643", + "38900", + "2292", + "8948", + "7503" + }, + ["in"]= { + "32024", + "11659" + } + }, + [59650]= { + ["skill"]= 59650, + ["name"]= "Energy Shield and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+16 to maximum Energy Shield", + "25% increased Mana Regeneration Rate" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 30, + ["out"]= { + "9650", + "19374", + "57226" + }, + ["in"]= {} + }, + [6949]= { + ["skill"]= 6949, + ["name"]= "Energy Shield and Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 24, + ["out"]= { + "55643" + }, + ["in"]= { + "19374" + } + }, + [19374]= { + ["skill"]= 19374, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+10 to maximum Energy Shield", + "4% increased maximum Energy Shield" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 27, + ["out"]= { + "6949" + }, + ["in"]= { + "59650" + } + }, + [55643]= { + ["skill"]= 55643, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+10 to maximum Energy Shield", + "4% increased maximum Energy Shield" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 21, + ["out"]= {}, + ["in"]= { + "27929", + "6949" + } + }, + [2292]= { + ["skill"]= 2292, + ["name"]= "Mana and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "5% increased maximum Life", + "8% increased maximum Mana" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "27203" + }, + ["in"]= { + "27929" + } + }, + [48362]= { + ["skill"]= 48362, + ["name"]= "Mana and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "5% increased maximum Life", + "8% increased maximum Mana" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27203" + }, + ["in"]= { + "11420" + } + }, + [27203]= { + ["skill"]= 27203, + ["name"]= "Heart and Soul", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeartandSoul.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Life", + "12% increased maximum Mana" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2292", + "48362" + } + }, + [27611]= { + ["skill"]= 27611, + ["name"]= "Lord of the Dead", + ["icon"]= "Art/2DArt/SkillIcons/passives/lordofthedead.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Minions have 15% increased maximum Life", + "Minions deal 20% increased Damage", + "+1 to Maximum number of Raised Zombies", + "+1 to Maximum number of Skeletons" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "32024", + "60554", + "19635" + }, + ["in"]= {} + }, + [40637]= { + ["skill"]= 40637, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions have 5% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 21, + ["out"]= {}, + ["in"]= { + "27929", + "25222" + } + }, + [9650]= { + ["skill"]= 9650, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions have 5% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 27, + ["out"]= { + "25222" + }, + ["in"]= { + "59650" + } + }, + [60554]= { + ["skill"]= 60554, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 15% increased Damage" + }, + ["group"]= 433, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= { + "32024", + "11420" + }, + ["in"]= { + "27611" + } + }, + [32024]= { + ["skill"]= 32024, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life" + }, + ["group"]= 433, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= { + "27929" + }, + ["in"]= { + "27611", + "60554" + } + }, + [25222]= { + ["skill"]= 25222, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 24, + ["out"]= { + "40637" + }, + ["in"]= { + "9650" + } + }, + [11420]= { + ["skill"]= 11420, + ["name"]= "Arcanist's Dominion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalDominion2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "BlackOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "20% increased Spell Damage", + "5% increased Cast Speed", + "+20 to Intelligence" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 54, + ["out"]= { + "48362" + }, + ["in"]= { + "4397", + "4184", + "18866", + "60554", + "1346", + "21934", + "11128" + } + }, + [44723]= { + ["skill"]= 44723, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 67, + ["out"]= { + "19635" + }, + ["in"]= { + "1346", + "16790" + } + }, + [1346]= { + ["skill"]= 1346, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 64, + ["out"]= { + "11420", + "44723" + }, + ["in"]= { + "16790" + } + }, + [16790]= { + ["skill"]= 16790, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "25% increased Spell Critical Strike Chance" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 65, + ["out"]= { + "44723", + "1346" + }, + ["in"]= { + "53493" + } + }, + [21934]= { + ["skill"]= 21934, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 51, + ["out"]= { + "11420" + }, + ["in"]= { + "17579" + } + }, + [36774]= { + ["skill"]= 36774, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 45, + ["out"]= { + "17579" + }, + ["in"]= { + "33296" + } + }, + [17579]= { + ["skill"]= 17579, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 48, + ["out"]= { + "21934" + }, + ["in"]= { + "36774" + } + }, + [33296]= { + ["skill"]= 33296, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "12% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 42, + ["out"]= { + "1957", + "36774" + }, + ["in"]= { + "57264" + } + }, + [11659]= { + ["skill"]= 11659, + ["name"]= "Avoid Interruption while Casting and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "27929", + "8135" + }, + ["in"]= {} + }, + [11128]= { + ["skill"]= 11128, + ["name"]= "Avoid Interruption while Casting and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11420" + }, + ["in"]= { + "8135" + } + }, + [8135]= { + ["skill"]= 8135, + ["name"]= "Practical Application", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "VioletOil" + }, + ["grantedStrength"]= 20, + ["grantedDexterity"]= 20, + ["stats"]= { + "+10% to all Elemental Resistances", + "25% chance to Ignore Stuns while Casting", + "+20 to Strength and Dexterity" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "11128" + }, + ["in"]= { + "11659" + } + }, + [57226]= { + ["skill"]= 57226, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+14 to maximum Energy Shield", + "+16 to maximum Mana" + }, + ["group"]= 434, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "21678", + "54447" + }, + ["in"]= { + "56722", + "59650" + } + }, + [57264]= { + ["skill"]= 57264, + ["name"]= "Spell Damage and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "16% increased Spell Damage", + "+16 to maximum Mana" + }, + ["group"]= 434, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "33296" + }, + ["in"]= { + "56722", + "37569", + "54447" + } + }, + [54447]= { + ["skill"]= 54447, + ["name"]= "WITCH", + ["icon"]= "Art/2DArt/SkillIcons/passives/blankInt.png", + ["stats"]= {}, + ["classStartIndex"]= 3, + ["group"]= 434, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "57264", + "60791", + "16023", + "18378" + }, + ["in"]= { + "57226" + } + }, + [62596]= { + ["skill"]= 62596, + ["name"]= "Mystic Talents", + ["icon"]= "Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "OpalescentOil" + }, + ["grantedIntelligence"]= 30, + ["stats"]= { + "16% increased Spell Damage", + "+14 to maximum Energy Shield", + "25% increased Mana Regeneration Rate", + "+30 to Intelligence" + }, + ["group"]= 435, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [33722]= { + ["skill"]= 33722, + ["name"]= "Hollow Effigy", + ["icon"]= "Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Your Offering Skills do not require a Corpse" + }, + ["group"]= 436, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [27781]= { + ["skill"]= 27781, + ["name"]= "Worship the Blightheart", + ["icon"]= "Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png", + ["isKeystone"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "PrismaticOil", + "PrismaticOil" + }, + ["stats"]= { + "Create Fungal Ground instead of Consecrated Ground" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)", + "(Allies on your Fungal Ground have +25% to Chaos Resistance. Enemies on your Fungal Ground have -10% to all Resistances.)" + }, + ["flavourText"]= { + "You can feel the fungus growing in your skull,", + "bringing not pain, but religious ecstasy." + }, + ["group"]= 437, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [18302]= { + ["skill"]= 18302, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "34009", + "48438" + } + }, + [25933]= { + ["skill"]= 25933, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "48438", + "48807" + } + }, + [48438]= { + ["skill"]= 48438, + ["name"]= "Bravery", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "24% increased Evasion Rating and Armour", + "8% increased maximum Life" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "25933", + "18302" + }, + ["in"]= {} + }, + [50360]= { + ["skill"]= 50360, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "34009", + "54776" + } + }, + [28265]= { + ["skill"]= 28265, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "48807", + "54776" + }, + ["in"]= {} + }, + [54776]= { + ["skill"]= 54776, + ["name"]= "Mana Flows", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaconduit.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "OpalescentOil", + "GoldenOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "16% increased maximum Mana", + "30% increased Mana Regeneration Rate", + "+20 to Intelligence" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50360" + }, + ["in"]= { + "28265" + } + }, + [39725]= { + ["skill"]= 39725, + ["name"]= "Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "6% increased Attack Speed", + "+25 to Accuracy Rating" + }, + ["group"]= 439, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "63649", + "24377" + }, + ["in"]= { + "63357", + "50986" + } + }, + [50986]= { + ["skill"]= 50986, + ["name"]= "DUELIST", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwield.png", + ["stats"]= {}, + ["classStartIndex"]= 4, + ["group"]= 439, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39725", + "32730", + "24984", + "33795" + }, + ["in"]= { + "47389" + } + }, + [47389]= { + ["skill"]= 47389, + ["name"]= "Physical Attack Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "14% increased Attack Physical Damage", + "+14 to maximum Life" + }, + ["group"]= 439, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "50986", + "42911", + "5612" + }, + ["in"]= { + "63357" + } + }, + [35568]= { + ["skill"]= 35568, + ["name"]= "Armour, Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + }, + ["group"]= 440, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "59718" + }, + ["in"]= { + "5612", + "50306", + "24377" + } + }, + [59718]= { + ["skill"]= 59718, + ["name"]= "Armour, Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + }, + ["group"]= 440, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "51856", + "35568" + } + }, + [50306]= { + ["skill"]= 50306, + ["name"]= "Armour, Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + }, + ["group"]= 440, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "35568" + }, + ["in"]= { + "45227" + } + }, + [56001]= { + ["skill"]= 56001, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 441, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "17201", + "34031" + }, + ["in"]= { + "11859" + } + }, + [16544]= { + ["skill"]= 16544, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 442, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "8544", + "24083", + "65485", + "57449" + }, + ["in"]= { + "18103" + } + }, + [60090]= { + ["skill"]= 60090, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "13322", + "46092" + }, + ["in"]= { + "3452" + } + }, + [14211]= { + ["skill"]= 14211, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "42731" + }, + ["in"]= { + "22473" + } + }, + [42731]= { + ["skill"]= 42731, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "14211", + "37078" + } + }, + [22473]= { + ["skill"]= 22473, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "10490", + "14211" + }, + ["in"]= { + "3452" + } + }, + [14182]= { + ["skill"]= 14182, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "13322", + "37078" + } + }, + [13322]= { + ["skill"]= 13322, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "14182" + }, + ["in"]= { + "60090" + } + }, + [3452]= { + ["skill"]= 3452, + ["name"]= "Foresight", + ["icon"]= "Art/2DArt/SkillIcons/passives/foresight.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "+20 to maximum Energy Shield", + "14% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "60090", + "22473", + "18240" + }, + ["in"]= {} + }, + [18240]= { + ["skill"]= 18240, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 443, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3452", + "37078" + } + }, + [37078]= { + ["skill"]= 37078, + ["name"]= "Path of the Savant", + ["icon"]= "Art/2DArt/SkillIcons/passives/SavantPath.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "VerdantOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "16% increased Spell Damage", + "+20 to maximum Mana", + "+20 to Intelligence" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "18240", + "42731", + "14182" + }, + ["in"]= { + "8643" + } + }, + [22497]= { + ["skill"]= 22497, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed" + }, + ["group"]= 444, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "2151", + "8643" + }, + ["in"]= {} + }, + [8643]= { + ["skill"]= 8643, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed" + }, + ["group"]= 444, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "37078", + "63845" + }, + ["in"]= { + "22497" + } + }, + [63845]= { + ["skill"]= 63845, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed" + }, + ["group"]= 444, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "8643", + "47062" + } + }, + [15144]= { + ["skill"]= 15144, + ["name"]= "Attack Speed and Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["grantedDexterity"]= 5, + ["stats"]= { + "4% increased Attack Speed", + "+5 to Dexterity" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "58833", + "3992" + }, + ["in"]= { + "35179", + "918" + } + }, + [55373]= { + ["skill"]= 55373, + ["name"]= "Life and Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["grantedStrength"]= 5, + ["stats"]= { + "+12 to maximum Life", + "+5 to Strength" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "58833", + "38048", + "17674" + }, + ["in"]= {} + }, + [2151]= { + ["skill"]= 2151, + ["name"]= "Mana Regeneration and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["grantedIntelligence"]= 5, + ["stats"]= { + "20% increased Mana Regeneration Rate", + "+5 to Intelligence" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "58833", + "37690", + "5560" + }, + ["in"]= { + "22497" + } + }, + [48828]= { + ["skill"]= 48828, + ["name"]= "Physical Damage and Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["grantedStrength"]= 5, + ["stats"]= { + "+5 to Strength", + "10% increased Physical Damage" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "58833", + "62662", + "45887", + "33508" + }, + ["in"]= {} + }, + [62103]= { + ["skill"]= 62103, + ["name"]= "Projectile Damage and Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["grantedDexterity"]= 5, + ["stats"]= { + "10% increased Projectile Damage", + "+5 to Dexterity" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "58833", + "39773", + "60532" + }, + ["in"]= {} + }, + [58833]= { + ["skill"]= 58833, + ["name"]= "Seven", + ["icon"]= "Art/2DArt/SkillIcons/passives/tempdex.png", + ["stats"]= {}, + ["classStartIndex"]= 0, + ["group"]= 445, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35754", + "15726" + }, + ["in"]= { + "10108", + "15144", + "55373", + "2151", + "48828", + "62103", + "47062" + } + }, + [47062]= { + ["skill"]= 47062, + ["name"]= "Spell Damage and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["grantedIntelligence"]= 5, + ["stats"]= { + "10% increased Spell Damage", + "+5 to Intelligence" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "58833", + "56153", + "63845" + }, + ["in"]= {} + }, + [7903]= { + ["skill"]= 7903, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 446, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "20310" + } + }, + [20310]= { + ["skill"]= 20310, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 446, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "7903" + }, + ["in"]= { + "45887" + } + }, + [45887]= { + ["skill"]= 45887, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 446, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "20310" + }, + ["in"]= { + "48828" + } + }, + [36881]= { + ["skill"]= 36881, + ["name"]= "Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/coldresist.png", + ["stats"]= { + "+18% to Cold Resistance" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35503", + "31683" + }, + ["in"]= { + "33508" + } + }, + [33508]= { + ["skill"]= 33508, + ["name"]= "Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/fireresist.png", + ["stats"]= { + "+18% to Fire Resistance" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "36881" + }, + ["in"]= { + "48828" + } + }, + [31683]= { + ["skill"]= 31683, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 446, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "43162" + }, + ["in"]= { + "36881" + } + }, + [35503]= { + ["skill"]= 35503, + ["name"]= "Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningstr.png", + ["stats"]= { + "+18% to Lightning Resistance" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "19144" + }, + ["in"]= { + "36881" + } + }, + [43162]= { + ["skill"]= 43162, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "8% increased Projectile Damage" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "23122" + }, + ["in"]= { + "31683", + "39773" + } + }, + [39773]= { + ["skill"]= 39773, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "8% increased Projectile Damage" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "43162" + }, + ["in"]= { + "62103" + } + }, + [23122]= { + ["skill"]= 23122, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "8% increased Projectile Damage" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "43162", + "19144" + } + }, + [19144]= { + ["skill"]= 19144, + ["name"]= "Sentinel", + ["icon"]= "Art/2DArt/SkillIcons/passives/Sentinel.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "24% increased Evasion Rating and Armour", + "+10% to all Elemental Resistances" + }, + ["group"]= 447, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "16167", + "23122" + }, + ["in"]= { + "28330", + "35503" + } + }, + [41169]= { + ["skill"]= 41169, + ["name"]= "Jagged Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Maximum total Life Recovery per second from\nLeech if you've dealt a Critical Strike recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 448, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [57011]= { + ["skill"]= 57011, + ["name"]= "Stun Duration per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "5% increased Stun Duration on Enemies per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "32690" + }, + ["in"]= { + "65485" + } + }, + [65485]= { + ["skill"]= 65485, + ["name"]= "Armour per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "5% increased Armour per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "57011" + }, + ["in"]= { + "16544" + } + }, + [32690]= { + ["skill"]= 32690, + ["name"]= "Area of Effect per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "3% increased Area of Effect per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "64882" + }, + ["in"]= { + "57011" + } + }, + [64882]= { + ["skill"]= 64882, + ["name"]= "Disciple of the Unyielding", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+1 to Minimum Endurance Charges", + "8% chance to gain an Endurance Charge on Kill", + "8% increased Damage per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "4707" + }, + ["in"]= { + "32690" + } + }, + [23951]= { + ["skill"]= 23951, + ["name"]= "Movement Speed per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "2% increased Movement Speed per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "16213" + }, + ["in"]= { + "57449" + } + }, + [57449]= { + ["skill"]= 57449, + ["name"]= "Evasion per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "5% increased Evasion Rating per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "23951" + }, + ["in"]= { + "16544" + } + }, + [16213]= { + ["skill"]= 16213, + ["name"]= "Attack Speed per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "2% increased Attack Speed per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "58921" + }, + ["in"]= { + "23951" + } + }, + [58921]= { + ["skill"]= 58921, + ["name"]= "Disciple of the Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "+1 to Minimum Frenzy Charges", + "8% chance to gain a Frenzy Charge on Kill", + "8% increased Damage per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "4707" + }, + ["in"]= { + "16213" + } + }, + [4707]= { + ["skill"]= 4707, + ["name"]= "Charge Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28720, + ["stats"]= { + "Cannot be Ignited while at maximum Endurance Charges" + } + }, + { + ["effect"]= 48661, + ["stats"]= { + "Cannot be Chilled while at maximum Frenzy Charges" + } + }, + { + ["effect"]= 14100, + ["stats"]= { + "Cannot be Shocked while at maximum Power Charges" + } + }, + { + ["effect"]= 29652, + ["stats"]= { + "100% increased Charge Duration" + } + }, + { + ["effect"]= 40307, + ["stats"]= { + "3% increased Damage per Endurance, Frenzy or Power Charge" + } + }, + { + ["effect"]= 19142, + ["stats"]= { + "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" + } + } + }, + ["stats"]= {}, + ["group"]= 449, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64882", + "58921" + } + }, + [18103]= { + ["skill"]= 18103, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "16544", + "54127", + "37584" + }, + ["in"]= { + "23066" + } + }, + [37584]= { + ["skill"]= 37584, + ["name"]= "Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "20% increased Endurance Charge Duration" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "18103", + "4833" + } + }, + [49971]= { + ["skill"]= 49971, + ["name"]= "Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "20% increased Frenzy Charge Duration" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "23066" + }, + ["in"]= { + "11859" + } + }, + [54127]= { + ["skill"]= 54127, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 450, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11859" + }, + ["in"]= { + "18103" + } + }, + [4833]= { + ["skill"]= 4833, + ["name"]= "Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "+1 to Maximum Endurance Charges" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "37584", + "11859" + }, + ["in"]= {} + }, + [23066]= { + ["skill"]= 23066, + ["name"]= "Savagery", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "18103" + }, + ["in"]= { + "49971" + } + }, + [11859]= { + ["skill"]= 11859, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "56001", + "49971" + }, + ["in"]= { + "54127", + "4833" + } + }, + [25456]= { + ["skill"]= 25456, + ["name"]= "Dervish", + ["icon"]= "Art/2DArt/SkillIcons/passives/bladebarrier.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 24% increased Damage while Dual Wielding", + "6% increased Attack Speed while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "4565" + }, + ["in"]= { + "24641" + } + }, + [3009]= { + ["skill"]= 3009, + ["name"]= "Dual Wield Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png", + ["stats"]= { + "12% increased Accuracy Rating while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "24641" + }, + ["in"]= { + "22423" + } + }, + [24641]= { + ["skill"]= 24641, + ["name"]= "Dual Wield Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25456", + "48807" + }, + ["in"]= { + "3009" + } + }, + [22423]= { + ["skill"]= 22423, + ["name"]= "Dual Wield Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "3009", + "17201" + }, + ["in"]= { + "4565" + } + }, + [4565]= { + ["skill"]= 4565, + ["name"]= "Dual Wield Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + ["stats"]= { + "4% increased Attack Speed while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "22423" + }, + ["in"]= { + "25456" + } + }, + [40351]= { + ["skill"]= 40351, + ["name"]= "Roiling Tempest", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningPureElementalCasterKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "25% more Maximum Lightning Damage\n50% less Minimum Lightning Damage\nCannot deal non-Lightning Damage" + }, + ["flavourText"]= { + "Where you step, the sky darkens." + }, + ["group"]= 452, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4367" + } + }, + [32210]= { + ["skill"]= 32210, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 453, + ["orbit"]= 6, + ["orbitIndex"]= 22, + ["out"]= { + "8948" + }, + ["in"]= { + "21678" + } + }, + [21678]= { + ["skill"]= 21678, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 453, + ["orbit"]= 6, + ["orbitIndex"]= 30, + ["out"]= { + "32210" + }, + ["in"]= { + "57226" + } + }, + [62694]= { + ["skill"]= 62694, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "5% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "45227" + }, + ["in"]= { + "56803" + } + }, + [45227]= { + ["skill"]= 45227, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "50306" + }, + ["in"]= { + "62694", + "48807" + } + }, + [24377]= { + ["skill"]= 24377, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35568", + "56803" + }, + ["in"]= { + "39725" + } + }, + [56803]= { + ["skill"]= 56803, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "5% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62694" + }, + ["in"]= { + "24377" + } + }, + [57949]= { + ["skill"]= 57949, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 455, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59766" + } + }, + [11364]= { + ["skill"]= 11364, + ["name"]= "Faster Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "Damaging Ailments deal damage 5% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 455, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "8544" + }, + ["in"]= { + "43684" + } + }, + [43684]= { + ["skill"]= 43684, + ["name"]= "Faster Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "Damaging Ailments deal damage 5% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 455, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "11364" + }, + ["in"]= { + "59766" + } + }, + [59766]= { + ["skill"]= 59766, + ["name"]= "Dirty Techniques", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedPoison.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "Damaging Ailments deal damage 15% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 455, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "43684", + "57949" + }, + ["in"]= {} + }, + [38246]= { + ["skill"]= 38246, + ["name"]= "Presage", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldReservation.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "Herald Skills have 25% increased Area of Effect", + "20% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "39836" + }, + ["in"]= { + "51213" + } + }, + [60989]= { + ["skill"]= 60989, + ["name"]= "Herald Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldReservationNode.png", + ["stats"]= { + "10% increased Effect of Herald Buffs on you" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63039", + "4367", + "36107" + }, + ["in"]= {} + }, + [63039]= { + ["skill"]= 63039, + ["name"]= "Herald Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldReservationNode.png", + ["stats"]= { + "10% increased Effect of Herald Buffs on you" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35233" + }, + ["in"]= { + "60989" + } + }, + [35233]= { + ["skill"]= 35233, + ["name"]= "Discord Artisan", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "15% increased Damage for each Herald affecting you", + "20% increased Effect of Herald Buffs on you" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "39836" + }, + ["in"]= { + "63039" + } + }, + [51213]= { + ["skill"]= 51213, + ["name"]= "Reservation Efficiency of Heralds", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38246" + }, + ["in"]= { + "36107" + } + }, + [36107]= { + ["skill"]= 36107, + ["name"]= "Reservation Efficiency of Heralds", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "51213", + "19501" + }, + ["in"]= { + "60989" + } + }, + [39836]= { + ["skill"]= 39836, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 456, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38246", + "35233" + } + }, + [50826]= { + ["skill"]= 50826, + ["name"]= "Mana and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "2% Chance to Block Spell Damage", + "5% increased maximum Mana" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "12913", + "18174" + }, + ["in"]= { + "19635" + } + }, + [18174]= { + ["skill"]= 18174, + ["name"]= "Mystic Bulwark", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "6% Chance to Block Spell Damage", + "1% increased Mana Regeneration Rate per 1% Chance to Block Spell Damage" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "13862" + }, + ["in"]= { + "50826" + } + }, + [43000]= { + ["skill"]= 43000, + ["name"]= "Mana and Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "10% increased Spell Damage", + "5% increased maximum Mana" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "10115" + }, + ["in"]= { + "12913", + "11551" + } + }, + [12913]= { + ["skill"]= 12913, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "+20 to maximum Mana", + "10% increased maximum Mana" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "43000" + }, + ["in"]= { + "50826" + } + }, + [10115]= { + ["skill"]= 10115, + ["name"]= "Prodigal Perfection", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "20% increased maximum Mana", + "2% increased Spell Damage per 100 Maximum Mana, up to 40%" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "13862" + }, + ["in"]= { + "43000" + } + }, + [13862]= { + ["skill"]= 13862, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 457, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18174", + "10115" + } + }, + [49806]= { + ["skill"]= 49806, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 458, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "6580" + }, + ["in"]= { + "63649" + } + }, + [63649]= { + ["skill"]= 63649, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 458, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "49806" + }, + ["in"]= { + "39725" + } + }, + [17383]= { + ["skill"]= 17383, + ["name"]= "Mana and Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Area of Effect of Aura Skills" + }, + ["group"]= 459, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "14813" + }, + ["in"]= { + "17201" + } + }, + [58545]= { + ["skill"]= 58545, + ["name"]= "Mana and Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Area of Effect of Aura Skills" + }, + ["group"]= 459, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "8544" + }, + ["in"]= { + "14813" + } + }, + [14813]= { + ["skill"]= 14813, + ["name"]= "Revelry", + ["icon"]= "Art/2DArt/SkillIcons/passives/Revelry.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "+25 to maximum Mana", + "15% increased maximum Mana", + "10% increased Effect of Non-Curse Auras from your Skills on Enemies" + }, + ["group"]= 459, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58545", + "48859" + }, + ["in"]= { + "17383" + } + }, + [48859]= { + ["skill"]= 48859, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 459, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14813" + } + }, + [15085]= { + ["skill"]= 15085, + ["name"]= "Ambidexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ambidexterity.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "60% increased Attack Damage with Main Hand while Dual Wielding", + "30% increased Attack Speed with Off Hand while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "13807", + "51761" + }, + ["in"]= {} + }, + [54268]= { + ["skill"]= 54268, + ["name"]= "Blade Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while Dual Wielding", + "50% increased Block Recovery", + "Attack Skills deal 25% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "51761" + }, + ["in"]= { + "2392" + } + }, + [56231]= { + ["skill"]= 56231, + ["name"]= "Dual Wield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "2392" + }, + ["in"]= { + "49547" + } + }, + [2392]= { + ["skill"]= 2392, + ["name"]= "Dual Wield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "54268" + }, + ["in"]= { + "56231" + } + }, + [13807]= { + ["skill"]= 13807, + ["name"]= "Dual Wield Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "33089" + }, + ["in"]= { + "15085" + } + }, + [33089]= { + ["skill"]= 33089, + ["name"]= "Dual Wield Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "13807", + "49547" + } + }, + [49547]= { + ["skill"]= 49547, + ["name"]= "Dual Wield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwield.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 8% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "33089", + "56231" + }, + ["in"]= { + "8544" + } + }, + [51761]= { + ["skill"]= 51761, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 460, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15085", + "54268" + } + }, + [29993]= { + ["skill"]= 29993, + ["name"]= "Duration Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryDuration.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 17852, + ["stats"]= { + "10% more Skill Effect Duration" + } + }, + { + ["effect"]= 21730, + ["stats"]= { + "10% less Skill Effect Duration" + } + }, + { + ["effect"]= 24352, + ["stats"]= { + "Debuffs on you expire 15% faster" + } + }, + { + ["effect"]= 14881, + ["stats"]= { + "20% reduced Elemental Ailment Duration on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 461, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4207", + "53042" + } + }, + [52099]= { + ["skill"]= 52099, + ["name"]= "Reduced Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + ["stats"]= { + "5% reduced Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "4207" + }, + ["in"]= { + "14090" + } + }, + [14090]= { + ["skill"]= 14090, + ["name"]= "Reduced Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + ["stats"]= { + "5% reduced Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52099" + }, + ["in"]= { + "16167" + } + }, + [4207]= { + ["skill"]= 4207, + ["name"]= "Window of Opportunity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "15% reduced Skill Effect Duration", + "Debuffs on you expire 15% faster" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "29993" + }, + ["in"]= { + "52099" + } + }, + [22893]= { + ["skill"]= 22893, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53042" + }, + ["in"]= { + "24472" + } + }, + [24472]= { + ["skill"]= 24472, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "22893" + }, + ["in"]= { + "16167" + } + }, + [53042]= { + ["skill"]= 53042, + ["name"]= "Exceptional Performance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "29993" + }, + ["in"]= { + "22893" + } + }, + [16167]= { + ["skill"]= 16167, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 462, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "10829", + "14090", + "24472" + }, + ["in"]= { + "19144" + } + }, + [10829]= { + ["skill"]= 10829, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 462, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "32091", + "18402", + "41967" + }, + ["in"]= { + "16167", + "56116", + "238" + } + }, + [35179]= { + ["skill"]= 35179, + ["name"]= "Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + ["stats"]= { + "3% increased Movement Speed" + }, + ["group"]= 463, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "15144", + "9009" + }, + ["in"]= {} + }, + [60532]= { + ["skill"]= 60532, + ["name"]= "Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + ["stats"]= { + "3% increased Movement Speed" + }, + ["group"]= 463, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "62103", + "9009" + } + }, + [9009]= { + ["skill"]= 9009, + ["name"]= "Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + ["stats"]= { + "3% increased Movement Speed" + }, + ["group"]= 463, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "19506", + "60532" + }, + ["in"]= { + "35179" + } + }, + [17201]= { + ["skill"]= 17201, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 464, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "17383" + }, + ["in"]= { + "56001", + "22423", + "36222", + "29185", + "19711" + } + }, + [48807]= { + ["skill"]= 48807, + ["name"]= "Art of the Gladiator", + ["icon"]= "Art/2DArt/SkillIcons/passives/newnewattackspeed.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "OpalescentOil", + "GoldenOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "10% increased Attack Speed", + "Ignore all Movement Penalties from Armour", + "+20 to Dexterity", + "10% increased Accuracy Rating" + }, + ["group"]= 465, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "45227", + "25933", + "6580" + }, + ["in"]= { + "28265", + "24641", + "30155" + } + }, + [56146]= { + ["skill"]= 56146, + ["name"]= "Deliberate Brutality", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "Impales you inflict gain 50% increased Effect once 1 second of Duration has expired" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 466, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [41967]= { + ["skill"]= 41967, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 467, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "21634" + }, + ["in"]= { + "10829", + "17546" + } + }, + [17546]= { + ["skill"]= 17546, + ["name"]= "Mana and Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "10% increased maximum Mana", + "15% increased Mana Recovery from Flasks" + }, + ["group"]= 467, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "41967", + "21634" + }, + ["in"]= {} + }, + [21634]= { + ["skill"]= 21634, + ["name"]= "Arcane Chemistry", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "15% increased maximum Mana", + "30% increased Mana Recovery from Flasks", + "Mana Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 467, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45019" + }, + ["in"]= { + "41967", + "17546" + } + }, + [45019]= { + ["skill"]= 45019, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 467, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21634" + } + }, + [40705]= { + ["skill"]= 40705, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+5% to Cold Damage over Time Multiplier" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "53732" + }, + ["in"]= { + "36226" + } + }, + [36226]= { + ["skill"]= 36226, + ["name"]= "Cold Damage and Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "10% increased Cold Damage", + "10% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40705", + "12439" + }, + ["in"]= { + "5972" + } + }, + [40609]= { + ["skill"]= 40609, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "22090" + }, + ["in"]= { + "8833" + } + }, + [12439]= { + ["skill"]= 12439, + ["name"]= "Cold Damage and Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "10% increased Cold Damage", + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "21460" + }, + ["in"]= { + "36226" + } + }, + [22090]= { + ["skill"]= 22090, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "36412" + }, + ["in"]= { + "40609" + } + }, + [5972]= { + ["skill"]= 5972, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "19501", + "36226" + }, + ["in"]= { + "36412" + } + }, + [36412]= { + ["skill"]= 36412, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "5972" + }, + ["in"]= { + "22090" + } + }, + [53732]= { + ["skill"]= 53732, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+5% to Cold Damage over Time Multiplier" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "21460" + }, + ["in"]= { + "40705" + } + }, + [21460]= { + ["skill"]= 21460, + ["name"]= "Breath of Rime", + ["icon"]= "Art/2DArt/SkillIcons/passives/BreathofRime2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Cold Damage", + "50% increased Duration of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "60170" + }, + ["in"]= { + "12439", + "53732" + } + }, + [8833]= { + ["skill"]= 8833, + ["name"]= "Heart of Ice", + ["icon"]= "Art/2DArt/SkillIcons/passives/iceheart.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Cold Damage", + "Damage Penetrates 6% Cold Resistance" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "40609", + "60170" + }, + ["in"]= {} + }, + [60170]= { + ["skill"]= 60170, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 468, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21460", + "8833" + } + }, + [24334]= { + ["skill"]= 24334, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 469, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44788" + } + }, + [57565]= { + ["skill"]= 57565, + ["name"]= "Link Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Link Skills" + }, + ["group"]= 469, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2348", + "18033" + }, + ["in"]= {} + }, + [2348]= { + ["skill"]= 2348, + ["name"]= "Link Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Link Skills" + }, + ["group"]= 469, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "44788" + }, + ["in"]= { + "57565" + } + }, + [44788]= { + ["skill"]= 44788, + ["name"]= "Potent Connections", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLink2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "VioletOil" + }, + ["stats"]= { + "25% increased Defences while you have at least four Linked targets", + "10% increased Movement Speed while you have at least two Linked targets" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 469, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "24334" + }, + ["in"]= { + "2348" + } + }, + [60002]= { + ["skill"]= 60002, + ["name"]= "Fury Bolts", + ["icon"]= "Art/2DArt/SkillIcons/passives/furybolts.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "TealOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "20% increased Projectile Speed", + "20% increased Projectile Damage", + "+20 to Strength" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "52632" + }, + ["in"]= { + "30155" + } + }, + [52632]= { + ["skill"]= 52632, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "36222" + }, + ["in"]= { + "60002" + } + }, + [36222]= { + ["skill"]= 36222, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "47030", + "17201" + }, + ["in"]= { + "52632" + } + }, + [47030]= { + ["skill"]= 47030, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "30155" + }, + ["in"]= { + "36222" + } + }, + [30155]= { + ["skill"]= 30155, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "60002", + "48807" + }, + ["in"]= { + "47030" + } + }, + [34907]= { + ["skill"]= 34907, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 471, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "45067", + "46092" + }, + ["in"]= { + "28424" + } + }, + [28424]= { + ["skill"]= 28424, + ["name"]= "Mana and Mana on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "10% increased maximum Mana", + "Gain 15 Mana per Enemy Killed" + }, + ["group"]= 471, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "34907" + }, + ["in"]= { + "45067" + } + }, + [45067]= { + ["skill"]= 45067, + ["name"]= "Thrill Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/ThrillKiller.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "TealOil" + }, + ["stats"]= { + "16% increased maximum Mana", + "Recover 2% of Mana on Kill" + }, + ["group"]= 471, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "28424", + "48007" + }, + ["in"]= { + "34907" + } + }, + [48007]= { + ["skill"]= 48007, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 471, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45067" + } + }, + [60247]= { + ["skill"]= 60247, + ["name"]= "Solipsism", + ["icon"]= "Art/2DArt/SkillIcons/passives/Resilience.png", + ["isKeystone"]= true, + ["stats"]= { + "Intelligence provides no inherent bonus to Energy Shield\n2% reduced Duration of Elemental Ailments on you per 15 Intelligence" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["flavourText"]= { + "To know yourself is to understand existence - and understanding brings control." + }, + ["group"]= 472, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46092" + } + }, + [3992]= { + ["skill"]= 3992, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 473, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "49807" + }, + ["in"]= { + "15144" + } + }, + [49807]= { + ["skill"]= 49807, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 473, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "37575" + }, + ["in"]= { + "3992" + } + }, + [37575]= { + ["skill"]= 37575, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 473, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "49807" + } + }, + [918]= { + ["skill"]= 918, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "28221", + "15144" + }, + ["in"]= {} + }, + [28221]= { + ["skill"]= 28221, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "24643" + }, + ["in"]= { + "918", + "48768" + } + }, + [24643]= { + ["skill"]= 24643, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33545" + }, + ["in"]= { + "28221" + } + }, + [48768]= { + ["skill"]= 48768, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 473, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "28221" + }, + ["in"]= { + "11688" + } + }, + [45456]= { + ["skill"]= 45456, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "8% increased Spell Damage" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "33545" + }, + ["in"]= { + "11688" + } + }, + [56153]= { + ["skill"]= 56153, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "8% increased Spell Damage" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "11688" + }, + ["in"]= { + "47062" + } + }, + [11688]= { + ["skill"]= 11688, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "8% increased Spell Damage" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "45456", + "48768" + }, + ["in"]= { + "56153" + } + }, + [8544]= { + ["skill"]= 8544, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 474, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "29937", + "38772", + "49547" + }, + ["in"]= { + "16544", + "11364", + "58545", + "10661" + } + }, + [56116]= { + ["skill"]= 56116, + ["name"]= "Magebane", + ["icon"]= "Art/2DArt/SkillIcons/passives/Deaden.png", + ["isKeystone"]= true, + ["stats"]= { + "Dexterity provides no inherent bonus to Evasion Rating\n+1% Chance to Suppress Spell Damage per 15 Dexterity" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["flavourText"]= { + "To avert a mystical assault, you must be absolutely still." + }, + ["group"]= 475, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10829" + }, + ["in"]= {} + }, + [39338]= { + ["skill"]= 39338, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 476, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32059" + } + }, + [29185]= { + ["skill"]= 29185, + ["name"]= "Two Handed Melee Critical Strike Chance and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + ["stats"]= { + "8% increased Accuracy Rating with Two Handed Melee Weapons", + "20% increased Critical Strike Chance with Two Handed Melee Weapons" + }, + ["group"]= 476, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "58803", + "17201" + }, + ["in"]= {} + }, + [58803]= { + ["skill"]= 58803, + ["name"]= "Two Handed Melee Critical Strike Chance and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + ["stats"]= { + "8% increased Accuracy Rating with Two Handed Melee Weapons", + "20% increased Critical Strike Chance with Two Handed Melee Weapons" + }, + ["group"]= 476, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "32059" + }, + ["in"]= { + "29185" + } + }, + [32059]= { + ["skill"]= 32059, + ["name"]= "Titanic Impacts", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "OpalescentOil" + }, + ["stats"]= { + "+45% to Critical Strike Multiplier with Two Handed Melee Weapons" + }, + ["group"]= 476, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "39338" + }, + ["in"]= { + "58803" + } + }, + [56274]= { + ["skill"]= 56274, + ["name"]= "Lasting Tempest", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 477, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [19501]= { + ["skill"]= 19501, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 478, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12128" + }, + ["in"]= { + "4367", + "36107", + "5972", + "35730", + "15167", + "5296" + } + }, + [46111]= { + ["skill"]= 46111, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "34225" + }, + ["in"]= { + "34591" + } + }, + [34591]= { + ["skill"]= 34591, + ["name"]= "Malicious Intent", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "+2 to Level of all Curse Skill Gems" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "23796", + "51382", + "46111" + }, + ["in"]= {} + }, + [35730]= { + ["skill"]= 35730, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "19501", + "51382" + }, + ["in"]= { + "34225" + } + }, + [51382]= { + ["skill"]= 51382, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "34591", + "35730" + } + }, + [34225]= { + ["skill"]= 34225, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "35730" + }, + ["in"]= { + "46111" + } + }, + [23796]= { + ["skill"]= 23796, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 479, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34591" + } + }, + [11551]= { + ["skill"]= 11551, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 480, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "43000" + }, + ["in"]= { + "19635", + "22315", + "50472", + "38176" + } + }, + [42795]= { + ["skill"]= 42795, + ["name"]= "Arcane Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcane focus.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "CrimsonOil" + }, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased maximum Energy Shield", + "10% faster start of Energy Shield Recharge", + "+10 to Intelligence" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "13753", + "4432" + } + }, + [13753]= { + ["skill"]= 13753, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "42795", + "22315" + }, + ["in"]= {} + }, + [7503]= { + ["skill"]= 7503, + ["name"]= "Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "65203", + "4432" + }, + ["in"]= { + "27929" + } + }, + [4432]= { + ["skill"]= 4432, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "42795" + }, + ["in"]= { + "7503" + } + }, + [65203]= { + ["skill"]= 65203, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "27163" + }, + ["in"]= { + "7503" + } + }, + [48514]= { + ["skill"]= 48514, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "22315" + }, + ["in"]= { + "27163" + } + }, + [27163]= { + ["skill"]= 27163, + ["name"]= "Arcane Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "SilverOil" + }, + ["grantedIntelligence"]= 10, + ["stats"]= { + "30% increased maximum Mana", + "Regenerate 5 Mana per second", + "+10 to Intelligence" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "48514" + }, + ["in"]= { + "65203" + } + }, + [22315]= { + ["skill"]= 22315, + ["name"]= "Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["stats"]= { + "20% increased Mana Regeneration Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "11551" + }, + ["in"]= { + "13753", + "48514" + } + }, + [28863]= { + ["skill"]= 28863, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 482, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19730" + } + }, + [38772]= { + ["skill"]= 38772, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StancesNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 482, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "32053" + }, + ["in"]= { + "8544" + } + }, + [32053]= { + ["skill"]= 32053, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StancesNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 482, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "19730" + }, + ["in"]= { + "38772" + } + }, + [19730]= { + ["skill"]= 19730, + ["name"]= "Assured Strike", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeRange2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "24% increased Melee Damage", + "+0.4 metres to Melee Strike Range while at least 5 Enemies are Nearby" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 482, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "28863" + }, + ["in"]= { + "32053" + } + }, + [56128]= { + ["skill"]= 56128, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 483, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22972" + } + }, + [63067]= { + ["skill"]= 63067, + ["name"]= "Wand Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "10% increased Damage while wielding a Wand", + "4% increased Attack Speed with Wands" + }, + ["group"]= 483, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "22972" + }, + ["in"]= { + "50472" + } + }, + [50472]= { + ["skill"]= 50472, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "14% increased Damage while wielding a Wand" + }, + ["group"]= 483, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63067", + "11551" + }, + ["in"]= {} + }, + [22972]= { + ["skill"]= 22972, + ["name"]= "Wandslinger", + ["icon"]= "Art/2DArt/SkillIcons/passives/wandslingersprowess.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Damage while wielding a Wand", + "10% increased Attack Speed with Wands" + }, + ["group"]= 483, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "56128" + }, + ["in"]= { + "63067" + } + }, + [6580]= { + ["skill"]= 6580, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 484, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "19711" + }, + ["in"]= { + "49806", + "48807", + "11651" + } + }, + [34191]= { + ["skill"]= 34191, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 485, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "33582" + }, + ["in"]= { + "60529" + } + }, + [60529]= { + ["skill"]= 60529, + ["name"]= "Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 485, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "34191" + }, + ["in"]= { + "19711" + } + }, + [33582]= { + ["skill"]= 33582, + ["name"]= "Forceful Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "15% chance to Impale Enemies on Hit with Attacks", + "10% increased Impale Effect" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 485, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "47059" + }, + ["in"]= { + "34191" + } + }, + [47059]= { + ["skill"]= 47059, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 485, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33582" + } + }, + [10661]= { + ["skill"]= 10661, + ["name"]= "Iron Reflexes", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png", + ["isKeystone"]= true, + ["stats"]= { + "Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating" + }, + ["flavourText"]= { + "Why should I dodge blows that I do not fear?" + }, + ["group"]= 486, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "8544" + }, + ["in"]= {} + }, + [12128]= { + ["skill"]= 12128, + ["name"]= "Bitter Frost", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdPureElementalCasterKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "Enemies Chilled by your Hits have Cold Damage taken increased by Chill Effect\nEnemies in your Chilling Areas have Cold Damage taken increased by Chill Effect\nCannot deal non-Cold Damage" + }, + ["flavourText"]= { + "Chill them to the bone, that they might never know warmth again." + }, + ["group"]= 487, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19501" + } + }, + [19287]= { + ["skill"]= 19287, + ["name"]= "Life and Life on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "Gain 10 Life per Enemy Killed" + }, + ["group"]= 488, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "49379" + }, + ["in"]= { + "61875" + } + }, + [61875]= { + ["skill"]= 61875, + ["name"]= "Life and Life on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "Gain 10 Life per Enemy Killed" + }, + ["group"]= 488, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "19287" + }, + ["in"]= { + "28574" + } + }, + [49379]= { + ["skill"]= 49379, + ["name"]= "Hired Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/HiredKiller2.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "7% increased maximum Life", + "Recover 2% of Life on Kill" + }, + ["group"]= 488, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "38235" + }, + ["in"]= { + "19287" + } + }, + [38235]= { + ["skill"]= 38235, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 488, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49379" + } + }, + [33545]= { + ["skill"]= 33545, + ["name"]= "Harrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Harrier.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "8% increased Attack Speed", + "6% increased Cast Speed", + "5% increased Movement Speed" + }, + ["group"]= 489, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18033", + "28574" + }, + ["in"]= { + "24643", + "45456" + } + }, + [8948]= { + ["skill"]= 8948, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 490, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "27659", + "38176" + }, + ["in"]= { + "27929", + "32210" + } + }, + [8930]= { + ["skill"]= 8930, + ["name"]= "Life and Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Life Recovery from Flasks" + }, + ["group"]= 491, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42041" + }, + ["in"]= { + "18402" + } + }, + [18402]= { + ["skill"]= 18402, + ["name"]= "Life and Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Life Recovery from Flasks" + }, + ["group"]= 491, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "8930" + }, + ["in"]= { + "10829" + } + }, + [42041]= { + ["skill"]= 42041, + ["name"]= "Profane Chemistry", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "7% increased maximum Life", + "30% increased Life Recovery from Flasks", + "Life Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 491, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "46665" + }, + ["in"]= { + "8930" + } + }, + [46665]= { + ["skill"]= 46665, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 491, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42041" + } + }, + [60204]= { + ["skill"]= 60204, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "19506" + }, + ["in"]= { + "17814" + } + }, + [17814]= { + ["skill"]= 17814, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "60204", + "32091" + }, + ["in"]= {} + }, + [8348]= { + ["skill"]= 8348, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "6534" + }, + ["in"]= { + "19506" + } + }, + [6534]= { + ["skill"]= 6534, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "20812" + }, + ["in"]= { + "8348" + } + }, + [20812]= { + ["skill"]= 20812, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "44103" + }, + ["in"]= { + "6534", + "51786" + } + }, + [50757]= { + ["skill"]= 50757, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 492, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19506", + "44103" + } + }, + [19506]= { + ["skill"]= 19506, + ["name"]= "Path of the Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hunter.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "VerdantOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "+100 to Accuracy Rating", + "16% increased Projectile Damage", + "+20 to Dexterity" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "8348", + "50757" + }, + ["in"]= { + "9009", + "60204" + } + }, + [44103]= { + ["skill"]= 44103, + ["name"]= "Reflexes", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "+100 to Evasion Rating", + "30% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "50757" + }, + ["in"]= { + "20812", + "32091" + } + }, + [32091]= { + ["skill"]= 32091, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "44103" + }, + ["in"]= { + "10829", + "17814" + } + }, + [57736]= { + ["skill"]= 57736, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 493, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "7594", + "18033" + }, + ["in"]= {} + }, + [65097]= { + ["skill"]= 65097, + ["name"]= "Leadership", + ["icon"]= "Art/2DArt/SkillIcons/passives/leadership.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Area of Effect of Aura Skills", + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 493, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6507" + }, + ["in"]= { + "7594" + } + }, + [6507]= { + ["skill"]= 6507, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 493, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65097" + } + }, + [7594]= { + ["skill"]= 7594, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 493, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "65097" + }, + ["in"]= { + "57736" + } + }, + [59926]= { + ["skill"]= 59926, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 494, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21602" + } + }, + [17849]= { + ["skill"]= 17849, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Mine Damage" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "33911" + }, + ["in"]= { + "57615", + "46092" + } + }, + [21602]= { + ["skill"]= 21602, + ["name"]= "Destructive Apparatus", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineTrap.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "SilverOil" + }, + ["stats"]= { + "60% increased Mine Duration", + "12% increased Mine Throwing Speed" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59926" + }, + ["in"]= { + "33911", + "57615" + } + }, + [33911]= { + ["skill"]= 33911, + ["name"]= "Mine Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "30% increased Mine Duration" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "21602" + }, + ["in"]= { + "17849" + } + }, + [57615]= { + ["skill"]= 57615, + ["name"]= "Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "5% increased Mine Throwing Speed" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "17849", + "21602" + }, + ["in"]= {} + }, + [19711]= { + ["skill"]= 19711, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 495, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20010", + "17201", + "60529", + "8410" + }, + ["in"]= { + "6580", + "50041" + } + }, + [15167]= { + ["skill"]= 15167, + ["name"]= "Golem Life and Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GolemsNode.png", + ["stats"]= { + "20% increased Effect of Buffs granted by your Golems", + "Golems have 15% increased Maximum Life" + }, + ["group"]= 496, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "19501" + }, + ["in"]= { + "24872" + } + }, + [24872]= { + ["skill"]= 24872, + ["name"]= "Golem Life and Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GolemsNode.png", + ["stats"]= { + "20% increased Effect of Buffs granted by your Golems", + "Golems have 15% increased Maximum Life" + }, + ["group"]= 496, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15167", + "34506" + }, + ["in"]= {} + }, + [34506]= { + ["skill"]= 34506, + ["name"]= "Golem Commander", + ["icon"]= "Art/2DArt/SkillIcons/passives/GolemsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "40% increased Effect of Buffs granted by your Golems", + "+1 to maximum number of Summoned Golems" + }, + ["group"]= 496, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26393" + }, + ["in"]= { + "24872" + } + }, + [26393]= { + ["skill"]= 26393, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 496, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34506" + } + }, + [46092]= { + ["skill"]= 46092, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 497, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "51923", + "17849", + "60247" + }, + ["in"]= { + "60090", + "34907", + "18033" + } + }, + [18033]= { + ["skill"]= 18033, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 497, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "46092" + }, + ["in"]= { + "57565", + "33545", + "57736" + } + }, + [18663]= { + ["skill"]= 18663, + ["name"]= "Minion Instability", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png", + ["isKeystone"]= true, + ["stats"]= { + "Minions Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies" + }, + ["flavourText"]= { + "Even in death, they have their uses. They just need a little encouragement." + }, + ["group"]= 498, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38176" + }, + ["in"]= {} + }, + [55646]= { + ["skill"]= 55646, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "54159", + "14603" + }, + ["in"]= {} + }, + [48719]= { + ["skill"]= 48719, + ["name"]= "Mistress of Sacrifice", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Your Offering Skills also affect you", + "Your Offerings have 50% reduced Effect on you", + "40% increased Skill Effect Duration" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "18309" + } + }, + [3554]= { + ["skill"]= 3554, + ["name"]= "Essence Glutton", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "For each nearby corpse, you and nearby Allies Regenerate 0.2% of Energy Shield per second, up to 2.0% per second", + "For each nearby corpse, you and nearby Allies Regenerate 5 Mana\nper second, up to 50 per second", + "Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse", + "Regenerate 4% of Mana over 2 seconds when you Consume a corpse" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 25, + ["out"]= {}, + ["in"]= { + "18574" + } + }, + [36017]= { + ["skill"]= 36017, + ["name"]= "Commander of Darkness", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Auras from your Skills grant 3% increased Attack and Cast\nSpeed to you and Allies", + "You and nearby Allies deal 30% increased Damage", + "You and nearby Allies have +30% to Elemental Resistances" + }, + ["reminderText"]= { + "(Auras can only grant bonuses to things they affect)" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= {}, + ["in"]= { + "5415" + } + }, + [26298]= { + ["skill"]= 26298, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "54159" + }, + ["in"]= { + "60791" + } + }, + [11490]= { + ["skill"]= 11490, + ["name"]= "Plaguebringer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "If you've Consumed a corpse Recently, you and your Minions have 30% increased Area of Effect", + "With at least one nearby corpse, you and nearby Allies deal 10% more Damage", + "With at least one nearby corpse, nearby Enemies deal 10% reduced Damage" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "23509" + }, + ["in"]= { + "60547" + } + }, + [23509]= { + ["skill"]= 23509, + ["name"]= "Minion Damage, Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "4% increased Cast Speed", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 15, + ["out"]= { + "23572" + }, + ["in"]= { + "11490" + } + }, + [23572]= { + ["skill"]= 23572, + ["name"]= "Corpse Pact", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "4% increased Attack and Cast Speed for each corpse Consumed Recently, up to a maximum of 200%", + "Enemies near corpses you Spawned Recently are Chilled and Shocked" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Killing an Enemy is not Spawning a corpse)", + "(Shock increases Damage taken by 15%)", + "(Chill reduces Enemy Action Speed by 10%)" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "23509" + } + }, + [18309]= { + ["skill"]= 18309, + ["name"]= "Minion Damage, Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "10% increased Skill Effect Duration", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "48719" + }, + ["in"]= { + "60791" + } + }, + [60547]= { + ["skill"]= 60547, + ["name"]= "Minion Damage, Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "4% increased Cast Speed", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "11490" + }, + ["in"]= { + "60791" + } + }, + [39818]= { + ["skill"]= 39818, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "65153" + }, + ["in"]= { + "54159" + } + }, + [18574]= { + ["skill"]= 18574, + ["name"]= "Minion Damage, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "8% increased maximum Mana", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "3554" + }, + ["in"]= { + "60791" + } + }, + [5415]= { + ["skill"]= 5415, + ["name"]= "Minion Damage, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions deal 10% increased Damage", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "36017" + }, + ["in"]= { + "60791" + } + }, + [54159]= { + ["skill"]= 54159, + ["name"]= "Mindless Aggression", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 20% more Maximum Life", + "Minions deal 10% more Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "39818" + }, + ["in"]= { + "55646", + "26298" + } + }, + [65153]= { + ["skill"]= 65153, + ["name"]= "Unnatural Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have Unholy Might" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= {}, + ["in"]= { + "39818" + } + }, + [14603]= { + ["skill"]= 14603, + ["name"]= "Bone Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "1% additional Physical Damage Reduction per Minion, up to 10%", + "1% of Damage Dealt by your Minions is Leeched to you as Life", + "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 18, + ["out"]= {}, + ["in"]= { + "55646" + } + }, + [60791]= { + ["skill"]= 60791, + ["name"]= "Necromancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Necromancer", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 499, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26298", + "60547", + "18309", + "18574", + "5415" + }, + ["in"]= { + "54447" + } + }, + [58214]= { + ["skill"]= 58214, + ["name"]= "Dual Wield Attack Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "51976" + }, + ["in"]= { + "11651" + } + }, + [51976]= { + ["skill"]= 51976, + ["name"]= "Dual Wield Attack Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "12095" + }, + ["in"]= { + "58214" + } + }, + [12095]= { + ["skill"]= 12095, + ["name"]= "Dual Wield Attack Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "18357" + }, + ["in"]= { + "51976" + } + }, + [18357]= { + ["skill"]= 18357, + ["name"]= "Feline Swiftness", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "TealOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while Dual Wielding", + "8% increased Movement Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52018" + }, + ["in"]= { + "12095" + } + }, + [52018]= { + ["skill"]= 52018, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 500, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18357" + } + }, + [48823]= { + ["skill"]= 48823, + ["name"]= "Deadly Draw", + ["icon"]= "Art/2DArt/SkillIcons/passives/deadlydraw.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Damage Over Time with Bow Skills", + "Damaging Ailments deal damage 10% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 501, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "34510", + "24552" + }, + ["in"]= { + "41047" + } + }, + [41047]= { + ["skill"]= 41047, + ["name"]= "Bow Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "12% increased Area of Effect while wielding a Bow" + }, + ["group"]= 501, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "48823" + }, + ["in"]= { + "42720" + } + }, + [8566]= { + ["skill"]= 8566, + ["name"]= "Physical Bow Damage and Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "10% increased Physical Damage with Bows", + "10% reduced Enemy Stun Threshold with Bows", + "10% increased Damage Over Time with Bow Skills" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 501, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "50041" + }, + ["in"]= { + "42720" + } + }, + [34510]= { + ["skill"]= 34510, + ["name"]= "Bow Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "20% increased Damage Over Time with Bow Skills" + }, + ["group"]= 501, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "48823", + "50041" + } + }, + [50041]= { + ["skill"]= 50041, + ["name"]= "Physical Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "14% increased Physical Damage with Bows", + "14% increased Damage Over Time with Bow Skills" + }, + ["group"]= 501, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "34510", + "19711" + }, + ["in"]= { + "8566" + } + }, + [42720]= { + ["skill"]= 42720, + ["name"]= "Heavy Draw", + ["icon"]= "Art/2DArt/SkillIcons/passives/heavydraw.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Physical Damage with Bows", + "50% increased Stun Duration with Bows on Enemies", + "30% increased Damage Over Time with Bow Skills" + }, + ["group"]= 501, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "8566", + "24552", + "41047" + }, + ["in"]= {} + }, + [24552]= { + ["skill"]= 24552, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 501, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48823", + "42720" + } + }, + [45372]= { + ["skill"]= 45372, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 502, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34284" + } + }, + [25355]= { + ["skill"]= 25355, + ["name"]= "Stance Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Stance Skills" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34284" + }, + ["in"]= { + "8410" + } + }, + [17020]= { + ["skill"]= 17020, + ["name"]= "Attack Damage in Blood Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "20% increased Attack Damage while in Blood Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "34284" + }, + ["in"]= { + "8410" + } + }, + [8410]= { + ["skill"]= 8410, + ["name"]= "Attack Speed in Sand Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "6% increased Attack Speed while in Sand Stance" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "17020", + "25355" + }, + ["in"]= { + "19711" + } + }, + [34284]= { + ["skill"]= 34284, + ["name"]= "Seasoned Swordplay", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceNotableReservation.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Mana Reservation Efficiency of Stance Skills" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "45372" + }, + ["in"]= { + "25355", + "17020" + } + }, + [56207]= { + ["skill"]= 56207, + ["name"]= "Hardened Scars", + ["icon"]= "Art/2DArt/SkillIcons/passives/DarkestHour.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "15% increased Life Recovery from Flasks", + "25% less Damage over Time taken during Effect of any Life Flask" + }, + ["group"]= 503, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [11651]= { + ["skill"]= 11651, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 504, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5408", + "6580", + "58214" + }, + ["in"]= {} + }, + [27659]= { + ["skill"]= 27659, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 505, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37671" + }, + ["in"]= { + "8948", + "51517", + "127" + } + }, + [23540]= { + ["skill"]= 23540, + ["name"]= "Conduit", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneConduit.png", + ["isKeystone"]= true, + ["stats"]= { + "Share Endurance, Frenzy and Power Charges with nearby party members" + }, + ["flavourText"]= { + "To me, brave companions! Feel my radiance flow through you!" + }, + ["group"]= 506, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "51786" + }, + ["in"]= {} + }, + [61982]= { + ["skill"]= 61982, + ["name"]= "Grave Intentions", + ["icon"]= "Art/2DArt/SkillIcons/passives/graveintentions.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "Minions have +27% to Chaos Resistance", + "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield" + }, + ["group"]= 507, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9083" + }, + ["in"]= { + "49047" + } + }, + [9083]= { + ["skill"]= 9083, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 507, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61982" + } + }, + [49047]= { + ["skill"]= 49047, + ["name"]= "Minion Life and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have +13% to Chaos Resistance" + }, + ["group"]= 507, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "61982" + }, + ["in"]= { + "51517" + } + }, + [51517]= { + ["skill"]= 51517, + ["name"]= "Minion Life and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have +13% to Chaos Resistance" + }, + ["group"]= 507, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "49047", + "27659" + }, + ["in"]= {} + }, + [11784]= { + ["skill"]= 11784, + ["name"]= "Vampirism", + ["icon"]= "Art/2DArt/SkillIcons/passives/Vampirism.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "Recover 3% of Life on Kill", + "12% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 508, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "24481", + "4105" + } + }, + [24481]= { + ["skill"]= 24481, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 508, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11784" + }, + ["in"]= {} + }, + [4105]= { + ["skill"]= 4105, + ["name"]= "Life on Kill and Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "4% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 508, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "11784" + }, + ["in"]= { + "127" + } + }, + [127]= { + ["skill"]= 127, + ["name"]= "Life on Kill and Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "4% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 508, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "4105", + "27659" + }, + ["in"]= {} + }, + [56807]= { + ["skill"]= 56807, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "59016", + "15021" + }, + ["in"]= { + "29937" + } + }, + [59016]= { + ["skill"]= 59016, + ["name"]= "Dual Wield Block and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "4% increased Attack Speed while Dual Wielding" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "56807", + "33725" + } + }, + [21324]= { + ["skill"]= 21324, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 509, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15437", + "33725" + } + }, + [15021]= { + ["skill"]= 15021, + ["name"]= "Shield Block and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "+4% Elemental Resistances while holding a Shield" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15437" + }, + ["in"]= { + "56807" + } + }, + [15437]= { + ["skill"]= 15437, + ["name"]= "Deflection", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while holding a Shield", + "25% chance to gain an Endurance Charge when you Block" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "21324" + }, + ["in"]= { + "15021" + } + }, + [33725]= { + ["skill"]= 33725, + ["name"]= "Swagger", + ["icon"]= "Art/2DArt/SkillIcons/passives/swagger.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while Dual Wielding", + "25% chance to gain a Frenzy Charge when you Block" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "59016", + "21324" + }, + ["in"]= {} + }, + [29937]= { + ["skill"]= 29937, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 510, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6363", + "56807", + "35406" + }, + ["in"]= { + "8544" + } + }, + [33566]= { + ["skill"]= 33566, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "58336" + }, + ["in"]= { + "63033" + } + }, + [58336]= { + ["skill"]= 58336, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "58382" + }, + ["in"]= { + "33566" + } + }, + [7728]= { + ["skill"]= 7728, + ["name"]= "Banner Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 15% increased Duration" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "63033" + }, + ["in"]= { + "30038" + } + }, + [30038]= { + ["skill"]= 30038, + ["name"]= "Banner Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 15% increased Duration" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "7728" + }, + ["in"]= { + "35406" + } + }, + [35406]= { + ["skill"]= 35406, + ["name"]= "Banner Maximum Valour and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 8% increased Duration", + "+5 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "30038" + }, + ["in"]= { + "29937", + "35237" + } + }, + [22908]= { + ["skill"]= 22908, + ["name"]= "Banner Maximum Valour", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerEffectNode.png", + ["stats"]= { + "+10 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "35237" + }, + ["in"]= { + "58382" + } + }, + [35237]= { + ["skill"]= 35237, + ["name"]= "Banner Maximum Valour", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerEffectNode.png", + ["stats"]= { + "+10 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "35406" + }, + ["in"]= { + "22908" + } + }, + [63033]= { + ["skill"]= 63033, + ["name"]= "Bannerman", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannersNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "Your Banner Buffs Linger on you for 3 seconds after you leave the Area", + "Banner Skills have 20% increased Duration" + }, + ["reminderText"]= { + "(The buff still applies to you after you leave the Banner's area)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "33566", + "55281" + }, + ["in"]= { + "7728" + } + }, + [58382]= { + ["skill"]= 58382, + ["name"]= "Renowned Deeds", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "+30 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "22908", + "55281" + }, + ["in"]= { + "58336" + } + }, + [55281]= { + ["skill"]= 55281, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 511, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63033", + "58382" + } + }, + [30471]= { + ["skill"]= 30471, + ["name"]= "True Strike", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrueStriker.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "+15% to Critical Strike Multiplier", + "45% increased Critical Strike Chance" + }, + ["group"]= 512, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "34579", + "35085" + }, + ["in"]= {} + }, + [34579]= { + ["skill"]= 34579, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 512, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40100" + }, + ["in"]= { + "30471" + } + }, + [40100]= { + ["skill"]= 40100, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 512, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "34579", + "28574" + } + }, + [35085]= { + ["skill"]= 35085, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 512, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30471" + } + }, + [60512]= { + ["skill"]= 60512, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 513, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60085" + } + }, + [12032]= { + ["skill"]= 12032, + ["name"]= "Cast Speed and Spell Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Mana Cost Efficiency of Spells" + }, + ["group"]= 513, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "47504" + }, + ["in"]= { + "49651" + } + }, + [47504]= { + ["skill"]= 47504, + ["name"]= "Cast Speed and Spell Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Mana Cost Efficiency of Spells" + }, + ["group"]= 513, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "60085" + }, + ["in"]= { + "12032" + } + }, + [60085]= { + ["skill"]= 60085, + ["name"]= "Arcane Conservation", + ["icon"]= "Art/2DArt/SkillIcons/passives/CombatFocusNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "10% increased Cast Speed", + "20% increased Mana Cost Efficiency of Spells", + "3% increased Intelligence" + }, + ["group"]= 513, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "60512" + }, + ["in"]= { + "47504" + } + }, + [238]= { + ["skill"]= 238, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 514, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "10829", + "11497" + }, + ["in"]= {} + }, + [11497]= { + ["skill"]= 11497, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 514, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34483" + }, + ["in"]= { + "238", + "5408" + } + }, + [34483]= { + ["skill"]= 34483, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 514, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "11497" + } + }, + [41273]= { + ["skill"]= 41273, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 515, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27623" + } + }, + [15452]= { + ["skill"]= 15452, + ["name"]= "Spell Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "+4% to Damage Over Time Multiplier with Spell Skills" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50082", + "47085" + }, + ["in"]= { + "38176" + } + }, + [50082]= { + ["skill"]= 50082, + ["name"]= "Spell Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "+6% to Damage Over Time Multiplier with Spell Skills" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "27623" + }, + ["in"]= { + "15452" + } + }, + [47085]= { + ["skill"]= 47085, + ["name"]= "Spell Damage Over Time Multiplier and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "+4% to Damage Over Time Multiplier with Spell Skills", + "6% increased Skill Effect Duration" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "27623" + }, + ["in"]= { + "15452" + } + }, + [27623]= { + ["skill"]= 27623, + ["name"]= "Harsh Lessons", + ["icon"]= "Art/2DArt/SkillIcons/passives/CombatFocusNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "+12% to Damage Over Time Multiplier with Spell Skills", + "20% reduced Duration of Ailments on You" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "41273" + }, + ["in"]= { + "50082", + "47085" + } + }, + [51786]= { + ["skill"]= 51786, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 516, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "28574", + "20812", + "36877" + }, + ["in"]= { + "23540", + "35737", + "24496" + } + }, + [28574]= { + ["skill"]= 28574, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 516, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "61875", + "40100" + }, + ["in"]= { + "33545", + "51786" + } + }, + [61393]= { + ["skill"]= 61393, + ["name"]= "Attack Damage, Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "15% increased Critical Strike Chance" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "17315" + }, + ["in"]= { + "33795" + } + }, + [34484]= { + ["skill"]= 34484, + ["name"]= "Endless Hunger", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "20% of Overkill Damage is Leeched as Life", + "20% increased Attack Speed while Leeching", + "Cannot be Stunned while Leeching", + "You are Unaffected by Bleeding while Leeching" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Overkill Damage is any Damage from a Hit in excess of the Enemy's remaining Life)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "34215" + } + }, + [10143]= { + ["skill"]= 10143, + ["name"]= "Brutal Fervour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "100% increased Maximum Recovery per Life Leech", + "Life Leech effects are not removed when Unreserved Life is Filled", + "10% reduced Damage taken while Leeching" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "34215" + }, + ["in"]= { + "45696" + } + }, + [38180]= { + ["skill"]= 38180, + ["name"]= "Impact", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/Impact.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "+0.4 metres to Melee Strike Range", + "5% increased Area of Effect per Enemy killed recently, up to 50%", + "Deal up to 15% more Melee Damage to Enemies, based on proximity", + "50% increased Accuracy Rating" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "20954" + } + }, + [50845]= { + ["skill"]= 50845, + ["name"]= "Attack Damage, Frenzy and Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "15% increased Endurance Charge Duration", + "15% increased Frenzy Charge Duration" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "16306" + }, + ["in"]= { + "33795" + } + }, + [16306]= { + ["skill"]= 16306, + ["name"]= "Masterful Form", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/Charges.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "50845" + } + }, + [15286]= { + ["skill"]= 15286, + ["name"]= "Attack Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "5% increased Attack Speed" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 36, + ["out"]= { + "3184" + }, + ["in"]= { + "62817" + } + }, + [42293]= { + ["skill"]= 42293, + ["name"]= "Attack Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "5% increased Attack Speed" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "62817" + }, + ["in"]= { + "33795" + } + }, + [34215]= { + ["skill"]= 34215, + ["name"]= "Attack Damage, Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "0.4% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= { + "34484" + }, + ["in"]= { + "10143" + } + }, + [45696]= { + ["skill"]= 45696, + ["name"]= "Attack Damage, Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "0.4% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "10143" + }, + ["in"]= { + "33795" + } + }, + [20954]= { + ["skill"]= 20954, + ["name"]= "Attack Damage, Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "10% increased Area of Effect" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "38180" + }, + ["in"]= { + "33795" + } + }, + [3184]= { + ["skill"]= 3184, + ["name"]= "Headsman", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Kill Enemies that have 20% or lower Life when Hit by your Skills", + "Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", + "Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= {}, + ["in"]= { + "15286" + } + }, + [17315]= { + ["skill"]= 17315, + ["name"]= "Overwhelm", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Base Critical Strike Chance for Attacks with Weapons is 8%", + "+10% to Critical Strike Multiplier per Nearby Enemy, up to +100%", + "Nearby Enemies have -30% to Critical Strike Multiplier" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "61393" + } + }, + [62817]= { + ["skill"]= 62817, + ["name"]= "Bane of Legends", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/Headman.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% more Damage if you've Killed Recently", + "Cannot take Reflected Physical Damage", + "20% more Damage with Hits and Ailments against Unique Enemies" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "15286" + }, + ["in"]= { + "42293" + } + }, + [33795]= { + ["skill"]= 33795, + ["name"]= "Slayer", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Slayer", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 517, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42293", + "45696", + "20954", + "61393", + "50845" + }, + ["in"]= { + "50986" + } + }, + [63482]= { + ["skill"]= 63482, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 518, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26557" + } + }, + [13961]= { + ["skill"]= 13961, + ["name"]= "Lightning Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "20% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 518, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26557" + }, + ["in"]= { + "62697" + } + }, + [62697]= { + ["skill"]= 62697, + ["name"]= "Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "15% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 518, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "13961" + }, + ["in"]= { + "5296" + } + }, + [26557]= { + ["skill"]= 26557, + ["name"]= "Static Blows", + ["icon"]= "Art/2DArt/SkillIcons/passives/staticshield.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Damage if you have Shocked an Enemy Recently", + "50% increased Duration of Lightning Ailments", + "30% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 518, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "63482" + }, + ["in"]= { + "13961" + } + }, + [55348]= { + ["skill"]= 55348, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 519, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63727" + } + }, + [37887]= { + ["skill"]= 37887, + ["name"]= "Attack Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png", + ["stats"]= { + "12% increased Attack Damage", + "60% increased total Recovery per second from Life Leech", + "12% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "29359" + }, + ["in"]= { + "63727" + } + }, + [17934]= { + ["skill"]= 17934, + ["name"]= "Attack Damage and Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png", + ["stats"]= { + "12% increased Attack Damage", + "3% increased Attack Speed", + "12% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "63727" + }, + ["in"]= { + "29359" + } + }, + [29359]= { + ["skill"]= 29359, + ["name"]= "Attack Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png", + ["stats"]= { + "12% increased Attack Damage", + "0.4% of Physical Attack Damage Leeched as Life", + "12% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "17934", + "5408" + }, + ["in"]= { + "37887" + } + }, + [63727]= { + ["skill"]= 63727, + ["name"]= "Gladiator's Perseverance", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "10% increased Attack Speed when on Full Life", + "1% of Physical Attack Damage Leeched as Life", + "40% increased Attack Damage while Leeching" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "37887", + "55348" + }, + ["in"]= { + "17934" + } + }, + [47242]= { + ["skill"]= 47242, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 520, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29381" + } + }, + [9370]= { + ["skill"]= 9370, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "44360" + }, + ["in"]= { + "5296" + } + }, + [44360]= { + ["skill"]= 44360, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6685" + }, + ["in"]= { + "9370" + } + }, + [6685]= { + ["skill"]= 6685, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "29381" + }, + ["in"]= { + "44360" + } + }, + [29381]= { + ["skill"]= 29381, + ["name"]= "Ravenous Horde", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Minions have 30% increased Movement Speed", + "Minions have 30% chance to gain Onslaught for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "47242" + }, + ["in"]= { + "6685" + } + }, + [48778]= { + ["skill"]= 48778, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 521, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "37671", + "41263" + }, + ["in"]= { + "51923" + } + }, + [51923]= { + ["skill"]= 51923, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 521, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48778" + }, + ["in"]= { + "46092" + } + }, + [41263]= { + ["skill"]= 41263, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 521, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "48778" + } + }, + [10808]= { + ["skill"]= 10808, + ["name"]= "Vaal Pact", + ["icon"]= "Art/2DArt/SkillIcons/passives/vaalpact.png", + ["isKeystone"]= true, + ["stats"]= { + "Life Leech from Melee Damage is Instant\nCannot Recover Life other than from Leech" + }, + ["flavourText"]= { + "My ancestral pact was sealed. Forevermore, I would gain sustenance", + "only from the ravaged flesh of my enemies." + }, + ["group"]= 522, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20010" + } + }, + [41225]= { + ["skill"]= 41225, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 523, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25409" + } + }, + [29171]= { + ["skill"]= 29171, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "30658", + "31103", + "38176" + }, + ["in"]= {} + }, + [30658]= { + ["skill"]= 30658, + ["name"]= "Minion Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have +8% to all Elemental Resistances" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "25409" + }, + ["in"]= { + "29171" + } + }, + [31103]= { + ["skill"]= 31103, + ["name"]= "Minion Life and Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have 8% additional Physical Damage Reduction" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "25409" + }, + ["in"]= { + "29171" + } + }, + [25409]= { + ["skill"]= 25409, + ["name"]= "Indomitable Army", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Minions have 15% additional Physical Damage Reduction", + "Minions have +15% to all Elemental Resistances", + "Moving while Bleeding doesn't cause Minions to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41225" + }, + ["in"]= { + "30658", + "31103" + } + }, + [5408]= { + ["skill"]= 5408, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 524, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63139", + "56589", + "11497" + }, + ["in"]= { + "11651", + "29359", + "930", + "39085" + } + }, + [17236]= { + ["skill"]= 17236, + ["name"]= "Energy Shield and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+15 to maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 525, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "7641", + "62577" + } + }, + [7641]= { + ["skill"]= 7641, + ["name"]= "Energy Shield and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+15 to maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 525, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "17236" + }, + ["in"]= { + "49651" + } + }, + [62577]= { + ["skill"]= 62577, + ["name"]= "Essence Surge", + ["icon"]= "Art/2DArt/SkillIcons/passives/EssenceSurge.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "+30 to maximum Energy Shield", + "20% faster start of Energy Shield Recharge" + }, + ["group"]= 525, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "17236", + "6338" + }, + ["in"]= {} + }, + [6338]= { + ["skill"]= 6338, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 525, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62577" + } + }, + [12189]= { + ["skill"]= 12189, + ["name"]= "Cast Speed and Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Spell Critical Strike Chance" + }, + ["group"]= 526, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "5875", + "37671" + }, + ["in"]= {} + }, + [5875]= { + ["skill"]= 5875, + ["name"]= "Cast Speed and Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Spell Critical Strike Chance" + }, + ["group"]= 526, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "9788" + }, + ["in"]= { + "12189" + } + }, + [40196]= { + ["skill"]= 40196, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 526, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9788" + } + }, + [9788]= { + ["skill"]= 9788, + ["name"]= "Nimbleness", + ["icon"]= "Art/2DArt/SkillIcons/passives/nimbleness.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "8% increased Cast Speed", + "+15% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 526, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "40196" + }, + ["in"]= { + "5875" + } + }, + [42161]= { + ["skill"]= 42161, + ["name"]= "Attack Ignite Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "3% increased Attack Speed", + "Attacks have 10% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "12415" + }, + ["in"]= { + "26365" + } + }, + [26365]= { + ["skill"]= 26365, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "7187", + "42161" + }, + ["in"]= { + "56589" + } + }, + [12415]= { + ["skill"]= 12415, + ["name"]= "Attack Ignite Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "3% increased Attack Speed", + "Attacks have 10% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "36736" + }, + ["in"]= { + "42161" + } + }, + [7187]= { + ["skill"]= 7187, + ["name"]= "Burning Damage Multiplier with Attacks", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier with Attack Skills" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "36736" + }, + ["in"]= { + "26365" + } + }, + [36736]= { + ["skill"]= 36736, + ["name"]= "Burning Brutality", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireAilment.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier with Attack Skills", + "6% increased Attack Speed" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "19749" + }, + ["in"]= { + "12415", + "7187" + } + }, + [19749]= { + ["skill"]= 19749, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 527, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36736" + } + }, + [17906]= { + ["skill"]= 17906, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 528, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7136" + } + }, + [36877]= { + ["skill"]= 36877, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Trap Damage" + }, + ["group"]= 528, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "22488" + }, + ["in"]= { + "51786" + } + }, + [7136]= { + ["skill"]= 7136, + ["name"]= "Master Sapper", + ["icon"]= "Art/2DArt/SkillIcons/passives/mastersapper.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Trap Damage", + "Can have up to 2 additional Traps placed at a time", + "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" + }, + ["group"]= 528, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "22488", + "17906" + }, + ["in"]= {} + }, + [22488]= { + ["skill"]= 22488, + ["name"]= "Trap Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "5% increased Trap Throwing Speed" + }, + ["group"]= 528, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "36877", + "7136" + } + }, + [31137]= { + ["skill"]= 31137, + ["name"]= "Charge on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/innerforce.png", + ["stats"]= { + "2% chance to gain a Power, Frenzy or Endurance Charge on Kill" + }, + ["group"]= 529, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "47471" + }, + ["in"]= { + "35737" + } + }, + [35737]= { + ["skill"]= 35737, + ["name"]= "Charge on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/innerforce.png", + ["stats"]= { + "2% chance to gain a Power, Frenzy or Endurance Charge on Kill" + }, + ["group"]= 529, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "31137", + "51786" + }, + ["in"]= {} + }, + [47471]= { + ["skill"]= 47471, + ["name"]= "Overcharged", + ["icon"]= "Art/2DArt/SkillIcons/passives/innerforce.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "8% chance to gain a Power, Frenzy or Endurance Charge on Kill" + }, + ["group"]= 529, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33678" + }, + ["in"]= { + "31137" + } + }, + [33678]= { + ["skill"]= 33678, + ["name"]= "Charge Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28720, + ["stats"]= { + "Cannot be Ignited while at maximum Endurance Charges" + } + }, + { + ["effect"]= 48661, + ["stats"]= { + "Cannot be Chilled while at maximum Frenzy Charges" + } + }, + { + ["effect"]= 14100, + ["stats"]= { + "Cannot be Shocked while at maximum Power Charges" + } + }, + { + ["effect"]= 29652, + ["stats"]= { + "100% increased Charge Duration" + } + }, + { + ["effect"]= 40307, + ["stats"]= { + "3% increased Damage per Endurance, Frenzy or Power Charge" + } + }, + { + ["effect"]= 19142, + ["stats"]= { + "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" + } + } + }, + ["stats"]= {}, + ["group"]= 529, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47471" + } + }, + [9171]= { + ["skill"]= 9171, + ["name"]= "Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "60% increased total Recovery per second from Life Leech" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "39530" + }, + ["in"]= { + "36704" + } + }, + [39530]= { + ["skill"]= 39530, + ["name"]= "Vitality Void", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Life", + "40% increased Maximum total Life Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25446" + }, + ["in"]= { + "9171" + } + }, + [36704]= { + ["skill"]= 36704, + ["name"]= "Life and Mana Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "0.4% of Attack Damage Leeched as Life", + "0.4% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "20010", + "9171", + "54872" + }, + ["in"]= {} + }, + [54872]= { + ["skill"]= 54872, + ["name"]= "Mana Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + ["stats"]= { + "60% increased total Recovery per second from Mana Leech" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "1382" + }, + ["in"]= { + "36704" + } + }, + [1382]= { + ["skill"]= 1382, + ["name"]= "Spirit Void", + ["icon"]= "Art/2DArt/SkillIcons/passives/minddrinker.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "VerdantOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Mana", + "40% increased Maximum total Mana Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "25446" + }, + ["in"]= { + "54872" + } + }, + [25446]= { + ["skill"]= 25446, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 530, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39530", + "1382" + } + }, + [20010]= { + ["skill"]= 20010, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 531, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471", + "10808" + }, + ["in"]= { + "19711", + "36704", + "55392" + } + }, + [56659]= { + ["skill"]= 56659, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 532, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53667" + }, + ["in"]= { + "6363" + } + }, + [53667]= { + ["skill"]= 53667, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 532, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "6783" + }, + ["in"]= { + "56659" + } + }, + [6783]= { + ["skill"]= 6783, + ["name"]= "Savage Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "IndigoOil" + }, + ["stats"]= { + "15% increased Impale Effect" + }, + ["group"]= 532, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49677" + }, + ["in"]= { + "53667" + } + }, + [49677]= { + ["skill"]= 49677, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 532, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6783" + } + }, + [37671]= { + ["skill"]= 37671, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 533, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "61320", + "21301", + "31703", + "27415" + }, + ["in"]= { + "27659", + "48778", + "12189" + } + }, + [40126]= { + ["skill"]= 40126, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 534, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53652" + }, + ["in"]= { + "6109" + } + }, + [6109]= { + ["skill"]= 6109, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 534, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "40126", + "27415" + }, + ["in"]= {} + }, + [53652]= { + ["skill"]= 53652, + ["name"]= "Steeped in the Profane", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "15% reduced Effect of Curses on you", + "10% increased Effect of your Curses" + }, + ["group"]= 534, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "62506" + }, + ["in"]= { + "40126" + } + }, + [62506]= { + ["skill"]= 62506, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 534, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53652" + } + }, + [46344]= { + ["skill"]= 46344, + ["name"]= "Bow Damage and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "15% increased Evasion Rating", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "36687" + }, + ["in"]= { + "29089" + } + }, + [29089]= { + ["skill"]= 29089, + ["name"]= "Bow Damage and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "15% increased Evasion Rating", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "46344" + }, + ["in"]= { + "930" + } + }, + [36687]= { + ["skill"]= 36687, + ["name"]= "Avatar of the Hunt", + ["icon"]= "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Damage with Bows", + "+200 to Evasion Rating", + "6% increased Movement Speed", + "30% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25349" + }, + ["in"]= { + "46344", + "56855" + } + }, + [930]= { + ["skill"]= 930, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "5408", + "29089", + "13231" + }, + ["in"]= {} + }, + [56855]= { + ["skill"]= 56855, + ["name"]= "Bow Attack Speed and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "36687" + }, + ["in"]= { + "13231" + } + }, + [13231]= { + ["skill"]= 13231, + ["name"]= "Bow Attack Speed and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "56855" + }, + ["in"]= { + "930" + } + }, + [25349]= { + ["skill"]= 25349, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 535, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36687" + } + }, + [42637]= { + ["skill"]= 42637, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "Axe Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "26096", + "29543" + }, + ["in"]= {} + }, + [30030]= { + ["skill"]= 30030, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "Axe Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "6363" + }, + ["in"]= { + "29543" + } + }, + [29543]= { + ["skill"]= 29543, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "Axe Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "30030" + }, + ["in"]= { + "42637" + } + }, + [26096]= { + ["skill"]= 26096, + ["name"]= "Hatchet Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "Axe Attacks deal 24% increased Damage with Hits and Ailments", + "10% increased Attack Speed with Axes", + "20% chance to gain Onslaught for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "28039" + }, + ["in"]= { + "42637" + } + }, + [28039]= { + ["skill"]= 28039, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 536, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26096" + } + }, + [23950]= { + ["skill"]= 23950, + ["name"]= "Wicked Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png", + ["isKeystone"]= true, + ["stats"]= { + "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently\n40% less Energy Shield Recharge Rate" + }, + ["flavourText"]= { + "Embrace the forbidden. Let dark energies envelop you." + }, + ["group"]= 537, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49651" + } + }, + [58198]= { + ["skill"]= 58198, + ["name"]= "Fingers of Frost", + ["icon"]= "Art/2DArt/SkillIcons/passives/breathofrime.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "Enemies Become Chilled as they Unfreeze, causing 30% reduced Action Speed", + "30% chance to Freeze Enemies which are Chilled" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed for 2 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "17380" + }, + ["in"]= { + "21170", + "58603" + } + }, + [14209]= { + ["skill"]= 14209, + ["name"]= "Cold Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Duration of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "58603", + "21170" + }, + ["in"]= { + "27415" + } + }, + [21170]= { + ["skill"]= 21170, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "58198" + }, + ["in"]= { + "14209" + } + }, + [58603]= { + ["skill"]= 58603, + ["name"]= "Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "58198" + }, + ["in"]= { + "14209" + } + }, + [17380]= { + ["skill"]= 17380, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 538, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58198" + } + }, + [32710]= { + ["skill"]= 32710, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 16, + ["out"]= { + "10153", + "32345", + "4502", + "51801", + "48275" + }, + ["in"]= { + "41635", + "27415", + "49605" + } + }, + [38176]= { + ["skill"]= 38176, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 60, + ["out"]= { + "11551", + "49651", + "15452" + }, + ["in"]= { + "8948", + "18663", + "29171" + } + }, + [49651]= { + ["skill"]= 49651, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "41635", + "23950", + "7641", + "5296", + "12032" + }, + ["in"]= { + "38176", + "27709" + } + }, + [41635]= { + ["skill"]= 41635, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 9, + ["out"]= { + "32710", + "4036" + }, + ["in"]= { + "49651", + "64239" + } + }, + [4492]= { + ["skill"]= 4492, + ["name"]= "Attributes Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 5356, + ["stats"]= { + "5% increased Attributes" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 41483, + ["stats"]= { + "1% increased Damage per 5 of your lowest Attribute" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 26621, + ["stats"]= { + "+5 to Strength per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 52604, + ["stats"]= { + "+5 to Intelligence per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 15826, + ["stats"]= { + "+5 to Dexterity per Allocated Mastery Passive Skill" + } + } + }, + ["stats"]= {}, + ["group"]= 540, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55114" + } + }, + [27592]= { + ["skill"]= 27592, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 15, + ["stats"]= { + "+15 to Intelligence" + }, + ["group"]= 540, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44924" + }, + ["in"]= { + "5296" + } + }, + [44924]= { + ["skill"]= 44924, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 15, + ["stats"]= { + "+15 to Intelligence" + }, + ["group"]= 540, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55114" + }, + ["in"]= { + "27592" + } + }, + [55114]= { + ["skill"]= 55114, + ["name"]= "Utmost Intellect", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "CrimsonOil" + }, + ["grantedIntelligence"]= 40, + ["stats"]= { + "+40 to Intelligence", + "8% increased Intelligence" + }, + ["group"]= 540, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "4492" + }, + ["in"]= { + "44924" + } + }, + [39085]= { + ["skill"]= 39085, + ["name"]= "Elemental Equilibrium", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png", + ["isKeystone"]= true, + ["stats"]= { + "Hits that deal Elemental Damage remove Exposure to those Elements and inflict Exposure to other Elements\nExposure inflicted this way applies -25% to Resistances" + }, + ["flavourText"]= { + "Balance is good in all things, but especially in the realm of magic." + }, + ["group"]= 541, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5408" + }, + ["in"]= {} + }, + [49969]= { + ["skill"]= 49969, + ["name"]= "Courage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourandEvasion2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Armour if you have been Hit Recently", + "30% increased Evasion Rating if you haven't been Hit Recently", + "+15% chance to Suppress Spell Damage if you've Hit an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "62235" + }, + ["in"]= { + "55085" + } + }, + [62235]= { + ["skill"]= 62235, + ["name"]= "Armour and Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 49522, + ["stats"]= { + "Defend with 120% of Armour against Projectile Attacks", + "5% more chance to Evade Melee Attacks" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 62285, + ["stats"]= { + "8% increased Evasion Rating per Frenzy Charge", + "8% increased Armour per Endurance Charge" + } + }, + { + ["effect"]= 5108, + ["stats"]= { + "80% increased Stun and Block Recovery" + } + }, + { + ["effect"]= 23955, + ["stats"]= { + "Every 4 seconds, Regenerate Life equal to 1% of Armour and Evasion Rating over 1 second" + } + }, + { + ["effect"]= 58876, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently", + "40% increased Armour if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 43258, + ["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" + } + } + }, + ["stats"]= {}, + ["group"]= 542, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49969", + "18703" + } + }, + [55392]= { + ["skill"]= 55392, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "14% increased Evasion Rating and Armour" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55085", + "20010" + }, + ["in"]= { + "53002" + } + }, + [53002]= { + ["skill"]= 53002, + ["name"]= "Armour, Evasion and Onslaught Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png", + ["stats"]= { + "10% increased Evasion Rating and Armour", + "15% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "4944", + "55392", + "23471" + }, + ["in"]= {} + }, + [4944]= { + ["skill"]= 4944, + ["name"]= "Armour, Evasion and Onslaught Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png", + ["stats"]= { + "10% increased Evasion Rating and Armour", + "15% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "18703" + }, + ["in"]= { + "53002" + } + }, + [55085]= { + ["skill"]= 55085, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "14% increased Evasion Rating and Armour" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49969" + }, + ["in"]= { + "55392" + } + }, + [18703]= { + ["skill"]= 18703, + ["name"]= "Graceful Assault", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Effect of Onslaught on you", + "10% chance to gain Onslaught for 4 seconds on Kill", + "30% increased Armour and Evasion Rating during Onslaught" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "62235" + }, + ["in"]= { + "4944" + } + }, + [55247]= { + ["skill"]= 55247, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "3% increased maximum Life" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63799" + }, + ["in"]= { + "18865" + } + }, + [63799]= { + ["skill"]= 63799, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "3% increased maximum Life" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "61320" + }, + ["in"]= { + "55247" + } + }, + [61320]= { + ["skill"]= 61320, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "3% increased maximum Life" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "37671", + "63799" + } + }, + [18865]= { + ["skill"]= 18865, + ["name"]= "Melding", + ["icon"]= "Art/2DArt/SkillIcons/passives/melding.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "7% increased maximum Life", + "Gain 3% of Maximum Life as Extra Maximum Energy Shield" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "55247", + "25281" + }, + ["in"]= {} + }, + [25281]= { + ["skill"]= 25281, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 543, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18865" + } + }, + [31703]= { + ["skill"]= 31703, + ["name"]= "Pain Attunement", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png", + ["isKeystone"]= true, + ["stats"]= { + "30% more Spell Damage when on Low Life" + }, + ["flavourText"]= { + "Embrace the pain, drink it in.", + "Your enemies will know your agony tenfold." + }, + ["group"]= 544, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37671" + } + }, + [56589]= { + ["skill"]= 56589, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 545, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "43787", + "26365", + "13019" + }, + ["in"]= { + "5408", + "23471" + } + }, + [13019]= { + ["skill"]= 13019, + ["name"]= "Bloodsoaked Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureKeystone1.png", + ["isKeystone"]= true, + ["stats"]= { + "Tinctures inflict Weeping Wounds instead of Mana Burn\nEffects that interact with Mana Burn interact with Weeping Wounds instead" + }, + ["reminderText"]= { + "(Weeping Wounds cause you to lose 1% of your maximum Life per second per stack. Tinctures deactivate when you have 1 life remaining)" + }, + ["flavourText"]= { + "Tainted blood is a gift that must be shared." + }, + ["group"]= 546, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56589" + } + }, + [6363]= { + ["skill"]= 6363, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 547, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "55021", + "46291", + "56659" + }, + ["in"]= { + "29937", + "30030", + "5237" + } + }, + [44683]= { + ["skill"]= 44683, + ["name"]= "SIX", + ["icon"]= "Art/2DArt/SkillIcons/passives/tempint.png", + ["stats"]= {}, + ["classStartIndex"]= 6, + ["group"]= 548, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "45272", + "58229", + "55236", + "18635" + }, + ["in"]= { + "38129" + } + }, + [45035]= { + ["skill"]= 45035, + ["name"]= "Projectile Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "+30 to Accuracy Rating", + "16% increased Projectile Damage" + }, + ["group"]= 549, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "59370", + "465" + }, + ["in"]= { + "7618", + "50459" + } + }, + [39821]= { + ["skill"]= 39821, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "+20 to Evasion Rating", + "+14 to maximum Life" + }, + ["group"]= 549, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "52904", + "2094" + }, + ["in"]= { + "7618", + "50459" + } + }, + [50459]= { + ["skill"]= 50459, + ["name"]= "RANGER", + ["icon"]= "Art/2DArt/SkillIcons/passives/blankDex.png", + ["stats"]= {}, + ["classStartIndex"]= 2, + ["group"]= 549, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39821", + "45035", + "58427", + "64111", + "56856" + }, + ["in"]= {} + }, + [27709]= { + ["skill"]= 27709, + ["name"]= "Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "28887", + "49651", + "22647" + }, + ["in"]= {} + }, + [28887]= { + ["skill"]= 28887, + ["name"]= "Faster Ignite", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "Ignites you inflict deal Damage 5% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "38849" + }, + ["in"]= { + "27709" + } + }, + [38849]= { + ["skill"]= 38849, + ["name"]= "Searing Heat", + ["icon"]= "Art/2DArt/SkillIcons/passives/SearingHeat.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "Ignites you inflict deal Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "40271" + }, + ["in"]= { + "28887", + "22647" + } + }, + [22647]= { + ["skill"]= 22647, + ["name"]= "Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "38849" + }, + ["in"]= { + "27709" + } + }, + [40271]= { + ["skill"]= 40271, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 550, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38849" + } + }, + [51219]= { + ["skill"]= 51219, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "0.3% of Spell Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 551, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "13232" + }, + ["in"]= { + "33310" + } + }, + [13232]= { + ["skill"]= 13232, + ["name"]= "Increased Energy Shield Leeched", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "30% increased total Recovery per second from Energy Shield Leech" + }, + ["group"]= 551, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "9567" + }, + ["in"]= { + "51219" + } + }, + [9567]= { + ["skill"]= 9567, + ["name"]= "Light Eater", + ["icon"]= "Art/2DArt/SkillIcons/passives/SoulSiphoning.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "0.8% of Spell Damage Leeched as Energy Shield", + "30% increased Maximum total Energy Shield Recovery per second from Leech", + "24% increased Damage while on Full Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 551, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "55230" + }, + ["in"]= { + "13232" + } + }, + [55230]= { + ["skill"]= 55230, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 551, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9567" + } + }, + [48411]= { + ["skill"]= 48411, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 552, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63207" + } + }, + [64612]= { + ["skill"]= 64612, + ["name"]= "Wand Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Gain 5% of Wand Physical Damage as Extra Lightning Damage" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19098" + }, + ["in"]= { + "64239" + } + }, + [32942]= { + ["skill"]= 32942, + ["name"]= "Wand Physical Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Physical Damage with Wands", + "Wand Attacks deal 12% increased Damage with Ailments", + "4% increased Attack Speed with Wands" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "63207" + }, + ["in"]= { + "22407" + } + }, + [64239]= { + ["skill"]= 64239, + ["name"]= "Wand Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Physical Damage with Wands", + "Wand Attacks deal 12% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "22407", + "64612", + "41635" + }, + ["in"]= {} + }, + [22407]= { + ["skill"]= 22407, + ["name"]= "Wand Physical Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Physical Damage with Wands", + "Wand Attacks deal 12% increased Damage with Ailments", + "4% increased Attack Speed with Wands" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "32942" + }, + ["in"]= { + "64239" + } + }, + [63207]= { + ["skill"]= 63207, + ["name"]= "Tempest Blast", + ["icon"]= "Art/2DArt/SkillIcons/passives/TempestBlast.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "Gain 20% of Wand Physical Damage as Extra Lightning Damage" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "48411" + }, + ["in"]= { + "32942", + "19098" + } + }, + [19098]= { + ["skill"]= 19098, + ["name"]= "Wand Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Gain 5% of Wand Physical Damage as Extra Lightning Damage" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63207" + }, + ["in"]= { + "64612" + } + }, + [5296]= { + ["skill"]= 5296, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 553, + ["orbit"]= 6, + ["orbitIndex"]= 66, + ["out"]= { + "33310", + "19501", + "62697", + "27592", + "9370" + }, + ["in"]= { + "49651" + } + }, + [33310]= { + ["skill"]= 33310, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 553, + ["orbit"]= 6, + ["orbitIndex"]= 6, + ["out"]= { + "56075", + "51219", + "12831", + "53290" + }, + ["in"]= { + "5296", + "39521", + "49605" + } + }, + [43988]= { + ["skill"]= 43988, + ["name"]= "Hex Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png", + ["isKeystone"]= true, + ["stats"]= { + "Your Hexes have infinite Duration\n20% less Effect of your Curses" + }, + ["flavourText"]= { + "Hear these words but once and they will echo in your nightmares forever." + }, + ["group"]= 554, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27415" + } + }, + [27415]= { + ["skill"]= 27415, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 555, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32710", + "14209", + "57457", + "43988" + }, + ["in"]= { + "37671", + "6109", + "37175" + } + }, + [54144]= { + ["skill"]= 54144, + ["name"]= "Dual Wield Attack and Cast Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13573" + }, + ["in"]= { + "39743" + } + }, + [57457]= { + ["skill"]= 57457, + ["name"]= "Dual Wield Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "13573" + }, + ["in"]= { + "27415", + "31619" + } + }, + [13573]= { + ["skill"]= 13573, + ["name"]= "Dual Wield Attack and Cast Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "54144", + "57457" + } + }, + [31619]= { + ["skill"]= 31619, + ["name"]= "Dual Wield Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while Dual Wielding", + "10% increased Spell Damage while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "57457" + }, + ["in"]= { + "39743" + } + }, + [39743]= { + ["skill"]= 39743, + ["name"]= "Dark Arts", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "+8% Chance to Block Spell Damage while Dual Wielding", + "+8% Chance to Block Attack Damage while Dual Wielding", + "10% increased Attack Speed while Dual Wielding", + "10% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54144", + "31619", + "50071" + }, + ["in"]= {} + }, + [50071]= { + ["skill"]= 50071, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 556, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39743" + } + }, + [38129]= { + ["skill"]= 38129, + ["name"]= "Damage and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "14% increased Damage", + "+12 to maximum Energy Shield" + }, + ["group"]= 557, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44683", + "11334", + "63639" + }, + ["in"]= { + "53992" + } + }, + [36874]= { + ["skill"]= 36874, + ["name"]= "Wisdom of the Glade", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 558, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471" + }, + ["in"]= {} + }, + [33037]= { + ["skill"]= 33037, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 559, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29522" + } + }, + [64284]= { + ["skill"]= 64284, + ["name"]= "Stance Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for Stance Skills" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "29522" + }, + ["in"]= { + "11456" + } + }, + [11456]= { + ["skill"]= 11456, + ["name"]= "Stance Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for Stance Skills" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "64284" + }, + ["in"]= { + "55021" + } + }, + [55021]= { + ["skill"]= 55021, + ["name"]= "Stance Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for Stance Skills" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "11456" + }, + ["in"]= { + "6363" + } + }, + [29522]= { + ["skill"]= 29522, + ["name"]= "Dance of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "You have Onslaught if you've changed Stance Recently" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "33037" + }, + ["in"]= { + "64284" + } + }, + [55152]= { + ["skill"]= 55152, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 560, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "544" + } + }, + [7786]= { + ["skill"]= 7786, + ["name"]= "Totem Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "544" + }, + ["in"]= { + "55648" + } + }, + [55648]= { + ["skill"]= 55648, + ["name"]= "Totem Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7786" + }, + ["in"]= { + "46291" + } + }, + [46291]= { + ["skill"]= 46291, + ["name"]= "Totem Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55648" + }, + ["in"]= { + "6363" + } + }, + [544]= { + ["skill"]= 544, + ["name"]= "Surveillance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Attacks used by Totems have 8% increased Attack Speed", + "Attack Skills have +1 to maximum number of Summoned Ballista Totems", + "Each Totem applies 1% increased Damage taken to Enemies near it" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "55152" + }, + ["in"]= { + "7786" + } + }, + [203]= { + ["skill"]= 203, + ["name"]= "Vinespike Cordial", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "Inflict a Grasping Vine on Hit against Enemies with fewer than\n8 Grasping Vines during Effect of any Life Flask" + }, + ["reminderText"]= { + "(Up to 10 Vines can grasp you, inflicting 8% less Movement Speed per Vine. Broken by moving)" + }, + ["group"]= 561, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [44330]= { + ["skill"]= 44330, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 562, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2275" + } + }, + [53882]= { + ["skill"]= 53882, + ["name"]= "Flask and Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png", + ["stats"]= { + "Flasks applied to you have 5% increased Effect", + "Tinctures applied to you have 5% increased Effect" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "64888", + "24974", + "63139" + }, + ["in"]= {} + }, + [53809]= { + ["skill"]= 53809, + ["name"]= "Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Effect Duration" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "2275" + }, + ["in"]= { + "24974" + } + }, + [24974]= { + ["skill"]= 24974, + ["name"]= "Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Effect Duration" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "53809" + }, + ["in"]= { + "53882" + } + }, + [62721]= { + ["skill"]= 62721, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "2275" + }, + ["in"]= { + "64888" + } + }, + [64888]= { + ["skill"]= 64888, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62721" + }, + ["in"]= { + "53882" + } + }, + [2275]= { + ["skill"]= 2275, + ["name"]= "Nature's Concoction", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "Flasks adjacent to active Tinctures gain 2 charges when you Hit an\nEnemy with a Melee Weapon, no more than once every second" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44330" + }, + ["in"]= { + "53809", + "62721" + } + }, + [43787]= { + ["skill"]= 43787, + ["name"]= "Accuracy and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "10% increased Accuracy Rating" + }, + ["group"]= 563, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "56589", + "29379" + } + }, + [29379]= { + ["skill"]= 29379, + ["name"]= "Accuracy and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "10% increased Accuracy Rating" + }, + ["group"]= 563, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "43787", + "52230" + }, + ["in"]= {} + }, + [52230]= { + ["skill"]= 52230, + ["name"]= "Weathered Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "TealOil" + }, + ["stats"]= { + "+100 to Accuracy Rating", + "+10% to all Elemental Resistances", + "20% increased Accuracy Rating" + }, + ["group"]= 563, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "42533" + }, + ["in"]= { + "29379" + } + }, + [42533]= { + ["skill"]= 42533, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 563, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52230" + } + }, + [37175]= { + ["skill"]= 37175, + ["name"]= "Damage if Consumed a Corpse", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseDamage.png", + ["stats"]= { + "14% increased Damage if you have Consumed a corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "16970", + "27415", + "36371" + }, + ["in"]= {} + }, + [36371]= { + ["skill"]= 36371, + ["name"]= "Corpse Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseLife.png", + ["stats"]= { + "Corpses you Spawn have 5% increased Maximum Life" + }, + ["reminderText"]= { + "(Killing an Enemy is not Spawning a corpse)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "37175", + "11200" + } + }, + [11200]= { + ["skill"]= 11200, + ["name"]= "Corpse Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseLife.png", + ["stats"]= { + "Corpses you Spawn have 5% increased Maximum Life" + }, + ["reminderText"]= { + "(Killing an Enemy is not Spawning a corpse)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "36371", + "25439" + }, + ["in"]= {} + }, + [25439]= { + ["skill"]= 25439, + ["name"]= "Undertaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpsesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Damage if you have Consumed a corpse Recently", + "Desecrate and Unearth have +2 to Maximum number of corpses allowed", + "Regenerate 2% of Life per second if you've Consumed a corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "32278" + }, + ["in"]= { + "11200", + "16970" + } + }, + [16970]= { + ["skill"]= 16970, + ["name"]= "Damage if Consumed a Corpse", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseDamage.png", + ["stats"]= { + "16% increased Damage if you have Consumed a corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25439" + }, + ["in"]= { + "37175" + } + }, + [32278]= { + ["skill"]= 32278, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 564, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25439" + } + }, + [63139]= { + ["skill"]= 63139, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 565, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5408", + "53882", + "15837", + "61306" + } + }, + [24358]= { + ["skill"]= 24358, + ["name"]= "Selective Precision", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "First and Final shots of Barrage sequences fire Projectiles that Return to you" + }, + ["group"]= 566, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [23471]= { + ["skill"]= 23471, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 567, + ["orbit"]= 6, + ["orbitIndex"]= 36, + ["out"]= { + "56589", + "5237", + "40287", + "23237" + }, + ["in"]= { + "20010", + "53002", + "36874", + "15027", + "3469" + } + }, + [52423]= { + ["skill"]= 52423, + ["name"]= "Blind Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindNode.png", + ["stats"]= { + "10% chance to Blind Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 568, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "40287" + }, + ["in"]= { + "570" + } + }, + [40287]= { + ["skill"]= 40287, + ["name"]= "Critical Strikes against Blinded Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindNode.png", + ["stats"]= { + "25% increased Critical Strike Chance against Blinded Enemies" + }, + ["group"]= 568, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "23471", + "52423" + } + }, + [570]= { + ["skill"]= 570, + ["name"]= "Dazzling Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance against Blinded Enemies", + "20% chance to Blind Enemies on Hit with Attacks", + "20% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 568, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52423", + "59501" + }, + ["in"]= {} + }, + [59501]= { + ["skill"]= 59501, + ["name"]= "Blind Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43524, + ["stats"]= { + "40% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 7831, + ["stats"]= { + "100% increased Blind duration" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 57463, + ["stats"]= { + "60% increased Critical Strike Chance against Blinded Enemies" + } + }, + { + ["effect"]= 12100, + ["stats"]= { + "100% chance to Avoid Blind" + } + } + }, + ["stats"]= {}, + ["group"]= 568, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "570" + } + }, + [15027]= { + ["skill"]= 15027, + ["name"]= "Beef", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 569, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471" + }, + ["in"]= {} + }, + [4036]= { + ["skill"]= 4036, + ["name"]= "Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + ["stats"]= { + "+12% to Critical Strike Multiplier" + }, + ["group"]= 570, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "41635", + "15228" + } + }, + [15228]= { + ["skill"]= 15228, + ["name"]= "Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + ["stats"]= { + "+12% to Critical Strike Multiplier" + }, + ["group"]= 570, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "4036" + }, + ["in"]= { + "47306" + } + }, + [9586]= { + ["skill"]= 9586, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 570, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47306" + } + }, + [47306]= { + ["skill"]= 47306, + ["name"]= "Throatseeker", + ["icon"]= "Art/2DArt/SkillIcons/passives/throatseeker.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier" + }, + ["group"]= 570, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "15228", + "9586" + }, + ["in"]= {} + }, + [32345]= { + ["skill"]= 32345, + ["name"]= "Alacrity", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 571, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32710" + } + }, + [41476]= { + ["skill"]= 41476, + ["name"]= "Elder Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/elderpower.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "10% increased Wand Damage per Power Charge", + "10% chance to gain a Power Charge on Kill" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "52848", + "53828" + }, + ["in"]= { + "40840" + } + }, + [16243]= { + ["skill"]= 16243, + ["name"]= "Fusillade", + ["icon"]= "Art/2DArt/SkillIcons/passives/fussilade.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "VerdantOil" + }, + ["stats"]= { + "15% increased Attack Speed with Wands", + "30% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "48878", + "27879", + "53828" + }, + ["in"]= {} + }, + [53828]= { + ["skill"]= 53828, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 572, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41476", + "16243", + "52031" + } + }, + [52031]= { + ["skill"]= 52031, + ["name"]= "Disintegration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "BlackOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "60% increased Critical Strike Chance with Wands", + "+30% to Critical Strike Multiplier with Wands", + "+20 to Intelligence" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "53828" + }, + ["in"]= { + "52848", + "27879" + } + }, + [52848]= { + ["skill"]= 52848, + ["name"]= "Wand Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandCritical.png", + ["stats"]= { + "30% increased Critical Strike Chance with Wands", + "+12% to Critical Strike Multiplier with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "52031" + }, + ["in"]= { + "41476" + } + }, + [27879]= { + ["skill"]= 27879, + ["name"]= "Wand Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandCritical.png", + ["stats"]= { + "30% increased Critical Strike Chance with Wands", + "+12% to Critical Strike Multiplier with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "52031" + }, + ["in"]= { + "16243" + } + }, + [39521]= { + ["skill"]= 39521, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "49779", + "33310" + }, + ["in"]= { + "51146" + } + }, + [40840]= { + ["skill"]= 40840, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 16% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "41476" + }, + ["in"]= { + "29552" + } + }, + [49779]= { + ["skill"]= 49779, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 16% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "29552" + }, + ["in"]= { + "39521" + } + }, + [29552]= { + ["skill"]= 29552, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 16% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "40840" + }, + ["in"]= { + "49779" + } + }, + [48878]= { + ["skill"]= 48878, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "4% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "51524" + }, + ["in"]= { + "16243" + } + }, + [51524]= { + ["skill"]= 51524, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "4% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "51146" + }, + ["in"]= { + "48878" + } + }, + [51146]= { + ["skill"]= 51146, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "4% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "39521" + }, + ["in"]= { + "51524" + } + }, + [53290]= { + ["skill"]= 53290, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "40483" + }, + ["in"]= { + "33310" + } + }, + [40483]= { + ["skill"]= 40483, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62849" + }, + ["in"]= { + "53290" + } + }, + [62849]= { + ["skill"]= 62849, + ["name"]= "Glacial Cage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChillThemedNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "Enemies permanently take 1% increased Damage for each second they've ever been Chilled by you, up to a maximum of 10%" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "38207" + }, + ["in"]= { + "40483" + } + }, + [12831]= { + ["skill"]= 12831, + ["name"]= "Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "53005" + }, + ["in"]= { + "33310" + } + }, + [53005]= { + ["skill"]= 53005, + ["name"]= "Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41870" + }, + ["in"]= { + "12831" + } + }, + [41870]= { + ["skill"]= 41870, + ["name"]= "Winter's Embrace", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "60% increased Freeze Duration on Enemies", + "30% increased Damage if you've Shattered an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "38207" + }, + ["in"]= { + "53005" + } + }, + [38207]= { + ["skill"]= 38207, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 573, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62849", + "41870" + } + }, + [444]= { + ["skill"]= 444, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 574, + ["orbit"]= 5, + ["orbitIndex"]= 36, + ["out"]= { + "61306" + }, + ["in"]= { + "52904" + } + }, + [52904]= { + ["skill"]= 52904, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 574, + ["orbit"]= 5, + ["orbitIndex"]= 60, + ["out"]= { + "444" + }, + ["in"]= { + "39821" + } + }, + [2094]= { + ["skill"]= 2094, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "+30 to Evasion Rating", + "5% increased maximum Life" + }, + ["group"]= 574, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60803", + "720" + }, + ["in"]= { + "39821" + } + }, + [21301]= { + ["skill"]= 21301, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 575, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20546" + }, + ["in"]= { + "37671", + "57746" + } + }, + [465]= { + ["skill"]= 465, + ["name"]= "Projectile Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "10% increased Projectile Damage" + }, + ["group"]= 576, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41536", + "65033" + }, + ["in"]= { + "45035" + } + }, + [51801]= { + ["skill"]= 51801, + ["name"]= "Spell Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "Spell Skills have 10% increased Area of Effect" + }, + ["group"]= 577, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "14745" + }, + ["in"]= { + "32710" + } + }, + [14745]= { + ["skill"]= 14745, + ["name"]= "Spell Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/areaofeffect.png", + ["stats"]= { + "Spell Skills have 10% increased Area of Effect" + }, + ["group"]= 577, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "53573" + }, + ["in"]= { + "51801" + } + }, + [53573]= { + ["skill"]= 53573, + ["name"]= "Arcane Expanse", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "Spell Skills have 20% increased Area of Effect" + }, + ["group"]= 577, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "14113" + }, + ["in"]= { + "14745" + } + }, + [14113]= { + ["skill"]= 14113, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 577, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53573" + } + }, + [57746]= { + ["skill"]= 57746, + ["name"]= "Chaos Resistance and Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png", + ["stats"]= { + "+7% to Chaos Resistance", + "10% chance to Avoid being Poisoned", + "10% chance to Avoid Bleeding" + }, + ["group"]= 578, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "57044", + "21301", + "62490", + "52095" + }, + ["in"]= {} + }, + [52095]= { + ["skill"]= 52095, + ["name"]= "Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", + ["stats"]= { + "+13% to Chaos Resistance" + }, + ["group"]= 578, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "10511" + }, + ["in"]= { + "57746" + } + }, + [57044]= { + ["skill"]= 57044, + ["name"]= "Bleed Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "20% chance to Avoid Bleeding" + }, + ["group"]= 578, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "57746", + "10511" + } + }, + [62490]= { + ["skill"]= 62490, + ["name"]= "Poison Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "20% chance to Avoid being Poisoned" + }, + ["group"]= 578, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "10511" + }, + ["in"]= { + "57746" + } + }, + [10511]= { + ["skill"]= 10511, + ["name"]= "Tolerance", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+19% to Chaos Resistance", + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding" + }, + ["group"]= 578, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "57044", + "12873" + }, + ["in"]= { + "52095", + "62490" + } + }, + [12873]= { + ["skill"]= 12873, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 578, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10511" + } + }, + [23549]= { + ["skill"]= 23549, + ["name"]= "Incorporeal", + ["icon"]= "Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "Elusive on you reduces in effect 50% slower", + "Elusive is removed from you at 20% effect" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 579, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [45838]= { + ["skill"]= 45838, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 580, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "4011" + }, + ["in"]= { + "8640" + } + }, + [8640]= { + ["skill"]= 8640, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 580, + ["orbit"]= 4, + ["orbitIndex"]= 24, + ["out"]= { + "45838", + "45272" + }, + ["in"]= {} + }, + [45272]= { + ["skill"]= 45272, + ["name"]= "Physical and Chaos Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "14% increased Chaos Damage", + "+12 to maximum Life", + "14% increased Physical Damage" + }, + ["group"]= 580, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "53992", + "44683", + "8640", + "41689" + } + }, + [45033]= { + ["skill"]= 45033, + ["name"]= "Evasion and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "10% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 581, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "15344" + }, + ["in"]= { + "53324" + } + }, + [53324]= { + ["skill"]= 53324, + ["name"]= "Evasion and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "10% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 581, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "45033" + }, + ["in"]= { + "3469" + } + }, + [15344]= { + ["skill"]= 15344, + ["name"]= "Freedom of Movement", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "VioletOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "40% increased Evasion Rating while Phasing", + "10% increased Movement Speed while Phasing", + "+20 to Dexterity" + }, + ["group"]= 581, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "3883" + }, + ["in"]= { + "45033" + } + }, + [3883]= { + ["skill"]= 3883, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 581, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15344" + } + }, + [55307]= { + ["skill"]= 55307, + ["name"]= "Ignite Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "20% chance to Avoid being Ignited" + }, + ["group"]= 582, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15837" + }, + ["in"]= { + "40743" + } + }, + [64241]= { + ["skill"]= 64241, + ["name"]= "Freeze and Chill Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "20% chance to Avoid being Chilled", + "20% chance to Avoid being Frozen" + }, + ["group"]= 582, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "15837", + "40743" + }, + ["in"]= {} + }, + [26471]= { + ["skill"]= 26471, + ["name"]= "Shock Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "20% chance to Avoid being Shocked" + }, + ["group"]= 582, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "40743" + }, + ["in"]= { + "15837" + } + }, + [15837]= { + ["skill"]= 15837, + ["name"]= "Avoid Status Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/crystalskin.png", + ["stats"]= { + "10% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 582, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "63139", + "26471" + }, + ["in"]= { + "55307", + "64241" + } + }, + [40743]= { + ["skill"]= 40743, + ["name"]= "Crystal Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/diamondskin.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1% to all maximum Elemental Resistances", + "20% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)", + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 582, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "55307" + }, + ["in"]= { + "64241", + "26471", + "31818" + } + }, + [31818]= { + ["skill"]= 31818, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 582, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "40743" + }, + ["in"]= {} + }, + [24496]= { + ["skill"]= 24496, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 583, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "51786" + }, + ["in"]= { + "39861" + } + }, + [39861]= { + ["skill"]= 39861, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 583, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24496", + "33989" + }, + ["in"]= { + "49978" + } + }, + [33989]= { + ["skill"]= 33989, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 583, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "39861" + } + }, + [1365]= { + ["skill"]= 1365, + ["name"]= "Knowledge Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "6% increased Energy Shield Recharge Rate for each different type of Mastery you have Allocated" + }, + ["group"]= 584, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [10153]= { + ["skill"]= 10153, + ["name"]= "Physique", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 585, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32710" + } + }, + [46495]= { + ["skill"]= 46495, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 586, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58851" + } + }, + [19196]= { + ["skill"]= 19196, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Reservation Efficiency of Skills" + }, + ["group"]= 586, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "58851" + }, + ["in"]= { + "23237" + } + }, + [23237]= { + ["skill"]= 23237, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 586, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "19196" + }, + ["in"]= { + "23471" + } + }, + [58851]= { + ["skill"]= 58851, + ["name"]= "Leader of the Pack", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraReservationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Area of Effect of Aura Skills", + "12% increased Reservation Efficiency of Skills" + }, + ["group"]= 586, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46495" + }, + ["in"]= { + "19196" + } + }, + [10204]= { + ["skill"]= 10204, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 587, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65093" + } + }, + [40135]= { + ["skill"]= 40135, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "Sword Attacks deal 14% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 587, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "5237" + }, + ["in"]= { + "9262" + } + }, + [9262]= { + ["skill"]= 9262, + ["name"]= "Sword Damage and Melee Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "Sword Attacks deal 10% increased Damage with Hits and Ailments", + "+0.1 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 587, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "40135" + }, + ["in"]= { + "65093" + } + }, + [65093]= { + ["skill"]= 65093, + ["name"]= "Bladedancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/SwordNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "CrimsonOil" + }, + ["stats"]= { + "Sword Attacks deal 30% increased Damage with Hits and Ailments", + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 587, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "9262", + "10204" + }, + ["in"]= {} + }, + [3195]= { + ["skill"]= 3195, + ["name"]= "Legacy of the Wilds", + ["icon"]= "Art/2DArt/SkillIcons/passives/WardenAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "Tinctures have 40% increased effect while at or above 10 stacks of Mana Burn" + }, + ["group"]= 588, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [59370]= { + ["skill"]= 59370, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 589, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "63795" + }, + ["in"]= { + "45035" + } + }, + [63795]= { + ["skill"]= 63795, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 589, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "38662" + }, + ["in"]= { + "59370" + } + }, + [54142]= { + ["skill"]= 54142, + ["name"]= "Finesse", + ["icon"]= "Art/2DArt/SkillIcons/passives/finesse.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "BlackOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "8% increased Attack Speed", + "+20 to Dexterity", + "15% increased Accuracy Rating" + }, + ["group"]= 590, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "9373", + "32117", + "30894", + "3187" + }, + ["in"]= { + "94", + "56149", + "61306" + } + }, + [64265]= { + ["skill"]= 64265, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 591, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63194", + "6538" + }, + ["in"]= {} + }, + [6799]= { + ["skill"]= 6799, + ["name"]= "Charisma", + ["icon"]= "Art/2DArt/SkillIcons/passives/authority.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "16% increased Mana Reservation Efficiency of Skills", + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 591, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "53615" + }, + ["in"]= { + "63194" + } + }, + [53615]= { + ["skill"]= 53615, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 591, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6799" + } + }, + [63194]= { + ["skill"]= 63194, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 591, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6799" + }, + ["in"]= { + "64265" + } + }, + [41307]= { + ["skill"]= 41307, + ["name"]= "Deadly Inclinations", + ["icon"]= "Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "BlackOil" + }, + ["grantedDexterity"]= 30, + ["stats"]= { + "18% increased Evasion Rating", + "+12 to maximum Life", + "16% increased Projectile Damage", + "+30 to Dexterity" + }, + ["group"]= 592, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [63639]= { + ["skill"]= 63639, + ["name"]= "Damage and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "12% increased Damage", + "+10 to maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "64501", + "62069" + }, + ["in"]= { + "38129" + } + }, + [64501]= { + ["skill"]= 64501, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46136" + }, + ["in"]= { + "63639" + } + }, + [46136]= { + ["skill"]= 46136, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "58649" + }, + ["in"]= { + "64501" + } + }, + [58649]= { + ["skill"]= 58649, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35894" + }, + ["in"]= { + "46136" + } + }, + [62069]= { + ["skill"]= 62069, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "31583" + }, + ["in"]= { + "63639" + } + }, + [31583]= { + ["skill"]= 31583, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "1600" + }, + ["in"]= { + "62069" + } + }, + [1600]= { + ["skill"]= 1600, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "35894" + }, + ["in"]= { + "31583" + } + }, + [38344]= { + ["skill"]= 38344, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "50338" + }, + ["in"]= { + "10017" + } + }, + [65033]= { + ["skill"]= 65033, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "10017" + }, + ["in"]= { + "465" + } + }, + [10017]= { + ["skill"]= 10017, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "38344" + }, + ["in"]= { + "65033" + } + }, + [41250]= { + ["skill"]= 41250, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "10% increased Projectile Damage" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "50338" + }, + ["in"]= { + "62712" + } + }, + [41536]= { + ["skill"]= 41536, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "10% increased Projectile Damage" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "62712" + }, + ["in"]= { + "465" + } + }, + [62712]= { + ["skill"]= 62712, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "10% increased Projectile Damage" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "41250" + }, + ["in"]= { + "41536" + } + }, + [6542]= { + ["skill"]= 6542, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "14% increased Evasion Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "94" + }, + ["in"]= { + "60803" + } + }, + [60803]= { + ["skill"]= 60803, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "14% increased Evasion Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "6542" + }, + ["in"]= { + "2094" + } + }, + [94]= { + ["skill"]= 94, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "14% increased Evasion Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "54142" + }, + ["in"]= { + "6542" + } + }, + [29870]= { + ["skill"]= 29870, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56149" + }, + ["in"]= { + "720" + } + }, + [56149]= { + ["skill"]= 56149, + ["name"]= "Accuracy and Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "8% increased Attack Damage", + "8% increased Accuracy Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54142" + }, + ["in"]= { + "29870" + } + }, + [720]= { + ["skill"]= 720, + ["name"]= "Accuracy and Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "8% increased Attack Damage", + "8% increased Accuracy Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "29870" + }, + ["in"]= { + "2094" + } + }, + [51360]= { + ["skill"]= 51360, + ["name"]= "Mixed Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "5% increased Cooldown Recovery Rate for throwing Traps per Mine Detonated Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 596, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [11334]= { + ["skill"]= 11334, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 597, + ["orbit"]= 6, + ["orbitIndex"]= 54, + ["out"]= { + "15549" + }, + ["in"]= { + "38129" + } + }, + [15549]= { + ["skill"]= 15549, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 597, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "20546" + }, + ["in"]= { + "11334" + } + }, + [8620]= { + ["skill"]= 8620, + ["name"]= "Flask Charges against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Marked Enemy grants 20% increased Flask Charges to you" + }, + ["group"]= 598, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "41595" + }, + ["in"]= { + "27325" + } + }, + [27325]= { + ["skill"]= 27325, + ["name"]= "Flask Charges against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Marked Enemy grants 20% increased Flask Charges to you" + }, + ["group"]= 598, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "8620" + }, + ["in"]= { + "5237" + } + }, + [41595]= { + ["skill"]= 41595, + ["name"]= "Marked for Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Culling Strike against Marked Enemy" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + }, + ["group"]= 598, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "58563" + }, + ["in"]= { + "8620" + } + }, + [58563]= { + ["skill"]= 58563, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 598, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41595" + } + }, + [48477]= { + ["skill"]= 48477, + ["name"]= "Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "4% increased Cast Speed" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "5823" + }, + ["in"]= { + "23507" + } + }, + [23507]= { + ["skill"]= 23507, + ["name"]= "Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "4% increased Cast Speed" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48477" + }, + ["in"]= { + "57248" + } + }, + [57248]= { + ["skill"]= 57248, + ["name"]= "Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "4% increased Cast Speed" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "23507" + }, + ["in"]= { + "41689" + } + }, + [41689]= { + ["skill"]= 41689, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "12% increased Chaos Damage", + "12% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "45272", + "57248" + }, + ["in"]= { + "51220" + } + }, + [27276]= { + ["skill"]= 27276, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62831" + }, + ["in"]= { + "5823" + } + }, + [62831]= { + ["skill"]= 62831, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "51220" + }, + ["in"]= { + "27276" + } + }, + [51220]= { + ["skill"]= 51220, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "41689" + }, + ["in"]= { + "62831" + } + }, + [58968]= { + ["skill"]= 58968, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+5% to Chaos Damage over Time Multiplier" + }, + ["group"]= 600, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9355" + }, + ["in"]= { + "37663" + } + }, + [37663]= { + ["skill"]= 37663, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+5% to Chaos Damage over Time Multiplier" + }, + ["group"]= 600, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "58968", + "44988" + }, + ["in"]= {} + }, + [44988]= { + ["skill"]= 44988, + ["name"]= "Wasting", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+10% to Chaos Damage over Time Multiplier", + "+17% to Chaos Resistance" + }, + ["group"]= 600, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "21801" + }, + ["in"]= { + "37663" + } + }, + [21801]= { + ["skill"]= 21801, + ["name"]= "Chaos Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50933, + ["stats"]= { + "Recover 1% of Life per Withered Debuff on each Enemy you Kill" + } + }, + { + ["effect"]= 59574, + ["stats"]= { + "+1 to Level of all Chaos Skill Gems", + "Lose 10% of Life and Energy Shield when you use a Chaos Skill" + } + }, + { + ["effect"]= 1727, + ["stats"]= { + "+1% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 21652, + ["stats"]= { + "40% of Physical Damage Converted to Chaos Damage" + } + }, + { + ["effect"]= 28678, + ["stats"]= { + "Deal 10% more Chaos Damage to enemies which have Energy Shield" + } + }, + { + ["effect"]= 65015, + ["stats"]= { + "5% chance when you inflict Withered to inflict up to 15 Withered Debuffs instead" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + } + }, + ["stats"]= {}, + ["group"]= 600, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44988" + } + }, + [39524]= { + ["skill"]= 39524, + ["name"]= "Critical Ailment Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AilmentDamageCritMultiplier.png", + ["stats"]= { + "+14% to Damage over Time Multiplier for Ailments from Critical Strikes" + }, + ["group"]= 601, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23439", + "49978" + }, + ["in"]= {} + }, + [23439]= { + ["skill"]= 23439, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "25% increased Critical Strike Chance" + }, + ["group"]= 601, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "9015" + }, + ["in"]= { + "39524" + } + }, + [9015]= { + ["skill"]= 9015, + ["name"]= "Dire Torment", + ["icon"]= "Art/2DArt/SkillIcons/passives/DireTorment.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+25% to Damage over Time Multiplier for Ailments from Critical Strikes", + "40% increased Critical Strike Chance" + }, + ["group"]= 601, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "60834" + }, + ["in"]= { + "23439" + } + }, + [60834]= { + ["skill"]= 60834, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 601, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9015" + } + }, + [56075]= { + ["skill"]= 56075, + ["name"]= "Eldritch Battery", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png", + ["isKeystone"]= true, + ["stats"]= { + "Spend Energy Shield before Mana for Skill Mana Costs\nEnergy Shield protects Mana instead of Life\n50% less Energy Shield Recharge Rate" + }, + ["flavourText"]= { + "What need have I for defence when my enemies", + "are reduced to ash and splinters?" + }, + ["group"]= 602, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33310" + } + }, + [34625]= { + ["skill"]= 34625, + ["name"]= "Bow Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Accuracy Rating with Bows" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "46106" + }, + ["in"]= { + "16851" + } + }, + [46106]= { + ["skill"]= 46106, + ["name"]= "Bow Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Accuracy Rating with Bows" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "47743" + }, + ["in"]= { + "34625" + } + }, + [12068]= { + ["skill"]= 12068, + ["name"]= "Bow Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "12% increased Damage with Bows", + "3% increased Attack Speed with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "47743" + }, + ["in"]= { + "16851" + } + }, + [16851]= { + ["skill"]= 16851, + ["name"]= "Bow Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "10% increased Damage with Bows", + "8% increased Accuracy Rating with Bows", + "10% increased Damage Over Time with Bow Skills" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "3469", + "12068", + "34625" + }, + ["in"]= {} + }, + [47743]= { + ["skill"]= 47743, + ["name"]= "Farsight", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "24% increased Damage with Bows", + "6% increased Attack Speed with Bows", + "16% increased Accuracy Rating with Bows", + "24% increased Damage Over Time with Bow Skills" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "37502" + }, + ["in"]= { + "46106", + "12068" + } + }, + [37502]= { + ["skill"]= 37502, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 603, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47743" + } + }, + [6588]= { + ["skill"]= 6588, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 604, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45945" + } + }, + [48275]= { + ["skill"]= 48275, + ["name"]= "Avoid Interruption while Casting", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 604, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "21184" + }, + ["in"]= { + "32710" + } + }, + [21184]= { + ["skill"]= 21184, + ["name"]= "Avoid Interruption while Casting", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 604, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45945" + }, + ["in"]= { + "48275" + } + }, + [45945]= { + ["skill"]= 45945, + ["name"]= "Conjured Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "30% chance to Ignore Stuns while Casting", + "50% increased Stun and Block Recovery", + "30% increased Mana Regeneration Rate while stationary" + }, + ["group"]= 604, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "6588" + }, + ["in"]= { + "21184" + } + }, + [3469]= { + ["skill"]= 3469, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 605, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471", + "34678", + "53324", + "6383", + "63620" + }, + ["in"]= { + "16851", + "64709" + } + }, + [49639]= { + ["skill"]= 49639, + ["name"]= "Supreme Ego", + ["icon"]= "Art/2DArt/SkillIcons/passives/SupremeEgo.png", + ["isKeystone"]= true, + ["stats"]= { + "Auras from your Skills can only affect you\nAura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve\n40% more Mana Reservation of Aura Skills" + }, + ["flavourText"]= { + "You are the heart of the empire, shining bright so that all are lifted up by your light.", + "Let none tell you otherwise." + }, + ["group"]= 606, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49978" + }, + ["in"]= {} + }, + [37147]= { + ["skill"]= 37147, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 607, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "3109" + }, + ["in"]= {} + }, + [63754]= { + ["skill"]= 63754, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 608, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "9797" + }, + ["in"]= {} + }, + [34678]= { + ["skill"]= 34678, + ["name"]= "Life and Elemental Ailment Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life", + "4% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "3469", + "26528", + "19069" + } + }, + [26528]= { + ["skill"]= 26528, + ["name"]= "Life and Elemental Ailment Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life", + "4% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "58271", + "34678" + }, + ["in"]= {} + }, + [58271]= { + ["skill"]= 58271, + ["name"]= "Life and Elemental Ailment Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life", + "4% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "30679" + }, + ["in"]= { + "26528" + } + }, + [3042]= { + ["skill"]= 3042, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 609, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19069" + } + }, + [19069]= { + ["skill"]= 19069, + ["name"]= "Thick Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/thickskin.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "8% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34678", + "3042" + }, + ["in"]= {} + }, + [53759]= { + ["skill"]= 53759, + ["name"]= "Cleansed Thoughts", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaoticPotential.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "Chaos Resistance is doubled" + }, + ["group"]= 610, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [49605]= { + ["skill"]= 49605, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 611, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32710", + "60440", + "22618", + "33310", + "42006" + }, + ["in"]= { + "52407" + } + }, + [53738]= { + ["skill"]= 53738, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 612, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44102" + } + }, + [42006]= { + ["skill"]= 42006, + ["name"]= "Mine Damage and Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineManaReservationNode.png", + ["stats"]= { + "8% increased Mine Damage", + "10% increased Mana Reservation Efficiency of Skills that throw Mines" + }, + ["group"]= 612, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18661" + }, + ["in"]= { + "49605" + } + }, + [18661]= { + ["skill"]= 18661, + ["name"]= "Mine Damage and Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineManaReservationNode.png", + ["stats"]= { + "8% increased Mine Damage", + "10% increased Mana Reservation Efficiency of Skills that throw Mines" + }, + ["group"]= 612, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "44102" + }, + ["in"]= { + "42006" + } + }, + [44102]= { + ["skill"]= 44102, + ["name"]= "Efficient Explosives", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Mana Reservation Efficiency of Skills that throw Mines", + "Mines have a 15% chance to be Detonated an Additional Time" + }, + ["group"]= 612, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "53738" + }, + ["in"]= { + "18661" + } + }, + [52157]= { + ["skill"]= 52157, + ["name"]= "Soul Siphon", + ["icon"]= "Art/2DArt/SkillIcons/passives/soulsyphon.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "VioletOil" + }, + ["stats"]= { + "+20 to maximum Mana", + "18% increased maximum Mana", + "Gain 10 Mana per Enemy Killed" + }, + ["group"]= 613, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "59009" + }, + ["in"]= { + "1891" + } + }, + [10166]= { + ["skill"]= 10166, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 614, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6233" + } + }, + [31371]= { + ["skill"]= 31371, + ["name"]= "Mine Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + ["stats"]= { + "Skills used by Mines have 10% increased Area of Effect" + }, + ["group"]= 614, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40751" + }, + ["in"]= { + "20546" + } + }, + [40751]= { + ["skill"]= 40751, + ["name"]= "Mine Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + ["stats"]= { + "Skills used by Mines have 10% increased Area of Effect" + }, + ["group"]= 614, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "6233" + }, + ["in"]= { + "31371" + } + }, + [6233]= { + ["skill"]= 6233, + ["name"]= "Blast Waves", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "Skills used by Mines deal 30% increased Area Damage if you Detonated a Mine Recently", + "Skills used by Mines have 15% increased Area of Effect if you Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 614, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "10166" + }, + ["in"]= { + "40751" + } + }, + [57199]= { + ["skill"]= 57199, + ["name"]= "Fangs of Frost", + ["icon"]= "Art/2DArt/SkillIcons/passives/icebite.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "SilverOil" + }, + ["stats"]= { + "Damage with Weapons Penetrates 8% Cold Resistance", + "30% increased Cold Damage with Attack Skills" + }, + ["group"]= 615, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "61327", + "7023" + }, + ["in"]= {} + }, + [7023]= { + ["skill"]= 7023, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 615, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57199" + } + }, + [61327]= { + ["skill"]= 61327, + ["name"]= "Weapon Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage with Attack Skills" + }, + ["group"]= 615, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "51404" + }, + ["in"]= { + "57199" + } + }, + [51404]= { + ["skill"]= 51404, + ["name"]= "Weapon Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage with Attack Skills" + }, + ["group"]= 615, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "61327", + "5237" + } + }, + [5237]= { + ["skill"]= 5237, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 616, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6363", + "42178", + "58854", + "30679", + "51404", + "27325" + }, + ["in"]= { + "23471", + "40135" + } + }, + [50338]= { + ["skill"]= 50338, + ["name"]= "Ballistics", + ["icon"]= "Art/2DArt/SkillIcons/passives/perfectaim.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "OpalescentOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "20% increased Projectile Speed", + "20% increased Projectile Damage", + "+20 to Dexterity" + }, + ["group"]= 617, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38662", + "42964" + }, + ["in"]= { + "38344", + "41250", + "57240", + "48099" + } + }, + [6538]= { + ["skill"]= 6538, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 618, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38662" + }, + ["in"]= { + "64265", + "49978", + "17788" + } + }, + [38662]= { + ["skill"]= 38662, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 619, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63795", + "50338", + "6538", + "5616" + } + }, + [61306]= { + ["skill"]= 61306, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 620, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60942", + "63139", + "54142" + }, + ["in"]= { + "444", + "17421", + "16602" + } + }, + [17421]= { + ["skill"]= 17421, + ["name"]= "Mana and Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Flask Charges gained" + }, + ["group"]= 621, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61306" + }, + ["in"]= { + "51440" + } + }, + [29104]= { + ["skill"]= 29104, + ["name"]= "Mana and Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Flask Charges gained" + }, + ["group"]= 621, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "51440", + "64709" + }, + ["in"]= {} + }, + [51440]= { + ["skill"]= 51440, + ["name"]= "Druidic Rite", + ["icon"]= "Art/2DArt/SkillIcons/passives/DruidicRite.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased maximum Mana", + "20% increased Flask Effect Duration" + }, + ["group"]= 621, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "17421", + "9458" + }, + ["in"]= { + "29104" + } + }, + [9458]= { + ["skill"]= 9458, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 621, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51440" + } + }, + [9355]= { + ["skill"]= 9355, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 622, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49978" + }, + ["in"]= { + "58968", + "4011", + "64509" + } + }, + [49978]= { + ["skill"]= 49978, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 623, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6538", + "39861", + "6042" + }, + ["in"]= { + "39524", + "49639", + "9355", + "41819", + "8938" + } + }, + [4011]= { + ["skill"]= 4011, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 624, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "9355" + }, + ["in"]= { + "45838", + "5823", + "28012" + } + }, + [35853]= { + ["skill"]= 35853, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 625, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "3109" + }, + ["in"]= { + "46393" + } + }, + [3109]= { + ["skill"]= 3109, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "37147", + ["parent"]= "46393" + }, + ["stats"]= {}, + ["group"]= 625, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "37147", + "35853" + } + }, + [63620]= { + ["skill"]= 63620, + ["name"]= "Precise Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/PreciseTechnique.png", + ["isKeystone"]= true, + ["stats"]= { + "40% more Attack Damage if Accuracy Rating is higher than Maximum Life\nNever deal Critical Strikes" + }, + ["flavourText"]= { + "Fear not the warrior that has practiced ten thousand techniques once.", + "Fear the warrior that has practiced one technique ten thousand times." + }, + ["group"]= 626, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3469" + } + }, + [65210]= { + ["skill"]= 65210, + ["name"]= "Heart of Oak", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeartoftheOak.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Life", + "20% chance to Avoid being Stunned", + "Regenerate 2% of Life per Second if you've used a Life Flask in the past 10 seconds" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "32117", + "48099" + } + }, + [25178]= { + ["skill"]= 25178, + ["name"]= "Primal Spirit", + ["icon"]= "Art/2DArt/SkillIcons/passives/animalspirit.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "BlackOil" + }, + ["grantedStrength"]= 20, + ["grantedIntelligence"]= 20, + ["stats"]= { + "20% increased maximum Mana", + "Gain 4 Mana per Enemy Hit with Attacks if you've used a Mana Flask in the past 10 seconds", + "+20 to Strength and Intelligence" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "9373" + }, + ["in"]= { + "57240" + } + }, + [57240]= { + ["skill"]= 57240, + ["name"]= "Mana and Flask Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "25178", + "50338" + }, + ["in"]= {} + }, + [9373]= { + ["skill"]= 9373, + ["name"]= "Mana and Flask Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "54142", + "25178" + } + }, + [32117]= { + ["skill"]= 32117, + ["name"]= "Life and Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "8% chance to Avoid being Stunned" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "65210" + }, + ["in"]= { + "54142" + } + }, + [48099]= { + ["skill"]= 48099, + ["name"]= "Life and Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "8% chance to Avoid being Stunned" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "65210", + "50338" + }, + ["in"]= {} + }, + [40132]= { + ["skill"]= 40132, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "8% increased Evasion Rating" + }, + ["group"]= 628, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "46882" + }, + ["in"]= { + "58854" + } + }, + [58854]= { + ["skill"]= 58854, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "8% increased Evasion Rating" + }, + ["group"]= 628, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "40132" + }, + ["in"]= { + "5237" + } + }, + [46882]= { + ["skill"]= 46882, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 1, + ["proxy"]= "25134" + }, + ["stats"]= {}, + ["group"]= 628, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "40132", + "25134" + } + }, + [1891]= { + ["skill"]= 1891, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 629, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35894", + "52157" + }, + ["in"]= {} + }, + [59009]= { + ["skill"]= 59009, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 630, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5823" + }, + ["in"]= { + "52157" + } + }, + [21984]= { + ["skill"]= 21984, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 5, + ["proxy"]= "18756" + }, + ["stats"]= {}, + ["group"]= 631, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "21033", + "18756" + } + }, + [22618]= { + ["skill"]= 22618, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "4% increased maximum Mana" + }, + ["group"]= 631, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "21033" + }, + ["in"]= { + "49605" + } + }, + [21033]= { + ["skill"]= 21033, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "4% increased maximum Mana" + }, + ["group"]= 631, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "21984" + }, + ["in"]= { + "22618" + } + }, + [58194]= { + ["skill"]= 58194, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 632, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "9797", + "64583" + } + }, + [9797]= { + ["skill"]= 9797, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "63754", + ["parent"]= "64583" + }, + ["stats"]= {}, + ["group"]= 632, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "58194" + }, + ["in"]= { + "63754" + } + }, + [20546]= { + ["skill"]= 20546, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 633, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "3656", + "31371" + }, + ["in"]= { + "21301", + "15549", + "35894", + "14157" + } + }, + [35894]= { + ["skill"]= 35894, + ["name"]= "Trickery", + ["icon"]= "Art/2DArt/SkillIcons/passives/mentalacuity.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "BlackOil" + }, + ["grantedDexterity"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Damage", + "20% increased Critical Strike Chance", + "+10 to Dexterity and Intelligence" + }, + ["group"]= 634, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20546", + "21575" + }, + ["in"]= { + "58649", + "1600", + "1891", + "21835", + "35283" + } + }, + [5823]= { + ["skill"]= 5823, + ["name"]= "Coordination", + ["icon"]= "Art/2DArt/SkillIcons/passives/Coordination.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "BlackOil" + }, + ["grantedDexterity"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "10% increased Attack Speed", + "8% increased Cast Speed", + "+10 to Dexterity and Intelligence" + }, + ["group"]= 635, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "4011", + "27276", + "30205", + "46289" + }, + ["in"]= { + "48477", + "59009", + "9877" + } + }, + [6042]= { + ["skill"]= 6042, + ["name"]= "Life Gain on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "Gain 5 Life per Enemy Hit with Attacks" + }, + ["group"]= 636, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "19401" + }, + ["in"]= { + "49978" + } + }, + [19401]= { + ["skill"]= 19401, + ["name"]= "Life Gain on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "Gain 5 Life per Enemy Hit with Attacks" + }, + ["group"]= 636, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "63453" + }, + ["in"]= { + "6042" + } + }, + [63453]= { + ["skill"]= 63453, + ["name"]= "Excess Sustenance", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "15% chance to gain 200 Life on Hit with Attacks" + }, + ["group"]= 636, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "10141" + }, + ["in"]= { + "19401" + } + }, + [10141]= { + ["skill"]= 10141, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 636, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63453" + } + }, + [42178]= { + ["skill"]= 42178, + ["name"]= "Point Blank", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png", + ["isKeystone"]= true, + ["stats"]= { + "Projectile Attack Hits deal up to 30% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther" + }, + ["flavourText"]= { + "Look your foe in the eyes before you pierce him. Delight in his fear." + }, + ["group"]= 637, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5237" + } + }, + [32227]= { + ["skill"]= 32227, + ["name"]= "Adder's Touch", + ["icon"]= "Art/2DArt/SkillIcons/passives/adderstouch.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "+25% to Damage over Time Multiplier for Poison from Critical Strikes", + "Critical Strikes with Daggers Poison the Enemy" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "20167", + "62853" + }, + ["in"]= { + "3863" + } + }, + [64509]= { + ["skill"]= 64509, + ["name"]= "Dagger Ailment Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "3863", + "20167", + "9355" + }, + ["in"]= {} + }, + [3863]= { + ["skill"]= 3863, + ["name"]= "Dagger Critical Strike Multiplier and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Daggers", + "5% increased Poison Duration" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "32227" + }, + ["in"]= { + "64509" + } + }, + [20167]= { + ["skill"]= 20167, + ["name"]= "Dagger Ailment Damage and Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 20% increased Damage with Ailments", + "15% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "32227", + "64509" + } + }, + [62853]= { + ["skill"]= 62853, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 638, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32227" + } + }, + [17788]= { + ["skill"]= 17788, + ["name"]= "Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Charges gained" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "57259", + "42133", + "6538" + }, + ["in"]= {} + }, + [42133]= { + ["skill"]= 42133, + ["name"]= "Life Flask Charge Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50690" + }, + ["in"]= { + "17788" + } + }, + [57259]= { + ["skill"]= 57259, + ["name"]= "Mana Flask Charge Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "Mana Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "50690" + }, + ["in"]= { + "17788" + } + }, + [50690]= { + ["skill"]= 50690, + ["name"]= "Replenishing Remedies", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "IndigoOil" + }, + ["stats"]= { + "15% increased Flask Charges gained", + "Life Flasks gain 2 Charges every 3 seconds", + "Mana Flasks gain 2 Charges every 3 seconds" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41016" + }, + ["in"]= { + "42133", + "57259" + } + }, + [41016]= { + ["skill"]= 41016, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 639, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50690" + } + }, + [62094]= { + ["skill"]= 62094, + ["name"]= "Taste for Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/TasteforBlood.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Life", + "30% increased Maximum total Life Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 640, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "43495" + }, + ["in"]= { + "3634" + } + }, + [43495]= { + ["skill"]= 43495, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 640, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62094" + } + }, + [3634]= { + ["skill"]= 3634, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "0.4% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 640, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "62094", + "41819" + }, + ["in"]= {} + }, + [41819]= { + ["skill"]= 41819, + ["name"]= "Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "60% increased total Recovery per second from Life Leech" + }, + ["group"]= 640, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49978" + }, + ["in"]= { + "3634" + } + }, + [21835]= { + ["skill"]= 21835, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 641, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35894", + "25058" + }, + ["in"]= {} + }, + [9877]= { + ["skill"]= 9877, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 642, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5823" + }, + ["in"]= { + "25058" + } + }, + [23438]= { + ["skill"]= 23438, + ["name"]= "Life Flasks and Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "10% increased Life Recovery from Flasks", + "10% increased Flask Effect Duration" + }, + ["group"]= 643, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "41137" + }, + ["in"]= { + "64709" + } + }, + [16602]= { + ["skill"]= 16602, + ["name"]= "Life Flasks and Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "10% increased Life Recovery from Flasks", + "10% increased Flask Effect Duration" + }, + ["group"]= 643, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "41137", + "61306" + }, + ["in"]= {} + }, + [41137]= { + ["skill"]= 41137, + ["name"]= "Field Medicine", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeFlasks.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Life Recovery from Flasks", + "Life Flasks gain a Charge when you hit an Enemy, no more than once each second" + }, + ["group"]= 643, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "46761" + }, + ["in"]= { + "23438", + "16602" + } + }, + [46761]= { + ["skill"]= 46761, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 643, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41137" + } + }, + [22994]= { + ["skill"]= 22994, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "51233", + ["parent"]= "46882" + }, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "51233" + }, + ["in"]= { + "40400", + "25134" + } + }, + [40400]= { + ["skill"]= 40400, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "57194", + ["parent"]= "46882" + }, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "22994" + }, + ["in"]= { + "46393", + "57194" + } + }, + [46393]= { + ["skill"]= 46393, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "35853", + ["parent"]= "46882" + }, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "35853", + "40400", + "25134" + }, + ["in"]= {} + }, + [25134]= { + ["skill"]= 25134, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "22994", + "46882" + }, + ["in"]= { + "46393" + } + }, + [14157]= { + ["skill"]= 14157, + ["name"]= "Dagger Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "20% increased Critical Strike Chance with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "39443", + "28758", + "20546" + }, + ["in"]= {} + }, + [28758]= { + ["skill"]= 28758, + ["name"]= "Dagger Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56276" + }, + ["in"]= { + "14157" + } + }, + [39443]= { + ["skill"]= 39443, + ["name"]= "Dagger Critical Strike Chance and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + ["stats"]= { + "20% increased Critical Strike Chance with Daggers", + "0.8% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "56276" + }, + ["in"]= { + "14157" + } + }, + [15409]= { + ["skill"]= 15409, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 645, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56276" + } + }, + [56276]= { + ["skill"]= 56276, + ["name"]= "Nightstalker", + ["icon"]= "Art/2DArt/SkillIcons/passives/nightstalker.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier with Daggers", + "0.6% of Attack Damage Leeched as Life", + "0.6% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "15409" + }, + ["in"]= { + "28758", + "39443" + } + }, + [58168]= { + ["skill"]= 58168, + ["name"]= "High Voltage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IntensifyNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "100% increased Critical Strike Chance against Shocked Enemies" + }, + ["group"]= 646, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54645", + "14122" + }, + ["in"]= {} + }, + [52407]= { + ["skill"]= 52407, + ["name"]= "Lightning Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Lightning Skills" + }, + ["group"]= 646, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49605" + }, + ["in"]= { + "54645" + } + }, + [54645]= { + ["skill"]= 54645, + ["name"]= "Lightning Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Lightning Skills" + }, + ["group"]= 646, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "52407" + }, + ["in"]= { + "58168" + } + }, + [14122]= { + ["skill"]= 14122, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 646, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58168" + } + }, + [38622]= { + ["skill"]= 38622, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 647, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26763" + } + }, + [50734]= { + ["skill"]= 50734, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 647, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "13965" + }, + ["in"]= { + "64709" + } + }, + [13965]= { + ["skill"]= 13965, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 647, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26763" + }, + ["in"]= { + "50734" + } + }, + [26763]= { + ["skill"]= 26763, + ["name"]= "Perfected Formula", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "15% chance for Tinctures to not inflict Mana Burn", + "Tinctures applied to you have 10% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Mana Burn causes you to lose 1% of your maximum Mana per stack per second)", + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 647, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "38622" + }, + ["in"]= { + "13965" + } + }, + [50382]= { + ["skill"]= 50382, + ["name"]= "Dual Wield Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "60440" + }, + ["in"]= { + "48093", + "34560" + } + }, + [6616]= { + ["skill"]= 6616, + ["name"]= "Dual Wield Cast Speed and Movement Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "3% increased Cast Speed while Dual Wielding", + "15% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "48093" + }, + ["in"]= { + "44824" + } + }, + [48093]= { + ["skill"]= 48093, + ["name"]= "Dual Wield Cast Speed and Movement Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "3% increased Cast Speed while Dual Wielding", + "15% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50382" + }, + ["in"]= { + "6616" + } + }, + [44824]= { + ["skill"]= 44824, + ["name"]= "Mysticism", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "20% increased Spell Damage while Dual Wielding", + "6% increased Cast Speed while Dual Wielding", + "40% increased Mana Regeneration if you've used a Movement Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "6616", + "16743", + "17411" + }, + ["in"]= {} + }, + [16743]= { + ["skill"]= 16743, + ["name"]= "Dual Wield Spell Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "10% increased Spell Damage while Dual Wielding", + "3% increased Movement Speed while Dual Wielding" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "34560" + }, + ["in"]= { + "44824" + } + }, + [34560]= { + ["skill"]= 34560, + ["name"]= "Dual Wield Spell Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "10% increased Spell Damage while Dual Wielding", + "3% increased Movement Speed while Dual Wielding" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "50382" + }, + ["in"]= { + "16743" + } + }, + [17411]= { + ["skill"]= 17411, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 648, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44824" + } + }, + [8370]= { + ["skill"]= 8370, + ["name"]= "Attributes Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 5356, + ["stats"]= { + "5% increased Attributes" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 41483, + ["stats"]= { + "1% increased Damage per 5 of your lowest Attribute" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 26621, + ["stats"]= { + "+5 to Strength per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 52604, + ["stats"]= { + "+5 to Intelligence per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 15826, + ["stats"]= { + "+5 to Dexterity per Allocated Mastery Passive Skill" + } + } + }, + ["stats"]= {}, + ["group"]= 649, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63921" + } + }, + [63439]= { + ["skill"]= 63439, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 15, + ["stats"]= { + "+15 to Dexterity" + }, + ["group"]= 649, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "63921" + }, + ["in"]= { + "43608" + } + }, + [43608]= { + ["skill"]= 43608, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 15, + ["stats"]= { + "+15 to Dexterity" + }, + ["group"]= 649, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "63439" + }, + ["in"]= { + "30679" + } + }, + [63921]= { + ["skill"]= 63921, + ["name"]= "Utmost Swiftness", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "CrimsonOil" + }, + ["grantedDexterity"]= 40, + ["stats"]= { + "+40 to Dexterity", + "8% increased Dexterity" + }, + ["group"]= 649, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "8370" + }, + ["in"]= { + "63439" + } + }, + [20852]= { + ["skill"]= 20852, + ["name"]= "Fire and Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png", + ["stats"]= { + "8% increased Fire Damage", + "8% increased Cold Damage" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "36585", + "6785", + "4502" + }, + ["in"]= {} + }, + [6785]= { + ["skill"]= 6785, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "42649" + }, + ["in"]= { + "20852" + } + }, + [36585]= { + ["skill"]= 36585, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "42649" + }, + ["in"]= { + "20852" + } + }, + [42649]= { + ["skill"]= 42649, + ["name"]= "Snowforged", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "25% increased Fire Damage", + "25% increased Cold Damage", + "Enemies Ignited or Chilled by you have -5% to Elemental Resistances" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "13387" + }, + ["in"]= { + "6785", + "36585" + } + }, + [13387]= { + ["skill"]= 13387, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 650, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42649" + } + }, + [64709]= { + ["skill"]= 64709, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 651, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60942", + "3469", + "32802", + "23438", + "34660", + "50734" + }, + ["in"]= { + "29104" + } + }, + [64583]= { + ["skill"]= 64583, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "58194", + ["parent"]= "21984" + }, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "61288", + "58194" + }, + ["in"]= { + "18756" + } + }, + [61288]= { + ["skill"]= 61288, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "34013", + ["parent"]= "21984" + }, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "13170" + }, + ["in"]= { + "64583", + "34013" + } + }, + [13170]= { + ["skill"]= 13170, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "24452", + ["parent"]= "21984" + }, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "18756" + }, + ["in"]= { + "61288", + "24452" + } + }, + [18756]= { + ["skill"]= 18756, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "21984", + "64583" + }, + ["in"]= { + "13170" + } + }, + [25058]= { + ["skill"]= 25058, + ["name"]= "Blood Siphon", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodSiphon.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "OpalescentOil", + "SilverOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "10% increased maximum Life", + "Gain 10 Life per Enemy Killed", + "+20 to Strength" + }, + ["group"]= 653, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "9877" + }, + ["in"]= { + "21835" + } + }, + [41380]= { + ["skill"]= 41380, + ["name"]= "Bow Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% increased Accuracy Rating with Bows" + }, + ["group"]= 654, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "57819" + }, + ["in"]= { + "65224" + } + }, + [57819]= { + ["skill"]= 57819, + ["name"]= "Bow Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% increased Accuracy Rating with Bows" + }, + ["group"]= 654, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "31508" + }, + ["in"]= { + "41380" + } + }, + [6654]= { + ["skill"]= 6654, + ["name"]= "Bow Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "15% increased Damage with Bows", + "20% increased Critical Strike Chance with Bows", + "15% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "31508" + }, + ["in"]= { + "6913" + } + }, + [6913]= { + ["skill"]= 6913, + ["name"]= "Bow Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "15% increased Damage with Bows", + "20% increased Critical Strike Chance with Bows", + "15% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6654" + }, + ["in"]= { + "65224" + } + }, + [42964]= { + ["skill"]= 42964, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "50338", + "65224" + } + }, + [65224]= { + ["skill"]= 65224, + ["name"]= "Aspect of the Eagle", + ["icon"]= "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "VerdantOil" + }, + ["stats"]= { + "20% increased Damage with Bows", + "6% increased Attack Speed with Bows", + "10% increased Accuracy Rating with Bows", + "20% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6913", + "42964", + "41380" + }, + ["in"]= {} + }, + [44206]= { + ["skill"]= 44206, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 655, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34978" + } + }, + [22845]= { + ["skill"]= 22845, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 8% increased Effect" + }, + ["group"]= 655, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "21019" + }, + ["in"]= { + "8938" + } + }, + [21019]= { + ["skill"]= 21019, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 655, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "34978" + }, + ["in"]= { + "22845" + } + }, + [34978]= { + ["skill"]= 34978, + ["name"]= "Colloidal Mixture", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "VerdantOil" + }, + ["stats"]= { + "Tinctures applied to you have 15% increased Effect", + "Tinctures applied to you have 15% increased Effect if you've used a Life Flask Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 655, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44206" + }, + ["in"]= { + "21019" + } + }, + [20730]= { + ["skill"]= 20730, + ["name"]= "Spell Suppression Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 58447, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 7677, + ["stats"]= { + "Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance for 4 seconds)" + } + }, + { + ["effect"]= 42014, + ["stats"]= { + "Prevent +1% of Suppressed Spell Damage per Hit Suppressed Recently", + "-2% chance to Suppress Spell Damage per Hit Suppressed Recently" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 2474, + ["stats"]= { + "Suppressed Spell Damage cannot inflict Elemental Ailments on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 13757, + ["stats"]= { + "You have Phasing if you have Suppressed Spell Damage Recently", + "+8% chance to Suppress Spell Damage while Phasing" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 45317, + ["stats"]= { + "Chance to Suppress Spell Damage is Lucky" + } + } + }, + ["stats"]= {}, + ["group"]= 656, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59866" + } + }, + [4656]= { + ["skill"]= 4656, + ["name"]= "Spell Suppression and Life Flask Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "12% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "59866" + }, + ["in"]= { + "22217", + "30679" + } + }, + [22217]= { + ["skill"]= 22217, + ["name"]= "Spell Suppression and Life Flask Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "12% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "4656" + }, + ["in"]= { + "6383" + } + }, + [6383]= { + ["skill"]= 6383, + ["name"]= "Spell Suppression and Life Flask Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "12% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "22217" + }, + ["in"]= { + "3469" + } + }, + [59866]= { + ["skill"]= 59866, + ["name"]= "Entrench", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "+12% chance to Suppress Spell Damage", + "Life Flasks gain 3 Charges when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20730" + }, + ["in"]= { + "4656" + } + }, + [64217]= { + ["skill"]= 64217, + ["name"]= "Aspect of Stone", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgnorePain.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "20% chance to Avoid Physical Damage from Hits" + }, + ["reminderText"]= { + "(No chance to avoid damage can be higher than 75%)" + }, + ["group"]= 657, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [8938]= { + ["skill"]= 8938, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 658, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49978", + "56090", + "22845" + }, + ["in"]= { + "12801", + "59606" + } + }, + [2715]= { + ["skill"]= 2715, + ["name"]= "Quickstep", + ["icon"]= "Art/2DArt/SkillIcons/passives/quickstep.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "VerdantOil" + }, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "6% increased Movement Speed" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3187", + "903" + } + }, + [3187]= { + ["skill"]= 3187, + ["name"]= "Movement Speed and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", + ["stats"]= { + "+3% chance to Suppress Spell Damage", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "2715" + }, + ["in"]= { + "54142" + } + }, + [903]= { + ["skill"]= 903, + ["name"]= "Movement Speed and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", + ["stats"]= { + "+3% chance to Suppress Spell Damage", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2715", + "37504" + }, + ["in"]= {} + }, + [30894]= { + ["skill"]= 30894, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15842" + }, + ["in"]= { + "54142" + } + }, + [18670]= { + ["skill"]= 18670, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "15842", + "37504" + }, + ["in"]= {} + }, + [15842]= { + ["skill"]= 15842, + ["name"]= "One With Nature", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "+8% to all Elemental Resistances", + "24% increased Critical Strike Chance for Attacks", + "24% increased Elemental Damage with Attack Skills" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "30894", + "18670" + } + }, + [57194]= { + ["skill"]= 57194, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 660, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "40400", + "12161" + }, + ["in"]= {} + }, + [12161]= { + ["skill"]= 12161, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "44470", + ["parent"]= "40400" + }, + ["stats"]= {}, + ["group"]= 660, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "44470" + }, + ["in"]= { + "57194" + } + }, + [30679]= { + ["skill"]= 30679, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 661, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "22266", + "11678", + "43608", + "4656", + "5632" + }, + ["in"]= { + "58271", + "5237", + "30626" + } + }, + [5632]= { + ["skill"]= 5632, + ["name"]= "Bleed and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "15% increased Critical Strike Chance for Attacks" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "36764", + "57651" + }, + ["in"]= { + "30679" + } + }, + [57651]= { + ["skill"]= 57651, + ["name"]= "Aggravate Bleeding On Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Critically Strike with Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "12215" + }, + ["in"]= { + "5632" + } + }, + [12215]= { + ["skill"]= 12215, + ["name"]= "Aggravate Bleeding On Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Critically Strike with Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "45283" + }, + ["in"]= { + "57651" + } + }, + [36764]= { + ["skill"]= 36764, + ["name"]= "Bleed and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "15% increased Critical Strike Chance for Attacks" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "45283" + }, + ["in"]= { + "5632" + } + }, + [45283]= { + ["skill"]= 45283, + ["name"]= "Cornered Prey", + ["icon"]= "Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "IndigoOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier against Bleeding Enemies", + "80% increased Critical Strike Chance against Bleeding Enemies" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "40170" + }, + ["in"]= { + "12215", + "36764" + } + }, + [40170]= { + ["skill"]= 40170, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 662, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45283" + } + }, + [55571]= { + ["skill"]= 55571, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 663, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "60440" + }, + ["in"]= { + "28859" + } + }, + [12143]= { + ["skill"]= 12143, + ["name"]= "Influence", + ["icon"]= "Art/2DArt/SkillIcons/passives/influence.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "14% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 663, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "28859", + "55491" + }, + ["in"]= {} + }, + [55491]= { + ["skill"]= 55491, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 663, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12143" + } + }, + [28859]= { + ["skill"]= 28859, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 663, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "55571" + }, + ["in"]= { + "12143" + } + }, + [62795]= { + ["skill"]= 62795, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49408", + "48698" + } + }, + [56090]= { + ["skill"]= 56090, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "4219" + }, + ["in"]= { + "8938" + } + }, + [49408]= { + ["skill"]= 49408, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62795", + "59252" + }, + ["in"]= {} + }, + [4219]= { + ["skill"]= 4219, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48698" + }, + ["in"]= { + "56090" + } + }, + [11032]= { + ["skill"]= 11032, + ["name"]= "Evasion and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 11541, + ["stats"]= { + "30% increased Evasion Rating while you have Energy Shield" + } + }, + { + ["effect"]= 46099, + ["stats"]= { + "20% increased Energy Shield Recovery Rate if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 47151, + ["stats"]= { + "20% increased Maximum Energy Shield if both Equipped Left and Right Rings have an Explicit Evasion Modifier", + "40% increased Energy Shield Recharge Rate if Equipped Amulet has an Explicit Evasion Modifier" + } + }, + { + ["effect"]= 38423, + ["stats"]= { + "100% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds" + } + }, + { + ["effect"]= 4606, + ["stats"]= { + "1% increased Evasion Rating per 10 Intelligence", + "Dexterity provides no inherent bonus to Evasion Rating" + } + }, + { + ["effect"]= 27103, + ["stats"]= { + "Every 4 seconds, Regenerate Energy Shield equal to 1% of Evasion Rating over 1 second" + } + } + }, + ["stats"]= {}, + ["group"]= 664, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48698" + } + }, + [48698]= { + ["skill"]= 48698, + ["name"]= "Void Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoidBarrier.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "18% increased Evasion Rating", + "12% increased maximum Energy Shield", + "+10% chance to Suppress Spell Damage while on Full Energy Shield" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "62795", + "11032" + }, + ["in"]= { + "4219" + } + }, + [33783]= { + ["skill"]= 33783, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 665, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "4502", + "42744" + }, + ["in"]= { + "3656", + "62791", + "46896" + } + }, + [4502]= { + ["skill"]= 4502, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 665, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "49515" + }, + ["in"]= { + "32710", + "20852", + "33783", + "1822" + } + }, + [34013]= { + ["skill"]= 34013, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 666, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "61288" + }, + ["in"]= { + "41876" + } + }, + [41876]= { + ["skill"]= 41876, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "54600", + ["parent"]= "61288" + }, + ["stats"]= {}, + ["group"]= 666, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34013" + }, + ["in"]= { + "54600" + } + }, + [38579]= { + ["skill"]= 38579, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 667, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "16236" + } + }, + [25766]= { + ["skill"]= 25766, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 667, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "16236" + }, + ["in"]= { + "32802" + } + }, + [32802]= { + ["skill"]= 32802, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 667, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "25766" + }, + ["in"]= { + "64709" + } + }, + [16236]= { + ["skill"]= 16236, + ["name"]= "Toxic Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "CrimsonOil" + }, + ["stats"]= { + "+15% to Damage over Time Multiplier for Poison", + "15% chance to Poison on Hit" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 667, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "38579" + }, + ["in"]= { + "25766" + } + }, + [46965]= { + ["skill"]= 46965, + ["name"]= "Saboteur", + ["icon"]= "Art/2DArt/SkillIcons/passives/saboteur.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "30% increased Trap Damage", + "30% increased Mine Damage", + "Can have up to 2 additional Traps placed at a time", + "Can have up to 2 additional Remote Mines placed at a time" + }, + ["group"]= 668, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60949" + }, + ["in"]= { + "7920" + } + }, + [28754]= { + ["skill"]= 28754, + ["name"]= "Assassination", + ["icon"]= "Art/2DArt/SkillIcons/passives/newincreasedcritical.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "+25% to Critical Strike Multiplier", + "25% increased Critical Strike Chance" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "35283" + }, + ["in"]= { + "10763" + } + }, + [35283]= { + ["skill"]= 35283, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "35894", + "7920" + }, + ["in"]= { + "28754" + } + }, + [10763]= { + ["skill"]= 10763, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "28754" + }, + ["in"]= { + "60949", + "24050" + } + }, + [21575]= { + ["skill"]= 21575, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "42686", + "7920" + }, + ["in"]= { + "35894" + } + }, + [40644]= { + ["skill"]= 40644, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "24050" + }, + ["in"]= { + "42686", + "60949" + } + }, + [42686]= { + ["skill"]= 42686, + ["name"]= "Elemental Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalFocus.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "AzureOil" + }, + ["stats"]= { + "20% increased Duration of Elemental Ailments on Enemies", + "20% increased Elemental Damage", + "20% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "40644" + }, + ["in"]= { + "21575" + } + }, + [60949]= { + ["skill"]= 60949, + ["name"]= "Trap and Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "14% increased Trap Damage", + "14% increased Mine Damage" + }, + ["group"]= 668, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10763", + "40644" + }, + ["in"]= { + "46965" + } + }, + [7920]= { + ["skill"]= 7920, + ["name"]= "Trap and Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "4% increased Trap Throwing Speed", + "4% increased Mine Throwing Speed" + }, + ["group"]= 668, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "46965" + }, + ["in"]= { + "35283", + "21575" + } + }, + [46289]= { + ["skill"]= 46289, + ["name"]= "Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "10% increased Damage over Time" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "58069" + }, + ["in"]= { + "5823", + "51212" + } + }, + [30338]= { + ["skill"]= 30338, + ["name"]= "Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "10% increased Damage over Time" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "51212", + "46408" + }, + ["in"]= { + "42623" + } + }, + [51212]= { + ["skill"]= 51212, + ["name"]= "Entropy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Entropy.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "CrimsonOil" + }, + ["stats"]= { + "23% increased Damage over Time", + "10% increased Skill Effect Duration" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "46289" + }, + ["in"]= { + "30338" + } + }, + [58069]= { + ["skill"]= 58069, + ["name"]= "One Handed Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "Attacks with One Handed Weapons deal 20% increased Damage with Ailments", + "14% increased Damage with One Handed Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 669, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "30205", + "60737" + }, + ["in"]= { + "46289" + } + }, + [42623]= { + ["skill"]= 42623, + ["name"]= "One Handed Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "Attacks with One Handed Weapons deal 20% increased Damage with Ailments", + "14% increased Damage with One Handed Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 669, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "54338", + "30338" + }, + ["in"]= { + "60737" + } + }, + [30205]= { + ["skill"]= 30205, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "10% increased Physical Damage" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "33903" + }, + ["in"]= { + "5823", + "58069" + } + }, + [54338]= { + ["skill"]= 54338, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "10% increased Physical Damage" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "46408" + }, + ["in"]= { + "42623", + "33903" + } + }, + [33903]= { + ["skill"]= 33903, + ["name"]= "Will of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "BlackOil" + }, + ["stats"]= { + "40% increased Critical Strike Chance", + "20% increased Physical Damage" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "54338" + }, + ["in"]= { + "30205" + } + }, + [60737]= { + ["skill"]= 60737, + ["name"]= "Sleight of Hand", + ["icon"]= "Art/2DArt/SkillIcons/passives/swashbuckler.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "Attacks with One Handed Weapons deal 30% increased Damage with Ailments", + "8% increased Attack Speed with One Handed Weapons", + "20% increased Damage with One Handed Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 669, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42623" + }, + ["in"]= { + "58069" + } + }, + [89]= { + ["skill"]= 89, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 670, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45608" + } + }, + [52522]= { + ["skill"]= 52522, + ["name"]= "Mine Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsradius.png", + ["stats"]= { + "30% increased Critical Strike Chance with Mines" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "45608" + }, + ["in"]= { + "42744" + } + }, + [11716]= { + ["skill"]= 11716, + ["name"]= "Mine Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Mines" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45608" + }, + ["in"]= { + "42744" + } + }, + [42744]= { + ["skill"]= 42744, + ["name"]= "Mine Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsradius.png", + ["stats"]= { + "15% increased Critical Strike Chance with Mines", + "+8% to Critical Strike Multiplier with Mines" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "52522", + "11716" + }, + ["in"]= { + "33783" + } + }, + [45608]= { + ["skill"]= 45608, + ["name"]= "Successive Detonations", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "CrimsonOil" + }, + ["stats"]= { + "10% increased Critical Strike Chance for each Mine Detonated\nRecently, up to 100%", + "+4% to Critical Strike Multiplier for each Mine Detonated\nRecently, up to 40%" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "89" + }, + ["in"]= { + "52522", + "11716" + } + }, + [9769]= { + ["skill"]= 9769, + ["name"]= "Spell Suppression and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "10% increased Energy Shield Recharge Rate" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 671, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49515", + "24067" + }, + ["in"]= {} + }, + [49515]= { + ["skill"]= 49515, + ["name"]= "Spell Suppression and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "10% increased Energy Shield Recharge Rate" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 671, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "4502", + "9769" + } + }, + [24067]= { + ["skill"]= 24067, + ["name"]= "Instinct", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "AzureOil" + }, + ["stats"]= { + "+12% chance to Suppress Spell Damage", + "Recover 50 Energy Shield when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 671, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "54413" + }, + ["in"]= { + "9769" + } + }, + [54413]= { + ["skill"]= 54413, + ["name"]= "Spell Suppression Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 58447, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 7677, + ["stats"]= { + "Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance for 4 seconds)" + } + }, + { + ["effect"]= 42014, + ["stats"]= { + "Prevent +1% of Suppressed Spell Damage per Hit Suppressed Recently", + "-2% chance to Suppress Spell Damage per Hit Suppressed Recently" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 2474, + ["stats"]= { + "Suppressed Spell Damage cannot inflict Elemental Ailments on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 13757, + ["stats"]= { + "You have Phasing if you have Suppressed Spell Damage Recently", + "+8% chance to Suppress Spell Damage while Phasing" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 45317, + ["stats"]= { + "Chance to Suppress Spell Damage is Lucky" + } + } + }, + ["stats"]= {}, + ["group"]= 671, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24067" + } + }, + [34660]= { + ["skill"]= 34660, + ["name"]= "Mark Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "8% increased Effect of your Marks" + }, + ["group"]= 672, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "9933" + }, + ["in"]= { + "64709" + } + }, + [30974]= { + ["skill"]= 30974, + ["name"]= "Expert Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "20% increased Effect of your Marks" + }, + ["group"]= 672, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "56865" + }, + ["in"]= { + "9933" + } + }, + [9933]= { + ["skill"]= 9933, + ["name"]= "Mark Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "8% increased Effect of your Marks" + }, + ["group"]= 672, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "30974" + }, + ["in"]= { + "34660" + } + }, + [56865]= { + ["skill"]= 56865, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 672, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30974" + } + }, + [44470]= { + ["skill"]= 44470, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 673, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "12161" + } + }, + [45593]= { + ["skill"]= 45593, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "53114" + }, + ["in"]= { + "12801" + } + }, + [12801]= { + ["skill"]= 12801, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "45593", + "8938" + }, + ["in"]= {} + }, + [53114]= { + ["skill"]= 53114, + ["name"]= "Revenge of the Hunted", + ["icon"]= "Art/2DArt/SkillIcons/passives/revengeofthehunted.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "18% increased Evasion Rating", + "10% increased maximum Life", + "+10% chance to Suppress Spell Damage while on Full Life" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "25067", + "65528" + }, + ["in"]= { + "45593" + } + }, + [25067]= { + ["skill"]= 25067, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31315" + }, + ["in"]= { + "53114" + } + }, + [31315]= { + ["skill"]= 31315, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "39718" + }, + ["in"]= { + "25067" + } + }, + [65528]= { + ["skill"]= 65528, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 674, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53114" + } + }, + [38520]= { + ["skill"]= 38520, + ["name"]= "Claw Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalclaw.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "56648" + }, + ["in"]= { + "265" + } + }, + [47321]= { + ["skill"]= 47321, + ["name"]= "Claw Critical Strike Chance and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalclaw.png", + ["stats"]= { + "8% increased Accuracy Rating with Claws", + "20% increased Critical Strike Chance with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56648" + }, + ["in"]= { + "265" + } + }, + [265]= { + ["skill"]= 265, + ["name"]= "Claw Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalclaw.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "38520", + "47321", + "3656" + }, + ["in"]= {} + }, + [56648]= { + ["skill"]= 56648, + ["name"]= "Claws of the Falcon", + ["icon"]= "Art/2DArt/SkillIcons/passives/eagletalons.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "GoldenOil" + }, + ["stats"]= { + "15% increased Accuracy Rating with Claws", + "+40% to Critical Strike Multiplier with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "53365" + }, + ["in"]= { + "38520", + "47321" + } + }, + [53365]= { + ["skill"]= 53365, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 675, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56648" + } + }, + [32314]= { + ["skill"]= 32314, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "43010" + }, + ["in"]= { + "30767" + } + }, + [31973]= { + ["skill"]= 31973, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "1652" + }, + ["in"]= { + "2785", + "22535" + } + }, + [10992]= { + ["skill"]= 10992, + ["name"]= "Hex Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png", + ["stats"]= { + "15% increased Area of Effect of Hex Skills" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "30767" + }, + ["in"]= { + "1652" + } + }, + [1652]= { + ["skill"]= 1652, + ["name"]= "Hex Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png", + ["stats"]= { + "15% increased Area of Effect of Hex Skills" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "10992" + }, + ["in"]= { + "31973" + } + }, + [3359]= { + ["skill"]= 3359, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "6250" + }, + ["in"]= { + "30767" + } + }, + [6250]= { + ["skill"]= 6250, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "22535" + }, + ["in"]= { + "3359" + } + }, + [2785]= { + ["skill"]= 2785, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "31973" + }, + ["in"]= { + "51191" + } + }, + [51191]= { + ["skill"]= 51191, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "2785" + }, + ["in"]= { + "30767" + } + }, + [30767]= { + ["skill"]= 30767, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "3359", + "60440", + "32314", + "51191" + }, + ["in"]= { + "10992" + } + }, + [43010]= { + ["skill"]= 43010, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "22535" + }, + ["in"]= { + "32314" + } + }, + [6570]= { + ["skill"]= 6570, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 676, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22535" + } + }, + [22535]= { + ["skill"]= 22535, + ["name"]= "Whispers of Doom", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png", + ["isNotable"]= true, + ["recipe"]= { + "GoldenOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "You can apply an additional Curse" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31973", + "6570" + }, + ["in"]= { + "6250", + "43010" + } + }, + [60440]= { + ["skill"]= 60440, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 677, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11455" + }, + ["in"]= { + "49605", + "50382", + "55571", + "30767", + "5018", + "36858" + } + }, + [26820]= { + ["skill"]= 26820, + ["name"]= "Life Gain on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "Gain 6 Life per Enemy Hit with Attacks" + }, + ["group"]= 678, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61039" + }, + ["in"]= { + "50038" + } + }, + [50038]= { + ["skill"]= 50038, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "0.5% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 678, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26820", + "61039" + }, + ["in"]= { + "22266" + } + }, + [40383]= { + ["skill"]= 40383, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 678, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61039" + } + }, + [61039]= { + ["skill"]= 61039, + ["name"]= "Wild Hunger", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "0.8% of Attack Damage Leeched as Life", + "30% increased Maximum total Life Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 678, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "40383" + }, + ["in"]= { + "26820", + "50038" + } + }, + [51233]= { + ["skill"]= 51233, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 679, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "61305" + }, + ["in"]= { + "22994" + } + }, + [61305]= { + ["skill"]= 61305, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "35313", + ["parent"]= "22994" + }, + ["stats"]= {}, + ["group"]= 679, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35313" + }, + ["in"]= { + "51233" + } + }, + [54600]= { + ["skill"]= 54600, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 680, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "41876" + }, + ["in"]= {} + }, + [45788]= { + ["skill"]= 45788, + ["name"]= "Claw Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "5% increased Attack Speed with Claws" + }, + ["group"]= 681, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "28503" + }, + ["in"]= { + "2121" + } + }, + [2121]= { + ["skill"]= 2121, + ["name"]= "Claw Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "5% increased Attack Speed with Claws" + }, + ["group"]= 681, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "45788", + "59252" + }, + ["in"]= {} + }, + [12518]= { + ["skill"]= 12518, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 681, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "28503" + } + }, + [28503]= { + ["skill"]= 28503, + ["name"]= "Life Raker", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "12% increased Attack Speed with Claws", + "12% increased Accuracy Rating with Claws", + "Gain 6 Life per Enemy Hit with Attacks" + }, + ["group"]= 681, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "12518" + }, + ["in"]= { + "45788" + } + }, + [52714]= { + ["skill"]= 52714, + ["name"]= "Prowess", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 682, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59606" + } + }, + [60180]= { + ["skill"]= 60180, + ["name"]= "Thief's Craft", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 683, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59606" + } + }, + [11239]= { + ["skill"]= 11239, + ["name"]= "Wind Dancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/WindDancer.png", + ["isKeystone"]= true, + ["stats"]= { + "20% less Attack Damage taken if you haven't been Hit by an Attack Recently\n10% more chance to Evade Attacks if you have been Hit by an Attack Recently\n20% more Attack Damage taken if you have been Hit by an Attack Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "Invite the enemy when you are strong, evade them when you are weak;", + "strike with the coming of the storm." + }, + ["group"]= 684, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39718" + }, + ["in"]= {} + }, + [5622]= { + ["skill"]= 5622, + ["name"]= "Dual Wield Critical Strike Multiplier and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png", + ["stats"]= { + "8% increased Accuracy Rating while Dual Wielding", + "+10% to Attack Critical Strike Multiplier while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "25209" + }, + ["in"]= { + "6" + } + }, + [25209]= { + ["skill"]= 25209, + ["name"]= "Dual Wield Critical Strike Multiplier and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png", + ["stats"]= { + "8% increased Accuracy Rating while Dual Wielding", + "+10% to Attack Critical Strike Multiplier while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "5622", + "30626" + } + }, + [30626]= { + ["skill"]= 30626, + ["name"]= "Dual Wield Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + ["stats"]= { + "20% increased Attack Critical Strike Chance while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "30679", + "25209" + }, + ["in"]= {} + }, + [8872]= { + ["skill"]= 8872, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 685, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6" + } + }, + [6]= { + ["skill"]= 6, + ["name"]= "Twin Terrors", + ["icon"]= "Art/2DArt/SkillIcons/passives/scissorblades.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "100% increased Attack Critical Strike Chance while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "8872", + "5622" + }, + ["in"]= {} + }, + [24452]= { + ["skill"]= 24452, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 686, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "13170" + }, + ["in"]= { + "59585" + } + }, + [59585]= { + ["skill"]= 59585, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "27819", + ["parent"]= "13170" + }, + ["stats"]= {}, + ["group"]= 686, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "24452" + }, + ["in"]= { + "27819" + } + }, + [1201]= { + ["skill"]= 1201, + ["name"]= "Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "12% increased Attack Damage" + }, + ["group"]= 687, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31508", + "7085" + }, + ["in"]= { + "45491" + } + }, + [45491]= { + ["skill"]= 45491, + ["name"]= "Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "12% increased Attack Damage" + }, + ["group"]= 687, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "7085", + "1201" + }, + ["in"]= { + "37504" + } + }, + [7085]= { + ["skill"]= 7085, + ["name"]= "Weapon Artistry", + ["icon"]= "Art/2DArt/SkillIcons/passives/blademistress.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "VioletOil" + }, + ["stats"]= { + "+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "8% increased Attack Speed", + "+0.2 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 687, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "1201", + "45491" + } + }, + [41866]= { + ["skill"]= 41866, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 688, + ["orbit"]= 5, + ["orbitIndex"]= 18, + ["out"]= { + "63843", + "60942" + }, + ["in"]= { + "37504", + "9206" + } + }, + [60942]= { + ["skill"]= 60942, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 688, + ["orbit"]= 5, + ["orbitIndex"]= 36, + ["out"]= { + "33196", + "19228", + "32555" + }, + ["in"]= { + "61306", + "64709", + "41866" + } + }, + [36801]= { + ["skill"]= 36801, + ["name"]= "Claw Ailment Damage and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "Claw Attacks deal 15% increased Damage with Ailments", + "5% increased Poison Duration" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "529" + }, + ["in"]= { + "19228" + } + }, + [19228]= { + ["skill"]= 19228, + ["name"]= "Claw Ailment Damage and Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "Claw Attacks deal 15% increased Damage with Ailments", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "36801" + }, + ["in"]= { + "60942", + "3362" + } + }, + [3362]= { + ["skill"]= 3362, + ["name"]= "Claw Attack Speed and Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "4% increased Attack Speed with Claws", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19228" + }, + ["in"]= { + "529" + } + }, + [4788]= { + ["skill"]= 4788, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 689, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "529" + } + }, + [529]= { + ["skill"]= 529, + ["name"]= "Poisonous Fangs", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "AzureOil" + }, + ["stats"]= { + "+10% to Damage over Time Multiplier for Poison", + "Claw Attacks deal 25% increased Damage with Ailments", + "6% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "3362", + "4788" + }, + ["in"]= { + "36801" + } + }, + [60210]= { + ["skill"]= 60210, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 690, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58032" + } + }, + [5018]= { + ["skill"]= 5018, + ["name"]= "Chance to Poison with Spells", + ["icon"]= "Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png", + ["stats"]= { + "10% chance to Poison on Hit with Spell Damage" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "45810", + "11984", + "60440" + }, + ["in"]= {} + }, + [45810]= { + ["skill"]= 45810, + ["name"]= "Poison Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "15% increased Damage with Poison" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "13168" + }, + ["in"]= { + "5018" + } + }, + [13168]= { + ["skill"]= 13168, + ["name"]= "Poison Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "15% increased Damage with Poison" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "58032" + }, + ["in"]= { + "45810" + } + }, + [11984]= { + ["skill"]= 11984, + ["name"]= "Chance to Poison with Spells", + ["icon"]= "Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png", + ["stats"]= { + "15% chance to Poison on Hit with Spell Damage" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "58032" + }, + ["in"]= { + "5018" + } + }, + [58032]= { + ["skill"]= 58032, + ["name"]= "Serpentine Spellslinger", + ["icon"]= "Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "Enemies Poisoned by you have -5% to Chaos Resistance", + "Spell Skills have +12% to Damage over Time Multiplier for Poison" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "60210" + }, + ["in"]= { + "13168", + "11984" + } + }, + [11455]= { + ["skill"]= 11455, + ["name"]= "Chaos Inoculation", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png", + ["isKeystone"]= true, + ["stats"]= { + "Maximum Life becomes 1, Immune to Chaos Damage" + }, + ["flavourText"]= { + "Give up everything in pursuit of greatness - even life itself." + }, + ["group"]= 691, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60440" + } + }, + [12794]= { + ["skill"]= 12794, + ["name"]= "Projectile Attack Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 10% increased Critical Strike Chance", + "Projectile Attack Skills have +10% to Critical Strike Multiplier" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "30455" + }, + ["in"]= { + "14804" + } + }, + [30455]= { + ["skill"]= 30455, + ["name"]= "Projectile Attack Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 10% increased Critical Strike Chance", + "Projectile Attack Skills have +10% to Critical Strike Multiplier" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41119" + }, + ["in"]= { + "12794" + } + }, + [28658]= { + ["skill"]= 28658, + ["name"]= "Projectile Attack Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 25% increased Critical Strike Chance" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "14804", + "41119" + } + }, + [14804]= { + ["skill"]= 14804, + ["name"]= "Projectile Attack Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 20% increased Critical Strike Chance" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "28658", + "12794" + }, + ["in"]= { + "22266" + } + }, + [41119]= { + ["skill"]= 41119, + ["name"]= "Lethality", + ["icon"]= "Art/2DArt/SkillIcons/passives/heartpierce.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "Projectile Attack Skills have 50% increased Critical Strike Chance", + "Projectile Attack Skills have +30% to Critical Strike Multiplier" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "28658", + "47212" + }, + ["in"]= { + "30455" + } + }, + [47212]= { + ["skill"]= 47212, + ["name"]= "Projectile Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16644, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each Enemy Pierced" + } + }, + { + ["effect"]= 2198, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each time they have Chained" + } + }, + { + ["effect"]= 52404, + ["stats"]= { + "1% increased Projectile Damage per 16 Dexterity" + } + }, + { + ["effect"]= 14813, + ["stats"]= { + "Knock Back Enemies if you get a Critical Strike with Projectile Damage" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + { + ["effect"]= 1167, + ["stats"]= { + "15% more Projectile Speed" + } + }, + { + ["effect"]= 44240, + ["stats"]= { + "15% less Projectile Speed" + } + } + }, + ["stats"]= {}, + ["group"]= 692, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41119" + } + }, + [56023]= { + ["skill"]= 56023, + ["name"]= "Projectile Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16644, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each Enemy Pierced" + } + }, + { + ["effect"]= 2198, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each time they have Chained" + } + }, + { + ["effect"]= 52404, + ["stats"]= { + "1% increased Projectile Damage per 16 Dexterity" + } + }, + { + ["effect"]= 14813, + ["stats"]= { + "Knock Back Enemies if you get a Critical Strike with Projectile Damage" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + { + ["effect"]= 1167, + ["stats"]= { + "15% more Projectile Speed" + } + }, + { + ["effect"]= 44240, + ["stats"]= { + "15% less Projectile Speed" + } + } + }, + ["stats"]= {}, + ["group"]= 693, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "8458", + "31513" + } + }, + [11678]= { + ["skill"]= 11678, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNode.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "44306", + "52288" + }, + ["in"]= { + "30679" + } + }, + [44306]= { + ["skill"]= 44306, + ["name"]= "Projectile Damage and Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNode2.png", + ["stats"]= { + "10% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "8458" + }, + ["in"]= { + "11678" + } + }, + [8458]= { + ["skill"]= 8458, + ["name"]= "Longshot", + ["icon"]= "Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Projectile Speed", + "Projectiles gain Damage as they travel farther, dealing up\nto 60% increased Damage with Hits to targets" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56023" + }, + ["in"]= { + "44306" + } + }, + [52288]= { + ["skill"]= 52288, + ["name"]= "Projectile Damage and Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNode2.png", + ["stats"]= { + "10% reduced Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31513" + }, + ["in"]= { + "11678" + } + }, + [31513]= { + ["skill"]= 31513, + ["name"]= "Adjacent Animosity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "10% reduced Projectile Speed", + "Projectiles deal 40% increased Damage with Hits to targets at the start\nof their movement, reducing to 0% as they travel farther" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "56023" + }, + ["in"]= { + "52288" + } + }, + [3656]= { + ["skill"]= 3656, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 694, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "58244", + "27962", + "33783" + }, + ["in"]= { + "20546", + "265", + "24050" + } + }, + [58244]= { + ["skill"]= 58244, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 694, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "7112" + }, + ["in"]= { + "3656", + "1767", + "11018", + "49308" + } + }, + [59252]= { + ["skill"]= 59252, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 695, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "59606" + }, + ["in"]= { + "49408", + "2121", + "28012", + "19210" + } + }, + [59606]= { + ["skill"]= 59606, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 696, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "8938", + "39718", + "60180", + "52714", + "1461", + "1427" + }, + ["in"]= { + "59252", + "54868" + } + }, + [13885]= { + ["skill"]= 13885, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 697, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "28012", + "40362" + }, + ["in"]= { + "47362", + "7112", + "8012" + } + }, + [28012]= { + ["skill"]= 28012, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 697, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "59252", + "4011" + }, + ["in"]= { + "13885", + "46408" + } + }, + [39718]= { + ["skill"]= 39718, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 698, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31315", + "11239", + "59606", + "5616", + "56646" + } + }, + [27283]= { + ["skill"]= 27283, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 699, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= { + "63843", + "37619" + }, + ["in"]= { + "5616", + "31508" + } + }, + [5616]= { + ["skill"]= 5616, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 699, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "38662", + "39718", + "27283", + "56814" + }, + ["in"]= {} + }, + [22266]= { + ["skill"]= 22266, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 700, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32555", + "9786", + "14804", + "50038" + }, + ["in"]= { + "30679", + "16882" + } + }, + [62791]= { + ["skill"]= 62791, + ["name"]= "Lethe Shade", + ["icon"]= "Art/2DArt/SkillIcons/passives/MomentofRespite.png", + ["isKeystone"]= true, + ["stats"]= { + "Take 50% less Damage over Time if you've started taking Damage over Time in the past second\n100% more Duration of Ailments on you" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["flavourText"]= { + "A sip of poison each day keeps the shadow of death at bay." + }, + ["group"]= 701, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "33783" + }, + ["in"]= {} + }, + [31508]= { + ["skill"]= 31508, + ["name"]= "Aspect of the Lynx", + ["icon"]= "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "20% increased Attack Damage", + "5% increased Movement Speed", + "20% increased Critical Strike Chance for Attacks" + }, + ["group"]= 702, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "27283" + }, + ["in"]= { + "57819", + "6654", + "1201" + } + }, + [37504]= { + ["skill"]= 37504, + ["name"]= "Intuition", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "+8% chance to Suppress Spell Damage", + "15% increased Evasion Rating", + "5% increased maximum Life" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 703, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41866", + "45491" + }, + ["in"]= { + "903", + "18670" + } + }, + [9786]= { + ["skill"]= 9786, + ["name"]= "Evasion and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "3% increased Movement Speed" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "4573", + "33558" + }, + ["in"]= { + "22266" + } + }, + [4573]= { + ["skill"]= 4573, + ["name"]= "Evasion and Movement Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "14% increased Evasion Rating", + "15% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "9786", + "3309" + } + }, + [33558]= { + ["skill"]= 33558, + ["name"]= "Evasion and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "14% increased Evasion Rating", + "3% increased Movement Speed" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "3309" + }, + ["in"]= { + "9786" + } + }, + [3309]= { + ["skill"]= 3309, + ["name"]= "Fleetfoot", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Evasion Rating", + "5% increased Movement Speed", + "30% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "4573", + "41163" + }, + ["in"]= { + "33558" + } + }, + [41163]= { + ["skill"]= 41163, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 704, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3309" + } + }, + [41989]= { + ["skill"]= 41989, + ["name"]= "Resourcefulness", + ["icon"]= "Art/2DArt/SkillIcons/passives/Resourcefulness.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "+8% chance to Suppress Spell Damage", + "10% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 705, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47362", + "1767" + } + }, + [35313]= { + ["skill"]= 35313, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 706, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "61305" + } + }, + [51420]= { + ["skill"]= 51420, + ["name"]= "Mana Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + ["stats"]= { + "0.4% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 707, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "65053" + }, + ["in"]= { + "49481", + "32555" + } + }, + [49481]= { + ["skill"]= 49481, + ["name"]= "Mana on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + ["stats"]= { + "Gain 3 Mana per Enemy Hit with Attacks" + }, + ["group"]= 707, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "51420" + }, + ["in"]= { + "65053" + } + }, + [65053]= { + ["skill"]= 65053, + ["name"]= "Essence Sap", + ["icon"]= "Art/2DArt/SkillIcons/passives/minddrinker.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "0.5% of Attack Damage Leeched as Mana", + "50% increased Maximum total Mana Recovery per second from Leech", + "100% increased total Recovery per second from Mana Leech" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 707, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49481", + "6384" + }, + ["in"]= { + "51420" + } + }, + [6384]= { + ["skill"]= 6384, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 707, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65053" + } + }, + [24050]= { + ["skill"]= 24050, + ["name"]= "Coldhearted Calculation", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "CrimsonOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "12% increased Damage", + "20% increased Mana Regeneration Rate", + "+20 to Intelligence" + }, + ["group"]= 708, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10763", + "3656", + "1767" + }, + ["in"]= { + "40644" + } + }, + [46408]= { + ["skill"]= 46408, + ["name"]= "Fangs of the Viper", + ["icon"]= "Art/2DArt/SkillIcons/passives/newnewattackspeed.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "AzureOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "20% increased Chaos Damage", + "5% increased Movement Speed", + "+20 to Dexterity", + "20% increased Physical Damage" + }, + ["group"]= 709, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "28012" + }, + ["in"]= { + "30338", + "54338", + "47362" + } + }, + [46896]= { + ["skill"]= 46896, + ["name"]= "Damage Over Time Multiplier and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+3% to Damage over Time Multiplier", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "33783" + }, + ["in"]= { + "5129", + "59482" + } + }, + [4973]= { + ["skill"]= 4973, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+5% to Damage over Time Multiplier" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "5129" + }, + ["in"]= { + "9864" + } + }, + [5129]= { + ["skill"]= 5129, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+5% to Damage over Time Multiplier" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46896" + }, + ["in"]= { + "4973" + } + }, + [9864]= { + ["skill"]= 9864, + ["name"]= "Growth and Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/GrowthandDecay.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "+12% to Damage over Time Multiplier", + "Regenerate 1% of Life per second" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59482", + "4973", + "47294" + }, + ["in"]= {} + }, + [59482]= { + ["skill"]= 59482, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.8% of Life per second" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "46896" + }, + ["in"]= { + "9864" + } + }, + [47294]= { + ["skill"]= 47294, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 710, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9864" + } + }, + [18769]= { + ["skill"]= 18769, + ["name"]= "Written in Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/WritteninBlood.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "GoldenOil" + }, + ["grantedStrength"]= 10, + ["stats"]= { + "10% increased maximum Energy Shield", + "10% increased maximum Life", + "+10 to Strength" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "857" + }, + ["in"]= { + "61653" + } + }, + [61653]= { + ["skill"]= 61653, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "18769" + }, + ["in"]= { + "38190", + "36858" + } + }, + [38190]= { + ["skill"]= 38190, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "61653" + }, + ["in"]= { + "1822" + } + }, + [1822]= { + ["skill"]= 1822, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "38190", + "4502" + }, + ["in"]= {} + }, + [857]= { + ["skill"]= 857, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 711, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18769" + } + }, + [37616]= { + ["skill"]= 37616, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 712, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59556" + } + }, + [27962]= { + ["skill"]= 27962, + ["name"]= "Trap Throwing Speed and Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "20% increased Trap Trigger Area of Effect", + "4% increased Trap Throwing Speed" + }, + ["group"]= 712, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "31501" + }, + ["in"]= { + "3656" + } + }, + [31501]= { + ["skill"]= 31501, + ["name"]= "Trap Throwing Speed and Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "20% increased Trap Trigger Area of Effect", + "4% increased Trap Throwing Speed" + }, + ["group"]= 712, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "27962", + "59556" + } + }, + [59556]= { + ["skill"]= 59556, + ["name"]= "Expeditious Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "50% increased Trap Trigger Area of Effect", + "12% increased Trap Throwing Speed" + }, + ["group"]= 712, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31501", + "37616" + }, + ["in"]= {} + }, + [27819]= { + ["skill"]= 27819, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 713, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "59585" + }, + ["in"]= {} + }, + [44540]= { + ["skill"]= 44540, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 714, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27190" + } + }, + [39814]= { + ["skill"]= 39814, + ["name"]= "Trap Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsduration.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for throwing Traps" + }, + ["group"]= 714, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "25770" + }, + ["in"]= { + "36858" + } + }, + [27190]= { + ["skill"]= 27190, + ["name"]= "Overprepared", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trap.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "AzureOil" + }, + ["stats"]= { + "Skills which Throw Traps have +1 Cooldown Use" + }, + ["group"]= 714, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44540" + }, + ["in"]= { + "25770" + } + }, + [25770]= { + ["skill"]= 25770, + ["name"]= "Trap Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsduration.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for throwing Traps" + }, + ["group"]= 714, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27190" + }, + ["in"]= { + "39814" + } + }, + [47362]= { + ["skill"]= 47362, + ["name"]= "Life and Energy Shield on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "Gain 15 Energy Shield per Enemy Killed" + }, + ["group"]= 715, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41989", + "13885", + "46408" + }, + ["in"]= {} + }, + [1767]= { + ["skill"]= 1767, + ["name"]= "Life and Energy Shield on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "Gain 15 Energy Shield per Enemy Killed" + }, + ["group"]= 716, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41989", + "58244" + }, + ["in"]= { + "24050" + } + }, + [20675]= { + ["skill"]= 20675, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 717, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47065" + } + }, + [19210]= { + ["skill"]= 19210, + ["name"]= "Physical Damage and Ignore Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "14% increased Physical Damage" + }, + ["group"]= 717, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "59252" + }, + ["in"]= { + "43316" + } + }, + [43316]= { + ["skill"]= 43316, + ["name"]= "Physical Damage and Ignore Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "14% increased Physical Damage" + }, + ["group"]= 717, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "19210" + }, + ["in"]= { + "47065" + } + }, + [47065]= { + ["skill"]= 47065, + ["name"]= "Master of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasterofForce.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "OpalescentOil", + "GoldenOil" + }, + ["grantedStrength"]= 30, + ["stats"]= { + "Hits have 30% chance to ignore Enemy Physical Damage Reduction", + "+30 to Strength", + "30% increased Physical Damage" + }, + ["group"]= 717, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "43316", + "20675" + }, + ["in"]= {} + }, + [54868]= { + ["skill"]= 54868, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "16% increased Damage Over Time with Bow Skills" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "39938", + "59606", + "45360" + }, + ["in"]= {} + }, + [39938]= { + ["skill"]= 39938, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "20% increased Damage Over Time with Bow Skills" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9535" + }, + ["in"]= { + "54868" + } + }, + [45360]= { + ["skill"]= 45360, + ["name"]= "Poison Chance and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+4% to Damage over Time Multiplier for Poison", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "57030" + }, + ["in"]= { + "54868" + } + }, + [57030]= { + ["skill"]= 57030, + ["name"]= "Poison Chance and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+4% to Damage over Time Multiplier for Poison", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "9535" + }, + ["in"]= { + "45360" + } + }, + [9535]= { + ["skill"]= 9535, + ["name"]= "Hunter's Gambit", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "+10% to Chaos Damage over Time Multiplier", + "10% increased Skill Effect Duration", + "25% increased Damage Over Time with Bow Skills" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "27865" + }, + ["in"]= { + "39938", + "57030" + } + }, + [27865]= { + ["skill"]= 27865, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 718, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9535" + } + }, + [18707]= { + ["skill"]= 18707, + ["name"]= "Perfectionist", + ["icon"]= "Art/2DArt/SkillIcons/passives/StunAvoidNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "5% increased Movement Speed", + "30% chance to Avoid being Stunned", + "50% increased Stun and Block Recovery" + }, + ["group"]= 719, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19725" + }, + ["in"]= { + "51235" + } + }, + [1427]= { + ["skill"]= 1427, + ["name"]= "Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/stundex.png", + ["stats"]= { + "15% chance to Avoid being Stunned" + }, + ["group"]= 719, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "59606", + "51235" + } + }, + [51235]= { + ["skill"]= 51235, + ["name"]= "Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/stundex.png", + ["stats"]= { + "15% chance to Avoid being Stunned" + }, + ["group"]= 719, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "1427", + "18707" + }, + ["in"]= {} + }, + [19725]= { + ["skill"]= 19725, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 719, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18707" + } + }, + [34317]= { + ["skill"]= 34317, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 720, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4481" + } + }, + [4481]= { + ["skill"]= 4481, + ["name"]= "Forces of Nature", + ["icon"]= "Art/2DArt/SkillIcons/passives/ForceOfNature.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "Attack Damage Penetrates 10% of Enemy Elemental Resistances" + }, + ["group"]= 720, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25511", + "34317" + }, + ["in"]= {} + }, + [56646]= { + ["skill"]= 56646, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 720, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "39718" + }, + ["in"]= { + "25511" + } + }, + [25511]= { + ["skill"]= 25511, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 720, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56646" + }, + ["in"]= { + "4481" + } + }, + [63843]= { + ["skill"]= 63843, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 721, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41866", + "27283", + "38348", + "21758" + } + }, + [7112]= { + ["skill"]= 7112, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 722, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "13885" + }, + ["in"]= { + "58244", + "53213" + } + }, + [16882]= { + ["skill"]= 16882, + ["name"]= "Flask Effect Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Effect Duration" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "43491", + "14400", + "22266" + }, + ["in"]= {} + }, + [43491]= { + ["skill"]= 43491, + ["name"]= "Flask Charges Used", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "5% reduced Flask Charges used" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "41420" + }, + ["in"]= { + "16882" + } + }, + [14400]= { + ["skill"]= 14400, + ["name"]= "Flask Effect Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "15% increased Flask Effect Duration" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "41420" + }, + ["in"]= { + "16882" + } + }, + [41420]= { + ["skill"]= 41420, + ["name"]= "Natural Remedies", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "20% increased Flask Effect Duration", + "Flasks applied to you have 10% increased Effect", + "Remove Maim and Hinder when you use a Flask" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "9393" + }, + ["in"]= { + "43491", + "14400" + } + }, + [9393]= { + ["skill"]= 9393, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 723, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41420" + } + }, + [33196]= { + ["skill"]= 33196, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58474" + }, + ["in"]= { + "60942", + "13202" + } + }, + [13202]= { + ["skill"]= 13202, + ["name"]= "Cold Damage and Cold Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage", + "10% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "33196" + }, + ["in"]= { + "17171" + } + }, + [17171]= { + ["skill"]= 17171, + ["name"]= "Flash Freeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/newcolddamage.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "25% increased Cold Damage", + "15% chance to Freeze", + "30% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13202", + "44179" + }, + ["in"]= {} + }, + [44179]= { + ["skill"]= 44179, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 724, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "17171", + "43385" + } + }, + [43385]= { + ["skill"]= 43385, + ["name"]= "Winter Spirit", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "Gain 10% of Physical Damage as Extra Cold Damage" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "44179" + }, + ["in"]= { + "58474" + } + }, + [58474]= { + ["skill"]= 58474, + ["name"]= "Physical Damage as Extra Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "Gain 4% of Physical Damage as Extra Cold Damage" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "43385" + }, + ["in"]= { + "33196" + } + }, + [56814]= { + ["skill"]= 56814, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11850", + "46694" + }, + ["in"]= { + "5616" + } + }, + [46694]= { + ["skill"]= 46694, + ["name"]= "Evasion and Blind Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "15% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "56814", + "43457" + } + }, + [43457]= { + ["skill"]= 43457, + ["name"]= "Evasion and Blind Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "15% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "46694", + "17608" + }, + ["in"]= {} + }, + [11850]= { + ["skill"]= 11850, + ["name"]= "Blind Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "40% increased Blind duration" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "17608" + }, + ["in"]= { + "56814" + } + }, + [17608]= { + ["skill"]= 17608, + ["name"]= "Silent Steps", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "VioletOil" + }, + ["stats"]= { + "20% increased Evasion Rating", + "40% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38568" + }, + ["in"]= { + "43457", + "11850" + } + }, + [38568]= { + ["skill"]= 38568, + ["name"]= "Blind Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43524, + ["stats"]= { + "40% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 7831, + ["stats"]= { + "100% increased Blind duration" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 57463, + ["stats"]= { + "60% increased Critical Strike Chance against Blinded Enemies" + } + }, + { + ["effect"]= 12100, + ["stats"]= { + "100% chance to Avoid Blind" + } + } + }, + ["stats"]= {}, + ["group"]= 725, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "17608" + } + }, + [34763]= { + ["skill"]= 34763, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+6% to Chaos Damage over Time Multiplier" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "42907" + }, + ["in"]= { + "23616" + } + }, + [30110]= { + ["skill"]= 30110, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+6% to Chaos Damage over Time Multiplier" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "53013" + }, + ["in"]= { + "42907" + } + }, + [42907]= { + ["skill"]= 42907, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+6% to Chaos Damage over Time Multiplier" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30110" + }, + ["in"]= { + "34763" + } + }, + [53013]= { + ["skill"]= 53013, + ["name"]= "Atrophy", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "GoldenOil" + }, + ["stats"]= { + "27% increased Chaos Damage", + "12% increased Skill Effect Duration" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "42361" + }, + ["in"]= { + "30110" + } + }, + [42361]= { + ["skill"]= 42361, + ["name"]= "Chaos Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50933, + ["stats"]= { + "Recover 1% of Life per Withered Debuff on each Enemy you Kill" + } + }, + { + ["effect"]= 59574, + ["stats"]= { + "+1 to Level of all Chaos Skill Gems", + "Lose 10% of Life and Energy Shield when you use a Chaos Skill" + } + }, + { + ["effect"]= 1727, + ["stats"]= { + "+1% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 21652, + ["stats"]= { + "40% of Physical Damage Converted to Chaos Damage" + } + }, + { + ["effect"]= 28678, + ["stats"]= { + "Deal 10% more Chaos Damage to enemies which have Energy Shield" + } + }, + { + ["effect"]= 65015, + ["stats"]= { + "5% chance when you inflict Withered to inflict up to 15 Withered Debuffs instead" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + } + }, + ["stats"]= {}, + ["group"]= 726, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53013" + } + }, + [48660]= { + ["skill"]= 48660, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 727, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36281" + } + }, + [50150]= { + ["skill"]= 50150, + ["name"]= "Weapon Elemental Damage, Status Ailment Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% chance to Freeze, Shock and Ignite", + "10% increased Elemental Damage with Attack Skills" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "45436" + }, + ["in"]= { + "64878" + } + }, + [45436]= { + ["skill"]= 45436, + ["name"]= "Weapon Elemental Damage, Status Ailment Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% chance to Freeze, Shock and Ignite", + "10% increased Elemental Damage with Attack Skills" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "50150", + "36281" + } + }, + [64878]= { + ["skill"]= 64878, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30969", + "50150", + "32555" + }, + ["in"]= {} + }, + [30969]= { + ["skill"]= 30969, + ["name"]= "Weapon Elemental Damage and Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% increased Elemental Damage with Attack Skills", + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "32477" + }, + ["in"]= { + "64878" + } + }, + [32477]= { + ["skill"]= 32477, + ["name"]= "Weapon Elemental Damage and Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% increased Elemental Damage with Attack Skills", + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "36281" + }, + ["in"]= { + "30969" + } + }, + [36281]= { + ["skill"]= 36281, + ["name"]= "Primeval Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "25% increased Elemental Damage during any Flask Effect", + "25% increased Elemental Damage with Attack Skills" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "48660", + "45436" + }, + ["in"]= { + "32477" + } + }, + [32555]= { + ["skill"]= 32555, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 728, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12412", + "51420", + "54922", + "53574" + }, + ["in"]= { + "60942", + "22266", + "64878" + } + }, + [36858]= { + ["skill"]= 36858, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 729, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60440", + "61653", + "53456", + "23616", + "39814" + }, + ["in"]= { + "60405" + } + }, + [61981]= { + ["skill"]= 61981, + ["name"]= "Doom Cast", + ["icon"]= "Art/2DArt/SkillIcons/passives/doomcast.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "60% increased Spell Critical Strike Chance", + "+15% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "47507", + "63861" + }, + ["in"]= { + "25757" + } + }, + [63861]= { + ["skill"]= 63861, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 730, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61981" + } + }, + [60405]= { + ["skill"]= 60405, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "25757", + "36858" + }, + ["in"]= { + "49929" + } + }, + [25757]= { + ["skill"]= 25757, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "25% increased Spell Critical Strike Chance" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "61981" + }, + ["in"]= { + "60405" + } + }, + [47507]= { + ["skill"]= 47507, + ["name"]= "Spell Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + ["stats"]= { + "+10% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "49929" + }, + ["in"]= { + "61981" + } + }, + [49929]= { + ["skill"]= 49929, + ["name"]= "Spell Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + ["stats"]= { + "+10% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "60405" + }, + ["in"]= { + "47507" + } + }, + [25789]= { + ["skill"]= 25789, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "0.3% of Spell Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "54452", + "43328", + "53456" + }, + ["in"]= {} + }, + [54452]= { + ["skill"]= 54452, + ["name"]= "Increased Energy Shield Leeched", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "80% increased total Recovery per second from Energy Shield Leech" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "15852" + }, + ["in"]= { + "25789" + } + }, + [43328]= { + ["skill"]= 43328, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "15% increased Maximum total Energy Shield Recovery per second from Leech" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59699" + }, + ["in"]= { + "25789" + } + }, + [59699]= { + ["skill"]= 59699, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "15% increased Maximum total Energy Shield Recovery per second from Leech" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "15852" + }, + ["in"]= { + "43328" + } + }, + [15852]= { + ["skill"]= 15852, + ["name"]= "Ethereal Feast", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArcaneReaping.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "1% of Spell Damage Leeched as Energy Shield", + "40% increased Maximum total Energy Shield Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "16141" + }, + ["in"]= { + "54452", + "59699" + } + }, + [16141]= { + ["skill"]= 16141, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 731, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15852" + } + }, + [14292]= { + ["skill"]= 14292, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "20807", + "60735" + }, + ["in"]= {} + }, + [38348]= { + ["skill"]= 38348, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "60735", + "63843" + }, + ["in"]= {} + }, + [16079]= { + ["skill"]= 16079, + ["name"]= "Evasion Per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "4% increased Evasion Rating per Frenzy Charge" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "20807" + }, + ["in"]= { + "48614" + } + }, + [21758]= { + ["skill"]= 21758, + ["name"]= "Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "20% increased Frenzy Charge Duration" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48614", + "63843" + }, + ["in"]= {} + }, + [60735]= { + ["skill"]= 60735, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14292", + "38348" + } + }, + [48614]= { + ["skill"]= 48614, + ["name"]= "Fervour", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "16079" + }, + ["in"]= { + "21758" + } + }, + [37619]= { + ["skill"]= 37619, + ["name"]= "Evasion and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "12% increased Evasion Rating", + "+4% to all Elemental Resistances" + }, + ["group"]= 733, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "24133" + }, + ["in"]= { + "27283" + } + }, + [64235]= { + ["skill"]= 64235, + ["name"]= "Evasion and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "12% increased Evasion Rating", + "+4% to all Elemental Resistances" + }, + ["group"]= 733, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "36287" + }, + ["in"]= { + "24133" + } + }, + [24133]= { + ["skill"]= 24133, + ["name"]= "Survivalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Survivalist.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "24% increased Evasion Rating", + "+8% to all Elemental Resistances", + "+1% to maximum Cold Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 733, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "64235", + "27371" + }, + ["in"]= { + "37619" + } + }, + [27371]= { + ["skill"]= 27371, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 733, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24133" + } + }, + [19858]= { + ["skill"]= 19858, + ["name"]= "Herbalism", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcaneefficiency.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "30% increased Flask Recovery rate" + }, + ["group"]= 734, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9206", + "44316" + }, + ["in"]= {} + }, + [36221]= { + ["skill"]= 36221, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 734, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "12412" + }, + ["in"]= { + "9206" + } + }, + [9206]= { + ["skill"]= 9206, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 734, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "36221", + "41866" + }, + ["in"]= { + "19858" + } + }, + [44316]= { + ["skill"]= 44316, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 734, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19858" + } + }, + [23616]= { + ["skill"]= 23616, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 735, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "34763", + "21693" + }, + ["in"]= { + "36858" + } + }, + [32176]= { + ["skill"]= 32176, + ["name"]= "Soul Thief", + ["icon"]= "Art/2DArt/SkillIcons/passives/newenergyshield.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "15% increased Evasion Rating", + "10% increased maximum Energy Shield", + "Recover 2% of Energy Shield on Kill" + }, + ["group"]= 736, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "60259", + "1215" + }, + ["in"]= { + "11018" + } + }, + [60259]= { + ["skill"]= 60259, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "8% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 736, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "18182" + }, + ["in"]= { + "32176" + } + }, + [11018]= { + ["skill"]= 11018, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "8% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 736, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "58244", + "32176" + }, + ["in"]= {} + }, + [1215]= { + ["skill"]= 1215, + ["name"]= "Evasion and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 11541, + ["stats"]= { + "30% increased Evasion Rating while you have Energy Shield" + } + }, + { + ["effect"]= 46099, + ["stats"]= { + "20% increased Energy Shield Recovery Rate if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 47151, + ["stats"]= { + "20% increased Maximum Energy Shield if both Equipped Left and Right Rings have an Explicit Evasion Modifier", + "40% increased Energy Shield Recharge Rate if Equipped Amulet has an Explicit Evasion Modifier" + } + }, + { + ["effect"]= 38423, + ["stats"]= { + "100% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds" + } + }, + { + ["effect"]= 4606, + ["stats"]= { + "1% increased Evasion Rating per 10 Intelligence", + "Dexterity provides no inherent bonus to Evasion Rating" + } + }, + { + ["effect"]= 27103, + ["stats"]= { + "Every 4 seconds, Regenerate Energy Shield equal to 1% of Evasion Rating over 1 second" + } + } + }, + ["stats"]= {}, + ["group"]= 736, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32176" + } + }, + [38995]= { + ["skill"]= 38995, + ["name"]= "Life and Mana on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "Gain 4 Life per Enemy Hit with Attacks", + "Gain 2 Mana per Enemy Hit with Attacks" + }, + ["group"]= 737, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "46277" + }, + ["in"]= { + "8001" + } + }, + [8012]= { + ["skill"]= 8012, + ["name"]= "Life and Mana on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "Gain 4 Life per Enemy Hit with Attacks", + "Gain 2 Mana per Enemy Hit with Attacks" + }, + ["group"]= 737, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "13885" + }, + ["in"]= { + "8001" + } + }, + [7488]= { + ["skill"]= 7488, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 737, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "8001" + } + }, + [8001]= { + ["skill"]= 8001, + ["name"]= "Clever Thief", + ["icon"]= "Art/2DArt/SkillIcons/passives/CleverThief.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Life", + "1% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 737, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "38995", + "8012", + "7488" + }, + ["in"]= {} + }, + [54922]= { + ["skill"]= 54922, + ["name"]= "Arrow Dancing", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png", + ["isKeystone"]= true, + ["stats"]= { + "Evasion Rating is Doubled against Projectile Attacks\n25% less Evasion Rating against Melee Attacks" + }, + ["flavourText"]= { + "Let the whistling of arrows and stones be your music." + }, + ["group"]= 738, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32555" + } + }, + [63228]= { + ["skill"]= 63228, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 739, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "18182" + }, + ["in"]= { + "42804" + } + }, + [49308]= { + ["skill"]= 49308, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 739, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "58244" + }, + ["in"]= { + "42804" + } + }, + [10495]= { + ["skill"]= 10495, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 739, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42804" + } + }, + [42804]= { + ["skill"]= 42804, + ["name"]= "Mind Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/minddrinker.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "20% increased maximum Mana", + "Recover 2% of Mana on Kill" + }, + ["group"]= 739, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "49308", + "63228", + "10495" + }, + ["in"]= {} + }, + [53213]= { + ["skill"]= 53213, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "61834", + "7112" + }, + ["in"]= { + "42443", + "3537" + } + }, + [3314]= { + ["skill"]= 3314, + ["name"]= "Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "20% increased Frenzy Charge Duration" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "27656" + }, + ["in"]= { + "42443" + } + }, + [27656]= { + ["skill"]= 27656, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "56295" + }, + ["in"]= { + "3314", + "61834", + "25411" + } + }, + [61834]= { + ["skill"]= 61834, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 740, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "27656" + }, + ["in"]= { + "53213" + } + }, + [42443]= { + ["skill"]= 42443, + ["name"]= "Frenetic", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "3314", + "53213" + }, + ["in"]= {} + }, + [25411]= { + ["skill"]= 25411, + ["name"]= "Infused", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Power Charges" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "27656" + }, + ["in"]= { + "3537" + } + }, + [3537]= { + ["skill"]= 3537, + ["name"]= "Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "20% increased Power Charge Duration" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "25411", + "53213" + }, + ["in"]= {} + }, + [40362]= { + ["skill"]= 40362, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 741, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27788" + }, + ["in"]= { + "13885" + } + }, + [25260]= { + ["skill"]= 25260, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 741, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46277" + }, + ["in"]= { + "27788" + } + }, + [27788]= { + ["skill"]= 27788, + ["name"]= "Blood Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "Recover 2% of Life on Kill" + }, + ["group"]= 741, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25260", + "292" + }, + ["in"]= { + "40362" + } + }, + [292]= { + ["skill"]= 292, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 741, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27788" + } + }, + [6615]= { + ["skill"]= 6615, + ["name"]= "Arcing Blows", + ["icon"]= "Art/2DArt/SkillIcons/passives/sparkingattacks.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "SilverOil" + }, + ["stats"]= { + "Damage with Weapons Penetrates 8% Lightning Resistance", + "30% increased Lightning Damage with Attack Skills" + }, + ["group"]= 742, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44339", + "37532" + }, + ["in"]= {} + }, + [5022]= { + ["skill"]= 5022, + ["name"]= "Weapon Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "12% increased Lightning Damage with Attack Skills" + }, + ["group"]= 742, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "44339" + }, + ["in"]= { + "53456" + } + }, + [37532]= { + ["skill"]= 37532, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 742, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6615" + } + }, + [44339]= { + ["skill"]= 44339, + ["name"]= "Weapon Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "12% increased Lightning Damage with Attack Skills" + }, + ["group"]= 742, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "6615", + "5022" + } + }, + [64042]= { + ["skill"]= 64042, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 743, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "54713" + } + }, + [21693]= { + ["skill"]= 21693, + ["name"]= "Physical Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "3% increased Attack and Cast Speed", + "8% increased Physical Damage" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "5613" + }, + ["in"]= { + "23616" + } + }, + [5613]= { + ["skill"]= 5613, + ["name"]= "Physical Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "3% increased Attack and Cast Speed", + "8% increased Physical Damage" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "38539" + }, + ["in"]= { + "21693" + } + }, + [38539]= { + ["skill"]= 38539, + ["name"]= "Physical Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "3% increased Attack and Cast Speed", + "8% increased Physical Damage" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "54713" + }, + ["in"]= { + "5613" + } + }, + [54713]= { + ["skill"]= 54713, + ["name"]= "Force Shaper", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Gain 10% of Physical Damage as Extra Chaos Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "64042" + }, + ["in"]= { + "38539" + } + }, + [64769]= { + ["skill"]= 64769, + ["name"]= "Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "15% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23449", + "12412" + }, + ["in"]= { + "36849" + } + }, + [23449]= { + ["skill"]= 23449, + ["name"]= "Poison Damage and Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "+4% to Damage over Time Multiplier for Poison", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7263" + }, + ["in"]= { + "64769" + } + }, + [36849]= { + ["skill"]= 36849, + ["name"]= "Attack Speed and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "3% increased Attack Speed", + "5% increased Poison Duration" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "64769", + "23886" + }, + ["in"]= {} + }, + [23886]= { + ["skill"]= 23886, + ["name"]= "Attack Speed and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "3% increased Attack Speed", + "5% increased Poison Duration" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "7263" + }, + ["in"]= { + "36849" + } + }, + [7263]= { + ["skill"]= 7263, + ["name"]= "Swift Venoms", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "GoldenOil" + }, + ["stats"]= { + "+14% to Damage over Time Multiplier for Poison", + "10% increased Attack Speed" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "1205" + }, + ["in"]= { + "23449", + "23886" + } + }, + [1205]= { + ["skill"]= 1205, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 744, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7263" + } + }, + [29454]= { + ["skill"]= 29454, + ["name"]= "Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + ["stats"]= { + "+8% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "18770" + }, + ["in"]= { + "62744" + } + }, + [62744]= { + ["skill"]= 62744, + ["name"]= "Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + ["stats"]= { + "+8% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "29454" + }, + ["in"]= { + "36287" + } + }, + [18770]= { + ["skill"]= 18770, + ["name"]= "Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + ["stats"]= { + "+8% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63251" + }, + ["in"]= { + "29454" + } + }, + [63251]= { + ["skill"]= 63251, + ["name"]= "Inveterate", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage", + "+15% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49820" + }, + ["in"]= { + "18770" + } + }, + [49820]= { + ["skill"]= 49820, + ["name"]= "Spell Suppression Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 58447, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 7677, + ["stats"]= { + "Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance for 4 seconds)" + } + }, + { + ["effect"]= 42014, + ["stats"]= { + "Prevent +1% of Suppressed Spell Damage per Hit Suppressed Recently", + "-2% chance to Suppress Spell Damage per Hit Suppressed Recently" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 2474, + ["stats"]= { + "Suppressed Spell Damage cannot inflict Elemental Ailments on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 13757, + ["stats"]= { + "You have Phasing if you have Suppressed Spell Damage Recently", + "+8% chance to Suppress Spell Damage while Phasing" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 45317, + ["stats"]= { + "Chance to Suppress Spell Damage is Lucky" + } + } + }, + ["stats"]= {}, + ["group"]= 745, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63251" + } + }, + [1461]= { + ["skill"]= 1461, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 746, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "49900", + "6797" + }, + ["in"]= { + "59606", + "17790", + "30826", + "36287", + "23407" + } + }, + [53456]= { + ["skill"]= 53456, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 747, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18182", + "2260", + "11162", + "5022" + }, + ["in"]= { + "36858", + "25789", + "24426" + } + }, + [2959]= { + ["skill"]= 2959, + ["name"]= "Season of Ice", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+12% to Cold Damage over Time Multiplier", + "20% increased Effect of Chill" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "54887" + }, + ["in"]= { + "30427", + "56186" + } + }, + [30427]= { + ["skill"]= 30427, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "2959" + }, + ["in"]= { + "11162" + } + }, + [56186]= { + ["skill"]= 56186, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+6% to Cold Damage over Time Multiplier" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "2959" + }, + ["in"]= { + "11162" + } + }, + [11162]= { + ["skill"]= 11162, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+4% to Cold Damage over Time Multiplier" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56186", + "30427" + }, + ["in"]= { + "53456" + } + }, + [54887]= { + ["skill"]= 54887, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 748, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2959" + } + }, + [53574]= { + ["skill"]= 53574, + ["name"]= "Mark Cast Speed and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Mark Skills have 5% increased Cast Speed", + "10% increased Mana Cost Efficiency of Mark Skills" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "26002", + "7659" + }, + ["in"]= { + "32555" + } + }, + [26002]= { + ["skill"]= 26002, + ["name"]= "Mark Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Mark Skills have 10% increased Cast Speed" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "25738" + }, + ["in"]= { + "53574" + } + }, + [7659]= { + ["skill"]= 7659, + ["name"]= "Mark Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Mark Skills" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "25738" + }, + ["in"]= { + "53574" + } + }, + [25738]= { + ["skill"]= 25738, + ["name"]= "Relentless Pursuit", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "10% increased Attack Speed if you've cast a Mark Spell Recently", + "10% increased Movement Speed if you've cast a Mark Spell Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62759" + }, + ["in"]= { + "26002", + "7659" + } + }, + [62759]= { + ["skill"]= 62759, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 749, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25738" + } + }, + [31585]= { + ["skill"]= 31585, + ["name"]= "Careful Conservationist", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "10% reduced Flask Charges used", + "Flasks applied to you have 5% increased Effect", + "20% increased Flask Charges gained if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 750, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "20736" + }, + ["in"]= { + "3676" + } + }, + [3676]= { + ["skill"]= 3676, + ["name"]= "Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Charges gained" + }, + ["group"]= 750, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31585" + }, + ["in"]= { + "17790" + } + }, + [17790]= { + ["skill"]= 17790, + ["name"]= "Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Charges gained" + }, + ["group"]= 750, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "3676", + "1461" + }, + ["in"]= {} + }, + [20736]= { + ["skill"]= 20736, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 750, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31585" + } + }, + [15697]= { + ["skill"]= 15697, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 751, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52030" + } + }, + [2413]= { + ["skill"]= 2413, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52030" + }, + ["in"]= { + "30826" + } + }, + [30826]= { + ["skill"]= 30826, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2413", + "11800", + "1461" + }, + ["in"]= {} + }, + [31438]= { + ["skill"]= 31438, + ["name"]= "Tincture Mana on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode2.png", + ["stats"]= { + "Recover 1% of Mana on Kill while you have a Tincture active" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "52030" + }, + ["in"]= { + "11800" + } + }, + [11800]= { + ["skill"]= 11800, + ["name"]= "Tincture Mana on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode2.png", + ["stats"]= { + "Recover 1% of Mana on Kill while you have a Tincture active" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31438" + }, + ["in"]= { + "30826" + } + }, + [52030]= { + ["skill"]= 52030, + ["name"]= "Burst of Energy", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "AmberOil" + }, + ["stats"]= { + "Recover 15% of Mana when you activate a Tincture" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15697" + }, + ["in"]= { + "2413", + "31438" + } + }, + [9469]= { + ["skill"]= 9469, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "25% increased Critical Strike Chance" + }, + ["group"]= 752, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "59220", + "65502" + } + }, + [59220]= { + ["skill"]= 59220, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "25% increased Critical Strike Chance" + }, + ["group"]= 752, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9469", + "20807" + }, + ["in"]= {} + }, + [65502]= { + ["skill"]= 65502, + ["name"]= "Heartseeker", + ["icon"]= "Art/2DArt/SkillIcons/passives/heartseeker.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier" + }, + ["group"]= 752, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9469", + "31039" + }, + ["in"]= {} + }, + [31039]= { + ["skill"]= 31039, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 752, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65502" + } + }, + [57080]= { + ["skill"]= 57080, + ["name"]= "Accuracy and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "4% increased Attack Speed", + "10% increased Accuracy Rating" + }, + ["group"]= 753, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42104", + "20807" + }, + ["in"]= {} + }, + [42104]= { + ["skill"]= 42104, + ["name"]= "Accuracy and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "4% increased Attack Speed", + "10% increased Accuracy Rating" + }, + ["group"]= 753, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "57080", + "49621" + } + }, + [49621]= { + ["skill"]= 49621, + ["name"]= "Acuity", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "6% increased Attack Speed", + "+100 to Accuracy Rating", + "20% increased Accuracy Rating" + }, + ["group"]= 753, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42104", + "58302" + }, + ["in"]= {} + }, + [58302]= { + ["skill"]= 58302, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 753, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49621" + } + }, + [5802]= { + ["skill"]= 5802, + ["name"]= "Dagger Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 10% increased Damage with Hits and Ailments", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 754, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "3424", + "49900" + }, + ["in"]= {} + }, + [3424]= { + ["skill"]= 3424, + ["name"]= "Dagger Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 10% increased Damage with Hits and Ailments", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 754, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "1405" + }, + ["in"]= { + "5802" + } + }, + [1405]= { + ["skill"]= 1405, + ["name"]= "From the Shadows", + ["icon"]= "Art/2DArt/SkillIcons/passives/daggerpenetration.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "12% increased Attack Speed with Daggers", + "40% increased Elusive Effect" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 754, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "31197" + }, + ["in"]= { + "3424" + } + }, + [31197]= { + ["skill"]= 31197, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 754, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1405" + } + }, + [35255]= { + ["skill"]= 35255, + ["name"]= "Ghost Dance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Recover Energy Shield to above Evasion Rating\nEvery 2 seconds, gain a Ghost Shroud, up to a maximum of 3\nWhen Hit, lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating" + }, + ["flavourText"]= { + "Surround yourself with the dead,", + "so that you may avoid joining them." + }, + ["group"]= 755, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18182" + }, + ["in"]= {} + }, + [13375]= { + ["skill"]= 13375, + ["name"]= "Multishot", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "Attacks fire an additional Projectile" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "49391" + }, + ["in"]= { + "20953" + } + }, + [65427]= { + ["skill"]= 65427, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "20953" + }, + ["in"]= { + "45202" + } + }, + [45202]= { + ["skill"]= 45202, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "65427" + }, + ["in"]= { + "36287" + } + }, + [20953]= { + ["skill"]= 20953, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "13375" + }, + ["in"]= { + "65427" + } + }, + [49391]= { + ["skill"]= 49391, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 756, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13375" + } + }, + [17749]= { + ["skill"]= 17749, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 757, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18747" + }, + ["in"]= { + "18182" + } + }, + [18747]= { + ["skill"]= 18747, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 757, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "52789" + }, + ["in"]= { + "17749" + } + }, + [52789]= { + ["skill"]= 52789, + ["name"]= "Circle of Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "Gain 10 Life per Enemy Hit with Attacks", + "12% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 757, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "10414" + }, + ["in"]= { + "18747" + } + }, + [10414]= { + ["skill"]= 10414, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 757, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52789" + } + }, + [35851]= { + ["skill"]= 35851, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Critical Strike Chance", + "10% increased Accuracy Rating" + }, + ["group"]= 758, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "47484" + }, + ["in"]= { + "60592" + } + }, + [60592]= { + ["skill"]= 60592, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Critical Strike Chance", + "10% increased Accuracy Rating" + }, + ["group"]= 758, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35851" + }, + ["in"]= { + "46277" + } + }, + [47484]= { + ["skill"]= 47484, + ["name"]= "Depth Perception", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "TealOil" + }, + ["stats"]= { + "+100 to Accuracy Rating", + "25% increased Critical Strike Chance", + "20% increased Accuracy Rating" + }, + ["group"]= 758, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "26148" + }, + ["in"]= { + "35851" + } + }, + [26148]= { + ["skill"]= 26148, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 758, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47484" + } + }, + [24426]= { + ["skill"]= 24426, + ["name"]= "Ghost Reaver", + ["icon"]= "Art/2DArt/SkillIcons/passives/ghostreaver.png", + ["isKeystone"]= true, + ["stats"]= { + "Leech Energy Shield instead of Life\nMaximum total Energy Shield Recovery per second from Leech is doubled\nCannot Recharge Energy Shield" + }, + ["flavourText"]= { + "I will wear your ghost, and you will die twice: against me, and for me." + }, + ["group"]= 759, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "53456" + }, + ["in"]= {} + }, + [18182]= { + ["skill"]= 18182, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 760, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "28753", + "55414", + "17749" + }, + ["in"]= { + "60259", + "63228", + "53456", + "35255", + "56295" + } + }, + [56295]= { + ["skill"]= 56295, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 761, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18182" + }, + ["in"]= { + "27656", + "46277" + } + }, + [46277]= { + ["skill"]= 46277, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 762, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "56295", + "5629", + "60592", + "4269" + }, + ["in"]= { + "38995", + "25260", + "49900" + } + }, + [49900]= { + ["skill"]= 49900, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 763, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "46277" + }, + ["in"]= { + "1461", + "5802", + "1648" + } + }, + [36287]= { + ["skill"]= 36287, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 764, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "1461", + "20807", + "10843", + "62744", + "45202" + }, + ["in"]= { + "64235", + "54307" + } + }, + [20807]= { + ["skill"]= 20807, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 765, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12412", + "61573", + "10840" + }, + ["in"]= { + "14292", + "16079", + "59220", + "57080", + "36287", + "38149" + } + }, + [12412]= { + ["skill"]= 12412, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 766, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "54354" + }, + ["in"]= { + "32555", + "36221", + "64769", + "20807", + "63618" + } + }, + [48508]= { + ["skill"]= 48508, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 767, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15290" + } + }, + [42632]= { + ["skill"]= 42632, + ["name"]= "Totem Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png", + ["stats"]= { + "20% increased Critical Strike Chance with Totem Skills", + "+10% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "15290" + }, + ["in"]= { + "27444" + } + }, + [27444]= { + ["skill"]= 27444, + ["name"]= "Totem Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png", + ["stats"]= { + "20% increased Critical Strike Chance with Totem Skills", + "+10% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42632" + }, + ["in"]= { + "63618" + } + }, + [4750]= { + ["skill"]= 4750, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "15% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "58288" + }, + ["in"]= { + "63618" + } + }, + [58288]= { + ["skill"]= 58288, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "15% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15290" + }, + ["in"]= { + "4750" + } + }, + [63618]= { + ["skill"]= 63618, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12412", + "27444", + "4750" + }, + ["in"]= {} + }, + [15290]= { + ["skill"]= 15290, + ["name"]= "Watchtowers", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "24% increased Totem Damage", + "Attack Skills have +1 to maximum number of Summoned Ballista Totems", + "1% increased Movement Speed per Summoned Totem" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48508" + }, + ["in"]= { + "42632", + "58288" + } + }, + [27872]= { + ["skill"]= 27872, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 768, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9055", + "33777", + "61689" + } + }, + [40409]= { + ["skill"]= 40409, + ["name"]= "Mine Detonation Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "Mines have 20% increased Detonation Speed" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "9055" + }, + ["in"]= { + "33777" + } + }, + [4546]= { + ["skill"]= 4546, + ["name"]= "Mine Detonation Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "Mines have 20% increased Detonation Speed" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "61689" + }, + ["in"]= { + "9055" + } + }, + [9055]= { + ["skill"]= 9055, + ["name"]= "Volatile Mines", + ["icon"]= "Art/2DArt/SkillIcons/passives/volitilemines.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Mine Duration", + "Can have up to 3 additional Remote Mines placed at a time", + "Mines have 30% increased Detonation Speed" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "4546", + "27872" + }, + ["in"]= { + "40409" + } + }, + [33777]= { + ["skill"]= 33777, + ["name"]= "Devastating Devices", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance with Mines", + "+25% to Critical Strike Multiplier with Mines", + "10% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "27872", + "40409" + }, + ["in"]= { + "35334" + } + }, + [1655]= { + ["skill"]= 1655, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Mine Damage" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "61689" + }, + ["in"]= { + "29549" + } + }, + [8027]= { + ["skill"]= 8027, + ["name"]= "Mine Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "20% increased Critical Strike Chance with Mines", + "+10% to Critical Strike Multiplier with Mines" + }, + ["group"]= 768, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35334" + }, + ["in"]= { + "2260" + } + }, + [2260]= { + ["skill"]= 2260, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Mine Damage" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "29549", + "8027" + }, + ["in"]= { + "53456" + } + }, + [35334]= { + ["skill"]= 35334, + ["name"]= "Mine Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "20% increased Critical Strike Chance with Mines", + "+10% to Critical Strike Multiplier with Mines" + }, + ["group"]= 768, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "33777" + }, + ["in"]= { + "8027" + } + }, + [29549]= { + ["skill"]= 29549, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Mine Damage" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "1655" + }, + ["in"]= { + "2260" + } + }, + [61689]= { + ["skill"]= 61689, + ["name"]= "Explosive Elements", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsradius.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Mine Damage Penetrates 10% Elemental Resistances" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "27872" + }, + ["in"]= { + "4546", + "1655" + } + }, + [54307]= { + ["skill"]= 54307, + ["name"]= "Acrobatics", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png", + ["isKeystone"]= true, + ["stats"]= { + "Modifiers to Chance to Suppress Spell Damage instead apply to Chance to Dodge Spell Hits at 50% of their value\nMaximum Chance to Dodge Spell Hits is 75%" + }, + ["flavourText"]= { + "Light and unadorned, like wind on water, you will be." + }, + ["group"]= 769, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36287" + }, + ["in"]= {} + }, + [23407]= { + ["skill"]= 23407, + ["name"]= "Perfect Agony", + ["icon"]= "Art/2DArt/SkillIcons/passives/CritAilments.png", + ["isKeystone"]= true, + ["stats"]= { + "Damage over Time Multiplier for Ailments is equal to Critical Strike Multiplier\nCritical Strikes do not deal extra Damage\nNon-Critical Strikes cannot inflict Ailments" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["flavourText"]= { + "Your foes will beg not for their pitiful lives, but for a quick, merciful death." + }, + ["group"]= 770, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "1461" + }, + ["in"]= {} + }, + [10840]= { + ["skill"]= 10840, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 771, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "35086", + "13935" + }, + ["in"]= { + "20807" + } + }, + [35086]= { + ["skill"]= 35086, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 771, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13935" + }, + ["in"]= { + "10840" + } + }, + [13935]= { + ["skill"]= 13935, + ["name"]= "Thrill of Battle", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Gain 2 Mana per Enemy Hit with Attacks", + "25% increased Cost Efficiency of Attacks" + }, + ["group"]= 771, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "3571" + }, + ["in"]= { + "10840", + "35086" + } + }, + [3571]= { + ["skill"]= 3571, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 771, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13935" + } + }, + [56519]= { + ["skill"]= 56519, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 772, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37425" + } + }, + [655]= { + ["skill"]= 655, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "45246" + }, + ["in"]= { + "61573" + } + }, + [45246]= { + ["skill"]= 45246, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "37425" + }, + ["in"]= { + "655" + } + }, + [61573]= { + ["skill"]= 61573, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 8% increased Effect" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "655" + }, + ["in"]= { + "20807", + "6264" + } + }, + [6264]= { + ["skill"]= 6264, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "61573" + }, + ["in"]= { + "37425" + } + }, + [37425]= { + ["skill"]= 37425, + ["name"]= "Practised Reapplication", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "SepiaOil" + }, + ["stats"]= { + "25% increased Tincture Cooldown Recovery Rate" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56519", + "6264" + }, + ["in"]= { + "45246" + } + }, + [32763]= { + ["skill"]= 32763, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 4, + ["proxy"]= "48132" + }, + ["stats"]= {}, + ["group"]= 773, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "23334" + }, + ["in"]= { + "48132" + } + }, + [23334]= { + ["skill"]= 23334, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "4% increased Projectile Damage" + }, + ["group"]= 773, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "6797" + }, + ["in"]= { + "32763" + } + }, + [6797]= { + ["skill"]= 6797, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "4% increased Projectile Damage" + }, + ["group"]= 773, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "1461", + "23334" + } + }, + [4269]= { + ["skill"]= 4269, + ["name"]= "Damage against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "20% increased Damage with Hits and Ailments against Marked Enemy" + }, + ["group"]= 774, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "55880" + }, + ["in"]= { + "46277" + } + }, + [55880]= { + ["skill"]= 55880, + ["name"]= "Damage against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "20% increased Damage with Hits and Ailments against Marked Enemy" + }, + ["group"]= 774, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32681" + }, + ["in"]= { + "4269" + } + }, + [32681]= { + ["skill"]= 32681, + ["name"]= "Mark the Prey", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "Marked Enemy has 10% reduced Accuracy Rating", + "Marked Enemy takes 10% increased Damage" + }, + ["group"]= 774, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "32657" + }, + ["in"]= { + "55880" + } + }, + [32657]= { + ["skill"]= 32657, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 774, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32681" + } + }, + [55414]= { + ["skill"]= 55414, + ["name"]= "Dagger Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + ["stats"]= { + "Dagger Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "47422" + }, + ["in"]= { + "18182", + "22261" + } + }, + [22261]= { + ["skill"]= 22261, + ["name"]= "Dagger Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + ["stats"]= { + "Dagger Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "55414" + }, + ["in"]= { + "56174" + } + }, + [56174]= { + ["skill"]= 56174, + ["name"]= "Dagger Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + ["stats"]= { + "Dagger Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "38864", + "22261" + }, + ["in"]= {} + }, + [38864]= { + ["skill"]= 38864, + ["name"]= "Dagger Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + ["stats"]= { + "Dagger Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "36490" + }, + ["in"]= { + "56174" + } + }, + [47422]= { + ["skill"]= 47422, + ["name"]= "Dagger Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + ["stats"]= { + "18% increased Critical Strike Chance with Daggers", + "+14% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "44134" + }, + ["in"]= { + "55414" + } + }, + [44134]= { + ["skill"]= 44134, + ["name"]= "Dagger Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + ["stats"]= { + "18% increased Critical Strike Chance with Daggers", + "+14% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "11489" + }, + ["in"]= { + "47422" + } + }, + [11489]= { + ["skill"]= 11489, + ["name"]= "Dagger Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + ["stats"]= { + "18% increased Critical Strike Chance with Daggers", + "+14% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "8920" + }, + ["in"]= { + "44134" + } + }, + [8920]= { + ["skill"]= 8920, + ["name"]= "Backstabbing", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Critical Strike Chance with Daggers", + "+30% to Critical Strike Multiplier with Daggers", + "100% increased Critical Strike Chance against Enemies that are on Full Life" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "7634" + }, + ["in"]= { + "11489" + } + }, + [36490]= { + ["skill"]= 36490, + ["name"]= "Flaying", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaying.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "Dagger Attacks deal 24% increased Damage with Hits and Ailments", + "12% increased Attack Speed with Daggers", + "18% increased Accuracy Rating with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "7634" + }, + ["in"]= { + "38864" + } + }, + [7634]= { + ["skill"]= 7634, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 775, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "8920", + "36490" + } + }, + [36225]= { + ["skill"]= 36225, + ["name"]= "Claw Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws", + "+10% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "49568" + }, + ["in"]= { + "5629" + } + }, + [30745]= { + ["skill"]= 30745, + ["name"]= "Claw Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws", + "+10% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "15614" + }, + ["in"]= { + "49568" + } + }, + [49568]= { + ["skill"]= 49568, + ["name"]= "Claw Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws", + "+10% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "30745" + }, + ["in"]= { + "36225" + } + }, + [17908]= { + ["skill"]= 17908, + ["name"]= "Claw Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "Claw Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "5629" + }, + ["in"]= { + "35384" + } + }, + [25775]= { + ["skill"]= 25775, + ["name"]= "Claw Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "Claw Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "35384" + }, + ["in"]= { + "54791" + } + }, + [5629]= { + ["skill"]= 5629, + ["name"]= "Claw Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "Claw Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "36225" + }, + ["in"]= { + "46277", + "17908" + } + }, + [35384]= { + ["skill"]= 35384, + ["name"]= "Claw Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "Claw Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "17908" + }, + ["in"]= { + "25775" + } + }, + [15614]= { + ["skill"]= 15614, + ["name"]= "Claws of the Hawk", + ["icon"]= "Art/2DArt/SkillIcons/passives/talonsofmurder.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance with Claws", + "+20% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "19050" + }, + ["in"]= { + "30745" + } + }, + [54791]= { + ["skill"]= 54791, + ["name"]= "Claws of the Magpie", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "Claw Attacks deal 25% increased Damage with Hits and Ailments", + "10% increased Attack Speed with Claws", + "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "25775", + "19050" + }, + ["in"]= {} + }, + [19050]= { + ["skill"]= 19050, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 776, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15614", + "54791" + } + }, + [11811]= { + ["skill"]= 11811, + ["name"]= "Poison Chance and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "5% increased Poison Duration", + "10% chance to Poison on Hit" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31359" + }, + ["in"]= { + "1648" + } + }, + [28903]= { + ["skill"]= 28903, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 777, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31359" + } + }, + [20127]= { + ["skill"]= 20127, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31359" + }, + ["in"]= { + "37785" + } + }, + [1648]= { + ["skill"]= 1648, + ["name"]= "Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "15% chance to Poison on Hit" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11811", + "37785", + "49900" + }, + ["in"]= {} + }, + [31359]= { + ["skill"]= 31359, + ["name"]= "Fatal Toxins", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "+10% to Damage over Time Multiplier for Poison", + "+10% to Chaos Resistance", + "30% increased Damage with Poison" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "28903" + }, + ["in"]= { + "11811", + "20127" + } + }, + [37785]= { + ["skill"]= 37785, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "20127" + }, + ["in"]= { + "1648" + } + }, + [10429]= { + ["skill"]= 10429, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 778, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55380", + "59605", + "21297" + } + }, + [12824]= { + ["skill"]= 12824, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Trap Damage" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "55380" + }, + ["in"]= { + "45827" + } + }, + [45827]= { + ["skill"]= 45827, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Trap Damage" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "12824" + }, + ["in"]= { + "28753" + } + }, + [28753]= { + ["skill"]= 28753, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Trap Damage" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "45827", + "30319" + }, + ["in"]= { + "18182" + } + }, + [55380]= { + ["skill"]= 55380, + ["name"]= "Clever Construction", + ["icon"]= "Art/2DArt/SkillIcons/passives/cleverconstruction.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "10% Chance for Traps to Trigger an additional time" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "10429" + }, + ["in"]= { + "12824", + "54574" + } + }, + [30319]= { + ["skill"]= 30319, + ["name"]= "Trap Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "24% increased Critical Strike Chance with Traps", + "+8% to Critical Strike Multiplier with Traps" + }, + ["group"]= 778, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "32432" + }, + ["in"]= { + "28753" + } + }, + [54574]= { + ["skill"]= 54574, + ["name"]= "Trap Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "30% increased Trap Trigger Area of Effect" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "55380" + }, + ["in"]= { + "59605" + } + }, + [59605]= { + ["skill"]= 59605, + ["name"]= "Unstable Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trap2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Trap Damage", + "12% increased Area of Effect", + "50% increased Trap Trigger Area of Effect" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "10429", + "54574" + }, + ["in"]= { + "54974" + } + }, + [54974]= { + ["skill"]= 54974, + ["name"]= "Trap Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "30% increased Trap Trigger Area of Effect" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "59605" + }, + ["in"]= { + "21297" + } + }, + [32432]= { + ["skill"]= 32432, + ["name"]= "Trap Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "24% increased Critical Strike Chance with Traps", + "+8% to Critical Strike Multiplier with Traps" + }, + ["group"]= 778, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "30319", + "21297" + } + }, + [21297]= { + ["skill"]= 21297, + ["name"]= "High Explosives", + ["icon"]= "Art/2DArt/SkillIcons/passives/highexplosives.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance with Traps", + "+20% to Critical Strike Multiplier with Traps", + "15% chance to gain a Power Charge when your Trap is triggered by an Enemy" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "32432", + "10429", + "54974" + }, + ["in"]= {} + }, + [59151]= { + ["skill"]= 59151, + ["name"]= "Brutal Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/cruelblade.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "+6% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 24% increased Damage with Hits and Ailments", + "20% chance to gain a Frenzy Charge when you Block Attack Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "56509", + "31291" + }, + ["in"]= {} + }, + [31291]= { + ["skill"]= 31291, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 779, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59151", + "1568" + } + }, + [12720]= { + ["skill"]= 12720, + ["name"]= "Sword Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "56509" + }, + ["in"]= { + "52213" + } + }, + [29856]= { + ["skill"]= 29856, + ["name"]= "Sword Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracysword.png", + ["stats"]= { + "20% increased Critical Strike Chance with Swords", + "+10% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "54354" + }, + ["in"]= { + "1698" + } + }, + [1698]= { + ["skill"]= 1698, + ["name"]= "Sword Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracysword.png", + ["stats"]= { + "20% increased Critical Strike Chance with Swords", + "+10% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "29856" + }, + ["in"]= { + "6108" + } + }, + [1568]= { + ["skill"]= 1568, + ["name"]= "Fatal Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/FatalBlade.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance with Swords", + "+25% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "6108", + "31291" + }, + ["in"]= {} + }, + [54354]= { + ["skill"]= 54354, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "12412", + "29856", + "52213" + } + }, + [6108]= { + ["skill"]= 6108, + ["name"]= "Sword Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracysword.png", + ["stats"]= { + "20% increased Critical Strike Chance with Swords", + "+10% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "1698" + }, + ["in"]= { + "1568" + } + }, + [56509]= { + ["skill"]= 56509, + ["name"]= "Sword Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59151", + "12720" + } + }, + [52213]= { + ["skill"]= 52213, + ["name"]= "Sword Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "54354", + "12720" + }, + ["in"]= {} + }, + [57006]= { + ["skill"]= 57006, + ["name"]= "Vengeant Cascade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Boomerang.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Returning Projectiles have 150% increased Speed" + }, + ["group"]= 780, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [45329]= { + ["skill"]= 45329, + ["name"]= "Trick Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChainingProjectiles.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Chaining range" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "38947", + "5826" + }, + ["in"]= {} + }, + [7069]= { + ["skill"]= 7069, + ["name"]= "Split Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Projectiles have 50% chance for an additional Projectile when Forking" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "5826" + }, + ["in"]= { + "51953", + "7609" + } + }, + [5826]= { + ["skill"]= 5826, + ["name"]= "Projectile Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16644, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each Enemy Pierced" + } + }, + { + ["effect"]= 2198, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each time they have Chained" + } + }, + { + ["effect"]= 52404, + ["stats"]= { + "1% increased Projectile Damage per 16 Dexterity" + } + }, + { + ["effect"]= 14813, + ["stats"]= { + "Knock Back Enemies if you get a Critical Strike with Projectile Damage" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + { + ["effect"]= 1167, + ["stats"]= { + "15% more Projectile Speed" + } + }, + { + ["effect"]= 44240, + ["stats"]= { + "15% less Projectile Speed" + } + } + }, + ["stats"]= {}, + ["group"]= 781, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45329", + "7069", + "21228" + } + }, + [10843]= { + ["skill"]= 10843, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "33374" + }, + ["in"]= { + "36287", + "31222", + "38947" + } + }, + [33374]= { + ["skill"]= 33374, + ["name"]= "Chance for Extra Fork Projectile", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "Projectiles have 25% chance for an additional Projectile when Forking" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "51953", + "7609" + }, + ["in"]= { + "10843" + } + }, + [31222]= { + ["skill"]= 31222, + ["name"]= "Pierce", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "Projectiles Pierce an additional Target" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "10843" + }, + ["in"]= { + "21228" + } + }, + [38947]= { + ["skill"]= 38947, + ["name"]= "Chain Distance", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "15% increased Chaining range" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "10843" + }, + ["in"]= { + "45329" + } + }, + [21228]= { + ["skill"]= 21228, + ["name"]= "Piercing Shots", + ["icon"]= "Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "Projectiles Pierce 2 additional Targets" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "31222", + "5826" + }, + ["in"]= {} + }, + [51953]= { + ["skill"]= 51953, + ["name"]= "Forking Angle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "50% increased Projectile Fork angle" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "7069" + }, + ["in"]= { + "33374" + } + }, + [7609]= { + ["skill"]= 7609, + ["name"]= "Forking Angle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "50% reduced Projectile Fork angle" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "7069" + }, + ["in"]= { + "33374" + } + }, + [39665]= { + ["skill"]= 39665, + ["name"]= "Bow Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "5% increased Attack Speed with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "2185" + }, + ["in"]= { + "23912" + } + }, + [38149]= { + ["skill"]= 38149, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "55750", + "2185", + "20807" + }, + ["in"]= {} + }, + [32514]= { + ["skill"]= 32514, + ["name"]= "Bow Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "18% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "12948", + "49459" + }, + ["in"]= {} + }, + [55750]= { + ["skill"]= 55750, + ["name"]= "Bow Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "18% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "38149", + "12948" + } + }, + [2185]= { + ["skill"]= 2185, + ["name"]= "Bow Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "5% increased Attack Speed with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "39665", + "38149" + } + }, + [23912]= { + ["skill"]= 23912, + ["name"]= "Bow Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "5% increased Attack Speed with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "39665" + }, + ["in"]= { + "51881" + } + }, + [12948]= { + ["skill"]= 12948, + ["name"]= "Bow Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "18% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "55750" + }, + ["in"]= { + "32514" + } + }, + [51881]= { + ["skill"]= 51881, + ["name"]= "Master Fletcher", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterfletcher.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Bow Attacks fire an additional Arrow" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "23912", + "6427" + }, + ["in"]= {} + }, + [49459]= { + ["skill"]= 49459, + ["name"]= "King of the Hill", + ["icon"]= "Art/2DArt/SkillIcons/passives/kingofthehill.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "100% increased Critical Strike Chance with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "6427" + }, + ["in"]= { + "32514" + } + }, + [6427]= { + ["skill"]= 6427, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 782, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51881", + "49459" + } + }, + [6910]= { + ["skill"]= 6910, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "35926", + ["parent"]= "32763" + }, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "35926", + "48132" + }, + ["in"]= { + "49684" + } + }, + [49684]= { + ["skill"]= 49684, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "33833", + ["parent"]= "32763" + }, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "6910" + }, + ["in"]= { + "33753", + "33833" + } + }, + [33753]= { + ["skill"]= 33753, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "50179", + ["parent"]= "32763" + }, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "49684" + }, + ["in"]= { + "48132", + "50179" + } + }, + [48132]= { + ["skill"]= 48132, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "32763", + "33753" + }, + ["in"]= { + "6910" + } + }, + [35926]= { + ["skill"]= 35926, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 784, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "6910", + "18436" + } + }, + [18436]= { + ["skill"]= 18436, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "36414", + ["parent"]= "6910" + }, + ["stats"]= {}, + ["group"]= 784, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "35926" + }, + ["in"]= { + "36414" + } + }, + [50179]= { + ["skill"]= 50179, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 785, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "33753" + }, + ["in"]= { + "22748" + } + }, + [22748]= { + ["skill"]= 22748, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "56439", + ["parent"]= "33753" + }, + ["stats"]= {}, + ["group"]= 785, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "50179" + }, + ["in"]= { + "56439" + } + }, + [36414]= { + ["skill"]= 36414, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 786, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "18436" + }, + ["in"]= {} + }, + [56439]= { + ["skill"]= 56439, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 787, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= { + "22748" + }, + ["in"]= {} + }, + [33833]= { + ["skill"]= 33833, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 788, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49684" + }, + ["in"]= { + "11150" + } + }, + [11150]= { + ["skill"]= 11150, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "10643", + ["parent"]= "49684" + }, + ["stats"]= {}, + ["group"]= 788, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33833" + }, + ["in"]= { + "10643" + } + }, + [10643]= { + ["skill"]= 10643, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 789, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "11150" + }, + ["in"]= {} + }, + [21264]= { + ["skill"]= 21264, + ["name"]= "Knife in the Back", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png", + ["ascendancyName"]= "Assassin", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "100% more Critical Strike Chance against Enemies that are not on Low Life", + "+100% to Critical Strike Multiplier against Enemies that are on Low Life", + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)", + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + }, + ["group"]= 790, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46676" + } + }, + [18335]= { + ["skill"]= 18335, + ["name"]= "For the Jugular", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png", + ["ascendancyName"]= "Assassin", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are not on Low Life", + "100% more Critical Strike Chance against Enemies that are on Low Life", + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)", + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + }, + ["group"]= 791, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46676" + } + }, + [12850]= { + ["skill"]= 12850, + ["name"]= "Critical Strike Chance, Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "15% increased Power Charge Duration", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "4242" + }, + ["in"]= { + "58229" + } + }, + [19598]= { + ["skill"]= 19598, + ["name"]= "Toxic Delivery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Poison you inflict with Critical Strikes deals 20% more Damage", + "5% increased Poison Duration for each Poison you have inflicted Recently, up\nto a maximum of 100%", + "Recover 0.5% of Life per Poison affecting Enemies you Kill" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "23024", + "47531" + }, + ["in"]= {} + }, + [33954]= { + ["skill"]= 33954, + ["name"]= "Critical Strike Chance, Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "10% increased Spell Damage", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 25, + ["out"]= { + "1945" + }, + ["in"]= { + "4242" + } + }, + [1945]= { + ["skill"]= 1945, + ["name"]= "Mystical Infusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Spell Critical Strike Chance {BifurcatedCrit|Bifurcates}", + "30% less Spell Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= {}, + ["in"]= { + "33954" + } + }, + [43215]= { + ["skill"]= 43215, + ["name"]= "Critical Strike Chance, Elusive Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "10% increased Elusive Effect", + "15% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "28782" + }, + ["in"]= { + "58229" + } + }, + [28782]= { + ["skill"]= 28782, + ["name"]= "Mistwalker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Elusive.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Gain Elusive on Critical Strike", + "100% increased Elusive Effect", + "You take no Extra Damage from Critical Strikes while Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "43215" + } + }, + [51402]= { + ["skill"]= 51402, + ["name"]= "Critical Strike Chance, Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "4% increased maximum Life", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "29844" + }, + ["in"]= { + "58229" + } + }, + [29844]= { + ["skill"]= 29844, + ["name"]= "Shadowed Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "40% of Physical Damage taken Recouped as Life", + "Unaffected by Damaging Ailments" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51402" + } + }, + [46676]= { + ["skill"]= 46676, + ["name"]= "Assassination Style", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the two attached options)" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "21264", + "18335" + }, + ["in"]= { + "9014", + "6064" + } + }, + [21192]= { + ["skill"]= 21192, + ["name"]= "Infused Toxins", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "All Damage from Hits can Poison" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "47531" + } + }, + [4242]= { + ["skill"]= 4242, + ["name"]= "Unstable Infusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "15% chance to gain a Power Charge on Critical Strike", + "30% chance to gain a Power Charge on Non-Critical Strike", + "+1 to Maximum Power Charges" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "55686", + "33954" + }, + ["in"]= { + "12850" + } + }, + [47531]= { + ["skill"]= 47531, + ["name"]= "Critical Strike Chance, Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "15% chance to Poison on Hit", + "15% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 39, + ["out"]= { + "21192" + }, + ["in"]= { + "19598" + } + }, + [55686]= { + ["skill"]= 55686, + ["name"]= "Critical Strike Chance, Mark Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "10% increased Effect of your Marks", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= { + "48239" + }, + ["in"]= { + "4242" + } + }, + [48239]= { + ["skill"]= 48239, + ["name"]= "Deathmarked", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Trigger Level 30 Assassin's Mark on Attack Critical Strike against\na Rare or Unique Enemy and you have no Mark", + "Mark Skills Cost no Mana", + "10% increased Effect of your Marks per maximum Power Charge", + "3% of Leech is Instant per maximum Power Charge" + }, + ["reminderText"]= { + "(Curses a single enemy, making them more vulnerable to Critical Strikes. Killing the cursed enemy will grant life and mana, and a power charge. You can only have one Mark at a time)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 19, + ["out"]= {}, + ["in"]= { + "55686" + } + }, + [9014]= { + ["skill"]= 9014, + ["name"]= "Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "+10% to Critical Strike Multiplier", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "46676" + }, + ["in"]= { + "19083" + } + }, + [6064]= { + ["skill"]= 6064, + ["name"]= "Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "+10% to Critical Strike Multiplier", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "46676" + }, + ["in"]= { + "58229" + } + }, + [19083]= { + ["skill"]= 19083, + ["name"]= "Opportunistic", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "25% more Damage while there is at most one Rare or Unique Enemy nearby", + "Damage cannot be Reflected", + "35% less Damage taken while there are at least two Rare or Unique Enemies nearby" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "9014" + }, + ["in"]= {} + }, + [23024]= { + ["skill"]= 23024, + ["name"]= "Critical Strike Chance, Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "15% chance to Poison on Hit", + "15% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "19598", + "58229" + } + }, + [58229]= { + ["skill"]= 58229, + ["name"]= "Assassin", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Assassin", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 792, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12850", + "6064", + "43215", + "23024", + "51402" + }, + ["in"]= { + "44683" + } + }, + [36242]= { + ["skill"]= 36242, + ["name"]= "Flask Effect and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "8% increased Flask Effect Duration", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "51101" + }, + ["in"]= { + "63293" + } + }, + [6038]= { + ["skill"]= 6038, + ["name"]= "Master Distiller", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Grant bonuses to Non-Channelling Skills you use by consuming 3 Charges from a Flask of\neach of the following types, if possible:", + "If Diamond Flask Charges are consumed, 250% increased Critical Strike Chance", + "If Bismuth Flask Charges are consumed, Penetrate 25% Elemental Resistances", + "If Amethyst Flask Charges are consumed, 37% of Physical Damage as Extra Chaos Damage" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59800" + } + }, + [32662]= { + ["skill"]= 32662, + ["name"]= "Flask Effect, Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "15% increased Chaos Damage", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "40813" + }, + ["in"]= { + "64111" + } + }, + [40813]= { + ["skill"]= 40813, + ["name"]= "Nature's Reprisal", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "25% chance to inflict Withered for 2 seconds on Hit", + "50% increased Effect of Withered" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "32662" + } + }, + [20480]= { + ["skill"]= 20480, + ["name"]= "Flask Effect, Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Flasks applied to you have 5% increased Effect", + "10% increased Poison Duration" + }, + ["group"]= 793, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "1697", + "64111" + } + }, + [1697]= { + ["skill"]= 1697, + ["name"]= "Master Toxicist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "When you kill a Poisoned Enemy during any Flask Effect, Enemies within 1.5 metres are Poisoned", + "Poisons you inflict during any Flask Effect have 20% chance to deal 100% more Damage" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "20480" + }, + ["in"]= {} + }, + [51101]= { + ["skill"]= 51101, + ["name"]= "Nature's Adrenaline", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Flasks gain 3 Charges every 3 seconds" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "14156" + }, + ["in"]= { + "36242" + } + }, + [14156]= { + ["skill"]= 14156, + ["name"]= "Flask Effect and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "8% increased Flask Effect Duration", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "51101", + "64111" + } + }, + [63293]= { + ["skill"]= 63293, + ["name"]= "Master Surgeon", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Life Flask Effects are not removed when Unreserved Life is Filled\nLife Flask Effects do not Queue", + "50% less Life Recovery from Flasks" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "36242" + }, + ["in"]= {} + }, + [32640]= { + ["skill"]= 32640, + ["name"]= "Flask Effect and Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "10% increased Flask Charges gained", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "65296", + "64111" + } + }, + [65296]= { + ["skill"]= 65296, + ["name"]= "Nature's Boon", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Magic Utility Flasks applied to you have 30% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "32640" + }, + ["in"]= { + "40631" + } + }, + [40631]= { + ["skill"]= 40631, + ["name"]= "Flask Effect and Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "10% increased Flask Charges gained", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 39, + ["out"]= { + "65296", + "61805" + }, + ["in"]= {} + }, + [61805]= { + ["skill"]= 61805, + ["name"]= "Master Alchemist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Removes Elemental Ailments when you use a Flask", + "50% chance for Flasks you use to not consume Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "40631" + } + }, + [59800]= { + ["skill"]= 59800, + ["name"]= "Flask Effect and Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "10% increased Flask Charges gained", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "6038" + }, + ["in"]= { + "64111" + } + }, + [64111]= { + ["skill"]= 64111, + ["name"]= "Pathfinder", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Pathfinder", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 793, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32662", + "59800", + "32640", + "14156", + "20480" + }, + ["in"]= { + "50459" + } + }, + [48999]= { + ["skill"]= 48999, + ["name"]= "Soul Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "2% of Damage Leeched as Energy Shield", + "Energy Shield Leech effects are not removed when Energy Shield is Filled" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "2336" + } + }, + [37191]= { + ["skill"]= 37191, + ["name"]= "Evasion and Energy Shield, Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "15% increased Frenzy Charge Duration" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "32947", + "55236" + } + }, + [41891]= { + ["skill"]= 41891, + ["name"]= "Spellbreaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "Prevent +15% of Suppressed Spell Damage while on Full Energy Shield", + "50% chance for Energy Shield Recharge to start when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "58454" + } + }, + [2336]= { + ["skill"]= 2336, + ["name"]= "Evasion and Energy Shield, Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "40% increased total Recovery per second from Energy Shield Leech" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 18, + ["out"]= { + "48999" + }, + ["in"]= { + "29825" + } + }, + [23225]= { + ["skill"]= 23225, + ["name"]= "One Step Ahead", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "Your Action Speed is at least 90% of base value", + "Nearby Enemy Monsters' Action Speed is at most 90% of base value" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "35598" + } + }, + [13219]= { + ["skill"]= 13219, + ["name"]= "Evasion and Energy Shield, Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "10% increased Damage", + "14% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "55867" + }, + ["in"]= { + "55236" + } + }, + [58454]= { + ["skill"]= 58454, + ["name"]= "Evasion and Energy Shield, Energy Shield Recharge", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 16, + ["out"]= { + "41891" + }, + ["in"]= { + "29825" + } + }, + [32947]= { + ["skill"]= 32947, + ["name"]= "Swift Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "200% increased Charge Duration", + "+2 to Maximum Frenzy Charges" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "37191" + }, + ["in"]= {} + }, + [55867]= { + ["skill"]= 55867, + ["name"]= "Polymath", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "2% more Damage for each different type of Mastery you have Allocated", + "Recover 1% of Life on Kill for each different type of Mastery you have Allocated", + "Recover 1% of Energy Shield on Kill for each different type of Mastery you have Allocated", + "Recover 1% of Mana on Kill for each different type of Mastery you have Allocated" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "13219" + } + }, + [63908]= { + ["skill"]= 63908, + ["name"]= "Evasion and Energy Shield, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "4% increased Movement Speed" + }, + ["group"]= 794, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "28884" + }, + ["in"]= { + "55236" + } + }, + [28884]= { + ["skill"]= 28884, + ["name"]= "Heartstopper", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "Every 10 seconds:\nTake 50% less Damage from Hits for 5 seconds\nTake 50% less Damage over Time for 5 seconds" + }, + ["reminderText"]= { + "(These are consecutive)" + }, + ["group"]= 794, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "63908" + } + }, + [19587]= { + ["skill"]= 19587, + ["name"]= "Evasion and Energy Shield, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "4% increased Movement Speed" + }, + ["group"]= 794, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "29825" + }, + ["in"]= { + "55236" + } + }, + [29825]= { + ["skill"]= 29825, + ["name"]= "Escape Artist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "+4 to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", + "+1 to maximum Energy Shield per 8 Evasion Rating on Equipped Body Armour" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "58454", + "2336" + }, + ["in"]= { + "19587" + } + }, + [35598]= { + ["skill"]= 35598, + ["name"]= "Evasion and Energy Shield, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "4% increased Attack and Cast Speed" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "23225" + }, + ["in"]= { + "55236" + } + }, + [55236]= { + ["skill"]= 55236, + ["name"]= "Trickster", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Trickster", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 794, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35598", + "63908", + "37191", + "13219", + "19587" + }, + ["in"]= { + "44683" + } + }, + [64842]= { + ["skill"]= 64842, + ["name"]= "Area of Effect, Blind Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "15% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5087" + }, + ["in"]= { + "18635" + } + }, + [28535]= { + ["skill"]= 28535, + ["name"]= "Perfect Crime", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Triggers Level 20 Summon Triggerbots when Allocated", + "30% less Damage with Triggered Spells" + }, + ["reminderText"]= { + "(Summon two Triggerbots which follow you around and run towards enemies. Your Triggered Spells Trigger twice, once from each Triggerbot's location)" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "869" + } + }, + [25167]= { + ["skill"]= 25167, + ["name"]= "Area of Effect, Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Mine Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "39834" + }, + ["in"]= { + "18635" + } + }, + [39834]= { + ["skill"]= 39834, + ["name"]= "Demolitions Specialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "150% increased Effect of Auras from Mines", + "Mines Hinder Enemies near them for 2 seconds when they Land" + }, + ["reminderText"]= { + "(Hinder reduces movement speed by 30%)" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= {}, + ["in"]= { + "25167", + "47366" + } + }, + [869]= { + ["skill"]= 869, + ["name"]= "Area of Effect, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "4% increased Movement Speed", + "8% increased Area of Effect" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "28535" + }, + ["in"]= { + "18635" + } + }, + [38918]= { + ["skill"]= 38918, + ["name"]= "Chain Reaction", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Skills used by Traps have 50% increased Area of Effect", + "When your Traps Trigger, your nearby Traps also Trigger" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= {}, + ["in"]= { + "16212", + "26446" + } + }, + [16212]= { + ["skill"]= 16212, + ["name"]= "Area of Effect, Trap Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Trap Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "38918" + }, + ["in"]= { + "18635" + } + }, + [47778]= { + ["skill"]= 47778, + ["name"]= "Bomb Specialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Hits have 30% chance to deal 50% more Area Damage", + "30% chance to take 50% less Area Damage from Hits" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "63135" + }, + ["in"]= { + "62067" + } + }, + [62067]= { + ["skill"]= 62067, + ["name"]= "Area of Effect, Area Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "10% increased Area Damage" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "47778" + }, + ["in"]= { + "18635" + } + }, + [57175]= { + ["skill"]= 57175, + ["name"]= "Shrapnel Specialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Projectiles have 50% chance to Return to you", + "Projectiles are fired in random directions" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "65085" + }, + ["in"]= { + "64785" + } + }, + [64785]= { + ["skill"]= 64785, + ["name"]= "Projectile Speed, Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "57175" + }, + ["in"]= { + "18635" + } + }, + [16940]= { + ["skill"]= 16940, + ["name"]= "Pyromaniac", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Immune to Ignite and Shock", + "Regenerate 2% of Life per second for each Mine Detonated Recently, up to 10% per second", + "Regenerate 2% of Life per Second for each Trap Triggered Recently, up to 10% per second" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "26446", + "47366" + }, + ["in"]= { + "1953" + } + }, + [65085]= { + ["skill"]= 65085, + ["name"]= "Projectile Speed, Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= { + "14103" + }, + ["in"]= { + "57175" + } + }, + [1953]= { + ["skill"]= 1953, + ["name"]= "Area of Effect, Trap and Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Trap Throwing Speed", + "5% increased Mine Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "16940" + }, + ["in"]= { + "5087" + } + }, + [41081]= { + ["skill"]= 41081, + ["name"]= "Area of Effect, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "4% increased Movement Speed", + "8% increased Area of Effect" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "51462" + }, + ["in"]= { + "18635" + } + }, + [5087]= { + ["skill"]= 5087, + ["name"]= "Born in the Shadows", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Cannot be Blinded", + "15% reduced Damage taken from Blinded Enemies", + "Nearby Enemies are Blinded", + "Blind Enemies on Hit" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "1953" + }, + ["in"]= { + "64842" + } + }, + [63135]= { + ["skill"]= 63135, + ["name"]= "Area of Effect, Area Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "10% increased Area Damage" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= { + "14103" + }, + ["in"]= { + "47778" + } + }, + [14103]= { + ["skill"]= 14103, + ["name"]= "Calculated Risk", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Your Critical Strike Chance is Lucky", + "Damage of Enemies Hitting you is Unlucky", + "Damage with Hits is Unlucky" + }, + ["reminderText"]= { + "(Lucky things are rolled twice and the best result used)", + "(Unlucky things are rolled twice and the worst result used)" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "65085", + "63135" + } + }, + [47366]= { + ["skill"]= 47366, + ["name"]= "Area of Effect, Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Mine Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "39834" + }, + ["in"]= { + "16940" + } + }, + [51462]= { + ["skill"]= 51462, + ["name"]= "Like Clockwork", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "50% increased Cooldown Recovery Rate", + "Nearby Enemies have 10% reduced Cooldown Recovery Rate" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "41081" + } + }, + [26446]= { + ["skill"]= 26446, + ["name"]= "Area of Effect, Trap Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Trap Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 36, + ["out"]= { + "38918" + }, + ["in"]= { + "16940" + } + }, + [18635]= { + ["skill"]= 18635, + ["name"]= "Saboteur", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Saboteur", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 795, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41081", + "64842", + "62067", + "16212", + "25167", + "869", + "64785" + }, + ["in"]= { + "44683" + } + }, + [53421]= { + ["skill"]= 53421, + ["name"]= "Evasion, Chance to Freeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "16848" + }, + ["in"]= { + "58427" + } + }, + [33645]= { + ["skill"]= 33645, + ["name"]= "Oath of Summer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Hits that would Ignite instead Scorch", + "You can inflict an additional Scorch on each Enemy" + }, + ["reminderText"]= { + "(Scorched Enemies have their Elemental Resistances lowered by up to 30%, based on the Fire Damage of the Hit, for 4 seconds)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "15550" + }, + ["in"]= { + "24432" + } + }, + [15550]= { + ["skill"]= 15550, + ["name"]= "Evasion, Elemental Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "55509" + }, + ["in"]= { + "33645" + } + }, + [55509]= { + ["skill"]= 55509, + ["name"]= "Avatar of the Wilds", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Grants Level 20 Unbound Avatar Skill", + "Gain 1 Unbound Fury when you inflict an Elemental Ailment with a Hit on an Enemy, no more than once every 0.2 seconds for each type of Ailment\nCannot gain Unbound Fury while Unbound", + "Your Hits always inflict Freeze, Shock and Ignite while Unbound", + "100% more Elemental Damage while Unbound" + }, + ["reminderText"]= { + "(Unbound Avatar requires 100 Unbound Fury to use and causes you to become Unbound for 10 seconds, which has no effects beyond those listed here)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "15550", + "61761", + "63940" + } + }, + [2060]= { + ["skill"]= 2060, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "40104" + }, + ["in"]= { + "58427" + } + }, + [58650]= { + ["skill"]= 58650, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= { + "29662" + }, + ["in"]= { + "40104" + } + }, + [61761]= { + ["skill"]= 61761, + ["name"]= "Evasion, Elemental Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "55509" + }, + ["in"]= { + "16848" + } + }, + [63940]= { + ["skill"]= 63940, + ["name"]= "Evasion, Elemental Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= { + "55509" + }, + ["in"]= { + "31364" + } + }, + [29662]= { + ["skill"]= 29662, + ["name"]= "Experienced Herbalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "You can have an additional Tincture active" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "58650", + "19488" + } + }, + [40104]= { + ["skill"]= 40104, + ["name"]= "Enduring Suffusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Tincture Effects Linger on you for 0.5 seconds per Mana Burn on you when the Tincture was deactivated, up to a maximum of 6 seconds", + "Tinctures applied to you have 30% less Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "58650" + }, + ["in"]= { + "2060" + } + }, + [36958]= { + ["skill"]= 36958, + ["name"]= "Seasoned Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Tincture Effects also apply to Ranged Weapons" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "24214", + "19488" + } + }, + [31364]= { + ["skill"]= 31364, + ["name"]= "Oath of Spring", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Maximum Effect of Shock is 2% increased Damage taken", + "You can apply up to 50 Shocks to each Enemy" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "63940" + }, + ["in"]= { + "5926" + } + }, + [24214]= { + ["skill"]= 24214, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "36958" + }, + ["in"]= { + "58427" + } + }, + [19488]= { + ["skill"]= 19488, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "36958", + "29662" + }, + ["in"]= {} + }, + [5926]= { + ["skill"]= 5926, + ["name"]= "Evasion, Chance to Shock", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "31364" + }, + ["in"]= { + "58427" + } + }, + [16848]= { + ["skill"]= 16848, + ["name"]= "Oath of Winter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Enemies you Freeze remain Frozen for at least 2 seconds", + "Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Freezes that would have a duration of 0.3 seconds or below are not inflicted)", + "(Hoarfrost lasts 10 seconds and can be inflicted multiple times, each refreshing the duration of existing Hoarfrost on the target. Each Hoarfost increases Freeze Duration on the target by 20%. All Hoarfrost is removed if the target is Frozen)" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "61761" + }, + ["in"]= { + "53421" + } + }, + [27536]= { + ["skill"]= 27536, + ["name"]= "Evasion, Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "15% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "4849" + }, + ["in"]= { + "58427" + } + }, + [4849]= { + ["skill"]= 4849, + ["name"]= "Mother's Teachings", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Grants Level 20 Barkskin Skill" + }, + ["reminderText"]= { + "(Adopt the power of the forest, gradually covering your body in bark. Getting hit by enemy attacks causes bark to be removed. You take reduced damage from physical attack hits the more bark builds up, but higher chance to evade when less covered in bark)" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 6, + ["out"]= { + "12146" + }, + ["in"]= { + "27536" + } + }, + [12146]= { + ["skill"]= 12146, + ["name"]= "Evasion, Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "15% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "11597" + }, + ["in"]= { + "4849" + } + }, + [11597]= { + ["skill"]= 11597, + ["name"]= "Lesson of the Seasons", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "-25 Damage taken of each Damage Type from Spell Hits per Bark", + "Prevent +3% of Suppressed Spell Damage per Bark below maximum", + "Lose 1 Bark when Hit by Enemy Spell Damage" + }, + ["reminderText"]= { + "(The Damage Types are Physical, Fire, Cold, Lightning, and Chaos)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "12146" + } + }, + [24432]= { + ["skill"]= 24432, + ["name"]= "Evasion, Chance to Ignite", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "33645" + }, + ["in"]= { + "58427" + } + }, + [58427]= { + ["skill"]= 58427, + ["name"]= "Warden", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Raider", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 796, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5926", + "24432", + "2060", + "24214", + "27536", + "53421" + }, + ["in"]= { + "50459" + } + }, + [53086]= { + ["skill"]= 53086, + ["name"]= "Projectile Damage, Mark Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "Mark Skills have 25% increased Cast Speed" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "5443" + }, + ["in"]= { + "56856" + } + }, + [44482]= { + ["skill"]= 44482, + ["name"]= "Avidity", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "5% more Accuracy Rating per Frenzy Charge", + "Gain a Frenzy Charge each second while Moving", + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "55985" + } + }, + [55985]= { + ["skill"]= 55985, + ["name"]= "Projectile Damage, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "10% increased Accuracy Rating" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44482" + }, + ["in"]= { + "56856" + } + }, + [62136]= { + ["skill"]= 62136, + ["name"]= "Projectile Damage, Mirage Archer Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "15% increased Mirage Archer Duration" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 35, + ["out"]= { + "26067" + }, + ["in"]= { + "2872" + } + }, + [24848]= { + ["skill"]= 24848, + ["name"]= "Gathering Winds", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Gain 1 Gale Force when you use a Skill\n10% increased Effect of Tailwind on you per Gale Force", + "You and nearby Allies have Tailwind" + }, + ["reminderText"]= { + "(Each instance of Gale Force lasts 4 seconds. Maximum 10 Gale Force)", + "(Tailwind increases Action Speed by 8%)" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "22852" + }, + ["in"]= { + "59837" + } + }, + [1729]= { + ["skill"]= 1729, + ["name"]= "Projectile Damage, Mirage Archer Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "15% increased Mirage Archer Duration" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "2872" + }, + ["in"]= { + "56856" + } + }, + [2872]= { + ["skill"]= 2872, + ["name"]= "Occupying Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/Mirage.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Mirage Archers are not attached to you", + "+2 to maximum number of Summoned Mirage Archers", + "Cannot Summon Mirage Archers while near your Mirage Archers" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 32, + ["out"]= { + "62136" + }, + ["in"]= { + "1729" + } + }, + [56134]= { + ["skill"]= 56134, + ["name"]= "Projectile Damage, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "10% increased Accuracy Rating" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "26067" + }, + ["in"]= { + "61627" + } + }, + [64028]= { + ["skill"]= 64028, + ["name"]= "Projectile Damage, Projectile Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 1, + ["out"]= { + "26067" + }, + ["in"]= { + "45313" + } + }, + [22852]= { + ["skill"]= 22852, + ["name"]= "Projectile Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "23169" + }, + ["in"]= { + "24848" + } + }, + [5443]= { + ["skill"]= 5443, + ["name"]= "Focal Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Mark.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "75% increased Effect of your Marks", + "25% less Damage taken from other Enemies near your Marked Enemy", + "Your Mark Transfers to another Enemy when Marked Enemy dies" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "53086" + } + }, + [23169]= { + ["skill"]= 23169, + ["name"]= "Wind Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProtectiveWinds.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "4% less Damage taken per Gale Force", + "Lose all Gale Force when Hit" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= {}, + ["in"]= { + "22852" + } + }, + [59837]= { + ["skill"]= 59837, + ["name"]= "Projectile Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "24848" + }, + ["in"]= { + "56856" + } + }, + [61627]= { + ["skill"]= 61627, + ["name"]= "Ricochet", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Skills Chain +1 times", + "Projectiles have 30% chance to be able to Chain when colliding with terrain" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "56134" + }, + ["in"]= { + "5082" + } + }, + [5082]= { + ["skill"]= 5082, + ["name"]= "Projectile Damage, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "10% increased Accuracy Rating" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61627" + }, + ["in"]= { + "56856" + } + }, + [26067]= { + ["skill"]= 26067, + ["name"]= "Endless Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/Additionalprojectile.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Skills fire 2 additional Projectiles" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= {}, + ["in"]= { + "62136", + "56134", + "64028" + } + }, + [28995]= { + ["skill"]= 28995, + ["name"]= "Projectile Damage, Projectile Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "45313" + }, + ["in"]= { + "56856" + } + }, + [45313]= { + ["skill"]= 45313, + ["name"]= "Far Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Projectiles gain Damage as they travel farther, dealing up\nto 30% more Damage with Hits and Ailments", + "Projectile Barrages have no spread" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= { + "64028" + }, + ["in"]= { + "28995" + } + }, + [56856]= { + ["skill"]= 56856, + ["name"]= "Deadeye", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Deadeye", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 797, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5082", + "55985", + "28995", + "53086", + "59837", + "1729" + }, + ["in"]= { + "50459" + } + }, + [12953]= { + ["skill"]= 12953, + ["name"]= "Disciple of Kitava", + ["icon"]= "Art/2DArt/SkillIcons/passives/DiscipleOfKitava.png", + ["isKeystone"]= true, + ["stats"]= { + "Every second, Consume a nearby Corpse to Recover 5% of Life and Mana\n10% more Damage taken if you haven't Consumed a Corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "All are invited to his feast, one way or another." + } + }, + [3354]= { + ["skill"]= 3354, + ["name"]= "Lone Messenger", + ["icon"]= "Art/2DArt/SkillIcons/passives/LoneMessenger.png", + ["isKeystone"]= true, + ["stats"]= { + "You can only have one Herald\n50% more Effect of Herald Buffs on you\n100% more Damage with Hits from Herald Skills\n50% more Damage Over Time with Herald Skills\nMinions from Herald Skills deal 25% more Damage\nYour Aura Skills are Disabled" + }, + ["flavourText"]= { + "Some tasks are too important to entrust to others." + } + }, + [30847]= { + ["skill"]= 30847, + ["name"]= "Nature's Patience", + ["icon"]= "Art/2DArt/SkillIcons/passives/NaturesPatience.png", + ["isKeystone"]= true, + ["stats"]= { + "Gain 2 Grasping Vines each second while stationary\n2% chance to deal Double Damage per Grasping Vine\n1% less Damage taken per Grasping Vine" + }, + ["reminderText"]= { + "(Up to 10 Vines can grasp you, inflicting 8% less Movement Speed per Vine. Broken by moving)" + }, + ["flavourText"]= { + "To win, all you must do is outlast." + } + }, + [57280]= { + ["skill"]= 57280, + ["name"]= "Secrets of Suffering", + ["icon"]= "Art/2DArt/SkillIcons/passives/SecretOfAgony.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Ignite, Chill, Freeze or Shock\nCritical Strikes inflict Scorch, Brittle and Sapped" + }, + ["reminderText"]= { + "(Scorched Enemies have their Elemental Resistances lowered by up to 30%, based on the Fire Damage of the Hit, for 4 seconds)", + "(Hits have up to +6% Critical Strike Chance against Brittle Enemies, based on the Cold Damage of the Hit which inflicted Brittle, for 4 seconds)", + "(Sapped Enemies deal up to 20% less Damage, based on the Lightning Damage of the Hit, for 4 seconds)" + }, + ["flavourText"]= { + "Even within the realm of torture, there are subtle intricacies." + } + }, + [40561]= { + ["skill"]= 40561, + ["name"]= "Kineticism", + ["icon"]= "Art/2DArt/SkillIcons/passives/Kineticism.png", + ["isKeystone"]= true, + ["stats"]= { + "Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies\nProjectiles cannot Pierce, Fork or Chain" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)", + "(Maimed enemies have 30% reduced Movement Speed)" + }, + ["flavourText"]= { + "No force wasted, no time wasted." + } + }, + [32118]= { + ["skill"]= 32118, + ["name"]= "Veteran's Awareness", + ["icon"]= "Art/2DArt/SkillIcons/passives/VeteransAwareness.png", + ["isKeystone"]= true, + ["stats"]= { + "+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill\n20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill\n20% more Damage taken if a Non-Vaal Guard Buff was lost Recently" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)", + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "Know when you'll be hit, and you'll barely feel it." + } + }, + [60069]= { + ["skill"]= 60069, + ["name"]= "Hollow Palm Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/DragonStyle.png", + ["isKeystone"]= true, + ["stats"]= { + "You count as Dual Wielding while you are Unencumbered\n40% more Attack Speed with Melee Skills while you are Unencumbered\nAdds 14 to 20 Attack Physical Damage to Melee Skills per 10 Dexterity while you are Unencumbered" + }, + ["reminderText"]= { + "(You are Unencumbered while you have no Gloves, no Main Hand Item, and no Off Hand Item Equipped)" + }, + ["flavourText"]= { + "\"The mastodons of yore were each born with two weapons greater than any sword. So, too, were you.\" - Maraketh Proverb" + } + }, + [37081]= { + ["skill"]= 37081, + ["name"]= "Pitfighter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Pitfighter.png", + ["isKeystone"]= true, + ["stats"]= { + "1% increased Fishing Line Strength" + }, + ["flavourText"]= { + "When winning is all that matters, you'll use everything at your disposal." + } + }, + [44237]= { + ["skill"]= 44237, + ["name"]= "Prodigious Defence", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "4% Chance to Block Spell Damage", + "30% increased Attack Damage while holding a Shield", + "+4% Chance to Block Attack Damage" + } + }, + [35790]= { + ["skill"]= 35790, + ["name"]= "Advance Guard", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 30% increased Damage while holding a Shield", + "Ignore all Movement Penalties from Armour", + "5% increased Movement Speed while holding a Shield" + } + }, + [36455]= { + ["skill"]= 36455, + ["name"]= "Gladiatorial Combat", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield", + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + }, + [12806]= { + ["skill"]= 12806, + ["name"]= "Strike Leader", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 30% increased Damage while holding a Shield", + "+4% Chance to Block Attack Damage", + "+0.2 metres to Melee Strike Range while Holding a Shield" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + [28384]= { + ["skill"]= 28384, + ["name"]= "Powerful Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% chance to gain a Power Charge when you Block", + "+10% Chance to Block Spell Damage while at Maximum Power Charges" + } + }, + [9042]= { + ["skill"]= 9042, + ["name"]= "Enduring Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Block", + "+10% Chance to Block Attack Damage while at Maximum Endurance Charges" + } + }, + [36807]= { + ["skill"]= 36807, + ["name"]= "Gladiator's Fortitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 25% increased Damage while holding a Shield", + "5% increased maximum Life" + } + }, + [28398]= { + ["skill"]= 28398, + ["name"]= "Precise Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "60% increased Critical Strike Chance if you haven't Blocked Recently", + "+30% to Critical Strike Multiplier if you have Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [23989]= { + ["skill"]= 23989, + ["name"]= "Veteran Defender", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 15, + ["grantedDexterity"]= 15, + ["grantedIntelligence"]= 15, + ["stats"]= { + "+15 to all Attributes", + "+15% Elemental Resistances while holding a Shield", + "60% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + [28015]= { + ["skill"]= 28015, + ["name"]= "Iron Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction", + "30% increased Physical Damage" + } + }, + [56760]= { + ["skill"]= 56760, + ["name"]= "Deep Cuts", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% chance to Impale Enemies on Hit with Attacks", + "Impales you inflict last 1 additional Hit" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + [2796]= { + ["skill"]= 2796, + ["name"]= "Master the Fundamentals", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to all Elemental Resistances", + "35% reduced Elemental Damage", + "35% increased Physical Damage" + } + }, + [3805]= { + ["skill"]= 3805, + ["name"]= "Force Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "5% chance to deal Double Damage", + "25% increased Physical Damage" + } + }, + [981]= { + ["skill"]= 981, + ["name"]= "Furious Assault", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack and Cast Speed", + "25% increased Physical Damage" + } + }, + [28635]= { + ["skill"]= 28635, + ["name"]= "Vicious Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "10% chance to Impale Enemies on Hit with Attacks", + "15% increased Effect of Impales inflicted by Hits that also inflict Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)", + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + [23335]= { + ["skill"]= 23335, + ["name"]= "Grim Oath", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 10% of Physical Damage as Extra Chaos Damage" + } + }, + [53318]= { + ["skill"]= 53318, + ["name"]= "Battle-Hardened", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Evasion Rating and Armour", + "35% increased Physical Damage" + } + }, + [62634]= { + ["skill"]= 62634, + ["name"]= "Replenishing Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Non-Curse Aura Skills have 20% increased Duration", + "You and nearby Allies Regenerate 1.00% of Life per second" + } + }, + [29540]= { + ["skill"]= 29540, + ["name"]= "Master of Command", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Banner Skills have 10% increased Aura Effect", + "Banner Skills have 20% increased Area of Effect" + } + }, + [47393]= { + ["skill"]= 47393, + ["name"]= "Spiteful Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Effect of Cold Ailments", + "Hatred has 50% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + } + }, + [51870]= { + ["skill"]= 51870, + ["name"]= "Purposeful Harbinger", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Auras from your Skills have 8% increased Effect on you for\neach Herald affecting you, up to a maximum of 40%" + } + }, + [58221]= { + ["skill"]= 58221, + ["name"]= "Destructive Aspect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "12% increased Area of Effect of Aura Skills", + "Pride has 50% increased Mana Reservation Efficiency" + } + }, + [59350]= { + ["skill"]= 59350, + ["name"]= "Electric Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Effect of Lightning Ailments", + "Wrath has 50% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + } + }, + [61616]= { + ["skill"]= 61616, + ["name"]= "Volatile Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Anger has 50% increased Mana Reservation Efficiency", + "20% increased Duration of Fire Ailments" + }, + ["reminderText"]= { + "(Fire Ailments are Ignited and Scorched)" + } + }, + [28338]= { + ["skill"]= 28338, + ["name"]= "Righteous Path", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Effect of Consecrated Ground you create", + "Zealotry has 50% increased Mana Reservation Efficiency" + } + }, + [63142]= { + ["skill"]= 63142, + ["name"]= "Skullbreaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% reduced Enemy Stun Threshold", + "+15% to Critical Strike Multiplier" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + [38633]= { + ["skill"]= 38633, + ["name"]= "Pressure Points", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Your Critical Strikes have a 5% chance to deal Double Damage", + "30% increased Critical Strike Chance" + } + }, + [2977]= { + ["skill"]= 2977, + ["name"]= "Overwhelming Malice", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to gain Unholy Might for 4 seconds on Critical Strike" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + [60617]= { + ["skill"]= 60617, + ["name"]= "Magnifier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Area of Effect", + "+10% to Critical Strike Multiplier" + } + }, + [25966]= { + ["skill"]= 25966, + ["name"]= "Savage Response", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+30% to Critical Strike Multiplier if you've taken a Savage Hit Recently", + "30% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [51541]= { + ["skill"]= 51541, + ["name"]= "Eye of the Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to Damage over Time Multiplier for Ignite from Critical Strikes", + "20% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", + "40% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [44544]= { + ["skill"]= 44544, + ["name"]= "Basics of Pain", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Damage", + "30% increased Critical Strike Chance" + } + }, + [23238]= { + ["skill"]= 23238, + ["name"]= "Quick Getaway", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Attack and Cast Speed", + "5% increased Movement Speed if you've dealt a Critical Strike Recently", + "25% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [12149]= { + ["skill"]= 12149, + ["name"]= "Assert Dominance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Area of Effect if you've Killed at least 5 Enemies Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [63969]= { + ["skill"]= 63969, + ["name"]= "Vast Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Area Damage", + "3% increased Area of Effect per Power Charge, up to a maximum of 50%" + } + }, + [11661]= { + ["skill"]= 11661, + ["name"]= "Powerful Assault", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Area Damage", + "Area Skills have 10% chance to Knock Enemies Back on Hit" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + [42145]= { + ["skill"]= 42145, + ["name"]= "Intensity", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Area Damage", + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + [48550]= { + ["skill"]= 48550, + ["name"]= "Titanic Swings", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Area Damage while wielding a Two Handed Melee Weapon", + "15% increased Area of Effect while wielding a Two Handed Melee Weapon" + } + }, + [63607]= { + ["skill"]= 63607, + ["name"]= "Towering Threat", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "10% increased Area of Effect" + } + }, + [31440]= { + ["skill"]= 31440, + ["name"]= "Ancestral Echo", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Totem Placement speed", + "10% increased Attack and Cast Speed if you've summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [57212]= { + ["skill"]= 57212, + ["name"]= "Ancestral Reach", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Totem Damage", + "25% increased Totem Placement speed", + "25% increased Totem Placement range" + } + }, + [60864]= { + ["skill"]= 60864, + ["name"]= "Ancestral Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Totem Life", + "30% increased Totem Duration", + "30% increased Totem Damage if you haven't Summoned a Totem in the past 2 seconds" + } + }, + [56686]= { + ["skill"]= 56686, + ["name"]= "Ancestral Preservation", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Totems gain +20% to all Elemental Resistances", + "Totems have 15% additional Physical Damage Reduction", + "Totems gain +25% to Chaos Resistance" + } + }, + [2004]= { + ["skill"]= 2004, + ["name"]= "Snaring Spirits", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Totem Damage", + "Totems Hinder Enemies near them when Summoned" + }, + ["reminderText"]= { + "(Hinder reduces movement speed by 30% for 4 seconds)" + } + }, + [57383]= { + ["skill"]= 57383, + ["name"]= "Sleepless Sentries", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Totem Duration", + "You have Onslaught if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [54209]= { + ["skill"]= 54209, + ["name"]= "Ancestral Guidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value", + "Totems Regenerate 2% of Life per second" + } + }, + [13950]= { + ["skill"]= 13950, + ["name"]= "Ancestral Inspiration", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain Arcane Surge when you Summon a Totem", + "Spells cast by Totems deal 25% increased Damage" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [54382]= { + ["skill"]= 54382, + ["name"]= "Vital Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Channelling Skills deal 30% increased Damage", + "Regenerate 1.5% of Life per second while Channelling" + } + }, + [45935]= { + ["skill"]= 45935, + ["name"]= "Unrestrained Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Channelling Skills have 8% increased Attack and Cast Speed", + "Unaffected by Chill while Channelling" + } + }, + [38275]= { + ["skill"]= 38275, + ["name"]= "Unwavering Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "50% chance to Avoid being Stunned while Channelling", + "Channelling Skills deal 30% increased Damage" + } + }, + [46264]= { + ["skill"]= 46264, + ["name"]= "Enduring Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Channelling Skills deal 25% increased Damage", + "25% chance to gain an Endurance Charge each second while Channelling" + } + }, + [55714]= { + ["skill"]= 55714, + ["name"]= "Precise Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Critical Strike Chance while Channelling", + "+20% to Critical Strike Multiplier if you've been Channelling for at least 1 second" + } + }, + [35363]= { + ["skill"]= 35363, + ["name"]= "Stoic Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% Chance to Block Attack Damage while Channelling", + "+5% Chance to Block Spell Damage while Channelling", + "Channelling Skills deal 25% increased Damage" + } + }, + [65117]= { + ["skill"]= 65117, + ["name"]= "Hex Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack and Cast Speed while Channelling", + "Remove a Curse after Channelling for 2 seconds" + } + }, + [15990]= { + ["skill"]= 15990, + ["name"]= "Arcane Adept", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Attack and Cast Speed while Channelling", + "Channelling Skills deal 20% increased Damage", + "Gain Arcane Surge after Channelling for 1 second" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [56886]= { + ["skill"]= 56886, + ["name"]= "Distilled Perfection", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Life Recovery from Flasks", + "25% increased Mana Recovery from Flasks", + "10% increased Flask Effect Duration" + } + }, + [25282]= { + ["skill"]= 25282, + ["name"]= "Spiked Concoction", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskDuration.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Attack and Cast Speed during any Flask Effect", + "Gain Alchemist's Genius when you use a Flask" + }, + ["reminderText"]= { + "(Alchemist's Genius increases Flask Charges gained by 20% and effect of Flasks by 10%, for 4 seconds)" + } + }, + [5075]= { + ["skill"]= 5075, + ["name"]= "Fasting", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskDuration.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Flask Charges gained", + "10% increased Movement Speed while under no Flask Effects" + } + }, + [41509]= { + ["skill"]= 41509, + ["name"]= "Mender's Wellspring", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Life Recovery from Flasks", + "Life Flasks gain 1 Charge every 3 seconds", + "Remove Bleeding when you use a Life Flask" + } + }, + [47584]= { + ["skill"]= 47584, + ["name"]= "Special Reserve", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Damage during any Flask Effect", + "Regenerate 2% of Life per second during any Flask Effect" + } + }, + [62707]= { + ["skill"]= 62707, + ["name"]= "Numbing Elixir", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "40% reduced Effect of Curses on you during Effect of any Mana Flask", + "40% reduced Effect of Non-Damaging Ailments on you during Effect of any Life Flask" + } + }, + [28744]= { + ["skill"]= 28744, + ["name"]= "Mob Mentality", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Exerted Attacks deal 25% increased Damage", + "Warcries have 5% Chance to grant an Endurance, Frenzy or Power Charge per Power" + }, + ["reminderText"]= { + "(Normal Monsters have 1 Power, Magic Monsters 2, Rare Monsters 10, Unique Monsters 20, and Players 5)" + } + }, + [17816]= { + ["skill"]= 17816, + ["name"]= "Cry Wolf", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Exerted Attacks deal 30% increased Damage", + "20% increased total Power counted by Warcries" + } + }, + [6696]= { + ["skill"]= 6696, + ["name"]= "Haunting Shout", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies Taunted by your Warcries are Intimidated" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + }, + [36655]= { + ["skill"]= 36655, + ["name"]= "Lead By Example", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 10, + ["grantedDexterity"]= 10, + ["stats"]= { + "When you Warcry, you and nearby Allies gain Onslaught for 4 seconds", + "+10 to Strength and Dexterity" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack, Cast, and Movement Speed)" + } + }, + [33182]= { + ["skill"]= 33182, + ["name"]= "Provocateur", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Critical Strike Chance against Taunted Enemies", + "+10% to Critical Strike Multiplier against Taunted Enemies" + } + }, + [7107]= { + ["skill"]= 7107, + ["name"]= "Warning Call", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 25% increased Armour per 5 Power for 8 seconds when you Warcry, up to a maximum of 100%" + }, + ["reminderText"]= { + "(Normal Monsters have 1 Power, Magic Monsters 2, Rare Monsters 10, Unique Monsters 20, and Players 5)" + } + }, + [29450]= { + ["skill"]= 29450, + ["name"]= "Rattling Bellow", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "Exerted Attacks have 8% chance to deal Double Damage", + "+20 to Strength" + } + }, + [39006]= { + ["skill"]= 39006, + ["name"]= "Bloodscent", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 2 Rage on Hit with Axes or Swords" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + }, + [58189]= { + ["skill"]= 58189, + ["name"]= "Run Through", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Axe or Sword Attacks deal 15% increased Damage with Ailments", + "10% increased Impale Effect", + "10% chance to Impale Enemies on Hit with Axes or Swords", + "15% increased Physical Damage with Axes or Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [60894]= { + ["skill"]= 60894, + ["name"]= "Wound Aggravation", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Axe or Sword Attacks deal 20% increased Damage with Ailments", + "20% increased Physical Damage with Axes or Swords", + "+5% to Physical Damage over Time Multiplier while wielding an Axe or Sword" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [13054]= { + ["skill"]= 13054, + ["name"]= "Overlord", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Damage with Maces, Sceptres or Staves", + "Melee Hits with Maces, Sceptres or Staves Fortify for 6 seconds" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + [48925]= { + ["skill"]= 48925, + ["name"]= "Expansive Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Mace, Sceptre or Staff Attacks deal 20% increased Damage with Hits and Ailments", + "10% increased Area of Effect per second you've been stationary, up to a maximum of 50%" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [4205]= { + ["skill"]= 4205, + ["name"]= "Weight Advantage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "Mace, Sceptre or Staff Attacks deal 30% increased Damage with Hits and Ailments", + "4% chance to deal Double Damage while wielding a Mace, Sceptre or Staff", + "+20 to Strength" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [1067]= { + ["skill"]= 1067, + ["name"]= "Wind-up", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+15% to Critical Strike Multiplier with Claws or Daggers", + "10% chance to gain a Power Charge on Non-Critical Strike with a Claw or Dagger" + } + }, + [39738]= { + ["skill"]= 39738, + ["name"]= "Fan of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills fire an additional Projectile while wielding a Claw or Dagger", + "20% increased Projectile Attack Damage with Claws or Daggers" + } + }, + [57141]= { + ["skill"]= 57141, + ["name"]= "Disease Vector", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies Poisoned by you cannot Regenerate Life", + "+6% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger" + } + }, + [7343]= { + ["skill"]= 7343, + ["name"]= "Arcing Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance", + "Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets" + } + }, + [38563]= { + ["skill"]= 38563, + ["name"]= "Tempered Arrowheads", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Bow Skills have +6% to Damage over Time Multiplier", + "Bow Skills have 10% increased Skill Effect Duration", + "10% increased Duration of Ailments inflicted while wielding a Bow" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + [20834]= { + ["skill"]= 20834, + ["name"]= "Broadside", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Bow Skills have 25% increased Area of Effect" + } + }, + [33002]= { + ["skill"]= 33002, + ["name"]= "Explosive Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage", + "Gain 10% of Wand Physical Damage as Extra Chaos Damage" + } + }, + [41056]= { + ["skill"]= 41056, + ["name"]= "Opportunistic Fusilade", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandDamage.png", + ["isNotable"]= true, + ["stats"]= { + "50% increased Critical Strike Chance with Wands", + "35% increased Damage with Wands if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [30622]= { + ["skill"]= 30622, + ["name"]= "Storm's Hand", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 10% of Wand Physical Damage as Extra Lightning Damage", + "25% of Wand Physical Damage converted to Lightning Damage" + } + }, + [18463]= { + ["skill"]= 18463, + ["name"]= "Battlefield Dominator", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks with Two Handed Weapons deal 25% increased Damage with Hits and Ailments", + "10% reduced Enemy Stun Threshold", + "15% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)", + "(Recently refers to the past 4 seconds)" + } + }, + [14431]= { + ["skill"]= 14431, + ["name"]= "Martial Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "10% increased Attack Speed with Two Handed Melee Weapons", + "10% increased Attack Speed if you have at least 600 Strength", + "+20 to Strength" + } + }, + [61474]= { + ["skill"]= 61474, + ["name"]= "Surefooted Striker", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Critical Strike Chance with Two Handed Melee Weapons", + "5% chance to deal Double Damage if you've dealt a Critical Strike with a Two Handed Melee Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [42687]= { + ["skill"]= 42687, + ["name"]= "Graceful Execution", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["grantedDexterity"]= 15, + ["grantedIntelligence"]= 15, + ["stats"]= { + "5% increased Attack Speed with Two Handed Melee Weapons", + "15% increased Accuracy Rating with Two Handed Melee Weapons", + "25% increased Critical Strike Chance with Two Handed Melee Weapons", + "+15 to Dexterity and Intelligence" + } + }, + [6553]= { + ["skill"]= 6553, + ["name"]= "Brutal Infamy", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks with Two Handed Melee Weapons deal 20% increased Damage with Hits and Ailments", + "40% increased Damage with Hits and Ailments against Unique Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [20996]= { + ["skill"]= 20996, + ["name"]= "Fearsome Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Hits and Ailments", + "8% increased Area of Effect", + "25% chance to Intimidate nearby Enemies for 4 seconds on Melee Kill" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Intimidated enemies take 10% increased Attack Damage)" + } + }, + [24484]= { + ["skill"]= 24484, + ["name"]= "Combat Rhythm", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Attack Speed if you've Hit with your Main Hand Weapon Recently", + "10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [62618]= { + ["skill"]= 62618, + ["name"]= "Hit and Run", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 25% increased Damage while Dual Wielding", + "+10% chance to Suppress Spell Damage if you've Hit an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [23232]= { + ["skill"]= 23232, + ["name"]= "Insatiable Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 20% increased Damage while Dual Wielding", + "5% increased Attack Speed while Dual Wielding", + "5% chance to gain a Frenzy Charge on Kill while Dual Wielding" + } + }, + [24889]= { + ["skill"]= 24889, + ["name"]= "Mage Bane", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Spell Damage while Dual Wielding", + "Attack Skills deal 20% increased Damage while Dual Wielding", + "20% chance to gain a Power Charge when you Block" + } + }, + [2655]= { + ["skill"]= 2655, + ["name"]= "Martial Momentum", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack Speed while Dual Wielding", + "16% increased Accuracy Rating while Dual Wielding", + "32% increased Damage if you've used a Travel Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [1478]= { + ["skill"]= 1478, + ["name"]= "Deadly Repartee", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 25% increased Damage while Dual Wielding", + "30% increased Attack Critical Strike Chance while Dual Wielding" + } + }, + [39058]= { + ["skill"]= 39058, + ["name"]= "Quick and Deadly", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "60% increased Main Hand Attack Damage while wielding two different Weapon Types", + "30% increased Off Hand Attack Speed while wielding two different Weapon Types" + } + }, + [44670]= { + ["skill"]= 44670, + ["name"]= "Smite the Weak", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Attack Damage against Maimed Enemies", + "Attacks have 10% chance to Maim on Hit" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + [38790]= { + ["skill"]= 38790, + ["name"]= "Heavy Hitter", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Attack Damage", + "10% reduced Enemy Stun Threshold", + "20% chance to double Stun Duration", + "30% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [37]= { + ["skill"]= 37, + ["name"]= "Martial Prowess", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Attack Damage", + "6% increased Attack Speed", + "20% increased Damage with Ailments from Attack Skills", + "15% increased Accuracy Rating" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [41594]= { + ["skill"]= 41594, + ["name"]= "Calamitous", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to Freeze, Shock and Ignite", + "30% increased Elemental Damage with Attack Skills", + "15% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [22581]= { + ["skill"]= 22581, + ["name"]= "Devastator", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Attack Damage", + "20% increased Damage with Ailments from Attack Skills", + "Enemies Killed with Attack Hits have a 15% chance to Explode, dealing a tenth of their Life as Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [14518]= { + ["skill"]= 14518, + ["name"]= "Fuel the Fight", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack Speed", + "0.4% of Attack Damage Leeched as Mana", + "20% increased Damage while Leeching" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [41284]= { + ["skill"]= 41284, + ["name"]= "Drive the Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.8% of Attack Damage Leeched as Life", + "25% increased Attack Damage when on Full Life", + "Attacks have 10% chance to Maim on Hit" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + [26197]= { + ["skill"]= 26197, + ["name"]= "Feed the Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.4% of Attack Damage Leeched as Life", + "30% increased Damage while Leeching", + "15% increased Attack Speed while Leeching" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [1066]= { + ["skill"]= 1066, + ["name"]= "Seal Mender", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Skills Supported by Unleash have 30% increased Seal gain frequency" + } + }, + [784]= { + ["skill"]= 784, + ["name"]= "Conjured Wall", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Spell Damage", + "+8% Chance to Block Spell Damage if you've Cast a Spell Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [20533]= { + ["skill"]= 20533, + ["name"]= "Arcane Heroism", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Effect of Arcane Surge on you", + "10% chance to gain Arcane Surge when you Hit a Unique enemy" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [34205]= { + ["skill"]= 34205, + ["name"]= "Practiced Caster", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Spell Damage", + "5% increased Cast Speed", + "35% chance to Ignore Stuns while Casting" + } + }, + [5190]= { + ["skill"]= 5190, + ["name"]= "Burden Projection", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Spell Damage", + "8% chance to Knock Enemies Back on Hit with Spell Damage" + } + }, + [14085]= { + ["skill"]= 14085, + ["name"]= "Thaumophage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.6% of Spell Damage Leeched as Energy Shield", + "25% increased Spell Damage while on Full Energy Shield", + "10% chance to Hinder Enemies on Hit with Spells" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Hinder reduces movement speed by 30% for 4 seconds)" + } + }, + [32415]= { + ["skill"]= 32415, + ["name"]= "Essence Rush", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Damage while Leeching Energy Shield", + "0.3% of Spell Damage Leeched as Energy Shield", + "5% increased Attack and Cast Speed while Leeching Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [42648]= { + ["skill"]= 42648, + ["name"]= "Sap Psyche", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Spell Damage", + "30% increased Mana Regeneration Rate", + "Regenerate 1% of Energy Shield per second if you've Cursed an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [42117]= { + ["skill"]= 42117, + ["name"]= "Sadist", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Elemental Damage if you've Chilled an Enemy Recently", + "20% increased Elemental Damage if you've Ignited an Enemy Recently", + "25% increased Elemental Damage if you've Shocked an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [2306]= { + ["skill"]= 2306, + ["name"]= "Corrosive Elements", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Elemental Damage", + "Cold Skills have a 25% chance to apply Cold Exposure on Hit", + "Fire Skills have a 25% chance to apply Fire Exposure on Hit", + "Lightning Skills have a 25% chance to apply Lightning Exposure on Hit" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)", + "(Fire Exposure applies -10% to Fire Resistance for 4 seconds)", + "(Lightning Exposure applies -10% to Lightning Resistance for 4 seconds)" + } + }, + [7039]= { + ["skill"]= 7039, + ["name"]= "Doryani's Lesson", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "0.2% of Elemental Damage Leeched as Life", + "25% increased Elemental Damage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [17255]= { + ["skill"]= 17255, + ["name"]= "Disorienting Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Elemental Damage", + "10% chance to Blind nearby Enemies when you use an Elemental Skill" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [17050]= { + ["skill"]= 17050, + ["name"]= "Prismatic Heart", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to all Elemental Resistances", + "30% increased Elemental Damage" + } + }, + [36776]= { + ["skill"]= 36776, + ["name"]= "Widespread Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased Area of Effect", + "20% increased Elemental Damage" + } + }, + [33482]= { + ["skill"]= 33482, + ["name"]= "Master of Fire", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Nearby Enemies have Fire Exposure" + }, + ["reminderText"]= { + "(Fire Exposure applies -10% to Fire Resistance for 4 seconds)" + } + }, + [13790]= { + ["skill"]= 13790, + ["name"]= "Smoking Remains", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png", + ["isNotable"]= true, + ["stats"]= { + "35% increased Fire Damage", + "10% chance to create a Smoke Cloud on Kill" + } + }, + [56696]= { + ["skill"]= 56696, + ["name"]= "Cremator", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Fire Damage", + "Ignited Enemies Killed by your Hits are destroyed" + } + }, + [40870]= { + ["skill"]= 40870, + ["name"]= "Snowstorm", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 8% of Lightning Damage as Extra Cold Damage against Chilled Enemies" + } + }, + [22607]= { + ["skill"]= 22607, + ["name"]= "Storm Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Damage Penetrates 8% Lightning Resistance", + "0.5% of Lightning Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [31825]= { + ["skill"]= 31825, + ["name"]= "Paralysis", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Lightning Damage", + "10% chance to double Stun Duration", + "Lightning Skills have 10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + [59646]= { + ["skill"]= 59646, + ["name"]= "Supercharge", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Lightning Damage with Non-Critical Strikes is Lucky" + } + }, + [6258]= { + ["skill"]= 6258, + ["name"]= "Blanketed Snow", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Damage Penetrates 10% Cold Resistance against Chilled Enemies" + } + }, + [54436]= { + ["skill"]= 54436, + ["name"]= "Cold to the Core", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png", + ["isNotable"]= true, + ["stats"]= { + "1% increased Cold Damage per 25 Dexterity", + "1% increased Cold Damage per 25 Intelligence", + "1% increased Cold Damage per 25 Strength" + } + }, + [23113]= { + ["skill"]= 23113, + ["name"]= "Cold-Blooded Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Cold Damage over Time Multiplier", + "Recover 2% of Life on Killing a Chilled Enemy" + } + }, + [49273]= { + ["skill"]= 49273, + ["name"]= "Touch of Cruelty", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Chaos Spells have 10% chance to Hinder Enemies on Hit", + "Enemies Hindered by you take 10% increased Chaos Damage" + }, + ["reminderText"]= { + "(Hinder reduces movement speed by 30% for 4 seconds)" + } + }, + [38592]= { + ["skill"]= 38592, + ["name"]= "Unwaveringly Evil", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Chaos Damage", + "Chaos Skills ignore interruption from Stuns" + } + }, + [1494]= { + ["skill"]= 1494, + ["name"]= "Unspeakable Gifts", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" + } + }, + [40828]= { + ["skill"]= 40828, + ["name"]= "Dark Ideation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "2% increased Chaos Damage per 100 maximum Mana, up to a maximum of 80%" + } + }, + [2264]= { + ["skill"]= 2264, + ["name"]= "Unholy Grace", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Chaos Damage", + "10% increased Attack and Cast Speed" + } + }, + [34595]= { + ["skill"]= 34595, + ["name"]= "Wicked Pall", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Chaos Damage", + "5% increased Skill Effect Duration" + } + }, + [58949]= { + ["skill"]= 58949, + ["name"]= "Renewal", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions Regenerate 1% of Life per second", + "Minions have 5% chance to deal Double Damage while they are on Full Life" + } + }, + [6703]= { + ["skill"]= 6703, + ["name"]= "Raze and Pillage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 20% chance to Ignite", + "Minions deal 20% increased Damage with Hits and Ailments against Ignited Enemies", + "Minions gain 6% of Physical Damage as Extra Fire Damage" + } + }, + [16650]= { + ["skill"]= 16650, + ["name"]= "Rotten Claws", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have a 12% chance to Impale on Hit with Attacks" + } + }, + [55022]= { + ["skill"]= 55022, + ["name"]= "Call to the Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 15% increased Damage", + "Minions created Recently have 10% increased Attack and Cast Speed", + "Minions created Recently have 30% increased Movement Speed" + } + }, + [11535]= { + ["skill"]= 11535, + ["name"]= "Skeletal Atrophy", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit", + "Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage" + } + }, + [68]= { + ["skill"]= 68, + ["name"]= "Hulking Corpses", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 25% increased maximum Life", + "Raised Zombies have 5% chance to Taunt Enemies on Hit" + } + }, + [41983]= { + ["skill"]= 41983, + ["name"]= "Vicious Bite", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 30% increased Critical Strike Chance", + "Minions have +15% to Critical Strike Multiplier" + } + }, + [57892]= { + ["skill"]= 57892, + ["name"]= "Primordial Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Damage per Summoned Golem", + "20% increased Effect of Buffs granted by your Golems", + "Golems have 25% increased Maximum Life" + } + }, + [29748]= { + ["skill"]= 29748, + ["name"]= "Blowback", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to Ignite", + "Ignites you inflict deal Damage 8% faster" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(They will deal the same total damage over a shorter duration)" + } + }, + [45128]= { + ["skill"]= 45128, + ["name"]= "Fan the Flames", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Ignites you inflict spread to other Enemies within a Radius of 1.5 metres" + } + }, + [408]= { + ["skill"]= 408, + ["name"]= "Cooked Alive", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% chance to Ignite", + "Enemies Ignited by you have -5% to Fire Resistance" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + } + }, + [56065]= { + ["skill"]= 56065, + ["name"]= "Burning Bright", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Burning Damage", + "8% increased Area of Effect" + } + }, + [10952]= { + ["skill"]= 10952, + ["name"]= "Wrapped in Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Fire Damage", + "Cannot be Chilled while Burning", + "5% chance to Cover Enemies in Ash on Hit while you are Burning" + }, + ["reminderText"]= { + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken, for 4 seconds)" + } + }, + [4942]= { + ["skill"]= 4942, + ["name"]= "Vivid Hues", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "2% of Attack Damage Leeched as Life against Bleeding Enemies", + "20% increased total Recovery per second from Life Leech", + "20% increased Damage with Bleeding" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [8258]= { + ["skill"]= 8258, + ["name"]= "Rend", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Physical Damage over Time Multiplier", + "20% increased Bleeding Duration" + } + }, + [42338]= { + ["skill"]= 42338, + ["name"]= "Disorienting Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Damage with Bleeding", + "25% chance to Blind with Hits against Bleeding Enemies" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [37384]= { + ["skill"]= 37384, + ["name"]= "Compound Injury", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "35% increased Damage with Bleeding you inflict on Maimed Enemies" + } + }, + [9372]= { + ["skill"]= 9372, + ["name"]= "Blood Artist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "+6% to Physical Damage over Time Multiplier if you've Spent Life Recently", + "+20 to Strength" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [18412]= { + ["skill"]= 18412, + ["name"]= "Phlebotomist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+6% to Physical Damage over Time Multiplier if you've dealt a Critical Strike Recently", + "20% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [38399]= { + ["skill"]= 38399, + ["name"]= "Septic Spells", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Cast Speed", + "Spell Skills have +5% to Damage over Time Multiplier for Poison", + "20% chance to Poison on Hit with Spell Damage" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + [36370]= { + ["skill"]= 36370, + ["name"]= "Low Tolerance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + [47424]= { + ["skill"]= 47424, + ["name"]= "Steady Torment", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Poison Duration", + "15% increased Bleeding Duration", + "+6% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies", + "+6% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + [11995]= { + ["skill"]= 11995, + ["name"]= "Eternal Suffering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Chaos Damage", + "50% chance to inflict Withered for two seconds on Hit if there are 5 or fewer Withered Debuffs on Enemy" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + }, + [61043]= { + ["skill"]= 61043, + ["name"]= "Eldritch Inspiration", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Chaos Damage", + "16% increased maximum Mana", + "20% increased Mana Regeneration Rate" + } + }, + [19686]= { + ["skill"]= 19686, + ["name"]= "Wasting Affliction", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Damage with Ailments", + "Damaging Ailments deal damage 5% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + } + }, + [56879]= { + ["skill"]= 56879, + ["name"]= "Haemorrhage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to Damage over Time Multiplier for Ailments from Critical Strikes", + "30% increased Critical Strike Chance" + } + }, + [34581]= { + ["skill"]= 34581, + ["name"]= "Flow of Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "24% increased Damage over Time", + "4% increased maximum Life", + "Regenerate 0.6% of Life per second" + } + }, + [56070]= { + ["skill"]= 56070, + ["name"]= "Exposure Therapy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Damage over Time Multiplier", + "+30% Chaos Resistance against Damage Over Time" + } + }, + [28146]= { + ["skill"]= 28146, + ["name"]= "Brush with Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Damage over Time Multiplier", + "Recover 1% of Life on Kill", + "Recover 1% of Energy Shield on Kill" + } + }, + [65110]= { + ["skill"]= 65110, + ["name"]= "Vile Reinvigoration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "24% increased Damage over Time", + "6% increased maximum Energy Shield", + "Regenerate 2% of Energy Shield per second if you've Killed an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [10355]= { + ["skill"]= 10355, + ["name"]= "Circling Oblivion", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Damage over Time", + "15% increased Duration of Ailments on Enemies" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + [4094]= { + ["skill"]= 4094, + ["name"]= "Brewed for Potency", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "24% increased Damage over Time", + "10% increased Flask Charges gained", + "20% increased Life and Mana Recovery from Flasks" + } + }, + [51467]= { + ["skill"]= 51467, + ["name"]= "Astonishing Affliction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Duration of Elemental Ailments on Enemies", + "20% increased Damage with Hits and Ailments against Enemies affected by Ailments", + "20% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)", + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [25563]= { + ["skill"]= 25563, + ["name"]= "Cold Conduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Effect of Cold Ailments you inflict on Shocked Enemies", + "25% increased Effect of Lightning Ailments you inflict on Chilled Enemies" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)", + "(Lightning Ailments are Shocked and Sapped)" + } + }, + [20343]= { + ["skill"]= 20343, + ["name"]= "Inspired Oppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Elemental Damage", + "30% increased Mana Regeneration Rate if you have Frozen an Enemy Recently", + "30% increased Mana Regeneration Rate if you have Shocked an Enemy Recently", + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [58248]= { + ["skill"]= 58248, + ["name"]= "Chilling Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Nearby Enemies are Chilled" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by 10%)" + } + }, + [18861]= { + ["skill"]= 18861, + ["name"]= "Deep Chill", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Cold Damage over Time Multiplier", + "30% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + } + }, + [39874]= { + ["skill"]= 39874, + ["name"]= "Blast-Freeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Cold Damage", + "Freezes you inflict spread to other Enemies within 1.2 metres" + } + }, + [35430]= { + ["skill"]= 35430, + ["name"]= "Thunderstruck", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Lightning Damage", + "Your Critical Strikes Knock Back Shocked Enemies", + "30% increased Critical Strike Chance" + } + }, + [37478]= { + ["skill"]= 37478, + ["name"]= "Stormrider", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to gain a Power Charge when you Shock a Chilled Enemy", + "25% increased Cold Damage with Hits against Shocked Enemies", + "25% increased Lightning Damage with Hits against Chilled Enemies" + } + }, + [28682]= { + ["skill"]= 28682, + ["name"]= "Overshock", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Lightning Damage", + "40% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + } + }, + [42305]= { + ["skill"]= 42305, + ["name"]= "Evil Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Curse take 6% increased Damage" + } + }, + [57104]= { + ["skill"]= 57104, + ["name"]= "Evil Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Curse take 6% increased Damage" + } + }, + [61549]= { + ["skill"]= 61549, + ["name"]= "Forbidden Words", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Area of Effect of Curse Aura Skills", + "15% increased Mana Reservation Efficiency of Curse Aura Skills" + } + }, + [18624]= { + ["skill"]= 18624, + ["name"]= "Doedre's Spite", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enfeeble can affect Hexproof Enemies", + "35% increased Critical Strike Chance against Cursed Enemies" + } + }, + [42929]= { + ["skill"]= 42929, + ["name"]= "Victim Maker", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Curse Skills have 8% increased Cast Speed", + "Enemies Cursed by you have Malediction if 33% of Curse Duration expired" + }, + ["reminderText"]= { + "(Malediction causes 10% reduced Damage dealt and 10% increased Damage taken)" + } + }, + [14418]= { + ["skill"]= 14418, + ["name"]= "Master of Fear", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Curse are Unnerved" + }, + ["reminderText"]= { + "(Unnerved enemies take 10% increased Spell Damage)" + } + }, + [7279]= { + ["skill"]= 7279, + ["name"]= "Wish for Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "You have Culling Strike against Cursed Enemies" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + [28551]= { + ["skill"]= 28551, + ["name"]= "Heraldry", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Nearby Enemies have Cold Exposure while you are affected by Herald of Ice", + "Nearby Enemies have Fire Exposure while you are affected by Herald of Ash", + "Nearby Enemies have Lightning Exposure while you are affected by Herald of Thunder" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)", + "(Fire Exposure applies -10% to Fire Resistance for 4 seconds)", + "(Lightning Exposure applies -10% to Lightning Resistance for 4 seconds)" + } + }, + [24038]= { + ["skill"]= 24038, + ["name"]= "Endbringer", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Damage for each Herald affecting you", + "20% increased Damage while affected by a Herald" + } + }, + [16952]= { + ["skill"]= 16952, + ["name"]= "Cult-Leader", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 35% increased Damage while you are affected by a Herald" + } + }, + [17066]= { + ["skill"]= 17066, + ["name"]= "Empowered Envoy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Herald Skills deal 40% increased Damage", + "20% increased Effect of Herald Buffs on you" + } + }, + [8897]= { + ["skill"]= 8897, + ["name"]= "Dark Messenger", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Herald Skills have 25% increased Area of Effect", + "Herald Skills deal 20% increased Damage" + } + }, + [61998]= { + ["skill"]= 61998, + ["name"]= "Agent of Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to Freeze, Shock and Ignite while affected by a Herald", + "25% increased Elemental Damage while affected by a Herald" + } + }, + [17905]= { + ["skill"]= 17905, + ["name"]= "Lasting Impression", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Damage over Time while affected by a Herald", + "Herald Skills deal 50% increased Damage over Time" + } + }, + [65521]= { + ["skill"]= 65521, + ["name"]= "Self-Fulfilling Prophecy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to Critical Strike Chance of Herald Skills", + "+15% to Critical Strike Multiplier if you dealt a Critical Strike with a Herald Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [40402]= { + ["skill"]= 40402, + ["name"]= "Invigorating Portents", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 20% increased Damage while you are affected by a Herald", + "Minions have 10% increased Movement Speed for each Herald affecting you" + } + }, + [5781]= { + ["skill"]= 5781, + ["name"]= "Pure Agony", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5 to Maximum Virulence", + "Minions deal 20% increased Damage while you are affected by a Herald" + } + }, + [24357]= { + ["skill"]= 24357, + ["name"]= "Disciples", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 20% increased Damage while you are affected by a Herald", + "Summoned Sentinels have 25% increased Cooldown Recovery Rate" + } + }, + [55171]= { + ["skill"]= 55171, + ["name"]= "Dread March", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions have 10% increased Movement Speed", + "Minions have 10% additional Physical Damage Reduction", + "Minions have +10% to Chaos Resistance" + } + }, + [42126]= { + ["skill"]= 42126, + ["name"]= "Blessed Rebirth", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 20% increased maximum Life", + "Minions created Recently cannot be Damaged" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [62318]= { + ["skill"]= 62318, + ["name"]= "Life from Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 15% increased maximum Life", + "Regenerate 2% of Life per second if a Minion has Died Recently", + "Minions Recover 4% of Life on Minion Death" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [22540]= { + ["skill"]= 22540, + ["name"]= "Feasting Fiends", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage", + "Minions Leech 0.4% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [11199]= { + ["skill"]= 11199, + ["name"]= "Bodyguards", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions have 10% chance to Knock Enemies Back on Hit with Attacks" + } + }, + [42068]= { + ["skill"]= 42068, + ["name"]= "Follow-Through", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for\neach remaining Chain, up to a maximum of 100%" + } + }, + [36645]= { + ["skill"]= 36645, + ["name"]= "Streamlined", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Projectile Speed", + "20% increased Projectile Damage" + } + }, + [12400]= { + ["skill"]= 12400, + ["name"]= "Shrieking Bolts", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "35% increased Projectile Damage", + "10% chance to Taunt Enemies on Projectile Hit" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + } + }, + [54170]= { + ["skill"]= 54170, + ["name"]= "Eye to Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Projectile Damage", + "Projectiles deal 35% increased Damage with Hits against nearby Enemies" + } + }, + [53285]= { + ["skill"]= 53285, + ["name"]= "Repeater", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Projectile Damage", + "8% increased Attack and Cast Speed" + } + }, + [13812]= { + ["skill"]= 13812, + ["name"]= "Aerodynamics", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Projectiles Pierce an additional Target", + "10% increased Projectile Speed", + "10% increased Projectile Damage" + } + }, + [26839]= { + ["skill"]= 26839, + ["name"]= "Chip Away", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Brand Recall grants 20% increased Brand Attachment range to recalled Brands", + "Brand Recall has 4% increased Cooldown Recovery Rate per Brand, up to a maximum of 40%" + } + }, + [37358]= { + ["skill"]= 37358, + ["name"]= "Seeker Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Brand Damage", + "Unattached Brands gain 20% increased Brand Attachment Range per\nsecond, up to a maximum of 100%" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [59307]= { + ["skill"]= 59307, + ["name"]= "Remarkable", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Cast Speed with Brand Skills", + "Skills which create Brands have 35% chance to create an additional Brand" + } + }, + [36276]= { + ["skill"]= 36276, + ["name"]= "Brand Loyalty", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies take 3% increased Damage for each of your Brands Attached to them" + } + }, + [42636]= { + ["skill"]= 42636, + ["name"]= "Holy Conquest", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", + "25% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [13392]= { + ["skill"]= 13392, + ["name"]= "Grand Design", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Brand Damage", + "Brand Skills have 10% increased Duration", + "10% increased Brand Attachment range" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [29193]= { + ["skill"]= 29193, + ["name"]= "Set and Forget", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Trap Damage", + "40% increased Trap Trigger Area of Effect", + "Skills used by Traps have 15% increased Area of Effect" + } + }, + [54760]= { + ["skill"]= 54760, + ["name"]= "Expert Sabotage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Mines have 20% increased Detonation Speed", + "Mines have a 10% chance to be Detonated an Additional Time" + } + }, + [24645]= { + ["skill"]= 24645, + ["name"]= "Guerilla Tactics", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Trap Damage", + "20% increased Mine Damage", + "10% increased Trap Throwing Speed", + "10% increased Mine Throwing Speed", + "5% increased Movement Speed if you've thrown a Trap or Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [65138]= { + ["skill"]= 65138, + ["name"]= "Expendability", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to throw up to 1 additional Trap or Mine" + }, + ["reminderText"]= { + "(Throwing Mines takes 10% more time for each additional Mine thrown)" + } + }, + [52058]= { + ["skill"]= 52058, + ["name"]= "Arcane Pyrotechnics", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Trap Damage", + "20% increased Mine Damage", + "Gain Arcane Surge when your Mine is Detonated targeting an Enemy", + "Gain Arcane Surge when your Trap is Triggered by an Enemy" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [22434]= { + ["skill"]= 22434, + ["name"]= "Surprise Sabotage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+8% to Critical Strike Multiplier with Traps", + "+8% to Critical Strike Multiplier with Mines", + "Trap Damage Penetrates 4% Elemental Resistances", + "Mine Damage Penetrates 4% Elemental Resistances" + } + }, + [20383]= { + ["skill"]= 20383, + ["name"]= "Careful Handling", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Trap Damage", + "15% increased Mine Damage", + "4% increased maximum Life", + "6% increased maximum Mana" + } + }, + [8949]= { + ["skill"]= 8949, + ["name"]= "Peak Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "20% increased Life Recovery from Flasks" + } + }, + [52844]= { + ["skill"]= 52844, + ["name"]= "Fettle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+20 to maximum Life", + "10% increased maximum Life" + } + }, + [15538]= { + ["skill"]= 15538, + ["name"]= "Feast of Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "0.4% of Attack Damage Leeched as Life", + "Gain 10 Life per Enemy Hit with Attacks" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [62706]= { + ["skill"]= 62706, + ["name"]= "Sublime Sensation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "8% increased maximum Life" + } + }, + [19723]= { + ["skill"]= 19723, + ["name"]= "Surging Vitality", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "Every 4 seconds, Regenerate 10% of Life over one second" + } + }, + [49694]= { + ["skill"]= 49694, + ["name"]= "Peace Amidst Chaos", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "20% increased Armour while stationary", + "Regenerate 2% of Life per second while stationary" + } + }, + [40858]= { + ["skill"]= 40858, + ["name"]= "Adrenaline", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "6% increased Attack Speed while Leeching" + } + }, + [3723]= { + ["skill"]= 3723, + ["name"]= "Wall of Muscle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased maximum Life", + "5% increased Strength" + } + }, + [12867]= { + ["skill"]= 12867, + ["name"]= "Mindfulness", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased maximum Mana", + "80% increased Mana Regeneration Rate while stationary" + } + }, + [4958]= { + ["skill"]= 4958, + ["name"]= "Liquid Inspiration", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased maximum Mana", + "20% increased Mana Recovery from Flasks", + "25% chance to gain a Power Charge when you use a Mana Flask" + } + }, + [20968]= { + ["skill"]= 20968, + ["name"]= "Openness", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+30 to maximum Mana", + "20% increased maximum Mana", + "15% increased Mana Cost Efficiency" + } + }, + [15175]= { + ["skill"]= 15175, + ["name"]= "Daring Ideas", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "18% increased maximum Mana", + "0.4% of Attack Damage Leeched as Mana", + "25% increased Cost Efficiency of Attacks" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [2220]= { + ["skill"]= 2220, + ["name"]= "Clarity of Purpose", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased maximum Mana", + "30% increased Mana Regeneration Rate" + } + }, + [43834]= { + ["skill"]= 43834, + ["name"]= "Scintillating Idea", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased maximum Mana", + "Damage Penetrates 5% Lightning Resistance" + } + }, + [23884]= { + ["skill"]= 23884, + ["name"]= "Holistic Health", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "10% increased maximum Mana" + } + }, + [62160]= { + ["skill"]= 62160, + ["name"]= "Genius", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Mana", + "5% increased Intelligence" + } + }, + [42024]= { + ["skill"]= 42024, + ["name"]= "Improvisor", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased Attack Speed", + "10% increased maximum Mana", + "Gain 3 Mana per Enemy Hit with Attacks" + } + }, + [32031]= { + ["skill"]= 32031, + ["name"]= "Stubborn Student", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Armour", + "15% increased maximum Mana", + "+1 Armour per 10 Unreserved Maximum Mana" + } + }, + [52544]= { + ["skill"]= 52544, + ["name"]= "Savour the Moment", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "Regenerate 3.00% of Energy Shield per second while stationary" + } + }, + [20241]= { + ["skill"]= 20241, + ["name"]= "Energy From Naught", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+70 to maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + } + }, + [33698]= { + ["skill"]= 33698, + ["name"]= "Will Shaper", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 5% of Maximum Mana as Extra Maximum Energy Shield" + } + }, + [64782]= { + ["skill"]= 64782, + ["name"]= "Spring Back", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "5% faster start of Energy Shield Recharge" + } + }, + [11513]= { + ["skill"]= 11513, + ["name"]= "Conservation of Energy", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "0.3% of Spell Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [39331]= { + ["skill"]= 39331, + ["name"]= "Heart of Iron", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 10% of Maximum Life as Extra Armour" + } + }, + [54766]= { + ["skill"]= 54766, + ["name"]= "Prismatic Carapace", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [50820]= { + ["skill"]= 50820, + ["name"]= "Militarism", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "8% increased maximum Life" + } + }, + [60647]= { + ["skill"]= 60647, + ["name"]= "Second Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "4% Chance to Block Spell Damage", + "30% increased Armour", + "+4% Chance to Block Attack Damage" + } + }, + [14412]= { + ["skill"]= 14412, + ["name"]= "Dragon Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "+20% to Fire Resistance", + "15% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + [57572]= { + ["skill"]= 57572, + ["name"]= "Enduring Composure", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "Gain 1 Endurance Charge every second if you've been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [42313]= { + ["skill"]= 42313, + ["name"]= "Prismatic Dance", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Evasion Rating", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [64259]= { + ["skill"]= 64259, + ["name"]= "Natural Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Evasion Rating", + "8% increased maximum Life" + } + }, + [22704]= { + ["skill"]= 22704, + ["name"]= "Untouchable", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "30% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [46074]= { + ["skill"]= 46074, + ["name"]= "Shifting Shadow", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["grantedDexterity"]= 20, + ["stats"]= { + "20% increased Evasion Rating", + "+20 to Dexterity", + "10% chance to Blind Enemies on Hit" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [9245]= { + ["skill"]= 9245, + ["name"]= "Readiness", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled", + "30% increased Evasion Rating if you haven't been Hit Recently" + } + }, + [11318]= { + ["skill"]= 11318, + ["name"]= "Confident Combatant", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "1% increased Damage per 1% Chance to Block Attack Damage" + } + }, + [4641]= { + ["skill"]= 4641, + ["name"]= "Flexible Sentry", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "4% Chance to Block Spell Damage", + "25% reduced Elemental Ailment Duration on you", + "+4% Chance to Block Attack Damage", + "25% reduced Effect of Chill and Shock on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [58944]= { + ["skill"]= 58944, + ["name"]= "Vicious Guard", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.4% of Attack Damage Leeched as Life", + "Regenerate 1.5% of Life per second", + "+6% Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [34108]= { + ["skill"]= 34108, + ["name"]= "Mystical Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% Chance to Block Spell Damage", + "0.3% of Spell Damage Leeched as Energy Shield", + "Regenerate 1.5% of Energy Shield per second" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [11011]= { + ["skill"]= 11011, + ["name"]= "Rote Reinforcement", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+20 to maximum Life", + "20% chance to gain an Endurance Charge when you Block", + "+6% Chance to Block Attack Damage" + } + }, + [25450]= { + ["skill"]= 25450, + ["name"]= "Mage Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% Chance to Block Spell Damage", + "20% increased Spell Damage", + "20% chance to gain a Power Charge when you Block" + } + }, + [64407]= { + ["skill"]= 64407, + ["name"]= "Riot Queller", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Attack Damage", + "Enemies Taunted by you take 6% increased Damage" + } + }, + [53067]= { + ["skill"]= 53067, + ["name"]= "One with the Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Attack Damage while holding a Shield", + "Recover 50 Life when you Block", + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + [23042]= { + ["skill"]= 23042, + ["name"]= "Aerialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "5% increased Dexterity" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [40181]= { + ["skill"]= 40181, + ["name"]= "Elegant Form", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "20% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)", + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [9276]= { + ["skill"]= 9276, + ["name"]= "Darting Movements", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "3% increased Movement Speed", + "+12% chance to Suppress Spell Damage while moving" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [18155]= { + ["skill"]= 18155, + ["name"]= "No Witnesses", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to gain Elusive on Kill", + "25% increased Elusive Effect" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + [48803]= { + ["skill"]= 48803, + ["name"]= "Molten One's Mark", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+2% to maximum Fire Resistance", + "Regenerate 1% of Life per second" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [42530]= { + ["skill"]= 42530, + ["name"]= "Fire Attunement", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% reduced Ignite Duration on you", + "You cannot be Ignited if you've been Ignited Recently", + "Unaffected by Burning Ground" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + } + }, + [17769]= { + ["skill"]= 17769, + ["name"]= "Pure Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "40% increased Stun and Block Recovery", + "Purity of Fire has 80% increased Mana Reservation Efficiency", + "+20 to Strength" + } + }, + [13549]= { + ["skill"]= 13549, + ["name"]= "Blacksmith", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Armour", + "+20% to Fire Resistance", + "0.4% of Fire Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [1581]= { + ["skill"]= 1581, + ["name"]= "Non-Flammable", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Fire Resistance", + "+20% to Fire Resistance", + "30% chance to Avoid being Ignited" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [38683]= { + ["skill"]= 38683, + ["name"]= "Winter Prowler", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+2% to maximum Cold Resistance", + "10% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [19508]= { + ["skill"]= 19508, + ["name"]= "Hibernator", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% reduced Effect of Chill on you", + "30% reduced Freeze Duration on you", + "You cannot be Frozen if you've been Frozen Recently", + "Unaffected by Chilled Ground" + }, + ["reminderText"]= { + "(Chill reduces Action Speed by up to 30%)", + "(Recently refers to the past 4 seconds)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + } + }, + [26322]= { + ["skill"]= 26322, + ["name"]= "Pure Guile", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["grantedDexterity"]= 20, + ["stats"]= { + "Purity of Ice has 80% increased Mana Reservation Efficiency", + "+20 to Dexterity", + "5% chance to Blind Enemies on Hit" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [58904]= { + ["skill"]= 58904, + ["name"]= "Alchemist", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+20% to Cold Resistance", + "8% increased Attack and Cast Speed", + "20% increased Life Recovery from Flasks" + } + }, + [33676]= { + ["skill"]= 33676, + ["name"]= "Antifreeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Cold Resistance", + "+20% to Cold Resistance", + "30% chance to Avoid being Frozen" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [44203]= { + ["skill"]= 44203, + ["name"]= "Wizardry", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Mana", + "+2% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [22002]= { + ["skill"]= 22002, + ["name"]= "Capacitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "You cannot be Shocked if you've been Shocked Recently", + "30% reduced Effect of Shock on you", + "Unaffected by Shocked Ground" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Shock increases Damage taken by up to 50%)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + } + }, + [51421]= { + ["skill"]= 51421, + ["name"]= "Pure Aptitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 20, + ["stats"]= { + "15% increased Energy Shield Recharge Rate", + "Purity of Lightning has 80% increased Mana Reservation Efficiency", + "+20 to Intelligence" + } + }, + [10409]= { + ["skill"]= 10409, + ["name"]= "Sage", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Mana Regeneration Rate", + "+20% to Lightning Resistance", + "Regenerate 1.5% of Life per second" + } + }, + [54798]= { + ["skill"]= 54798, + ["name"]= "Insulated", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Lightning Resistance", + "+20% to Lightning Resistance", + "30% chance to Avoid being Shocked" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [51523]= { + ["skill"]= 51523, + ["name"]= "Born of Chaos", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+3% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [21688]= { + ["skill"]= 21688, + ["name"]= "Antivenom", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Chaos Resistance", + "+23% to Chaos Resistance", + "30% chance to Avoid being Poisoned" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [29096]= { + ["skill"]= 29096, + ["name"]= "Rot-Resistant", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+13% to Chaos Resistance", + "Regenerate 1.2% of Life per second", + "Regenerate 0.6% of Energy Shield per second", + "Regenerate 0.3% of Mana per second" + } + }, + [64717]= { + ["skill"]= 64717, + ["name"]= "Blessed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased maximum Life", + "10% increased maximum Mana", + "+13% to Chaos Resistance" + } + }, + [26179]= { + ["skill"]= 26179, + ["name"]= "Student of Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Damage over Time", + "+13% to Chaos Resistance" + } + }, + [33]= { + ["skill"]= 33, + ["name"]= "Lord of Drought", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Flammability can affect Hexproof Enemies", + "30% increased Damage with Ignites inflicted on Cursed Enemies" + } + }, + [25938]= { + ["skill"]= 25938, + ["name"]= "Blizzard Caller", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Frostbite can affect Hexproof Enemies", + "30% increased Duration of Freezes you inflict on Cursed Enemies" + } + }, + [17662]= { + ["skill"]= 17662, + ["name"]= "Tempt the Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Conductivity can affect Hexproof Enemies", + "30% increased Effect of Shocks you inflict on Cursed Enemies" + } + }, + [14061]= { + ["skill"]= 14061, + ["name"]= "Misery Everlasting", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Despair can affect Hexproof Enemies", + "Recover 2% of Energy Shield when you Kill a Cursed Enemy" + } + }, + [42601]= { + ["skill"]= 42601, + ["name"]= "Exploit Weakness", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Vulnerability can affect Hexproof Enemies", + "Recover 2% of Life when you Kill a Cursed Enemy" + } + }, + [33232]= { + ["skill"]= 33232, + ["name"]= "Self-Control", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Mana Regeneration Rate", + "Discipline has 80% increased Mana Reservation Efficiency" + } + }, + [21907]= { + ["skill"]= 21907, + ["name"]= "Uncompromising", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Stun Threshold", + "Determination has 50% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + [60690]= { + ["skill"]= 60690, + ["name"]= "Sublime Form", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to all Elemental Resistances", + "Grace has 50% increased Mana Reservation Efficiency" + } + }, + [32259]= { + ["skill"]= 32259, + ["name"]= "Mortifying Aspect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+11% to Chaos Resistance", + "Malevolence has 50% increased Mana Reservation Efficiency" + } + }, + [31333]= { + ["skill"]= 31333, + ["name"]= "Frantic Aspect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Debuffs on you expire 10% faster", + "Haste has 50% increased Mana Reservation Efficiency" + } + }, + [907]= { + ["skill"]= 907, + ["name"]= "Introspection", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + [9495]= { + ["skill"]= 9495, + ["name"]= "Hound's Mark", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Effect of your Marks", + "20% increased Damage with Hits and Ailments against Marked Enemy" + } + }, + [37882]= { + ["skill"]= 37882, + ["name"]= "Doedre's Gluttony", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Punishment can affect Hexproof Enemies", + "You have Culling Strike against Cursed Enemies" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + [16540]= { + ["skill"]= 16540, + ["name"]= "Doedre's Apathy", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Temporal Chains can affect Hexproof Enemies", + "Enemies you Curse are Unnerved" + }, + ["reminderText"]= { + "(Unnerved enemies take 10% increased Spell Damage)" + } + }, + [44731]= { + ["skill"]= 44731, + ["name"]= "Master of the Maelstrom", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Elemental Weakness can affect Hexproof Enemies", + "+1% to all maximum Elemental Resistances if you have Killed a Cursed Enemy Recently" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [29764]= { + ["skill"]= 29764, + ["name"]= "Aggressive Defence", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Fortification Duration", + "20% increased Damage with Attack Skills while Fortified", + "Fortifying Hits grant 60% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + } + }, + [44435]= { + ["skill"]= 44435, + ["name"]= "Holy Word", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Your Warcries inflict Hallowing Flame" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)" + } + }, + [7431]= { + ["skill"]= 7431, + ["name"]= "Fiery Aegis", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% Chance to Block Attack Damage", + "Hallowing Flame you inflict has 1% increased magnitude per 2% Attack Block chance" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)" + } + }, + [14084]= { + ["skill"]= 14084, + ["name"]= "Axe and Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png", + ["stats"]= { + "Axe Attacks deal 12% increased Damage with Hits and Ailments", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [44810]= { + ["skill"]= 44810, + ["name"]= "Axe and Sword Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupSwordAndAxe.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [51642]= { + ["skill"]= 51642, + ["name"]= "Mace and Staff Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png", + ["stats"]= { + "Staff Attacks deal 12% increased Damage with Hits and Ailments", + "Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [43130]= { + ["skill"]= 43130, + ["name"]= "Mace and Staff Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupMaceAndStaff.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [31680]= { + ["skill"]= 31680, + ["name"]= "Dagger and Claw Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png", + ["stats"]= { + "Claw Attacks deal 12% increased Damage with Hits and Ailments", + "Dagger Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Rune Daggers are considered Daggers)" + } + }, + [42783]= { + ["skill"]= 42783, + ["name"]= "Dagger and Claw Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltDaggerClawDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [18870]= { + ["skill"]= 18870, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + } + }, + [54935]= { + ["skill"]= 54935, + ["name"]= "Bow Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupBow.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [41204]= { + ["skill"]= 41204, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeWandDamage.png", + ["stats"]= { + "Wand Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [38334]= { + ["skill"]= 38334, + ["name"]= "Wand Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupWand.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [58031]= { + ["skill"]= 58031, + ["name"]= "Damage with Two Handed Weapons", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png", + ["stats"]= { + "12% increased Damage with Two Handed Weapons" + } + }, + [52606]= { + ["skill"]= 52606, + ["name"]= "Damage with Two Handed Melee Weapons Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupTwoHands.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [16404]= { + ["skill"]= 16404, + ["name"]= "Attack Damage while Dual Wielding", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + ["stats"]= { + "12% increased Attack Damage while Dual Wielding" + } + }, + [44100]= { + ["skill"]= 44100, + ["name"]= "Attack Damage while Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupDualWield.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [14303]= { + ["skill"]= 14303, + ["name"]= "Attack Damage while holding a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png", + ["stats"]= { + "12% increased Attack Damage while holding a Shield" + } + }, + [25429]= { + ["skill"]= 25429, + ["name"]= "Attack Damage while holding a Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupShield.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [747]= { + ["skill"]= 747, + ["name"]= "Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", + ["stats"]= { + "10% increased Attack Damage" + } + }, + [54888]= { + ["skill"]= 54888, + ["name"]= "Attack Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [21845]= { + ["skill"]= 21845, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png", + ["stats"]= { + "10% increased Spell Damage" + } + }, + [21841]= { + ["skill"]= 21841, + ["name"]= "Spell Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupCast.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [49465]= { + ["skill"]= 49465, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + ["stats"]= { + "10% increased Elemental Damage" + } + }, + [44078]= { + ["skill"]= 44078, + ["name"]= "Elemental Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryElementalDamage.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [37171]= { + ["skill"]= 37171, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "12% increased Physical Damage" + } + }, + [58618]= { + ["skill"]= 58618, + ["name"]= "Physical Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryPhysicalDamage.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [13146]= { + ["skill"]= 13146, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamagenode.png", + ["stats"]= { + "12% increased Fire Damage" + } + }, + [43904]= { + ["skill"]= 43904, + ["name"]= "Fire Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupFire.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [49817]= { + ["skill"]= 49817, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + ["stats"]= { + "12% increased Lightning Damage" + } + }, + [15015]= { + ["skill"]= 15015, + ["name"]= "Lightning Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupLightning.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [41355]= { + ["skill"]= 41355, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + ["stats"]= { + "12% increased Cold Damage" + } + }, + [37977]= { + ["skill"]= 37977, + ["name"]= "Cold Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupCold.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [46248]= { + ["skill"]= 46248, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + ["stats"]= { + "12% increased Chaos Damage" + } + }, + [12117]= { + ["skill"]= 12117, + ["name"]= "Chaos Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryChaos.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [49331]= { + ["skill"]= 49331, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png", + ["stats"]= { + "Minions deal 10% increased Damage" + } + }, + [16351]= { + ["skill"]= 16351, + ["name"]= "Minion Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [31549]= { + ["skill"]= 31549, + ["name"]= "Fire Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png", + ["stats"]= { + "12% increased Burning Damage" + } + }, + [57049]= { + ["skill"]= 57049, + ["name"]= "Fire Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltFireDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [35020]= { + ["skill"]= 35020, + ["name"]= "Chaos Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png", + ["stats"]= { + "12% increased Chaos Damage over Time" + } + }, + [40036]= { + ["skill"]= 40036, + ["name"]= "Chaos Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltChaosDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [14036]= { + ["skill"]= 14036, + ["name"]= "Physical Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + ["stats"]= { + "12% increased Physical Damage over Time" + } + }, + [20314]= { + ["skill"]= 20314, + ["name"]= "Physical Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltBloodMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [39222]= { + ["skill"]= 39222, + ["name"]= "Cold Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png", + ["stats"]= { + "12% increased Cold Damage over Time" + } + }, + [40966]= { + ["skill"]= 40966, + ["name"]= "Cold Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltColdDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [32169]= { + ["skill"]= 32169, + ["name"]= "Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png", + ["stats"]= { + "10% increased Damage over Time" + } + }, + [48978]= { + ["skill"]= 48978, + ["name"]= "Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltDamageOverTimeMultiplierMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [61851]= { + ["skill"]= 61851, + ["name"]= "Effect of Non-Damaging Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png", + ["stats"]= { + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [45462]= { + ["skill"]= 45462, + ["name"]= "Effect of Non-Damaging Ailments Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltNonDamagingAilmentsMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [6265]= { + ["skill"]= 6265, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", + ["stats"]= { + "3% increased effect of Non-Curse Auras from your Skills" + } + }, + [2054]= { + ["skill"]= 2054, + ["name"]= "Aura Effect Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [18530]= { + ["skill"]= 18530, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "2% increased Effect of your Curses" + } + }, + [32642]= { + ["skill"]= 32642, + ["name"]= "Curse Effect Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryCurse.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [17198]= { + ["skill"]= 17198, + ["name"]= "Damage while you have a Herald", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png", + ["stats"]= { + "10% increased Damage while affected by a Herald" + } + }, + [33431]= { + ["skill"]= 33431, + ["name"]= "Damage while you have a Herald Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltDamageWithHeraldMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [3367]= { + ["skill"]= 3367, + ["name"]= "Minion Damage while you have a Herald", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png", + ["stats"]= { + "Minions deal 10% increased Damage while you are affected by a Herald" + } + }, + [37971]= { + ["skill"]= 37971, + ["name"]= "Minion Damage while you have a Herald Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [3870]= { + ["skill"]= 3870, + ["name"]= "Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png", + ["stats"]= { + "Exerted Attacks deal 20% increased Damage" + } + }, + [10118]= { + ["skill"]= 10118, + ["name"]= "Warcry Buff Effect Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltWarcryMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [10695]= { + ["skill"]= 10695, + ["name"]= "Critical Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png", + ["stats"]= { + "15% increased Critical Strike Chance" + } + }, + [2510]= { + ["skill"]= 2510, + ["name"]= "Critical Chance Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupCrit.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [20492]= { + ["skill"]= 20492, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + } + }, + [14933]= { + ["skill"]= 14933, + ["name"]= "Minion Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [44483]= { + ["skill"]= 44483, + ["name"]= "Area Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + ["stats"]= { + "10% increased Area Damage" + } + }, + [63454]= { + ["skill"]= 63454, + ["name"]= "Area Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltAreaDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [1371]= { + ["skill"]= 1371, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", + ["stats"]= { + "10% increased Projectile Damage" + } + }, + [7883]= { + ["skill"]= 7883, + ["name"]= "Projectile Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryProjectiles.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [48881]= { + ["skill"]= 48881, + ["name"]= "Trap and Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png", + ["stats"]= { + "12% increased Trap Damage", + "12% increased Mine Damage" + } + }, + [45474]= { + ["skill"]= 45474, + ["name"]= "Trap and Mine Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryTraps.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [46909]= { + ["skill"]= 46909, + ["name"]= "Totem Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNode.png", + ["stats"]= { + "12% increased Totem Damage" + } + }, + [16808]= { + ["skill"]= 16808, + ["name"]= "Totem Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryTotem.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [21126]= { + ["skill"]= 21126, + ["name"]= "Brand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNode.png", + ["stats"]= { + "12% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [49424]= { + ["skill"]= 49424, + ["name"]= "Brand Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryBrand.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [10493]= { + ["skill"]= 10493, + ["name"]= "Channelling Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png", + ["stats"]= { + "Channelling Skills deal 12% increased Damage" + } + }, + [10576]= { + ["skill"]= 10576, + ["name"]= "Channelling Skill Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [27625]= { + ["skill"]= 27625, + ["name"]= "Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskDurationnode.png", + ["stats"]= { + "6% increased Flask Effect Duration" + } + }, + [27397]= { + ["skill"]= 27397, + ["name"]= "Flask Duration Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [51042]= { + ["skill"]= 51042, + ["name"]= "Life and Mana recovery from Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png", + ["stats"]= { + "10% increased Life Recovery from Flasks", + "10% increased Mana Recovery from Flasks" + } + }, + [45259]= { + ["skill"]= 45259, + ["name"]= "Life and Mana recovery from Flasks Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [47192]= { + ["skill"]= 47192, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png", + ["stats"]= { + "4% increased maximum Life" + } + }, + [38342]= { + ["skill"]= 38342, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + ["stats"]= { + "6% increased maximum Energy Shield" + } + }, + [28321]= { + ["skill"]= 28321, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNode.png", + ["stats"]= { + "6% increased maximum Mana" + } + }, + [3879]= { + ["skill"]= 3879, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNode.png", + ["stats"]= { + "15% increased Armour" + } + }, + [8073]= { + ["skill"]= 8073, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNode.png", + ["stats"]= { + "15% increased Evasion Rating" + } + }, + [17271]= { + ["skill"]= 17271, + ["name"]= "Chance to Block Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png", + ["stats"]= { + "+2% Chance to Block Attack Damage" + } + }, + [45180]= { + ["skill"]= 45180, + ["name"]= "Chance to Block Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png", + ["stats"]= { + "2% Chance to Block Spell Damage" + } + }, + [36551]= { + ["skill"]= 36551, + ["name"]= "Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNode.png", + ["stats"]= { + "+15% to Fire Resistance" + } + }, + [37926]= { + ["skill"]= 37926, + ["name"]= "Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNode.png", + ["stats"]= { + "+15% to Cold Resistance" + } + }, + [65026]= { + ["skill"]= 65026, + ["name"]= "Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNode.png", + ["stats"]= { + "+15% to Lightning Resistance" + } + }, + [28987]= { + ["skill"]= 28987, + ["name"]= "Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", + ["stats"]= { + "+12% to Chaos Resistance" + } + }, + [45284]= { + ["skill"]= 45284, + ["name"]= "Chance to Suppress Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNode.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [65506]= { + ["skill"]= 65506, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + } + }, + [52919]= { + ["skill"]= 52919, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + } + }, + [31472]= { + ["skill"]= 31472, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + } + }, + [21796]= { + ["skill"]= 21796, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", + ["stats"]= { + "6% increased Mana Reservation Efficiency of Skills" + } + }, + [23376]= { + ["skill"]= 23376, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "2% increased Effect of your Curses" + } + }, + [27602]= { + ["name"]= "Nine Lives", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Int.png", + ["isNotable"]= true, + ["skill"]= 27602, + ["group"]= 44472, + ["ascendancyName"]= "Necromancer", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "25% of Damage taken Recouped as Life, Mana and Energy Shield", + "Recoup Effects instead occur over 3 seconds" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + [57568]= { + ["name"]= "Searing Purity", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png", + ["isNotable"]= true, + ["skill"]= 57568, + ["group"]= 50933, + ["ascendancyName"]= "Guardian", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "45% of Chaos Damage taken as Fire Damage", + "45% of Chaos Damage taken as Lightning Damage" + }, + ["reminderText"]= {} + }, + [52435]= { + ["name"]= "Indomitable Resolve", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Str.png", + ["isNotable"]= true, + ["skill"]= 52435, + ["group"]= 25519, + ["ascendancyName"]= "Berserker", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "Deal 10% less Damage", + "Take 25% less Damage" + }, + ["reminderText"]= {} + }, + [19355]= { + ["name"]= "Unleashed Potential", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["skill"]= 19355, + ["group"]= 60495, + ["ascendancyName"]= "Ascendant", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "400% increased Endurance, Frenzy and Power Charge Duration", + "25% chance to gain a Power, Frenzy or Endurance Charge on Kill", + "+1 to Maximum Endurance Charges", + "+1 to Maximum Frenzy Charges", + "+1 to Maximum Power Charges" + }, + ["reminderText"]= {} + }, + [42469]= { + ["name"]= "Fatal Flourish", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png", + ["isNotable"]= true, + ["skill"]= 42469, + ["group"]= 63033, + ["ascendancyName"]= "Champion", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "Final Repeat of Attack Skills deals 60% more Damage", + "Non-Travel Attack Skills Repeat an additional Time" + }, + ["reminderText"]= {} + }, + [18054]= { + ["name"]= "Fury of Nature", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png", + ["isNotable"]= true, + ["skill"]= 18054, + ["group"]= 56600, + ["ascendancyName"]= "Raider", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres", + "Non-Damaging Elemental Ailments you inflict have 100% more Effect" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittled, Shocked, and Sapped)" + } + }, + [57331]= { + ["name"]= "Harness the Void", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png", + ["isNotable"]= true, + ["skill"]= 57331, + ["group"]= 37841, + ["ascendancyName"]= "Saboteur", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "27% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", + "13% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage", + "7% chance to gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage" + }, + ["reminderText"]= {} + } + }, + ["jewelSlots"]= { + 26725, + 36634, + 33989, + 41263, + 60735, + 61834, + 31683, + 28475, + 6230, + 48768, + 34483, + 7960, + 46882, + 55190, + 61419, + 2491, + 54127, + 32763, + 26196, + 33631, + 21984, + 29712, + 48679, + 9408, + 12613, + 16218, + 2311, + 22994, + 40400, + 46393, + 61305, + 12161, + 3109, + 49080, + 17219, + 44169, + 24970, + 36931, + 14993, + 10532, + 23756, + 46519, + 23984, + 51198, + 61666, + 6910, + 49684, + 33753, + 18436, + 11150, + 22748, + 64583, + 61288, + 13170, + 9797, + 41876, + 59585, + 43670, + 29914, + 18060 + }, + ["min_x"]= -14159, + ["min_y"]= -10689, + ["max_x"]= 12430, + ["max_y"]= 10900, + ["constants"]= { + ["classes"]= { + ["StrDexIntClass"]= 0, + ["StrClass"]= 1, + ["DexClass"]= 2, + ["IntClass"]= 3, + ["StrDexClass"]= 4, + ["StrIntClass"]= 5, + ["DexIntClass"]= 6 + }, + ["characterAttributes"]= { + ["Strength"]= 0, + ["Dexterity"]= 1, + ["Intelligence"]= 2 + }, + ["PSSCentreInnerRadius"]= 130, + ["skillsPerOrbit"]= { + 1, + 6, + 16, + 16, + 40, + 72, + 72 + }, + ["orbitRadii"]= { + 0, + 82, + 162, + 335, + 493, + 662, + 846 + } + }, + ["points"]= { + ["totalPoints"]= 123, + ["ascendancyPoints"]= 8 + } +} \ No newline at end of file diff --git a/src/TreeData/3_29_ruthless/ascendancy-3.webp b/src/TreeData/3_29_ruthless/ascendancy-3.webp new file mode 100644 index 00000000000..16ad6d473a5 Binary files /dev/null and b/src/TreeData/3_29_ruthless/ascendancy-3.webp differ diff --git a/src/TreeData/3_29_ruthless/background-3.png b/src/TreeData/3_29_ruthless/background-3.png new file mode 100644 index 00000000000..85f1c4390a4 Binary files /dev/null and b/src/TreeData/3_29_ruthless/background-3.png differ diff --git a/src/TreeData/3_29_ruthless/bloodline-3.webp b/src/TreeData/3_29_ruthless/bloodline-3.webp new file mode 100644 index 00000000000..98a26f543c6 Binary files /dev/null and b/src/TreeData/3_29_ruthless/bloodline-3.webp differ diff --git a/src/TreeData/3_29_ruthless/frame-3.png b/src/TreeData/3_29_ruthless/frame-3.png new file mode 100644 index 00000000000..c53d73bfe4c Binary files /dev/null and b/src/TreeData/3_29_ruthless/frame-3.png differ diff --git a/src/TreeData/3_29_ruthless/group-background-3.png b/src/TreeData/3_29_ruthless/group-background-3.png new file mode 100644 index 00000000000..a7d118b4c29 Binary files /dev/null and b/src/TreeData/3_29_ruthless/group-background-3.png differ diff --git a/src/TreeData/3_29_ruthless/jewel-3.png b/src/TreeData/3_29_ruthless/jewel-3.png new file mode 100644 index 00000000000..1f21a0f3763 Binary files /dev/null and b/src/TreeData/3_29_ruthless/jewel-3.png differ diff --git a/src/TreeData/3_29_ruthless/jewel-radius.png b/src/TreeData/3_29_ruthless/jewel-radius.png new file mode 100644 index 00000000000..a4864aa10a3 Binary files /dev/null and b/src/TreeData/3_29_ruthless/jewel-radius.png differ diff --git a/src/TreeData/3_29_ruthless/line-3.png b/src/TreeData/3_29_ruthless/line-3.png new file mode 100644 index 00000000000..d559eb48b9c Binary files /dev/null and b/src/TreeData/3_29_ruthless/line-3.png differ diff --git a/src/TreeData/3_29_ruthless/mastery-3.png b/src/TreeData/3_29_ruthless/mastery-3.png new file mode 100644 index 00000000000..e5374d8ab04 Binary files /dev/null and b/src/TreeData/3_29_ruthless/mastery-3.png differ diff --git a/src/TreeData/3_29_ruthless/mastery-active-effect-3.png b/src/TreeData/3_29_ruthless/mastery-active-effect-3.png new file mode 100644 index 00000000000..e70bda11049 Binary files /dev/null and b/src/TreeData/3_29_ruthless/mastery-active-effect-3.png differ diff --git a/src/TreeData/3_29_ruthless/mastery-active-selected-3.png b/src/TreeData/3_29_ruthless/mastery-active-selected-3.png new file mode 100644 index 00000000000..e28c7100cdb Binary files /dev/null and b/src/TreeData/3_29_ruthless/mastery-active-selected-3.png differ diff --git a/src/TreeData/3_29_ruthless/mastery-connected-3.png b/src/TreeData/3_29_ruthless/mastery-connected-3.png new file mode 100644 index 00000000000..411d128fc72 Binary files /dev/null and b/src/TreeData/3_29_ruthless/mastery-connected-3.png differ diff --git a/src/TreeData/3_29_ruthless/mastery-disabled-3.png b/src/TreeData/3_29_ruthless/mastery-disabled-3.png new file mode 100644 index 00000000000..ff23af1dfc8 Binary files /dev/null and b/src/TreeData/3_29_ruthless/mastery-disabled-3.png differ diff --git a/src/TreeData/3_29_ruthless/skills-3.jpg b/src/TreeData/3_29_ruthless/skills-3.jpg new file mode 100644 index 00000000000..fb9c3fcbfda Binary files /dev/null and b/src/TreeData/3_29_ruthless/skills-3.jpg differ diff --git a/src/TreeData/3_29_ruthless/skills-disabled-3.jpg b/src/TreeData/3_29_ruthless/skills-disabled-3.jpg new file mode 100644 index 00000000000..a9e8e5ff6be Binary files /dev/null and b/src/TreeData/3_29_ruthless/skills-disabled-3.jpg differ diff --git a/src/TreeData/3_29_ruthless/sprites.lua b/src/TreeData/3_29_ruthless/sprites.lua new file mode 100644 index 00000000000..2d772206c47 --- /dev/null +++ b/src/TreeData/3_29_ruthless/sprites.lua @@ -0,0 +1,19732 @@ +return { + ["extraImages"]= { + [1]= { + ["x"]= -4560.69, + ["y"]= 292.425, + ["image"]= "Art/2DArt/BaseClassIllustrations/Str.png" + }, + [2]= { + ["x"]= 1994.17, + ["y"]= 387.525, + ["image"]= "Art/2DArt/BaseClassIllustrations/Dex.png" + }, + [3]= { + ["x"]= -1535.86, + ["y"]= -3848.79, + ["image"]= "Art/2DArt/BaseClassIllustrations/Int.png" + }, + [4]= { + ["x"]= -1956.43, + ["y"]= 1756.39, + ["image"]= "Art/2DArt/BaseClassIllustrations/StrDex.png" + }, + [5]= { + ["x"]= -3755.23, + ["y"]= -3210.21, + ["image"]= "Art/2DArt/BaseClassIllustrations/StrInt.png" + }, + [6]= { + ["x"]= 1704.07, + ["y"]= -3799.71, + ["image"]= "Art/2DArt/BaseClassIllustrations/DexInt.png" + } + }, + ["sprites"]= { + ["background"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/background-3.png?f8ce4f31", + ["w"]= 98, + ["h"]= 98, + ["coords"]= { + ["Background2"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 98, + ["h"]= 98 + } + } + }, + ["normalActive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?1540b3b6", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/2handedspeed.png"]= { + ["x"]= 26, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.png"]= { + ["x"]= 52, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.png"]= { + ["x"]= 78, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.png"]= { + ["x"]= 104, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.png"]= { + ["x"]= 130, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png"]= { + ["x"]= 156, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AhnsMightNode.png"]= { + ["x"]= 182, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AilmentDamageCritMultiplier.png"]= { + ["x"]= 208, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AldihNode.png"]= { + ["x"]= 234, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ApostateNode.png"]= { + ["x"]= 260, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArakaalisFangNode.png"]= { + ["x"]= 286, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNode.png"]= { + ["x"]= 312, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png"]= { + ["x"]= 338, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png"]= { + ["x"]= 364, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png"]= { + ["x"]= 390, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNode.png"]= { + ["x"]= 416, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 442, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 468, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 494, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 520, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 546, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 572, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 598, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 624, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 650, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 676, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 702, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 728, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 754, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 780, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 806, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 832, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png"]= { + ["x"]= 858, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 884, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 910, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 936, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png"]= { + ["x"]= 0, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNotable1.png"]= { + ["x"]= 26, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png"]= { + ["x"]= 52, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargedex.png"]= { + ["x"]= 78, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargeint.png"]= { + ["x"]= 104, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargestr.png"]= { + ["x"]= 130, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 156, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 182, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["x"]= 208, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["x"]= 234, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["x"]= 260, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["x"]= 286, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["x"]= 312, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 338, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["x"]= 364, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["x"]= 390, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["x"]= 416, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["x"]= 442, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["x"]= 468, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["x"]= 494, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["x"]= 520, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["x"]= 546, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["x"]= 572, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["x"]= 598, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["x"]= 624, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["x"]= 650, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["x"]= 676, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["x"]= 702, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["x"]= 728, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["x"]= 754, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["x"]= 780, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["x"]= 806, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["x"]= 832, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["x"]= 858, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["x"]= 884, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["x"]= 910, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["x"]= 936, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["x"]= 0, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["x"]= 26, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["x"]= 52, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["x"]= 78, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["x"]= 104, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 130, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["x"]= 156, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 182, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["x"]= 208, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 234, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["x"]= 260, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 286, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["x"]= 312, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["x"]= 338, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["x"]= 364, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["x"]= 390, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["x"]= 416, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["x"]= 442, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["x"]= 468, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["x"]= 494, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["x"]= 520, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["x"]= 546, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 572, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["x"]= 598, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["x"]= 624, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["x"]= 650, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["x"]= 676, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["x"]= 702, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["x"]= 728, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["x"]= 754, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["x"]= 780, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["x"]= 806, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["x"]= 832, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["x"]= 858, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png"]= { + ["x"]= 884, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["x"]= 0, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["x"]= 26, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["x"]= 52, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 78, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 104, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["x"]= 130, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DawnbreakerNode.png"]= { + ["x"]= 156, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["x"]= 182, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["x"]= 208, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 234, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 260, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["x"]= 286, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["x"]= 312, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["x"]= 338, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["x"]= 364, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["x"]= 390, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["x"]= 416, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["x"]= 442, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["x"]= 468, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 494, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["x"]= 520, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["x"]= 546, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElvoreNode.png"]= { + ["x"]= 572, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["x"]= 598, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["x"]= 624, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["x"]= 650, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["x"]= 676, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["x"]= 702, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FemuroftheSaintsNode.png"]= { + ["x"]= 728, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FidelitasSpikeNode.png"]= { + ["x"]= 754, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["x"]= 780, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["x"]= 806, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["x"]= 832, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["x"]= 858, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["x"]= 884, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["x"]= 910, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["x"]= 936, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["x"]= 0, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["x"]= 26, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GloomfangNode.png"]= { + ["x"]= 52, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["x"]= 78, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["x"]= 104, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["x"]= 130, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["x"]= 156, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["x"]= 182, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 208, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["x"]= 234, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["x"]= 260, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 286, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["x"]= 312, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 338, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 364, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["x"]= 390, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["x"]= 416, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["x"]= 442, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["x"]= 468, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["x"]= 494, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["x"]= 520, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["x"]= 546, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["x"]= 572, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["x"]= 598, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["x"]= 624, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["x"]= 650, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["x"]= 676, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["x"]= 702, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 728, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["x"]= 754, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 780, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["x"]= 806, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["x"]= 832, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["x"]= 858, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["x"]= 884, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["x"]= 910, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["x"]= 936, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["x"]= 0, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 26, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomBeltNode.png"]= { + ["x"]= 52, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomsRootsNode.png"]= { + ["x"]= 78, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 104, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["x"]= 130, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 156, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["x"]= 182, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["x"]= 208, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["x"]= 234, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["x"]= 260, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["x"]= 286, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["x"]= 312, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png"]= { + ["x"]= 338, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable9.png"]= { + ["x"]= 364, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable10.png"]= { + ["x"]= 390, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable11.png"]= { + ["x"]= 416, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable12.png"]= { + ["x"]= 442, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable13.png"]= { + ["x"]= 468, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable14.png"]= { + ["x"]= 494, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["x"]= 520, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["x"]= 546, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["x"]= 572, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["x"]= 598, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["x"]= 624, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["x"]= 650, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["x"]= 676, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeldingoftheFleshNode.png"]= { + ["x"]= 702, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 728, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["x"]= 754, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["x"]= 780, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["x"]= 806, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["x"]= 832, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["x"]= 858, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["x"]= 884, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["x"]= 910, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["x"]= 936, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["x"]= 0, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["x"]= 26, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["x"]= 52, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["x"]= 78, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["x"]= 104, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["x"]= 130, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["x"]= 156, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["x"]= 182, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["x"]= 208, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["x"]= 234, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["x"]= 260, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 286, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["x"]= 312, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["x"]= 338, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["x"]= 364, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["x"]= 390, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["x"]= 416, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["x"]= 442, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["x"]= 468, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["x"]= 494, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 520, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["x"]= 546, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["x"]= 572, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["x"]= 598, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["x"]= 624, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["x"]= 650, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["x"]= 676, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["x"]= 702, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["x"]= 728, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 754, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["x"]= 780, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PolaricDevastationNode.png"]= { + ["x"]= 806, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PresenceofChayulaNode.png"]= { + ["x"]= 832, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["x"]= 858, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["x"]= 884, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["x"]= 910, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["x"]= 936, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["x"]= 0, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["x"]= 26, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["x"]= 52, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["x"]= 78, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["x"]= 104, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["x"]= 130, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["x"]= 156, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["x"]= 182, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["x"]= 208, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["x"]= 234, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["x"]= 260, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RiriTeNgamahuNode.png"]= { + ["x"]= 286, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 312, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["x"]= 338, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["x"]= 364, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SacredChaliceNode.png"]= { + ["x"]= 390, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SandsofTimeNode.png"]= { + ["x"]= 416, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["x"]= 442, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ScreamsoftheDesiccatedNode.png"]= { + ["x"]= 468, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["x"]= 494, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShatteredDivinityNode.png"]= { + ["x"]= 520, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 546, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["x"]= 572, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShimmeronNode.png"]= { + ["x"]= 598, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["x"]= 624, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["x"]= 650, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["x"]= 676, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["x"]= 702, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["x"]= 728, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["x"]= 754, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["x"]= 780, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["x"]= 806, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["x"]= 832, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["x"]= 858, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["x"]= 884, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["x"]= 910, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["x"]= 936, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["x"]= 0, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TheBlackCaneNode.png"]= { + ["x"]= 26, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["x"]= 52, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["x"]= 78, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["x"]= 104, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["x"]= 130, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["x"]= 156, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["x"]= 182, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["x"]= 208, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["x"]= 234, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VaalCaressNode.png"]= { + ["x"]= 260, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 286, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["x"]= 312, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 338, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["x"]= 364, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["x"]= 390, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["x"]= 416, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["x"]= 442, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["x"]= 468, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 494, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["x"]= 520, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["x"]= 546, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["x"]= 572, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 598, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/XirgilsCrankNode.png"]= { + ["x"]= 624, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["x"]= 650, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["x"]= 676, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 702, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["x"]= 728, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 754, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["x"]= 780, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["x"]= 806, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["x"]= 832, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["x"]= 858, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 884, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["x"]= 910, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["x"]= 936, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["x"]= 0, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["x"]= 26, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["x"]= 52, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["x"]= 78, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["x"]= 104, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["x"]= 130, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["x"]= 156, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["x"]= 182, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["x"]= 208, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["x"]= 234, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 260, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["x"]= 286, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 312, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 338, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["x"]= 364, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 390, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 416, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 442, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["x"]= 468, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["x"]= 494, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["x"]= 520, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["x"]= 546, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["x"]= 572, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["x"]= 598, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["x"]= 624, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["x"]= 650, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["x"]= 676, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["x"]= 702, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["x"]= 728, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["x"]= 754, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 780, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["x"]= 806, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["x"]= 832, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["x"]= 858, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["x"]= 884, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["x"]= 910, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["x"]= 936, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["x"]= 0, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["x"]= 26, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["x"]= 52, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["x"]= 78, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["x"]= 104, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["x"]= 130, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["x"]= 156, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["x"]= 182, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["x"]= 208, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["x"]= 234, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["x"]= 260, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 286, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 312, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["x"]= 338, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["x"]= 364, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["x"]= 390, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["x"]= 416, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["x"]= 442, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["x"]= 468, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 494, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["x"]= 520, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["x"]= 546, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 572, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["x"]= 598, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 624, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["x"]= 650, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 676, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["x"]= 702, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["x"]= 728, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["x"]= 754, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 780, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["x"]= 806, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["x"]= 832, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 858, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["x"]= 884, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["x"]= 910, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["x"]= 936, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["x"]= 0, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["x"]= 26, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 52, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["x"]= 78, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["x"]= 104, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 130, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["x"]= 156, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["x"]= 182, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["x"]= 208, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["x"]= 234, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["x"]= 260, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 286, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 312, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["x"]= 338, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 364, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["x"]= 390, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["x"]= 416, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["x"]= 442, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["x"]= 468, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["x"]= 494, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["x"]= 520, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["x"]= 546, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["x"]= 572, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["x"]= 598, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 624, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["x"]= 650, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["x"]= 676, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["x"]= 702, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["x"]= 728, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["x"]= 754, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 780, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["x"]= 806, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["x"]= 832, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["x"]= 858, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["x"]= 884, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["x"]= 910, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 936, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["x"]= 962, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["x"]= 0, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { + ["x"]= 26, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { + ["x"]= 52, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { + ["x"]= 78, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { + ["x"]= 104, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { + ["x"]= 130, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { + ["x"]= 156, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { + ["x"]= 182, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { + ["x"]= 208, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { + ["x"]= 234, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { + ["x"]= 260, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 286, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 312, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 338, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { + ["x"]= 364, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { + ["x"]= 390, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { + ["x"]= 416, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + } + } + }, + ["notableActive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?1540b3b6", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampAbyssalFiends.png"]= { + ["x"]= 37, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.png"]= { + ["x"]= 74, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampStygianSpires.png"]= { + ["x"]= 111, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar1.png"]= { + ["x"]= 148, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar2.png"]= { + ["x"]= 185, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Additionalprojectile.png"]= { + ["x"]= 222, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AdmonisherNotable.png"]= { + ["x"]= 259, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Annihilation.png"]= { + ["x"]= 296, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AntiStunNotable.png"]= { + ["x"]= 333, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneChemistry.png"]= { + ["x"]= 370, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneReaping.png"]= { + ["x"]= 407, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNotable.png"]= { + ["x"]= 444, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNotable.png"]= { + ["x"]= 481, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourGuardsNotable.png"]= { + ["x"]= 555, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNotable.png"]= { + ["x"]= 592, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourandEvasion2.png"]= { + ["x"]= 629, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png"]= { + ["x"]= 666, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Dex.png"]= { + ["x"]= 703, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png"]= { + ["x"]= 740, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Int.png"]= { + ["x"]= 777, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png"]= { + ["x"]= 814, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Str.png"]= { + ["x"]= 851, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png"]= { + ["x"]= 888, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png"]= { + ["x"]= 925, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectoftheEagle.png"]= { + ["x"]= 0, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png"]= { + ["x"]= 37, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 74, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["x"]= 111, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["x"]= 148, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["x"]= 185, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["x"]= 222, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["x"]= 259, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["x"]= 296, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 333, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["x"]= 370, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 407, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["x"]= 444, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["x"]= 481, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["x"]= 518, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["x"]= 555, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["x"]= 592, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["x"]= 629, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["x"]= 666, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["x"]= 703, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["x"]= 740, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["x"]= 777, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["x"]= 814, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["x"]= 851, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["x"]= 888, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["x"]= 925, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["x"]= 0, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["x"]= 37, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 74, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["x"]= 111, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["x"]= 148, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["x"]= 185, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["x"]= 222, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["x"]= 259, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["x"]= 296, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["x"]= 333, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["x"]= 370, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["x"]= 407, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["x"]= 444, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["x"]= 481, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["x"]= 518, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["x"]= 555, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["x"]= 592, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["x"]= 629, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["x"]= 666, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["x"]= 703, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["x"]= 740, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["x"]= 814, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["x"]= 851, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 0, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 74, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["x"]= 111, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["x"]= 148, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["x"]= 185, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["x"]= 222, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 259, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 296, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["x"]= 333, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["x"]= 370, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["x"]= 407, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["x"]= 444, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["x"]= 481, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrineRot.png"]= { + ["x"]= 518, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["x"]= 555, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["x"]= 592, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["x"]= 629, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["x"]= 666, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["x"]= 703, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["x"]= 740, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["x"]= 777, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["x"]= 814, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["x"]= 851, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["x"]= 888, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["x"]= 925, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["x"]= 0, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["x"]= 37, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["x"]= 74, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 111, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["x"]= 148, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["x"]= 222, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["x"]= 259, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["x"]= 296, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["x"]= 333, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["x"]= 370, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["x"]= 407, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["x"]= 444, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["x"]= 481, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["x"]= 518, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["x"]= 555, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["x"]= 592, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["x"]= 629, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["x"]= 666, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["x"]= 703, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["x"]= 740, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["x"]= 777, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["x"]= 814, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["x"]= 851, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["x"]= 888, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["x"]= 925, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["x"]= 0, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["x"]= 37, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["x"]= 74, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 111, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["x"]= 148, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth2.png"]= { + ["x"]= 185, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["x"]= 222, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["x"]= 259, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["x"]= 296, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["x"]= 333, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["x"]= 370, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["x"]= 407, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["x"]= 444, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["x"]= 481, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["x"]= 518, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["x"]= 555, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["x"]= 592, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["x"]= 629, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["x"]= 666, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["x"]= 703, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["x"]= 777, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["x"]= 814, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["x"]= 851, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 888, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 925, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["x"]= 0, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["x"]= 37, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["x"]= 74, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["x"]= 111, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 148, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["x"]= 185, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["x"]= 222, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["x"]= 259, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["x"]= 296, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["x"]= 333, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["x"]= 370, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["x"]= 407, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["x"]= 444, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["x"]= 481, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["x"]= 518, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["x"]= 555, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["x"]= 592, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["x"]= 629, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["x"]= 666, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["x"]= 703, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["x"]= 777, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["x"]= 814, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["x"]= 851, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["x"]= 888, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["x"]= 925, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["x"]= 0, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["x"]= 37, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["x"]= 74, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["x"]= 111, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 148, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["x"]= 185, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["x"]= 222, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["x"]= 259, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["x"]= 296, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["x"]= 333, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["x"]= 370, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["x"]= 407, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["x"]= 444, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["x"]= 481, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["x"]= 518, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["x"]= 555, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["x"]= 592, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["x"]= 629, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["x"]= 666, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["x"]= 703, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["x"]= 740, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["x"]= 777, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["x"]= 814, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["x"]= 851, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["x"]= 888, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["x"]= 925, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["x"]= 0, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["x"]= 37, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["x"]= 74, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["x"]= 111, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 148, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["x"]= 185, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["x"]= 222, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["x"]= 259, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["x"]= 296, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["x"]= 333, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["x"]= 370, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["x"]= 407, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 444, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["x"]= 481, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["x"]= 518, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["x"]= 555, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["x"]= 592, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["x"]= 629, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["x"]= 666, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["x"]= 703, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["x"]= 740, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 814, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 851, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["x"]= 888, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["x"]= 925, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["x"]= 0, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["x"]= 37, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["x"]= 74, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["x"]= 111, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 148, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["x"]= 185, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["x"]= 222, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["x"]= 259, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["x"]= 296, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["x"]= 333, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["x"]= 370, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["x"]= 407, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["x"]= 444, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["x"]= 481, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["x"]= 518, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["x"]= 555, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["x"]= 592, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["x"]= 629, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["x"]= 666, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["x"]= 703, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["x"]= 740, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["x"]= 777, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["x"]= 814, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["x"]= 851, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["x"]= 925, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["x"]= 0, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["x"]= 37, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 74, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 111, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 148, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["x"]= 222, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["x"]= 259, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["x"]= 296, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/CriticalStrikeChance.png"]= { + ["x"]= 333, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["x"]= 370, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["x"]= 407, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["x"]= 444, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["x"]= 481, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["x"]= 518, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["x"]= 555, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["x"]= 592, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["x"]= 629, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["x"]= 666, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 703, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["x"]= 740, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["x"]= 777, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["x"]= 814, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["x"]= 851, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["x"]= 888, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["x"]= 925, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 0, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["x"]= 37, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["x"]= 74, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["x"]= 111, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["x"]= 148, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 185, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["x"]= 222, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["x"]= 259, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["x"]= 296, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["x"]= 333, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["x"]= 370, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["x"]= 407, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["x"]= 444, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["x"]= 481, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["x"]= 518, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["x"]= 555, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable1.png"]= { + ["x"]= 592, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable2.png"]= { + ["x"]= 629, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable3.png"]= { + ["x"]= 666, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable4.png"]= { + ["x"]= 703, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable5.png"]= { + ["x"]= 740, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable6.png"]= { + ["x"]= 777, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["x"]= 814, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["x"]= 851, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["x"]= 888, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["x"]= 925, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["x"]= 0, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["x"]= 37, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["x"]= 74, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["x"]= 111, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["x"]= 148, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["x"]= 185, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["x"]= 222, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["x"]= 259, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["x"]= 296, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["x"]= 333, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["x"]= 370, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 407, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["x"]= 444, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["x"]= 481, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["x"]= 518, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["x"]= 555, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["x"]= 592, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 629, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["x"]= 666, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["x"]= 703, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["x"]= 740, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["x"]= 777, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["x"]= 814, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["x"]= 851, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["x"]= 888, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["x"]= 925, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["x"]= 0, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["x"]= 37, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["x"]= 74, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["x"]= 111, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["x"]= 148, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["x"]= 185, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["x"]= 222, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["x"]= 259, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["x"]= 296, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["x"]= 333, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["x"]= 370, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 407, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["x"]= 444, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["x"]= 481, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["x"]= 518, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 555, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["x"]= 592, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["x"]= 629, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["x"]= 666, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["x"]= 703, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["x"]= 740, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["x"]= 777, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["x"]= 814, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["x"]= 851, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 888, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["x"]= 925, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["x"]= 0, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["x"]= 37, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["x"]= 74, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["x"]= 111, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["x"]= 148, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["x"]= 222, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["x"]= 259, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["x"]= 296, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["x"]= 333, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["x"]= 370, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["x"]= 407, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 444, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["x"]= 481, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["x"]= 555, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["x"]= 592, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["x"]= 629, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["x"]= 666, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["x"]= 703, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["x"]= 740, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["x"]= 777, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["x"]= 814, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["x"]= 851, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["x"]= 888, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["x"]= 925, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["x"]= 0, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["x"]= 37, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["x"]= 74, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["x"]= 111, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["x"]= 148, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["x"]= 185, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["x"]= 222, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["x"]= 259, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["x"]= 296, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["x"]= 333, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["x"]= 370, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["x"]= 407, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 444, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["x"]= 481, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["x"]= 518, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["x"]= 555, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["x"]= 592, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["x"]= 629, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["x"]= 666, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["x"]= 703, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["x"]= 740, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["x"]= 777, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["x"]= 814, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["x"]= 851, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["x"]= 888, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["x"]= 925, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["x"]= 0, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["x"]= 37, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["x"]= 74, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["x"]= 111, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["x"]= 148, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["x"]= 185, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["x"]= 222, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["x"]= 259, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["x"]= 296, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["x"]= 333, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["x"]= 370, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 407, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 444, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["x"]= 481, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["x"]= 518, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["x"]= 555, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["x"]= 592, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["x"]= 629, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["x"]= 666, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["x"]= 703, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["x"]= 740, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["x"]= 777, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["x"]= 814, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["x"]= 851, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["x"]= 888, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["x"]= 925, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["x"]= 0, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["x"]= 37, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["x"]= 74, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["x"]= 111, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["x"]= 148, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["x"]= 185, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["x"]= 222, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["x"]= 259, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["x"]= 296, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["x"]= 333, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["x"]= 370, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["x"]= 407, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 444, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["x"]= 481, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["x"]= 518, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["x"]= 555, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["x"]= 592, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["x"]= 629, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["x"]= 666, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["x"]= 703, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["x"]= 740, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["x"]= 777, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TideCaller.png"]= { + ["x"]= 814, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["x"]= 851, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["x"]= 888, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["x"]= 925, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["x"]= 0, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["x"]= 74, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["x"]= 111, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["x"]= 148, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["x"]= 185, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["x"]= 222, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["x"]= 259, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["x"]= 296, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["x"]= 333, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["x"]= 370, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["x"]= 407, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["x"]= 444, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 481, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["x"]= 518, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["x"]= 555, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["x"]= 592, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["x"]= 629, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["x"]= 666, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["x"]= 703, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["x"]= 740, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["x"]= 777, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["x"]= 814, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["x"]= 851, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["x"]= 888, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["x"]= 925, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 0, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["x"]= 37, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["x"]= 74, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["x"]= 111, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 148, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["x"]= 222, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["x"]= 259, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["x"]= 296, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["x"]= 333, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["x"]= 370, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["x"]= 407, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["x"]= 444, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 481, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["x"]= 518, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["x"]= 555, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["x"]= 592, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 629, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["x"]= 666, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["x"]= 703, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["x"]= 740, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["x"]= 777, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 814, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["x"]= 851, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["x"]= 888, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["x"]= 925, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["x"]= 0, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["x"]= 37, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["x"]= 74, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 111, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["x"]= 148, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["x"]= 185, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["x"]= 222, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 259, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["x"]= 296, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["x"]= 333, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["x"]= 370, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["x"]= 407, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["x"]= 444, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 481, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 518, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["x"]= 555, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["x"]= 592, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["x"]= 629, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["x"]= 666, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 703, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["x"]= 740, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 777, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 814, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 851, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["x"]= 888, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["x"]= 925, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 0, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["x"]= 37, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["x"]= 74, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["x"]= 111, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["x"]= 148, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["x"]= 185, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["x"]= 222, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["x"]= 259, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["x"]= 296, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["x"]= 333, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["x"]= 370, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["x"]= 407, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["x"]= 444, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 481, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 518, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["x"]= 555, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["x"]= 592, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["x"]= 629, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["x"]= 666, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["x"]= 703, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 740, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["x"]= 777, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["x"]= 814, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["x"]= 851, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["x"]= 888, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["x"]= 925, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["x"]= 0, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["x"]= 37, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["x"]= 74, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["x"]= 111, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["x"]= 148, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["x"]= 185, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["x"]= 222, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["x"]= 259, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["x"]= 296, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["x"]= 333, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["x"]= 370, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["x"]= 407, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["x"]= 444, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 481, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["x"]= 518, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["x"]= 555, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 592, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["x"]= 629, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 666, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["x"]= 703, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["x"]= 740, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["x"]= 777, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["x"]= 814, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["x"]= 851, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 888, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 925, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 0, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["x"]= 37, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 74, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["x"]= 111, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["x"]= 148, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["x"]= 185, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 222, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["x"]= 259, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["x"]= 296, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["x"]= 333, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 370, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["x"]= 407, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["x"]= 444, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 481, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["x"]= 518, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["x"]= 555, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["x"]= 592, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["x"]= 629, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["x"]= 666, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["x"]= 703, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["x"]= 740, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 777, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 814, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 851, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["x"]= 888, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["x"]= 925, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["x"]= 0, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["x"]= 37, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["x"]= 74, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["x"]= 111, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["x"]= 148, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["x"]= 185, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["x"]= 222, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["x"]= 259, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["x"]= 296, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["x"]= 333, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["x"]= 370, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["x"]= 407, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["x"]= 444, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 481, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["x"]= 518, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["x"]= 555, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["x"]= 592, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["x"]= 629, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 666, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["x"]= 703, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["x"]= 740, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["x"]= 777, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["x"]= 814, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["x"]= 851, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["x"]= 888, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["x"]= 925, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["x"]= 0, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["x"]= 37, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 74, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["x"]= 111, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { + ["x"]= 148, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { + ["x"]= 185, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { + ["x"]= 222, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { + ["x"]= 259, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 296, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 333, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 370, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 407, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 444, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 481, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 518, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 555, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 592, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 629, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 666, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 703, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 740, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 777, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 814, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 851, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 888, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 925, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 962, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { + ["x"]= 0, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 37, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 74, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 111, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + } + } + }, + ["keystoneActive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-3.jpg?1540b3b6", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { + ["x"]= 0, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/BrandKeystone.png"]= { + ["x"]= 52, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CallToArms.png"]= { + ["x"]= 104, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ColdPureElementalCasterKeystone.png"]= { + ["x"]= 156, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CrimsonDance.png"]= { + ["x"]= 208, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CritAilments.png"]= { + ["x"]= 260, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Deaden.png"]= { + ["x"]= 312, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleOfKitava.png"]= { + ["x"]= 364, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DragonStyle.png"]= { + ["x"]= 416, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EnergisedFortress.png"]= { + ["x"]= 468, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EternalYouth.png"]= { + ["x"]= 520, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/FirePureElementalCasterKeystone.png"]= { + ["x"]= 572, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.png"]= { + ["x"]= 624, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleKeystone.png"]= { + ["x"]= 676, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png"]= { + ["x"]= 728, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png"]= { + ["x"]= 780, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png"]= { + ["x"]= 832, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png"]= { + ["x"]= 884, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png"]= { + ["x"]= 936, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneConduit.png"]= { + ["x"]= 0, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { + ["x"]= 52, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { + ["x"]= 104, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { + ["x"]= 156, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { + ["x"]= 208, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { + ["x"]= 260, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { + ["x"]= 312, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { + ["x"]= 364, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { + ["x"]= 416, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { + ["x"]= 468, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { + ["x"]= 520, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { + ["x"]= 572, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { + ["x"]= 624, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { + ["x"]= 676, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { + ["x"]= 728, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LightningPureElementalCasterKeystone.png"]= { + ["x"]= 780, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { + ["x"]= 832, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { + ["x"]= 884, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { + ["x"]= 936, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { + ["x"]= 0, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 52, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { + ["x"]= 104, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { + ["x"]= 156, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { + ["x"]= 208, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { + ["x"]= 260, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { + ["x"]= 312, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { + ["x"]= 364, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { + ["x"]= 416, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { + ["x"]= 468, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { + ["x"]= 520, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { + ["x"]= 572, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { + ["x"]= 624, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { + ["x"]= 676, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { + ["x"]= 728, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { + ["x"]= 780, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { + ["x"]= 832, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { + ["x"]= 884, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { + ["x"]= 936, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + } + } + }, + ["normalInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?4973b78c", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/2handedspeed.png"]= { + ["x"]= 26, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.png"]= { + ["x"]= 52, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.png"]= { + ["x"]= 78, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.png"]= { + ["x"]= 104, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.png"]= { + ["x"]= 130, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png"]= { + ["x"]= 156, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AhnsMightNode.png"]= { + ["x"]= 182, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AilmentDamageCritMultiplier.png"]= { + ["x"]= 208, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AldihNode.png"]= { + ["x"]= 234, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ApostateNode.png"]= { + ["x"]= 260, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArakaalisFangNode.png"]= { + ["x"]= 286, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNode.png"]= { + ["x"]= 312, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png"]= { + ["x"]= 338, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png"]= { + ["x"]= 364, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png"]= { + ["x"]= 390, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNode.png"]= { + ["x"]= 416, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 442, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 468, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 494, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 520, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 546, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 572, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 598, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 624, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 650, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 676, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 702, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 728, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 754, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 780, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 806, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 832, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png"]= { + ["x"]= 858, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 884, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 910, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 936, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png"]= { + ["x"]= 962, + ["y"]= 0, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png"]= { + ["x"]= 0, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNotable1.png"]= { + ["x"]= 26, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png"]= { + ["x"]= 52, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargedex.png"]= { + ["x"]= 78, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargeint.png"]= { + ["x"]= 104, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargestr.png"]= { + ["x"]= 130, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png"]= { + ["x"]= 156, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 182, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png"]= { + ["x"]= 208, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png"]= { + ["x"]= 234, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png"]= { + ["x"]= 260, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png"]= { + ["x"]= 286, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png"]= { + ["x"]= 312, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 338, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png"]= { + ["x"]= 364, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png"]= { + ["x"]= 390, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png"]= { + ["x"]= 416, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNotable3.png"]= { + ["x"]= 442, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png"]= { + ["x"]= 468, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png"]= { + ["x"]= 494, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png"]= { + ["x"]= 520, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png"]= { + ["x"]= 546, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png"]= { + ["x"]= 572, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/PerandusNotable2.png"]= { + ["x"]= 598, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png"]= { + ["x"]= 624, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png"]= { + ["x"]= 650, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable6.png"]= { + ["x"]= 676, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png"]= { + ["x"]= 702, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png"]= { + ["x"]= 728, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png"]= { + ["x"]= 754, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNode.png"]= { + ["x"]= 780, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png"]= { + ["x"]= 806, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNode.png"]= { + ["x"]= 832, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNode.png"]= { + ["x"]= 858, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNode.png"]= { + ["x"]= 884, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNode.png"]= { + ["x"]= 910, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNode.png"]= { + ["x"]= 936, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png"]= { + ["x"]= 962, + ["y"]= 26, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png"]= { + ["x"]= 0, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png"]= { + ["x"]= 26, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png"]= { + ["x"]= 52, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png"]= { + ["x"]= 78, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png"]= { + ["x"]= 104, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png"]= { + ["x"]= 130, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png"]= { + ["x"]= 156, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 182, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BluntInstrument.png"]= { + ["x"]= 208, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 234, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand1.png"]= { + ["x"]= 260, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 286, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNode.png"]= { + ["x"]= 312, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png"]= { + ["x"]= 338, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEAura.png"]= { + ["x"]= 364, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png"]= { + ["x"]= 390, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png"]= { + ["x"]= 416, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png"]= { + ["x"]= 442, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage.png"]= { + ["x"]= 468, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png"]= { + ["x"]= 494, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamagenode.png"]= { + ["x"]= 520, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNode.png"]= { + ["x"]= 546, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 572, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png"]= { + ["x"]= 598, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png"]= { + ["x"]= 624, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png"]= { + ["x"]= 650, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png"]= { + ["x"]= 676, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png"]= { + ["x"]= 702, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png"]= { + ["x"]= 728, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamagenode.png"]= { + ["x"]= 754, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNode.png"]= { + ["x"]= 780, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png"]= { + ["x"]= 806, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseDamage.png"]= { + ["x"]= 832, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CorpseLife.png"]= { + ["x"]= 858, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png"]= { + ["x"]= 884, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png"]= { + ["x"]= 910, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseCastSpeed.png"]= { + ["x"]= 936, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseDuration.png"]= { + ["x"]= 962, + ["y"]= 52, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNode.png"]= { + ["x"]= 0, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaCost.png"]= { + ["x"]= 26, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CurseManaReservation.png"]= { + ["x"]= 52, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png"]= { + ["x"]= 78, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTime.png"]= { + ["x"]= 104, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png"]= { + ["x"]= 130, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DawnbreakerNode.png"]= { + ["x"]= 156, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png"]= { + ["x"]= 182, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png"]= { + ["x"]= 208, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 234, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 260, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png"]= { + ["x"]= 286, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png"]= { + ["x"]= 312, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNode.png"]= { + ["x"]= 338, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png"]= { + ["x"]= 364, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png"]= { + ["x"]= 390, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png"]= { + ["x"]= 416, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagenode.png"]= { + ["x"]= 442, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElementalResistance2.png"]= { + ["x"]= 468, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 494, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png"]= { + ["x"]= 520, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png"]= { + ["x"]= 546, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ElvoreNode.png"]= { + ["x"]= 572, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png"]= { + ["x"]= 598, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNode.png"]= { + ["x"]= 624, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png"]= { + ["x"]= 650, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNode.png"]= { + ["x"]= 676, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png"]= { + ["x"]= 702, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FemuroftheSaintsNode.png"]= { + ["x"]= 728, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FidelitasSpikeNode.png"]= { + ["x"]= 754, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png"]= { + ["x"]= 780, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireDamagenode.png"]= { + ["x"]= 806, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNode.png"]= { + ["x"]= 832, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDurationnode.png"]= { + ["x"]= 858, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNode.png"]= { + ["x"]= 884, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png"]= { + ["x"]= 910, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png"]= { + ["x"]= 936, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png"]= { + ["x"]= 962, + ["y"]= 78, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png"]= { + ["x"]= 0, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png"]= { + ["x"]= 26, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GloomfangNode.png"]= { + ["x"]= 52, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNode.png"]= { + ["x"]= 78, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png"]= { + ["x"]= 104, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png"]= { + ["x"]= 130, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png"]= { + ["x"]= 156, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png"]= { + ["x"]= 182, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png"]= { + ["x"]= 208, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png"]= { + ["x"]= 234, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png"]= { + ["x"]= 260, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 286, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png"]= { + ["x"]= 312, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 338, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 364, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservationNode.png"]= { + ["x"]= 390, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png"]= { + ["x"]= 416, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNode.png"]= { + ["x"]= 442, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImapleNode.png"]= { + ["x"]= 468, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNode2.png"]= { + ["x"]= 494, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png"]= { + ["x"]= 520, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png"]= { + ["x"]= 546, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png"]= { + ["x"]= 572, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png"]= { + ["x"]= 598, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png"]= { + ["x"]= 624, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png"]= { + ["x"]= 650, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png"]= { + ["x"]= 676, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png"]= { + ["x"]= 702, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 728, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png"]= { + ["x"]= 754, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png"]= { + ["x"]= 780, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png"]= { + ["x"]= 806, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png"]= { + ["x"]= 832, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png"]= { + ["x"]= 858, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png"]= { + ["x"]= 884, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png"]= { + ["x"]= 910, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png"]= { + ["x"]= 936, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png"]= { + ["x"]= 962, + ["y"]= 104, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png"]= { + ["x"]= 0, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 26, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomBeltNode.png"]= { + ["x"]= 52, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KaomsRootsNode.png"]= { + ["x"]= 78, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 104, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png"]= { + ["x"]= 130, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png"]= { + ["x"]= 156, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png"]= { + ["x"]= 182, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNode.png"]= { + ["x"]= 208, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCurses.png"]= { + ["x"]= 234, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LifeandMana.png"]= { + ["x"]= 260, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningDamagenode.png"]= { + ["x"]= 286, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNode.png"]= { + ["x"]= 312, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png"]= { + ["x"]= 338, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable9.png"]= { + ["x"]= 364, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable10.png"]= { + ["x"]= 390, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable11.png"]= { + ["x"]= 416, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable12.png"]= { + ["x"]= 442, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable13.png"]= { + ["x"]= 468, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable14.png"]= { + ["x"]= 494, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaceElemental.png"]= { + ["x"]= 520, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png"]= { + ["x"]= 546, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png"]= { + ["x"]= 572, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ManaandCurses2.png"]= { + ["x"]= 598, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MarkNode.png"]= { + ["x"]= 624, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MasteryBlank.png"]= { + ["x"]= 650, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNode.png"]= { + ["x"]= 676, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeldingoftheFleshNode.png"]= { + ["x"]= 702, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 728, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png"]= { + ["x"]= 754, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png"]= { + ["x"]= 780, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNode.png"]= { + ["x"]= 806, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png"]= { + ["x"]= 832, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNode.png"]= { + ["x"]= 858, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png"]= { + ["x"]= 884, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png"]= { + ["x"]= 910, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png"]= { + ["x"]= 936, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png"]= { + ["x"]= 962, + ["y"]= 130, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png"]= { + ["x"]= 0, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png"]= { + ["x"]= 26, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png"]= { + ["x"]= 52, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png"]= { + ["x"]= 78, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png"]= { + ["x"]= 104, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png"]= { + ["x"]= 130, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeBowDamage.png"]= { + ["x"]= 156, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png"]= { + ["x"]= 182, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png"]= { + ["x"]= 208, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png"]= { + ["x"]= 234, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png"]= { + ["x"]= 260, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png"]= { + ["x"]= 286, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/NodeWandDamage.png"]= { + ["x"]= 312, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png"]= { + ["x"]= 338, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png"]= { + ["x"]= 364, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png"]= { + ["x"]= 390, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png"]= { + ["x"]= 416, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png"]= { + ["x"]= 442, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png"]= { + ["x"]= 468, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png"]= { + ["x"]= 494, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 520, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png"]= { + ["x"]= 546, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png"]= { + ["x"]= 572, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png"]= { + ["x"]= 598, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png"]= { + ["x"]= 624, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png"]= { + ["x"]= 650, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png"]= { + ["x"]= 676, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png"]= { + ["x"]= 702, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png"]= { + ["x"]= 728, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 754, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png"]= { + ["x"]= 780, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PolaricDevastationNode.png"]= { + ["x"]= 806, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/PresenceofChayulaNode.png"]= { + ["x"]= 832, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png"]= { + ["x"]= 858, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png"]= { + ["x"]= 884, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode.png"]= { + ["x"]= 910, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNode2.png"]= { + ["x"]= 936, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Rage.png"]= { + ["x"]= 962, + ["y"]= 156, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png"]= { + ["x"]= 0, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png"]= { + ["x"]= 26, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemDamage.png"]= { + ["x"]= 52, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png"]= { + ["x"]= 78, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png"]= { + ["x"]= 104, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png"]= { + ["x"]= 130, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode1.png"]= { + ["x"]= 156, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode2.png"]= { + ["x"]= 182, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode3.png"]= { + ["x"]= 208, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode4.png"]= { + ["x"]= 234, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationNode5.png"]= { + ["x"]= 260, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/RiriTeNgamahuNode.png"]= { + ["x"]= 286, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png"]= { + ["x"]= 312, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png"]= { + ["x"]= 338, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png"]= { + ["x"]= 364, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SacredChaliceNode.png"]= { + ["x"]= 390, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SandsofTimeNode.png"]= { + ["x"]= 416, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png"]= { + ["x"]= 442, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ScreamsoftheDesiccatedNode.png"]= { + ["x"]= 468, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SharpandBrittle.png"]= { + ["x"]= 494, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShatteredDivinityNode.png"]= { + ["x"]= 520, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 546, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png"]= { + ["x"]= 572, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/ShimmeronNode.png"]= { + ["x"]= 598, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png"]= { + ["x"]= 624, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png"]= { + ["x"]= 650, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png"]= { + ["x"]= 676, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png"]= { + ["x"]= 702, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png"]= { + ["x"]= 728, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png"]= { + ["x"]= 754, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png"]= { + ["x"]= 780, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png"]= { + ["x"]= 806, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png"]= { + ["x"]= 832, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png"]= { + ["x"]= 858, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png"]= { + ["x"]= 884, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png"]= { + ["x"]= 910, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StanceSmallPassive.png"]= { + ["x"]= 936, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StancesNode.png"]= { + ["x"]= 962, + ["y"]= 182, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/StrikeRangeNode.png"]= { + ["x"]= 0, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TheBlackCaneNode.png"]= { + ["x"]= 26, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png"]= { + ["x"]= 52, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode1.png"]= { + ["x"]= 78, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode2.png"]= { + ["x"]= 104, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNode3.png"]= { + ["x"]= 130, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNode.png"]= { + ["x"]= 156, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png"]= { + ["x"]= 182, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png"]= { + ["x"]= 208, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png"]= { + ["x"]= 234, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VaalCaressNode.png"]= { + ["x"]= 260, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 286, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png"]= { + ["x"]= 312, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png"]= { + ["x"]= 338, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png"]= { + ["x"]= 364, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png"]= { + ["x"]= 390, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandCritical.png"]= { + ["x"]= 416, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png"]= { + ["x"]= 442, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarCryCooldown.png"]= { + ["x"]= 468, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 494, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png"]= { + ["x"]= 520, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png"]= { + ["x"]= 546, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenNode.png"]= { + ["x"]= 572, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 598, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/XirgilsCrankNode.png"]= { + ["x"]= 624, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy.png"]= { + ["x"]= 650, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracy2h.png"]= { + ["x"]= 676, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 702, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracysword.png"]= { + ["x"]= 728, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 754, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/areaofeffect.png"]= { + ["x"]= 780, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed.png"]= { + ["x"]= 806, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeed2h.png"]= { + ["x"]= 832, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedaxe.png"]= { + ["x"]= 858, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 884, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedclaw.png"]= { + ["x"]= 910, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddagger.png"]= { + ["x"]= 936, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeeddual.png"]= { + ["x"]= 962, + ["y"]= 208, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedmace.png"]= { + ["x"]= 0, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedsworddex.png"]= { + ["x"]= 26, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraareaofeffect.png"]= { + ["x"]= 52, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/auraeffect.png"]= { + ["x"]= 78, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidburning.png"]= { + ["x"]= 104, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/avoidchilling.png"]= { + ["x"]= 130, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/axedmgspeed.png"]= { + ["x"]= 156, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankDex.png"]= { + ["x"]= 182, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankInt.png"]= { + ["x"]= 208, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blankStr.png"]= { + ["x"]= 234, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 260, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstaff.png"]= { + ["x"]= 286, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/blockstr.png"]= { + ["x"]= 312, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 338, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/castspeed.png"]= { + ["x"]= 364, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 390, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 416, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 442, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clawmasterydex.png"]= { + ["x"]= 468, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode1.png"]= { + ["x"]= 494, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/clustersLinknode2.png"]= { + ["x"]= 520, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/colddamage.png"]= { + ["x"]= 546, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/coldresist.png"]= { + ["x"]= 572, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalbow.png"]= { + ["x"]= 598, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalclaw.png"]= { + ["x"]= 624, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerdex.png"]= { + ["x"]= 650, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticaldaggerint.png"]= { + ["x"]= 676, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance.png"]= { + ["x"]= 702, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikechance2.png"]= { + ["x"]= 728, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png"]= { + ["x"]= 754, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 780, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/critstrchnc.png"]= { + ["x"]= 806, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/crystalskin.png"]= { + ["x"]= 832, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage.png"]= { + ["x"]= 858, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damage_blue.png"]= { + ["x"]= 884, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damageaxe.png"]= { + ["x"]= 910, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwield.png"]= { + ["x"]= 936, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png"]= { + ["x"]= 962, + ["y"]= 234, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagemelee.png"]= { + ["x"]= 0, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagespells.png"]= { + ["x"]= 26, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagestaff.png"]= { + ["x"]= 52, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/damagesword.png"]= { + ["x"]= 78, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dmgreduction.png"]= { + ["x"]= 104, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png"]= { + ["x"]= 130, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/dualwieldblock.png"]= { + ["x"]= 156, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/elementaldamage.png"]= { + ["x"]= 182, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/energyshield.png"]= { + ["x"]= 208, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evade.png"]= { + ["x"]= 234, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evadepercentage.png"]= { + ["x"]= 260, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 286, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 312, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamageint.png"]= { + ["x"]= 338, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/firedamagestr.png"]= { + ["x"]= 364, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/fireresist.png"]= { + ["x"]= 390, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskdex.png"]= { + ["x"]= 416, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskint.png"]= { + ["x"]= 442, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/flaskstr.png"]= { + ["x"]= 468, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 494, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedarmorandlife.png"]= { + ["x"]= 520, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png"]= { + ["x"]= 546, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 572, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/knockback.png"]= { + ["x"]= 598, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 624, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifegainpertarget.png"]= { + ["x"]= 650, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 676, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifemana.png"]= { + ["x"]= 702, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lifepercentage.png"]= { + ["x"]= 728, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningdex.png"]= { + ["x"]= 754, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 780, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/lightningstr.png"]= { + ["x"]= 806, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macecritdmgspeed.png"]= { + ["x"]= 832, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 858, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/mana.png"]= { + ["x"]= 884, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manaregeneration.png"]= { + ["x"]= 910, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manareservationreduction.png"]= { + ["x"]= 936, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/manastr.png"]= { + ["x"]= 962, + ["y"]= 260, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterydaggerdex.png"]= { + ["x"]= 0, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterysword.png"]= { + ["x"]= 26, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 52, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/meleeattackspeed.png"]= { + ["x"]= 78, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionattackspeed.png"]= { + ["x"]= 104, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 130, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamage.png"]= { + ["x"]= 156, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/miniondamageBlue.png"]= { + ["x"]= 182, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/minionlife.png"]= { + ["x"]= 208, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehanddamage.png"]= { + ["x"]= 234, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/onehandspeed.png"]= { + ["x"]= 260, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 286, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 312, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png"]= { + ["x"]= 338, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 364, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png"]= { + ["x"]= 390, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png"]= { + ["x"]= 416, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/projectilespeed.png"]= { + ["x"]= 442, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/shieldblock.png"]= { + ["x"]= 468, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/skillduration.png"]= { + ["x"]= 494, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/spellcritical.png"]= { + ["x"]= 520, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffaccuracy.png"]= { + ["x"]= 546, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/staffspeed.png"]= { + ["x"]= 572, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stundex.png"]= { + ["x"]= 598, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 624, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/stunstr.png"]= { + ["x"]= 650, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempdex.png"]= { + ["x"]= 676, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/tempint.png"]= { + ["x"]= 702, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png"]= { + ["x"]= 728, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbranddamage.png"]= { + ["x"]= 754, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 780, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemattackspeed.png"]= { + ["x"]= 806, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemlife.png"]= { + ["x"]= 832, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapcriticalstrike.png"]= { + ["x"]= 858, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapdamage.png"]= { + ["x"]= 884, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsduration.png"]= { + ["x"]= 910, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 936, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/trapsspeed.png"]= { + ["x"]= 962, + ["y"]= 286, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png"]= { + ["x"]= 0, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ArohonguiTribeSkill.png"]= { + ["x"]= 26, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/HinekoraTribeSkill.png"]= { + ["x"]= 52, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/KitavaTribeSkill.png"]= { + ["x"]= 78, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/NgamahuTribeSkill.png"]= { + ["x"]= 104, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RamakoTribeSkill.png"]= { + ["x"]= 130, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/RongokuraiTribeSkill.png"]= { + ["x"]= 156, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TasalioTribeSkill.png"]= { + ["x"]= 182, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TawhoaTribeSkill.png"]= { + ["x"]= 208, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/TukohamaTribeSkill.png"]= { + ["x"]= 234, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/ValakoTribeSkill.png"]= { + ["x"]= 260, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 286, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 312, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 338, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/SkillscostingLifenode.png"]= { + ["x"]= 364, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/accuracyint.png"]= { + ["x"]= 390, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandlife.png"]= { + ["x"]= 416, + ["y"]= 312, + ["w"]= 26, + ["h"]= 26 + } + } + }, + ["notableInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?4973b78c", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/2handeddamage.png"]= { + ["x"]= 0, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampAbyssalFiends.png"]= { + ["x"]= 37, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.png"]= { + ["x"]= 74, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AbyssRevampStygianSpires.png"]= { + ["x"]= 111, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar1.png"]= { + ["x"]= 148, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AccuracyTemplar2.png"]= { + ["x"]= 185, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Additionalprojectile.png"]= { + ["x"]= 222, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AdmonisherNotable.png"]= { + ["x"]= 259, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Annihilation.png"]= { + ["x"]= 296, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AntiStunNotable.png"]= { + ["x"]= 333, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneChemistry.png"]= { + ["x"]= 370, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArcaneReaping.png"]= { + ["x"]= 407, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaDmgNotable.png"]= { + ["x"]= 444, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNotable.png"]= { + ["x"]= 481, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourGuardsNotable.png"]= { + ["x"]= 555, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourNotable.png"]= { + ["x"]= 592, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ArmourandEvasion2.png"]= { + ["x"]= 629, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png"]= { + ["x"]= 666, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Dex.png"]= { + ["x"]= 703, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png"]= { + ["x"]= 740, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Int.png"]= { + ["x"]= 777, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png"]= { + ["x"]= 814, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Str.png"]= { + ["x"]= 851, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png"]= { + ["x"]= 888, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png"]= { + ["x"]= 925, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png"]= { + ["x"]= 962, + ["y"]= 338, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AspectoftheEagle.png"]= { + ["x"]= 0, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png"]= { + ["x"]= 37, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png"]= { + ["x"]= 74, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Elusive.png"]= { + ["x"]= 111, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png"]= { + ["x"]= 148, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png"]= { + ["x"]= 185, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png"]= { + ["x"]= 222, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png"]= { + ["x"]= 259, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png"]= { + ["x"]= 296, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png"]= { + ["x"]= 333, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png"]= { + ["x"]= 370, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BoldUndertaking.png"]= { + ["x"]= 407, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png"]= { + ["x"]= 444, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png"]= { + ["x"]= 481, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png"]= { + ["x"]= 518, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/HarbingerNode1.png"]= { + ["x"]= 555, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png"]= { + ["x"]= 592, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png"]= { + ["x"]= 629, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png"]= { + ["x"]= 666, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png"]= { + ["x"]= 703, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/TempestNotable1.png"]= { + ["x"]= 740, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png"]= { + ["x"]= 777, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png"]= { + ["x"]= 814, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindNotable.png"]= { + ["x"]= 851, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png"]= { + ["x"]= 888, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png"]= { + ["x"]= 925, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 375, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AuraReservationNotable.png"]= { + ["x"]= 0, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png"]= { + ["x"]= 37, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png"]= { + ["x"]= 74, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable1.png"]= { + ["x"]= 111, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeNotable2.png"]= { + ["x"]= 148, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png"]= { + ["x"]= 185, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png"]= { + ["x"]= 222, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerAreaNotable.png"]= { + ["x"]= 259, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerDurationNotable.png"]= { + ["x"]= 296, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerEffectNotable.png"]= { + ["x"]= 333, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png"]= { + ["x"]= 370, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BannersNotable.png"]= { + ["x"]= 407, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png"]= { + ["x"]= 444, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BattleRouse.png"]= { + ["x"]= 481, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png"]= { + ["x"]= 518, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/Blitz.png"]= { + ["x"]= 555, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png"]= { + ["x"]= 592, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png"]= { + ["x"]= 629, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png"]= { + ["x"]= 666, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png"]= { + ["x"]= 703, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png"]= { + ["x"]= 740, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png"]= { + ["x"]= 814, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoison.png"]= { + ["x"]= 851, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png"]= { + ["x"]= 888, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable1.png"]= { + ["x"]= 925, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BleedingNotable2.png"]= { + ["x"]= 962, + ["y"]= 412, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png"]= { + ["x"]= 0, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Blood2.png"]= { + ["x"]= 74, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodPact.png"]= { + ["x"]= 111, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodSiphon.png"]= { + ["x"]= 148, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BloodyBludgeon.png"]= { + ["x"]= 185, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Boomerang.png"]= { + ["x"]= 222, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BowDamage.png"]= { + ["x"]= 259, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand2.png"]= { + ["x"]= 296, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Brand4.png"]= { + ["x"]= 333, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrandDmgNotable.png"]= { + ["x"]= 370, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofFlames2.png"]= { + ["x"]= 407, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofLightening2.png"]= { + ["x"]= 444, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BreathofRime2.png"]= { + ["x"]= 481, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/BrineRot.png"]= { + ["x"]= 518, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ByTheBlade.png"]= { + ["x"]= 555, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CelestialPunishment.png"]= { + ["x"]= 592, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChainingProjectiles.png"]= { + ["x"]= 629, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion.png"]= { + ["x"]= 666, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png"]= { + ["x"]= 703, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Fortitude.png"]= { + ["x"]= 740, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png"]= { + ["x"]= 777, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Inpirational.png"]= { + ["x"]= 814, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/Unstopable.png"]= { + ["x"]= 851, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png"]= { + ["x"]= 888, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png"]= { + ["x"]= 925, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 449, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamage2.png"]= { + ["x"]= 0, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png"]= { + ["x"]= 37, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png"]= { + ["x"]= 74, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaosResistNotable.png"]= { + ["x"]= 111, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChaoticPotential.png"]= { + ["x"]= 148, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png"]= { + ["x"]= 222, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png"]= { + ["x"]= 259, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png"]= { + ["x"]= 296, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png"]= { + ["x"]= 333, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png"]= { + ["x"]= 370, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png"]= { + ["x"]= 407, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png"]= { + ["x"]= 444, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ChillThemedNotable.png"]= { + ["x"]= 481, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable1.png"]= { + ["x"]= 518, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawNotable2.png"]= { + ["x"]= 555, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png"]= { + ["x"]= 592, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CleverThief.png"]= { + ["x"]= 629, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png"]= { + ["x"]= 666, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png"]= { + ["x"]= 703, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png"]= { + ["x"]= 740, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdResistNotable.png"]= { + ["x"]= 777, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png"]= { + ["x"]= 814, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png"]= { + ["x"]= 851, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatFocusNotable.png"]= { + ["x"]= 888, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CombatStamina.png"]= { + ["x"]= 925, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CommandofSteel.png"]= { + ["x"]= 962, + ["y"]= 486, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Constitution.png"]= { + ["x"]= 0, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Coordination.png"]= { + ["x"]= 37, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CorpsesNotable.png"]= { + ["x"]= 74, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Corruption.png"]= { + ["x"]= 111, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png"]= { + ["x"]= 148, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CrustaceousGrowth2.png"]= { + ["x"]= 185, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png"]= { + ["x"]= 222, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseEffectNotable.png"]= { + ["x"]= 259, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable.png"]= { + ["x"]= 296, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CurseNotable2.png"]= { + ["x"]= 333, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png"]= { + ["x"]= 370, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerNotable1.png"]= { + ["x"]= 407, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png"]= { + ["x"]= 444, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png"]= { + ["x"]= 481, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png"]= { + ["x"]= 518, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DarkestHour.png"]= { + ["x"]= 555, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png"]= { + ["x"]= 592, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png"]= { + ["x"]= 629, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png"]= { + ["x"]= 666, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png"]= { + ["x"]= 703, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png"]= { + ["x"]= 777, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DiamondSkin2.png"]= { + ["x"]= 814, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DireTorment.png"]= { + ["x"]= 851, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineFury.png"]= { + ["x"]= 888, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DivineWrath.png"]= { + ["x"]= 925, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png"]= { + ["x"]= 962, + ["y"]= 523, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png"]= { + ["x"]= 0, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png"]= { + ["x"]= 37, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Dreamer.png"]= { + ["x"]= 74, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DruidicRite.png"]= { + ["x"]= 111, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldNotable.png"]= { + ["x"]= 148, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png"]= { + ["x"]= 185, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DualWieldingDamage.png"]= { + ["x"]= 222, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png"]= { + ["x"]= 259, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png"]= { + ["x"]= 296, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png"]= { + ["x"]= 333, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalDominion2.png"]= { + ["x"]= 370, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalFocus.png"]= { + ["x"]= 407, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png"]= { + ["x"]= 444, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png"]= { + ["x"]= 481, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png"]= { + ["x"]= 518, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png"]= { + ["x"]= 555, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png"]= { + ["x"]= 592, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png"]= { + ["x"]= 629, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png"]= { + ["x"]= 666, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png"]= { + ["x"]= 703, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png"]= { + ["x"]= 740, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png"]= { + ["x"]= 777, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png"]= { + ["x"]= 814, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Entropy.png"]= { + ["x"]= 851, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EscalationNotable.png"]= { + ["x"]= 888, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EssenceSurge.png"]= { + ["x"]= 925, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png"]= { + ["x"]= 962, + ["y"]= 560, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png"]= { + ["x"]= 0, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EvasionNotable.png"]= { + ["x"]= 37, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png"]= { + ["x"]= 74, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ExplosiveRunes.png"]= { + ["x"]= 111, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png"]= { + ["x"]= 148, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png"]= { + ["x"]= 185, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png"]= { + ["x"]= 222, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FasterBleeding2.png"]= { + ["x"]= 259, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FatalBlade.png"]= { + ["x"]= 296, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireAilment.png"]= { + ["x"]= 333, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png"]= { + ["x"]= 370, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FireResistNotable.png"]= { + ["x"]= 407, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskDuration.png"]= { + ["x"]= 444, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png"]= { + ["x"]= 481, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png"]= { + ["x"]= 518, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForceOfNature.png"]= { + ["x"]= 555, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png"]= { + ["x"]= 592, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable1.png"]= { + ["x"]= 629, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FortifyNotable2.png"]= { + ["x"]= 666, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png"]= { + ["x"]= 703, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png"]= { + ["x"]= 740, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png"]= { + ["x"]= 777, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png"]= { + ["x"]= 814, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png"]= { + ["x"]= 851, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png"]= { + ["x"]= 888, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png"]= { + ["x"]= 925, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png"]= { + ["x"]= 962, + ["y"]= 597, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png"]= { + ["x"]= 0, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png"]= { + ["x"]= 37, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png"]= { + ["x"]= 74, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png"]= { + ["x"]= 111, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GolemsNotable.png"]= { + ["x"]= 148, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png"]= { + ["x"]= 185, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GrowthandDecay.png"]= { + ["x"]= 222, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png"]= { + ["x"]= 259, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png"]= { + ["x"]= 296, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png"]= { + ["x"]= 333, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png"]= { + ["x"]= 370, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png"]= { + ["x"]= 407, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png"]= { + ["x"]= 444, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png"]= { + ["x"]= 481, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png"]= { + ["x"]= 518, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png"]= { + ["x"]= 555, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Harrier.png"]= { + ["x"]= 592, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartandSoul.png"]= { + ["x"]= 629, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartofChaos.png"]= { + ["x"]= 666, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeartoftheOak.png"]= { + ["x"]= 703, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hearty.png"]= { + ["x"]= 740, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png"]= { + ["x"]= 777, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png"]= { + ["x"]= 814, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png"]= { + ["x"]= 851, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HeraldReservation.png"]= { + ["x"]= 888, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png"]= { + ["x"]= 925, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png"]= { + ["x"]= 962, + ["y"]= 634, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png"]= { + ["x"]= 0, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png"]= { + ["x"]= 37, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png"]= { + ["x"]= 74, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png"]= { + ["x"]= 111, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png"]= { + ["x"]= 148, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png"]= { + ["x"]= 185, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HiredKiller2.png"]= { + ["x"]= 222, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png"]= { + ["x"]= 259, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Hunter.png"]= { + ["x"]= 296, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAshNotable.png"]= { + ["x"]= 333, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png"]= { + ["x"]= 370, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png"]= { + ["x"]= 407, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgniteStunNotable.png"]= { + ["x"]= 444, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IgnorePain.png"]= { + ["x"]= 481, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Impale1HandNotable.png"]= { + ["x"]= 518, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png"]= { + ["x"]= 555, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable1.png"]= { + ["x"]= 592, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleNotable2.png"]= { + ["x"]= 629, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png"]= { + ["x"]= 666, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png"]= { + ["x"]= 703, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png"]= { + ["x"]= 740, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png"]= { + ["x"]= 777, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png"]= { + ["x"]= 814, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png"]= { + ["x"]= 851, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png"]= { + ["x"]= 888, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png"]= { + ["x"]= 925, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png"]= { + ["x"]= 962, + ["y"]= 671, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png"]= { + ["x"]= 0, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png"]= { + ["x"]= 37, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png"]= { + ["x"]= 74, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png"]= { + ["x"]= 111, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png"]= { + ["x"]= 148, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png"]= { + ["x"]= 222, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InfusedFlesh.png"]= { + ["x"]= 259, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png"]= { + ["x"]= 296, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/CriticalStrikeChance.png"]= { + ["x"]= 333, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png"]= { + ["x"]= 370, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png"]= { + ["x"]= 407, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png"]= { + ["x"]= 444, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png"]= { + ["x"]= 481, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png"]= { + ["x"]= 518, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png"]= { + ["x"]= 555, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png"]= { + ["x"]= 592, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Inspiration.png"]= { + ["x"]= 629, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/IntensifyNotable.png"]= { + ["x"]= 666, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png"]= { + ["x"]= 703, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png"]= { + ["x"]= 740, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png"]= { + ["x"]= 777, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png"]= { + ["x"]= 814, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png"]= { + ["x"]= 851, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png"]= { + ["x"]= 888, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png"]= { + ["x"]= 925, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png"]= { + ["x"]= 962, + ["y"]= 708, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArmourMaster.png"]= { + ["x"]= 0, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png"]= { + ["x"]= 37, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png"]= { + ["x"]= 74, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeFlasks.png"]= { + ["x"]= 111, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png"]= { + ["x"]= 148, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png"]= { + ["x"]= 185, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png"]= { + ["x"]= 222, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png"]= { + ["x"]= 259, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png"]= { + ["x"]= 296, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandCursesN.png"]= { + ["x"]= 333, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png"]= { + ["x"]= 370, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png"]= { + ["x"]= 407, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightOfDivinity.png"]= { + ["x"]= 444, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LightningResistNotable.png"]= { + ["x"]= 481, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable3.png"]= { + ["x"]= 518, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LinkNotable4.png"]= { + ["x"]= 555, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable1.png"]= { + ["x"]= 592, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable2.png"]= { + ["x"]= 629, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable3.png"]= { + ["x"]= 666, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable4.png"]= { + ["x"]= 703, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable5.png"]= { + ["x"]= 740, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable6.png"]= { + ["x"]= 777, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/LustforCarnage.png"]= { + ["x"]= 814, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable1.png"]= { + ["x"]= 851, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceNotable2.png"]= { + ["x"]= 888, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png"]= { + ["x"]= 925, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png"]= { + ["x"]= 962, + ["y"]= 745, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaFlasksOften.png"]= { + ["x"]= 0, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaGuardNotable.png"]= { + ["x"]= 37, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaNotable.png"]= { + ["x"]= 74, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png"]= { + ["x"]= 111, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png"]= { + ["x"]= 148, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png"]= { + ["x"]= 185, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mark.png"]= { + ["x"]= 222, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable1.png"]= { + ["x"]= 259, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotable2.png"]= { + ["x"]= 296, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png"]= { + ["x"]= 333, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png"]= { + ["x"]= 370, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MartialExperience.png"]= { + ["x"]= 407, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MasterofForce.png"]= { + ["x"]= 444, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png"]= { + ["x"]= 481, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaxManaNotable.png"]= { + ["x"]= 518, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png"]= { + ["x"]= 555, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png"]= { + ["x"]= 592, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENode.png"]= { + ["x"]= 629, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeAoENotable.png"]= { + ["x"]= 666, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png"]= { + ["x"]= 703, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeFireNotable.png"]= { + ["x"]= 740, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeRange2.png"]= { + ["x"]= 777, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MeleeUtility.png"]= { + ["x"]= 814, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Meleerange.png"]= { + ["x"]= 851, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MentalRapidity.png"]= { + ["x"]= 888, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MindPact.png"]= { + ["x"]= 925, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png"]= { + ["x"]= 962, + ["y"]= 782, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png"]= { + ["x"]= 0, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png"]= { + ["x"]= 37, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MineTrap.png"]= { + ["x"]= 74, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png"]= { + ["x"]= 111, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Mirage.png"]= { + ["x"]= 148, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png"]= { + ["x"]= 185, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png"]= { + ["x"]= 222, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png"]= { + ["x"]= 259, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png"]= { + ["x"]= 296, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png"]= { + ["x"]= 333, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png"]= { + ["x"]= 370, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png"]= { + ["x"]= 407, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png"]= { + ["x"]= 444, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png"]= { + ["x"]= 481, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png"]= { + ["x"]= 518, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 555, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png"]= { + ["x"]= 592, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png"]= { + ["x"]= 629, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png"]= { + ["x"]= 666, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png"]= { + ["x"]= 703, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png"]= { + ["x"]= 740, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png"]= { + ["x"]= 777, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png"]= { + ["x"]= 814, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png"]= { + ["x"]= 851, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png"]= { + ["x"]= 888, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png"]= { + ["x"]= 925, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png"]= { + ["x"]= 962, + ["y"]= 819, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png"]= { + ["x"]= 0, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png"]= { + ["x"]= 37, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png"]= { + ["x"]= 74, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png"]= { + ["x"]= 111, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png"]= { + ["x"]= 148, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png"]= { + ["x"]= 185, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png"]= { + ["x"]= 222, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png"]= { + ["x"]= 259, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png"]= { + ["x"]= 296, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png"]= { + ["x"]= 333, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png"]= { + ["x"]= 370, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png"]= { + ["x"]= 407, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Poison.png"]= { + ["x"]= 444, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png"]= { + ["x"]= 481, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/PowerChargeNotable.png"]= { + ["x"]= 518, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png"]= { + ["x"]= 555, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png"]= { + ["x"]= 592, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProfaneChemistry.png"]= { + ["x"]= 629, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png"]= { + ["x"]= 666, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProjectilesNotable.png"]= { + ["x"]= 703, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ProtectiveWinds.png"]= { + ["x"]= 740, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/QuickRecovery.png"]= { + ["x"]= 777, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable.png"]= { + ["x"]= 814, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable1.png"]= { + ["x"]= 851, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable2.png"]= { + ["x"]= 888, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RageNotable3.png"]= { + ["x"]= 925, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png"]= { + ["x"]= 962, + ["y"]= 856, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png"]= { + ["x"]= 0, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png"]= { + ["x"]= 37, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Redemption.png"]= { + ["x"]= 74, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedManaNotable.png"]= { + ["x"]= 111, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png"]= { + ["x"]= 148, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png"]= { + ["x"]= 185, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Resourcefulness.png"]= { + ["x"]= 222, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retaliation.png"]= { + ["x"]= 259, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAoE.png"]= { + ["x"]= 296, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png"]= { + ["x"]= 333, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png"]= { + ["x"]= 370, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png"]= { + ["x"]= 407, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png"]= { + ["x"]= 444, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationStun.png"]= { + ["x"]= 481, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Retribution.png"]= { + ["x"]= 518, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Revelry.png"]= { + ["x"]= 555, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RighteousArmy.png"]= { + ["x"]= 592, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Righteous Decree.png"]= { + ["x"]= 629, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png"]= { + ["x"]= 666, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Robust.png"]= { + ["x"]= 703, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png"]= { + ["x"]= 740, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png"]= { + ["x"]= 777, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png"]= { + ["x"]= 814, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png"]= { + ["x"]= 851, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png"]= { + ["x"]= 888, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png"]= { + ["x"]= 925, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png"]= { + ["x"]= 962, + ["y"]= 893, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png"]= { + ["x"]= 0, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png"]= { + ["x"]= 37, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png"]= { + ["x"]= 74, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sanctuary.png"]= { + ["x"]= 111, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png"]= { + ["x"]= 148, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png"]= { + ["x"]= 185, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png"]= { + ["x"]= 222, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SavantPath.png"]= { + ["x"]= 259, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SearingHeat.png"]= { + ["x"]= 296, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Sentinel.png"]= { + ["x"]= 333, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Shaper.png"]= { + ["x"]= 370, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png"]= { + ["x"]= 407, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShieldNotable.png"]= { + ["x"]= 444, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ShrugOff.png"]= { + ["x"]= 481, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SkitteringRunes.png"]= { + ["x"]= 518, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png"]= { + ["x"]= 555, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png"]= { + ["x"]= 592, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Charges.png"]= { + ["x"]= 629, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png"]= { + ["x"]= 666, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png"]= { + ["x"]= 703, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Headman.png"]= { + ["x"]= 740, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Slayer/Impact.png"]= { + ["x"]= 777, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png"]= { + ["x"]= 814, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulPact.png"]= { + ["x"]= 851, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SoulSiphoning.png"]= { + ["x"]= 888, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png"]= { + ["x"]= 925, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png"]= { + ["x"]= 962, + ["y"]= 930, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png"]= { + ["x"]= 0, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png"]= { + ["x"]= 37, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpikedBulwark.png"]= { + ["x"]= 74, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualAid.png"]= { + ["x"]= 111, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SpiritualCommand.png"]= { + ["x"]= 148, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffCrit.png"]= { + ["x"]= 185, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable.png"]= { + ["x"]= 222, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable2.png"]= { + ["x"]= 259, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StaffNotable3.png"]= { + ["x"]= 296, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableReservation.png"]= { + ["x"]= 333, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png"]= { + ["x"]= 370, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Storm Weaver.png"]= { + ["x"]= 407, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrengthOfBlood.png"]= { + ["x"]= 444, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png"]= { + ["x"]= 481, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunAvoidNotable.png"]= { + ["x"]= 518, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/StunMastery.png"]= { + ["x"]= 555, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SupremeProdigy.png"]= { + ["x"]= 592, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Survivalist.png"]= { + ["x"]= 629, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/SwordNotable1.png"]= { + ["x"]= 666, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TasteforBlood.png"]= { + ["x"]= 703, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TempestBlast.png"]= { + ["x"]= 740, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ThrillKiller.png"]= { + ["x"]= 777, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TideCaller.png"]= { + ["x"]= 814, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png"]= { + ["x"]= 851, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png"]= { + ["x"]= 888, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable1.png"]= { + ["x"]= 925, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable2.png"]= { + ["x"]= 962, + ["y"]= 967, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TinctureNotable3.png"]= { + ["x"]= 0, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TotemDmgNotable.png"]= { + ["x"]= 37, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap.png"]= { + ["x"]= 74, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trap2.png"]= { + ["x"]= 111, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png"]= { + ["x"]= 148, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png"]= { + ["x"]= 185, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png"]= { + ["x"]= 222, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png"]= { + ["x"]= 259, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png"]= { + ["x"]= 296, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png"]= { + ["x"]= 333, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png"]= { + ["x"]= 370, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png"]= { + ["x"]= 407, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png"]= { + ["x"]= 444, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png"]= { + ["x"]= 481, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TrueStriker.png"]= { + ["x"]= 518, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png"]= { + ["x"]= 555, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png"]= { + ["x"]= 592, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unfaltering.png"]= { + ["x"]= 629, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unrelenting.png"]= { + ["x"]= 666, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Unwavering.png"]= { + ["x"]= 703, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png"]= { + ["x"]= 740, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Vampirism.png"]= { + ["x"]= 777, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoidBarrier.png"]= { + ["x"]= 814, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png"]= { + ["x"]= 851, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png"]= { + ["x"]= 888, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png"]= { + ["x"]= 925, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png"]= { + ["x"]= 962, + ["y"]= 1004, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png"]= { + ["x"]= 0, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png"]= { + ["x"]= 37, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png"]= { + ["x"]= 74, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WandDamage.png"]= { + ["x"]= 111, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png"]= { + ["x"]= 148, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png"]= { + ["x"]= 185, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png"]= { + ["x"]= 222, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png"]= { + ["x"]= 259, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png"]= { + ["x"]= 296, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png"]= { + ["x"]= 333, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png"]= { + ["x"]= 370, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png"]= { + ["x"]= 407, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png"]= { + ["x"]= 444, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png"]= { + ["x"]= 481, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png"]= { + ["x"]= 518, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png"]= { + ["x"]= 555, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png"]= { + ["x"]= 592, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png"]= { + ["x"]= 629, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WardenAnointNotable.png"]= { + ["x"]= 666, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Warrior.png"]= { + ["x"]= 703, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png"]= { + ["x"]= 740, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/WritteninBlood.png"]= { + ["x"]= 777, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/accuracydex.png"]= { + ["x"]= 814, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/adderstouch.png"]= { + ["x"]= 851, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ambidexterity.png"]= { + ["x"]= 888, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/amplify.png"]= { + ["x"]= 925, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/animalspirit.png"]= { + ["x"]= 962, + ["y"]= 1041, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneefficiency.png"]= { + ["x"]= 0, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcane focus.png"]= { + ["x"]= 37, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcanepotency.png"]= { + ["x"]= 74, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arcaneradience.png"]= { + ["x"]= 111, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/armourmastery.png"]= { + ["x"]= 148, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/arsonist.png"]= { + ["x"]= 185, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ashfrostandstorm.png"]= { + ["x"]= 222, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/attackspeedbow.png"]= { + ["x"]= 259, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/authority.png"]= { + ["x"]= 296, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/barricade.png"]= { + ["x"]= 333, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/berserking.png"]= { + ["x"]= 370, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bladebarrier.png"]= { + ["x"]= 407, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademaster.png"]= { + ["x"]= 444, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blademistress.png"]= { + ["x"]= 481, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/blastradius.png"]= { + ["x"]= 518, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/bodysoul.png"]= { + ["x"]= 555, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/borntofight.png"]= { + ["x"]= 592, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/breathofrime.png"]= { + ["x"]= 629, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/butchery.png"]= { + ["x"]= 666, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/castavoidinterruption.png"]= { + ["x"]= 703, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/catalyse.png"]= { + ["x"]= 740, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargedex.png"]= { + ["x"]= 777, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargeint.png"]= { + ["x"]= 814, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/chargestr.png"]= { + ["x"]= 851, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cleverconstruction.png"]= { + ["x"]= 888, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink2.png"]= { + ["x"]= 925, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/clustersLink3.png"]= { + ["x"]= 962, + ["y"]= 1078, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png"]= { + ["x"]= 0, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/cruelblade.png"]= { + ["x"]= 37, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/daggerpenetration.png"]= { + ["x"]= 74, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlydraw.png"]= { + ["x"]= 111, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deadlyprecision.png"]= { + ["x"]= 148, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deathattunement.png"]= { + ["x"]= 185, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepthoughts.png"]= { + ["x"]= 222, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/deepwisdom.png"]= { + ["x"]= 259, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/diamondskin.png"]= { + ["x"]= 296, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/doomcast.png"]= { + ["x"]= 333, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagleeye.png"]= { + ["x"]= 370, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/eagletalons.png"]= { + ["x"]= 407, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elderpower.png"]= { + ["x"]= 444, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/elementalist.png"]= { + ["x"]= 481, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/evasion.png"]= { + ["x"]= 518, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/executioner.png"]= { + ["x"]= 555, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/expeditiousmunitions.png"]= { + ["x"]= 592, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fellingtheweak.png"]= { + ["x"]= 629, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fending.png"]= { + ["x"]= 666, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/finesse.png"]= { + ["x"]= 703, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/firedamage.png"]= { + ["x"]= 740, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flameborn.png"]= { + ["x"]= 777, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/flaying.png"]= { + ["x"]= 814, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/foresight.png"]= { + ["x"]= 851, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/frostborn.png"]= { + ["x"]= 888, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/furybolts.png"]= { + ["x"]= 925, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/fussilade.png"]= { + ["x"]= 962, + ["y"]= 1115, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/galvanichammer.png"]= { + ["x"]= 0, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/golemsblood.png"]= { + ["x"]= 37, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/grace.png"]= { + ["x"]= 74, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveexpectations.png"]= { + ["x"]= 111, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/graveintentions.png"]= { + ["x"]= 148, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/gravepact.png"]= { + ["x"]= 185, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hammerblows.png"]= { + ["x"]= 222, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hatchetmaster.png"]= { + ["x"]= 259, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartofthegladiator.png"]= { + ["x"]= 296, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartpierce.png"]= { + ["x"]= 333, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heartseeker.png"]= { + ["x"]= 370, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/heavydraw.png"]= { + ["x"]= 407, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/hellfire.png"]= { + ["x"]= 444, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/highexplosives.png"]= { + ["x"]= 481, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/icebite.png"]= { + ["x"]= 518, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/iceheart.png"]= { + ["x"]= 555, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/increased armor.png"]= { + ["x"]= 592, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/influence.png"]= { + ["x"]= 629, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/innerforce.png"]= { + ["x"]= 666, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/ironwoodtotem.png"]= { + ["x"]= 703, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/kingofthehill.png"]= { + ["x"]= 740, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lavalash.png"]= { + ["x"]= 777, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/leadership.png"]= { + ["x"]= 814, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/legendaryswordsman.png"]= { + ["x"]= 851, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/life1.png"]= { + ["x"]= 888, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleech.png"]= { + ["x"]= 925, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lifeleechimmunity.png"]= { + ["x"]= 962, + ["y"]= 1152, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lightningint.png"]= { + ["x"]= 0, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/lordofthedead.png"]= { + ["x"]= 37, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/macedmg.png"]= { + ["x"]= 74, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/manaconduit.png"]= { + ["x"]= 111, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterfletcher.png"]= { + ["x"]= 148, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mastersapper.png"]= { + ["x"]= 185, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/masterywand.png"]= { + ["x"]= 222, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/melding.png"]= { + ["x"]= 259, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/mentalacuity.png"]= { + ["x"]= 296, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minddrinker.png"]= { + ["x"]= 333, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/minionblockchance.png"]= { + ["x"]= 370, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newcolddamage.png"]= { + ["x"]= 407, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newenergyshield.png"]= { + ["x"]= 444, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newevadepercentage.png"]= { + ["x"]= 481, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newincreasedcritical.png"]= { + ["x"]= 518, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newnewattackspeed.png"]= { + ["x"]= 555, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/newtitanicmight.png"]= { + ["x"]= 592, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nightstalker.png"]= { + ["x"]= 629, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/nimbleness.png"]= { + ["x"]= 666, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/oxblood.png"]= { + ["x"]= 703, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/perfectaim.png"]= { + ["x"]= 740, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusdexterity.png"]= { + ["x"]= 777, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusintelligence.png"]= { + ["x"]= 814, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/plusstrength.png"]= { + ["x"]= 851, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/potencyofwill.png"]= { + ["x"]= 888, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/precision.png"]= { + ["x"]= 925, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/pyromaniac.png"]= { + ["x"]= 962, + ["y"]= 1189, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/quickstep.png"]= { + ["x"]= 0, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/razorsedge.png"]= { + ["x"]= 37, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/reaver.png"]= { + ["x"]= 74, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/revengeofthehunted.png"]= { + ["x"]= 111, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/saboteur.png"]= { + ["x"]= 148, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/savant.png"]= { + ["x"]= 185, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/scissorblades.png"]= { + ["x"]= 222, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/serpentstance.png"]= { + ["x"]= 259, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shamsnisticfury.png"]= { + ["x"]= 296, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/shieldwall.png"]= { + ["x"]= 333, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/skullcracking.png"]= { + ["x"]= 370, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/soulsyphon.png"]= { + ["x"]= 407, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sovereignty.png"]= { + ["x"]= 444, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/sparkingattacks.png"]= { + ["x"]= 481, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stabbingcomeback.png"]= { + ["x"]= 518, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/staticshield.png"]= { + ["x"]= 555, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stormborn.png"]= { + ["x"]= 592, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/strongarm.png"]= { + ["x"]= 629, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunmace.png"]= { + ["x"]= 666, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/stunstaff.png"]= { + ["x"]= 703, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swagger.png"]= { + ["x"]= 740, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/swashbuckler.png"]= { + ["x"]= 777, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/talonsofmurder.png"]= { + ["x"]= 814, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/thickskin.png"]= { + ["x"]= 851, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/throatseeker.png"]= { + ["x"]= 888, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/titanicmight.png"]= { + ["x"]= 925, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemandbrandrange.png"]= { + ["x"]= 962, + ["y"]= 1226, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemicmastery.png"]= { + ["x"]= 0, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/totemiczeal.png"]= { + ["x"]= 37, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trapsradius.png"]= { + ["x"]= 74, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/trollblood.png"]= { + ["x"]= 111, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/volitilemines.png"]= { + ["x"]= 148, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wandslingersprowess.png"]= { + ["x"]= 185, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/whirlingstaff.png"]= { + ["x"]= 222, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/wreckingball.png"]= { + ["x"]= 259, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png"]= { + ["x"]= 296, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png"]= { + ["x"]= 333, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Champion.png"]= { + ["x"]= 370, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png"]= { + ["x"]= 407, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png"]= { + ["x"]= 444, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png"]= { + ["x"]= 481, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png"]= { + ["x"]= 518, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png"]= { + ["x"]= 555, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png"]= { + ["x"]= 592, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png"]= { + ["x"]= 629, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png"]= { + ["x"]= 666, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png"]= { + ["x"]= 703, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png"]= { + ["x"]= 740, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png"]= { + ["x"]= 777, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Raider.png"]= { + ["x"]= 814, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png"]= { + ["x"]= 851, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png"]= { + ["x"]= 888, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png"]= { + ["x"]= 925, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Assassin/Ambush.png"]= { + ["x"]= 962, + ["y"]= 1263, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/Chieftain/TawhoaForestsStrength.png"]= { + ["x"]= 0, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon1.png"]= { + ["x"]= 37, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon2.png"]= { + ["x"]= 74, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + }, + ["Art/2DArt/SkillIcons/passives/HinekoraPassiveIcon3.png"]= { + ["x"]= 111, + ["y"]= 1300, + ["w"]= 37, + ["h"]= 37 + } + } + }, + ["keystoneInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/skills-disabled-3.jpg?4973b78c", + ["w"]= 999, + ["h"]= 1496, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png"]= { + ["x"]= 0, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/BrandKeystone.png"]= { + ["x"]= 52, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CallToArms.png"]= { + ["x"]= 104, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ColdPureElementalCasterKeystone.png"]= { + ["x"]= 156, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CrimsonDance.png"]= { + ["x"]= 208, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/CritAilments.png"]= { + ["x"]= 260, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Deaden.png"]= { + ["x"]= 312, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DiscipleOfKitava.png"]= { + ["x"]= 364, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/DragonStyle.png"]= { + ["x"]= 416, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EnergisedFortress.png"]= { + ["x"]= 468, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/EternalYouth.png"]= { + ["x"]= 520, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/FirePureElementalCasterKeystone.png"]= { + ["x"]= 572, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/GlancingBlows.png"]= { + ["x"]= 624, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleKeystone.png"]= { + ["x"]= 676, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png"]= { + ["x"]= 728, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png"]= { + ["x"]= 780, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png"]= { + ["x"]= 832, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png"]= { + ["x"]= 884, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png"]= { + ["x"]= 936, + ["y"]= 1337, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneConduit.png"]= { + ["x"]= 0, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png"]= { + ["x"]= 52, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png"]= { + ["x"]= 104, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png"]= { + ["x"]= 156, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png"]= { + ["x"]= 208, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png"]= { + ["x"]= 260, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png"]= { + ["x"]= 312, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneIronWill.png"]= { + ["x"]= 364, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png"]= { + ["x"]= 416, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png"]= { + ["x"]= 468, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png"]= { + ["x"]= 520, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png"]= { + ["x"]= 572, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png"]= { + ["x"]= 624, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png"]= { + ["x"]= 676, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Kineticism.png"]= { + ["x"]= 728, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LightningPureElementalCasterKeystone.png"]= { + ["x"]= 780, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/LoneMessenger.png"]= { + ["x"]= 832, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MiracleMaker.png"]= { + ["x"]= 884, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/MomentofRespite.png"]= { + ["x"]= 936, + ["y"]= 1390, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/NaturesPatience.png"]= { + ["x"]= 0, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png"]= { + ["x"]= 52, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Pitfighter.png"]= { + ["x"]= 104, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/PreciseTechnique.png"]= { + ["x"]= 156, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Resilience.png"]= { + ["x"]= 208, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/RetaliationKeystone.png"]= { + ["x"]= 260, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png"]= { + ["x"]= 312, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SecretOfAgony.png"]= { + ["x"]= 364, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/SupremeEgo.png"]= { + ["x"]= 416, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/TinctureKeystone1.png"]= { + ["x"]= 468, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png"]= { + ["x"]= 520, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VersatileCombatant.png"]= { + ["x"]= 572, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/VeteransAwareness.png"]= { + ["x"]= 624, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/WindDancer.png"]= { + ["x"]= 676, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/ghostreaver.png"]= { + ["x"]= 728, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/heroicspirit.png"]= { + ["x"]= 780, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png"]= { + ["x"]= 832, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/totemmax.png"]= { + ["x"]= 884, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + }, + ["Art/2DArt/SkillIcons/passives/vaalpact.png"]= { + ["x"]= 936, + ["y"]= 1443, + ["w"]= 52, + ["h"]= 53 + } + } + }, + ["mastery"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-3.png?c17e5660", + ["w"]= 946, + ["h"]= 946, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/AltAreaDamageMastery.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltBloodMastery.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltChaosDamageMastery.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltColdDamageMastery.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltDaggerClawDamageMastery.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltDamageOverTimeMultiplierMastery.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltDamageWithHeraldMastery.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltFireDamageMastery.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryAuras.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryBrand.png"]= { + ["x"]= 860, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryChaos.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryCurse.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryElementalDamage.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupBow.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupCast.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupCold.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupCrit.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupDualWield.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupFire.png"]= { + ["x"]= 860, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupLightning.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupMaceAndStaff.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupShield.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupSwordAndAxe.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupTwoHands.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryGroupWand.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryPhysicalDamage.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryProjectiles.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryTotem.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMasteryTraps.png"]= { + ["x"]= 860, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltNonDamagingAilmentsMastery.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AltWarcryMastery.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AttackBlindMastery.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AttackTotemMastery.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/BloodMastery.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MarkMastery.png"]= { + ["x"]= 860, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryAuras.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryBrand.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryChaos.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryCurse.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryDuration.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryFlasks.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupBow.png"]= { + ["x"]= 860, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupCold.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupFire.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupLife.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png"]= { + ["x"]= 860, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupMace.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupMana.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupShield.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupSword.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryGroupWand.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPoison.png"]= { + ["x"]= 860, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryProjectiles.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryRecovery.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryTraps.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MineMastery.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MinionMastery.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/PassiveStunMastery.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/RageMastery.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/WarcryMastery.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 860, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 860, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 516, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 602, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 688, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 774, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 860, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 0, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 86, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 172, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 258, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 344, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 430, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 516, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 602, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 688, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 774, + ["y"]= 860, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryConnected"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-connected-3.png?96461b88", + ["w"]= 860, + ["h"]= 860, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryActiveSelected"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-active-selected-3.png?27c631e2", + ["w"]= 860, + ["h"]= 860, + ["coords"]= { + ["PassiveMasteryConnectedButton"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldActive.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionActive.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindActive.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationActive.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldActive.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyActive.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 516, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryInactive"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-disabled-3.png?a60c53c5", + ["w"]= 860, + ["h"]= 860, + ["coords"]= { + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png"]= { + ["x"]= 86, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png"]= { + ["x"]= 172, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png"]= { + ["x"]= 258, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png"]= { + ["x"]= 344, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png"]= { + ["x"]= 430, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png"]= { + ["x"]= 516, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png"]= { + ["x"]= 602, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png"]= { + ["x"]= 688, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png"]= { + ["x"]= 774, + ["y"]= 0, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png"]= { + ["x"]= 0, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png"]= { + ["x"]= 86, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png"]= { + ["x"]= 172, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png"]= { + ["x"]= 258, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png"]= { + ["x"]= 344, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png"]= { + ["x"]= 430, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png"]= { + ["x"]= 516, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png"]= { + ["x"]= 602, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png"]= { + ["x"]= 688, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png"]= { + ["x"]= 774, + ["y"]= 86, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png"]= { + ["x"]= 0, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png"]= { + ["x"]= 86, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png"]= { + ["x"]= 172, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png"]= { + ["x"]= 258, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png"]= { + ["x"]= 344, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png"]= { + ["x"]= 430, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png"]= { + ["x"]= 516, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png"]= { + ["x"]= 602, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png"]= { + ["x"]= 688, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png"]= { + ["x"]= 774, + ["y"]= 172, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png"]= { + ["x"]= 0, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png"]= { + ["x"]= 86, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png"]= { + ["x"]= 172, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png"]= { + ["x"]= 258, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png"]= { + ["x"]= 344, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png"]= { + ["x"]= 430, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png"]= { + ["x"]= 516, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png"]= { + ["x"]= 602, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png"]= { + ["x"]= 688, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png"]= { + ["x"]= 774, + ["y"]= 258, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png"]= { + ["x"]= 0, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png"]= { + ["x"]= 86, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png"]= { + ["x"]= 172, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png"]= { + ["x"]= 258, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png"]= { + ["x"]= 344, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png"]= { + ["x"]= 430, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png"]= { + ["x"]= 516, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png"]= { + ["x"]= 602, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png"]= { + ["x"]= 688, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png"]= { + ["x"]= 774, + ["y"]= 344, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png"]= { + ["x"]= 0, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png"]= { + ["x"]= 86, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png"]= { + ["x"]= 172, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png"]= { + ["x"]= 258, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png"]= { + ["x"]= 344, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png"]= { + ["x"]= 430, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png"]= { + ["x"]= 516, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png"]= { + ["x"]= 602, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png"]= { + ["x"]= 688, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png"]= { + ["x"]= 774, + ["y"]= 430, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png"]= { + ["x"]= 0, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon1.png"]= { + ["x"]= 86, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon2.png"]= { + ["x"]= 172, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon3.png"]= { + ["x"]= 258, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon4.png"]= { + ["x"]= 344, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon5.png"]= { + ["x"]= 430, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon6.png"]= { + ["x"]= 516, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png"]= { + ["x"]= 602, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon8.png"]= { + ["x"]= 688, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon9.png"]= { + ["x"]= 774, + ["y"]= 516, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon10.png"]= { + ["x"]= 0, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon11.png"]= { + ["x"]= 86, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon12.png"]= { + ["x"]= 172, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon13.png"]= { + ["x"]= 258, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon14.png"]= { + ["x"]= 344, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon15.png"]= { + ["x"]= 430, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon16.png"]= { + ["x"]= 516, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon17.png"]= { + ["x"]= 602, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon18.png"]= { + ["x"]= 688, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon19.png"]= { + ["x"]= 774, + ["y"]= 602, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon20.png"]= { + ["x"]= 0, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon21.png"]= { + ["x"]= 86, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon22.png"]= { + ["x"]= 172, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon23.png"]= { + ["x"]= 258, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon24.png"]= { + ["x"]= 344, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon25.png"]= { + ["x"]= 430, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon26.png"]= { + ["x"]= 516, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon27.png"]= { + ["x"]= 602, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon29.png"]= { + ["x"]= 688, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon30.png"]= { + ["x"]= 774, + ["y"]= 688, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon31.png"]= { + ["x"]= 0, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon32.png"]= { + ["x"]= 86, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon33.png"]= { + ["x"]= 172, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon34.png"]= { + ["x"]= 258, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon36.png"]= { + ["x"]= 344, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + }, + ["Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon37.png"]= { + ["x"]= 430, + ["y"]= 774, + ["w"]= 86, + ["h"]= 86 + } + } + }, + ["masteryActiveEffect"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/mastery-active-effect-3.png?0200e81a", + ["w"]= 2376, + ["h"]= 2352, + ["coords"]= { + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png"]= { + ["x"]= 297, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png"]= { + ["x"]= 594, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png"]= { + ["x"]= 891, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png"]= { + ["x"]= 1188, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png"]= { + ["x"]= 1485, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png"]= { + ["x"]= 1782, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png"]= { + ["x"]= 2079, + ["y"]= 0, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png"]= { + ["x"]= 0, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png"]= { + ["x"]= 297, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png"]= { + ["x"]= 594, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png"]= { + ["x"]= 891, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png"]= { + ["x"]= 1188, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png"]= { + ["x"]= 1485, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png"]= { + ["x"]= 1782, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png"]= { + ["x"]= 2079, + ["y"]= 294, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png"]= { + ["x"]= 0, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png"]= { + ["x"]= 297, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png"]= { + ["x"]= 594, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png"]= { + ["x"]= 891, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png"]= { + ["x"]= 1188, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png"]= { + ["x"]= 1485, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png"]= { + ["x"]= 1782, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png"]= { + ["x"]= 2079, + ["y"]= 588, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png"]= { + ["x"]= 0, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png"]= { + ["x"]= 297, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png"]= { + ["x"]= 594, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png"]= { + ["x"]= 891, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png"]= { + ["x"]= 1188, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png"]= { + ["x"]= 1485, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png"]= { + ["x"]= 1782, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png"]= { + ["x"]= 2079, + ["y"]= 882, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png"]= { + ["x"]= 0, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png"]= { + ["x"]= 297, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png"]= { + ["x"]= 594, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png"]= { + ["x"]= 891, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png"]= { + ["x"]= 1188, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png"]= { + ["x"]= 1485, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png"]= { + ["x"]= 1782, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png"]= { + ["x"]= 2079, + ["y"]= 1176, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png"]= { + ["x"]= 0, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png"]= { + ["x"]= 297, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png"]= { + ["x"]= 594, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png"]= { + ["x"]= 891, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png"]= { + ["x"]= 1188, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png"]= { + ["x"]= 1485, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png"]= { + ["x"]= 1782, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png"]= { + ["x"]= 2079, + ["y"]= 1470, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png"]= { + ["x"]= 0, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png"]= { + ["x"]= 297, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png"]= { + ["x"]= 594, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png"]= { + ["x"]= 891, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png"]= { + ["x"]= 1188, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png"]= { + ["x"]= 1485, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png"]= { + ["x"]= 1782, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png"]= { + ["x"]= 2079, + ["y"]= 1764, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png"]= { + ["x"]= 0, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png"]= { + ["x"]= 297, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png"]= { + ["x"]= 594, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png"]= { + ["x"]= 891, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png"]= { + ["x"]= 1188, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + }, + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["x"]= 1485, + ["y"]= 2058, + ["w"]= 297, + ["h"]= 294 + } + } + }, + ["tattooActiveEffect"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/tattoo-active-effect-3.png?34fa8683", + ["w"]= 576, + ["h"]= 704, + ["coords"]= { + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ArohonguiTribePassiveBG.png"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraPassiveBG.png"]= { + ["x"]= { + 139, + 0 + }, + ["y"]= { + 0, + 414 + }, + ["w"]= { + 139, + 288 + }, + ["h"]= { + 138, + 290 + } + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/HinekoraTribePassiveBG.png"]= { + ["x"]= 278, + ["y"]= 0, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KitavaTribePassiveBG.png"]= { + ["x"]= 417, + ["y"]= 0, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/NgamahuTribePassiveBG.png"]= { + ["x"]= 0, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RamakoTribePassiveBG.png"]= { + ["x"]= 139, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/RongokuraiTribePassiveBG.png"]= { + ["x"]= 278, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TasalioTribePassiveBG.png"]= { + ["x"]= 417, + ["y"]= 138, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TawhoaTribePassiveBG.png"]= { + ["x"]= 0, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/TukohamaTribePassiveBG.png"]= { + ["x"]= 139, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/ValakoTribePassiveBG.png"]= { + ["x"]= 278, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png"]= { + ["x"]= 417, + ["y"]= 276, + ["w"]= 139, + ["h"]= 138 + }, + ["Art/2DArt/UIImages/InGame/AncestralTrial/PassiveTreeTattoos/KeystoneHinekoraPassiveBG.png"]= { + ["x"]= 288, + ["y"]= 414, + ["w"]= 288, + ["h"]= 290 + } + } + }, + ["ascendancy"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/ascendancy-3.webp?b2dbca88", + ["w"]= 2668, + ["h"]= 2668, + ["coords"]= { + ["ClassesReliquarian"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 587, + ["h"]= 587 + }, + ["ClassesLuminary"]= { + ["x"]= 587, + ["y"]= 0, + ["w"]= 587, + ["h"]= 587 + }, + ["ClassesAscendant"]= { + ["x"]= 0, + ["y"]= 587, + ["w"]= 587, + ["h"]= 587 + }, + ["ClassesTrickster"]= { + ["x"]= 587, + ["y"]= 587, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesSlayer"]= { + ["x"]= 1174, + ["y"]= 0, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesSaboteur"]= { + ["x"]= 1174, + ["y"]= 498, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesRaider"]= { + ["x"]= 0, + ["y"]= 1174, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesPathfinder"]= { + ["x"]= 498, + ["y"]= 1174, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesOccultist"]= { + ["x"]= 996, + ["y"]= 1174, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesNecromancer"]= { + ["x"]= 1672, + ["y"]= 0, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesJuggernaut"]= { + ["x"]= 1672, + ["y"]= 498, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesInquisitor"]= { + ["x"]= 1672, + ["y"]= 996, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesHierophant"]= { + ["x"]= 0, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesGuardian"]= { + ["x"]= 498, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesGladiator"]= { + ["x"]= 996, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesElementalist"]= { + ["x"]= 1494, + ["y"]= 1672, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesDeadeye"]= { + ["x"]= 2170, + ["y"]= 0, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesChieftain"]= { + ["x"]= 2170, + ["y"]= 498, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesChampion"]= { + ["x"]= 2170, + ["y"]= 996, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesBerserker"]= { + ["x"]= 2170, + ["y"]= 1494, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesAssassin"]= { + ["x"]= 0, + ["y"]= 2170, + ["w"]= 498, + ["h"]= 498 + }, + ["ClassesAlternate"]= { + ["x"]= 498, + ["y"]= 2170, + ["w"]= 498, + ["h"]= 498 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 2170, + ["y"]= 1992, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 2258, + ["y"]= 1992, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 2346, + ["y"]= 1992, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2170, + ["y"]= 2049, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2228, + ["y"]= 2049, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2286, + ["y"]= 2049, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2434, + ["y"]= 1992, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 2473, + ["y"]= 1992, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 2512, + ["y"]= 1992, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2551, + ["y"]= 1992, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["azmeriBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesWarlock"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["ClassesWarden"]= { + ["x"]= 567, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["ClassesPrimalist"]= { + ["x"]= 567, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 0, + ["y"]= 2148, + ["w"]= 151, + ["h"]= 63 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 151, + ["y"]= 2148, + ["w"]= 151, + ["h"]= 63 + }, + ["AscendancyButton"]= { + ["x"]= 302, + ["y"]= 2148, + ["w"]= 151, + ["h"]= 63 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 0, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 854, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1708, + ["w"]= 61, + ["h"]= 61 + }, + ["CharmSocketActiveStr"]= { + ["x"]= 305, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmSocketActiveInt"]= { + ["x"]= 363, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmSocketActiveDex"]= { + ["x"]= 421, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmFrameNormal"]= { + ["x"]= 479, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmFrameCanAllocate"]= { + ["x"]= 537, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["CharmFrameAllocated"]= { + ["x"]= 595, + ["y"]= 2268, + ["w"]= 58, + ["h"]= 58 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2213, + ["y"]= 2148, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 2179, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1121, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1667, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["trialmasterBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesTrialmaster"]= { + ["x"]= 0, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 453, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1597, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 528, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 61, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 915, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1769, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1672, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 2218, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1160, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1698, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["oshabiBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesOshabi"]= { + ["x"]= 1134, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 541, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1685, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 616, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 122, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 976, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1830, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1711, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 653, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1199, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1729, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["olrothBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesOlroth"]= { + ["x"]= 1134, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 981, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 2125, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1056, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 427, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1281, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2135, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1906, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 848, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1394, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1884, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["necromanticBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesNecromantic"]= { + ["x"]= 0, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1333, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 264, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1408, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 671, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1525, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 122, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2062, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 1004, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1550, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2008, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["lyciaBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesLycia"]= { + ["x"]= 567, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 893, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 2037, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 968, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 366, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1220, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2074, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1867, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 809, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1355, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1853, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["kingInTheMistsBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesKingInTheMists"]= { + ["x"]= 1134, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 629, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1773, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 704, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 183, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1037, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1891, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1750, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 692, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1238, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1760, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["farrulBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesFarrul"]= { + ["x"]= 1701, + ["y"]= 0, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1069, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 0, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1144, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 488, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1342, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2196, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1945, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 887, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1433, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1915, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["deliriousBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesDelirious"]= { + ["x"]= 1701, + ["y"]= 537, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1157, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 88, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1232, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 549, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1403, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 0, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1984, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 926, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1472, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1946, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["catarinaBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesCatarina"]= { + ["x"]= 1701, + ["y"]= 1074, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 717, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1861, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 792, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 244, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1098, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 1952, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1789, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 731, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1277, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1791, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["brinerotBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesBrinerot"]= { + ["x"]= 0, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1421, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 352, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1496, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 732, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1586, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 183, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2101, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 1043, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1589, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2039, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["breachlordBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesBreachlord"]= { + ["x"]= 567, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1245, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 176, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1320, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 610, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1464, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 61, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2023, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 965, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1511, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1977, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["aulBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesAul"]= { + ["x"]= 1134, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 805, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 1949, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 880, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 305, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1159, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 2268, + ["y"]= 2013, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 1828, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 770, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1316, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 1822, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["abyssalBloodline"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/bloodline-3.webp?c89491a1", + ["w"]= 2329, + ["h"]= 2329, + ["coords"]= { + ["ClassesAbyssal"]= { + ["x"]= 1701, + ["y"]= 1611, + ["w"]= 567, + ["h"]= 537 + }, + ["AscendancyButtonPressed"]= { + ["x"]= 1509, + ["y"]= 2148, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButtonHighlight"]= { + ["x"]= 440, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyButton"]= { + ["x"]= 1584, + ["y"]= 2211, + ["w"]= 88, + ["h"]= 57 + }, + ["AscendancyFrameLargeNormal"]= { + ["x"]= 2268, + ["y"]= 793, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeCanAllocate"]= { + ["x"]= 2268, + ["y"]= 1647, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameLargeAllocated"]= { + ["x"]= 244, + ["y"]= 2268, + ["w"]= 61, + ["h"]= 61 + }, + ["AscendancyFrameSmallNormal"]= { + ["x"]= 2140, + ["y"]= 2211, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallCanAllocate"]= { + ["x"]= 1082, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyFrameSmallAllocated"]= { + ["x"]= 1628, + ["y"]= 2268, + ["w"]= 39, + ["h"]= 39 + }, + ["AscendancyMiddle"]= { + ["x"]= 2070, + ["y"]= 2268, + ["w"]= 31, + ["h"]= 31 + } + } + }, + ["startNode"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/group-background-3.png?95dbfa0a", + ["w"]= 1006, + ["h"]= 666, + ["coords"]= { + ["centerwitch"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 241, + ["h"]= 222 + }, + ["centertemplar"]= { + ["x"]= 241, + ["y"]= 0, + ["w"]= 241, + ["h"]= 222 + }, + ["centershadow"]= { + ["x"]= 0, + ["y"]= 222, + ["w"]= 241, + ["h"]= 222 + }, + ["centerscion"]= { + ["x"]= 241, + ["y"]= 222, + ["w"]= 241, + ["h"]= 222 + }, + ["centerranger"]= { + ["x"]= 482, + ["y"]= 0, + ["w"]= 241, + ["h"]= 222 + }, + ["centermarauder"]= { + ["x"]= 482, + ["y"]= 222, + ["w"]= 241, + ["h"]= 222 + }, + ["centerduelist"]= { + ["x"]= 0, + ["y"]= 444, + ["w"]= 241, + ["h"]= 222 + }, + ["PSStartNodeBackgroundInactive"]= { + ["x"]= 241, + ["y"]= 444, + ["w"]= 202, + ["h"]= 202 + } + } + }, + ["groupBackground"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/group-background-3.png?95dbfa0a", + ["w"]= 1006, + ["h"]= 666, + ["coords"]= { + ["PSGroupBackground3"]= { + ["x"]= 723, + ["y"]= 0, + ["w"]= 283, + ["h"]= 143 + }, + ["GroupBackgroundLargeHalfAlt"]= { + ["x"]= 723, + ["y"]= 143, + ["w"]= 283, + ["h"]= 143 + }, + ["PSGroupBackground2"]= { + ["x"]= 723, + ["y"]= 286, + ["w"]= 178, + ["h"]= 178 + }, + ["GroupBackgroundMediumAlt"]= { + ["x"]= 723, + ["y"]= 464, + ["w"]= 178, + ["h"]= 178 + }, + ["PSGroupBackground1"]= { + ["x"]= 443, + ["y"]= 444, + ["w"]= 138, + ["h"]= 138 + }, + ["GroupBackgroundSmallAlt"]= { + ["x"]= 581, + ["y"]= 444, + ["w"]= 138, + ["h"]= 138 + } + } + }, + ["frame"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/frame-3.png?4eb7045b", + ["w"]= 383, + ["h"]= 334, + ["coords"]= { + ["KeystoneFrameUnallocated"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 83, + ["h"]= 85 + }, + ["KeystoneFrameCanAllocate"]= { + ["x"]= 83, + ["y"]= 0, + ["w"]= 83, + ["h"]= 85 + }, + ["KeystoneFrameAllocated"]= { + ["x"]= 166, + ["y"]= 0, + ["w"]= 83, + ["h"]= 85 + }, + ["JewelSocketClusterAltNormal1Small"]= { + ["x"]= 0, + ["y"]= 85, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltNormal1Medium"]= { + ["x"]= 76, + ["y"]= 85, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltNormal1Large"]= { + ["x"]= 152, + ["y"]= 85, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltCanAllocate1Small"]= { + ["x"]= 0, + ["y"]= 161, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltCanAllocate1Medium"]= { + ["x"]= 76, + ["y"]= 161, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketClusterAltCanAllocate1Large"]= { + ["x"]= 152, + ["y"]= 161, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketAltNormal"]= { + ["x"]= 249, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketAltCanAllocate"]= { + ["x"]= 249, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketAltActive"]= { + ["x"]= 249, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["NotableFrameUnallocated"]= { + ["x"]= 0, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["NotableFrameCanAllocate"]= { + ["x"]= 58, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["NotableFrameAllocated"]= { + ["x"]= 116, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelFrameUnallocated"]= { + ["x"]= 174, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelFrameCanAllocate"]= { + ["x"]= 232, + ["y"]= 237, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelFrameAllocated"]= { + ["x"]= 325, + ["y"]= 0, + ["w"]= 58, + ["h"]= 58 + }, + ["BlightedNotableFrameUnallocated"]= { + ["x"]= 325, + ["y"]= 58, + ["w"]= 58, + ["h"]= 58 + }, + ["BlightedNotableFrameCanAllocate"]= { + ["x"]= 325, + ["y"]= 116, + ["w"]= 58, + ["h"]= 58 + }, + ["BlightedNotableFrameAllocated"]= { + ["x"]= 325, + ["y"]= 174, + ["w"]= 58, + ["h"]= 58 + }, + ["PSSkillFrameHighlighted"]= { + ["x"]= 325, + ["y"]= 232, + ["w"]= 39, + ["h"]= 39 + }, + ["PSSkillFrameActive"]= { + ["x"]= 0, + ["y"]= 295, + ["w"]= 39, + ["h"]= 39 + }, + ["PSSkillFrame"]= { + ["x"]= 39, + ["y"]= 295, + ["w"]= 39, + ["h"]= 39 + } + } + }, + ["jewel"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/jewel-3.png?b4c992ca", + ["w"]= 286, + ["h"]= 286, + ["coords"]= { + ["JewelSocketActiveRedAlt"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActivePrismaticAlt"]= { + ["x"]= 76, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveLegionAlt"]= { + ["x"]= 0, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveGreenAlt"]= { + ["x"]= 76, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveBlueAlt"]= { + ["x"]= 152, + ["y"]= 0, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAltRed"]= { + ["x"]= 152, + ["y"]= 76, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAltPurple"]= { + ["x"]= 0, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAltBlue"]= { + ["x"]= 76, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveAbyssAlt"]= { + ["x"]= 152, + ["y"]= 152, + ["w"]= 76, + ["h"]= 76 + }, + ["JewelSocketActiveRed"]= { + ["x"]= 228, + ["y"]= 0, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActivePrismatic"]= { + ["x"]= 228, + ["y"]= 58, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveLegion"]= { + ["x"]= 228, + ["y"]= 116, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveGreen"]= { + ["x"]= 0, + ["y"]= 228, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveBlue"]= { + ["x"]= 58, + ["y"]= 228, + ["w"]= 58, + ["h"]= 58 + }, + ["JewelSocketActiveAbyss"]= { + ["x"]= 116, + ["y"]= 228, + ["w"]= 58, + ["h"]= 58 + } + } + }, + ["line"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/line-3.png?407bfbed", + ["w"]= 368, + ["h"]= 1140, + ["coords"]= { + ["LineConnectorActive"]= { + ["x"]= 0, + ["y"]= 12, + ["w"]= 368, + ["h"]= 13 + }, + ["Orbit1Active"]= { + ["x"]= 328, + ["y"]= 328, + ["w"]= 39, + ["h"]= 39 + }, + ["Orbit2Active"]= { + ["x"]= 297, + ["y"]= 297, + ["w"]= 70, + ["h"]= 70 + }, + ["Orbit3Active"]= { + ["x"]= 231, + ["y"]= 231, + ["w"]= 136, + ["h"]= 136 + }, + ["Orbit4Active"]= { + ["x"]= 170, + ["y"]= 170, + ["w"]= 197, + ["h"]= 197 + }, + ["Orbit5Active"]= { + ["x"]= 105, + ["y"]= 105, + ["w"]= 262, + ["h"]= 262 + }, + ["Orbit6Active"]= { + ["x"]= 39, + ["y"]= 39, + ["w"]= 329, + ["h"]= 329 + }, + ["LineConnectorNormal"]= { + ["x"]= 0, + ["y"]= 380, + ["w"]= 368, + ["h"]= 13 + }, + ["Orbit1Normal"]= { + ["x"]= 334, + ["y"]= 702, + ["w"]= 33, + ["h"]= 33 + }, + ["Orbit2Normal"]= { + ["x"]= 303, + ["y"]= 671, + ["w"]= 64, + ["h"]= 64 + }, + ["Orbit3Normal"]= { + ["x"]= 237, + ["y"]= 605, + ["w"]= 130, + ["h"]= 130 + }, + ["Orbit4Normal"]= { + ["x"]= 176, + ["y"]= 544, + ["w"]= 191, + ["h"]= 191 + }, + ["Orbit5Normal"]= { + ["x"]= 111, + ["y"]= 480, + ["w"]= 256, + ["h"]= 256 + }, + ["Orbit6Normal"]= { + ["x"]= 45, + ["y"]= 413, + ["w"]= 322, + ["h"]= 322 + }, + ["LineConnectorIntermediate"]= { + ["x"]= 0, + ["y"]= 748, + ["w"]= 368, + ["h"]= 13 + }, + ["Orbit1Intermediate"]= { + ["x"]= 334, + ["y"]= 1070, + ["w"]= 33, + ["h"]= 33 + }, + ["Orbit2Intermediate"]= { + ["x"]= 303, + ["y"]= 1040, + ["w"]= 64, + ["h"]= 64 + }, + ["Orbit3Intermediate"]= { + ["x"]= 237, + ["y"]= 973, + ["w"]= 130, + ["h"]= 130 + }, + ["Orbit4Intermediate"]= { + ["x"]= 176, + ["y"]= 913, + ["w"]= 191, + ["h"]= 191 + }, + ["Orbit5Intermediate"]= { + ["x"]= 111, + ["y"]= 848, + ["w"]= 256, + ["h"]= 256 + }, + ["Orbit6Intermediate"]= { + ["x"]= 45, + ["y"]= 781, + ["w"]= 322, + ["h"]= 322 + }, + ["PSLineDecoHighlighted"]= { + ["x"]= 0, + ["y"]= 1104, + ["w"]= 18, + ["h"]= 18 + }, + ["PSLineDeco"]= { + ["x"]= 0, + ["y"]= 1122, + ["w"]= 18, + ["h"]= 18 + } + } + }, + ["jewelRadius"]= { + ["filename"]= "https://web.poecdn.com/image/passive-skill/jewel-radius.png?1011b076", + ["w"]= 2252, + ["h"]= 2201, + ["coords"]= { + ["VaalJewelCircle2"]= { + ["x"]= 0, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["VaalJewelCircle1"]= { + ["x"]= 563, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["TemplarJewelCircle2"]= { + ["x"]= 0, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["TemplarJewelCircle1"]= { + ["x"]= 563, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["MarakethJewelCircle2"]= { + ["x"]= 1126, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["MarakethJewelCircle1"]= { + ["x"]= 1126, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["KaruiJewelCircle2"]= { + ["x"]= 0, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["KaruiJewelCircle1"]= { + ["x"]= 563, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["KalguurJewelCircle2"]= { + ["x"]= 1126, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["KalguurJewelCircle1"]= { + ["x"]= 1689, + ["y"]= 0, + ["w"]= 563, + ["h"]= 563 + }, + ["EternalEmpireJewelCircle2"]= { + ["x"]= 1689, + ["y"]= 563, + ["w"]= 563, + ["h"]= 563 + }, + ["EternalEmpireJewelCircle1"]= { + ["x"]= 1689, + ["y"]= 1126, + ["w"]= 563, + ["h"]= 563 + }, + ["JewelCircle1Inverse"]= { + ["x"]= 0, + ["y"]= 1689, + ["w"]= 512, + ["h"]= 512 + }, + ["JewelCircle1"]= { + ["x"]= 512, + ["y"]= 1689, + ["w"]= 512, + ["h"]= 512 + } + } + } + } +} \ No newline at end of file diff --git a/src/TreeData/3_29_ruthless/tattoo-active-effect-3.png b/src/TreeData/3_29_ruthless/tattoo-active-effect-3.png new file mode 100644 index 00000000000..488441673db Binary files /dev/null and b/src/TreeData/3_29_ruthless/tattoo-active-effect-3.png differ diff --git a/src/TreeData/3_29_ruthless/tree.lua b/src/TreeData/3_29_ruthless/tree.lua new file mode 100644 index 00000000000..14c1a909db7 --- /dev/null +++ b/src/TreeData/3_29_ruthless/tree.lua @@ -0,0 +1,90065 @@ +return { + ["tree"]= "Default", + ["ruthless"]= true, + ["classes"]= { + { + ["name"]= "Scion", + ["base_str"]= 20, + ["base_dex"]= 20, + ["base_int"]= 20, + ["ascendancies"]= { + { + ["id"]= "Ascendant", + ["name"]= "Ascendant" + }, + { + ["id"]= "Reliquarian", + ["name"]= "Reliquarian" + }, + { + ["id"]= "Luminary", + ["name"]= "Luminary" + } + } + }, + { + ["name"]= "Marauder", + ["base_str"]= 32, + ["base_dex"]= 14, + ["base_int"]= 14, + ["ascendancies"]= { + { + ["id"]= "Juggernaut", + ["name"]= "Juggernaut", + ["flavourText"]= " What divides the conqueror \n from the conquered? Perseverance.", + ["flavourTextColour"]= "af5a32", + ["flavourTextRect"]= { + ["x"]= 215, + ["y"]= 165, + ["width"]= 1063, + ["height"]= 436 + } + }, + { + ["id"]= "Berserker", + ["name"]= "Berserker", + ["flavourText"]= "The savage path is \nalways swift and sure.", + ["flavourTextColour"]= "af5a32", + ["flavourTextRect"]= { + ["x"]= 760, + ["y"]= 345, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Chieftain", + ["name"]= "Chieftain", + ["flavourText"]= " The Ancestors speak \nthrough your clenched fists.", + ["flavourTextColour"]= "af5a32", + ["flavourTextRect"]= { + ["x"]= 185, + ["y"]= 245, + ["width"]= 1076, + ["height"]= 449 + } + } + } + }, + { + ["name"]= "Ranger", + ["base_str"]= 14, + ["base_dex"]= 32, + ["base_int"]= 14, + ["ascendancies"]= { + { + ["id"]= "Raider", + ["name"]= "Warden", + ["flavourText"]= "A sacred duty. An ancestral promise.\nDeliver the fury of the wilds and\ntear evil asunder.", + ["flavourTextColour"]= "7cb376", + ["flavourTextRect"]= { + ["x"]= 365, + ["y"]= 965, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Deadeye", + ["name"]= "Deadeye", + ["flavourText"]= "A woman can change the world \nwith a single well-placed arrow.", + ["flavourTextColour"]= "7cb376", + ["flavourTextRect"]= { + ["x"]= 335, + ["y"]= 1045, + ["width"]= 870, + ["height"]= 1330 + } + }, + { + ["id"]= "Pathfinder", + ["name"]= "Pathfinder", + ["flavourText"]= "There are venoms and virtues aplenty in \n the wilds, if you know where to look.", + ["flavourTextColour"]= "7cb376", + ["flavourTextRect"]= { + ["x"]= 265, + ["y"]= 975, + ["width"]= 900, + ["height"]= 1250 + } + } + } + }, + { + ["name"]= "Witch", + ["base_str"]= 14, + ["base_dex"]= 14, + ["base_int"]= 32, + ["ascendancies"]= { + { + ["id"]= "Occultist", + ["name"]= "Occultist", + ["flavourText"]= " Throw off the chains\nof fear and embrace that\n which was forbidden.", + ["flavourTextColour"]= "9ac3c9", + ["flavourTextRect"]= { + ["x"]= 665, + ["y"]= 385, + ["width"]= 906, + ["height"]= 389 + } + }, + { + ["id"]= "Elementalist", + ["name"]= "Elementalist", + ["flavourText"]= "Feed a storm with savage intent \nand not even the strongest walls\nwill hold it back.", + ["flavourTextColour"]= "9ac3c9", + ["flavourTextRect"]= { + ["x"]= 125, + ["y"]= 475, + ["width"]= 510, + ["height"]= 768 + } + }, + { + ["id"]= "Necromancer", + ["name"]= "Necromancer", + ["flavourText"]= "Embrace the serene\npower that is undeath.", + ["flavourTextColour"]= "9ac3c9", + ["flavourTextRect"]= { + ["x"]= 720, + ["y"]= 303, + ["width"]= 1000, + ["height"]= 1000 + } + } + } + }, + { + ["name"]= "Duelist", + ["base_str"]= 23, + ["base_dex"]= 23, + ["base_int"]= 14, + ["ascendancies"]= { + { + ["id"]= "Slayer", + ["name"]= "Slayer", + ["flavourText"]= " No judge. No jury.\nJust the executioner.", + ["flavourTextColour"]= "96afc8", + ["flavourTextRect"]= { + ["x"]= 470, + ["y"]= 310, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Gladiator", + ["name"]= "Gladiator", + ["flavourText"]= "Raise your hand to the \nroaring crowd and pledge \nyour allegiance to glory.", + ["flavourTextColour"]= "96afc8", + ["flavourTextRect"]= { + ["x"]= 670, + ["y"]= 395, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Champion", + ["name"]= "Champion", + ["flavourText"]= "Champion that which \n you love. He who fights\n for nothing, dies\n for nothing.", + ["flavourTextColour"]= "96afc8", + ["flavourTextRect"]= { + ["x"]= 735, + ["y"]= 625, + ["width"]= 976, + ["height"]= 429 + } + } + } + }, + { + ["name"]= "Templar", + ["base_str"]= 23, + ["base_dex"]= 14, + ["base_int"]= 23, + ["ascendancies"]= { + { + ["id"]= "Inquisitor", + ["name"]= "Inquisitor", + ["flavourText"]= " Truth is elusive, yet God has\nprovided us with all the tools \n necessary to find it.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 285, + ["y"]= 940, + ["width"]= 926, + ["height"]= 429 + } + }, + { + ["id"]= "Hierophant", + ["name"]= "Hierophant", + ["flavourText"]= "Drink deeply from God's\n chalice, for the faithful\n will never find it empty.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 100, + ["y"]= 720, + ["width"]= 936, + ["height"]= 399 + } + }, + { + ["id"]= "Guardian", + ["name"]= "Guardian", + ["flavourText"]= "When bound by faith\n and respect, the flock\n will overwhelm the wolf.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 170, + ["y"]= 780, + ["width"]= 976, + ["height"]= 429 + } + } + } + }, + { + ["name"]= "Shadow", + ["base_str"]= 14, + ["base_dex"]= 23, + ["base_int"]= 23, + ["ascendancies"]= { + { + ["id"]= "Assassin", + ["name"]= "Assassin", + ["flavourText"]= "Death is a banquet. \n It's up to the murderer \n to write the menu.", + ["flavourTextColour"]= "72818d", + ["flavourTextRect"]= { + ["x"]= 650, + ["y"]= 845, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Trickster", + ["name"]= "Trickster", + ["flavourText"]= " Everyone knows how to die. \n Some just need a little nudge \nto get them started.", + ["flavourTextColour"]= "72818d", + ["flavourTextRect"]= { + ["x"]= 315, + ["y"]= 150, + ["width"]= 976, + ["height"]= 429 + } + }, + { + ["id"]= "Saboteur", + ["name"]= "Saboteur", + ["flavourText"]= "The artist need not be present \n to make a lasting impression.", + ["flavourTextColour"]= "72818d", + ["flavourTextRect"]= { + ["x"]= 355, + ["y"]= 970, + ["width"]= 976, + ["height"]= 429 + } + } + } + } + }, + ["alternate_ascendancies"]= { + { + ["id"]= "Warden", + ["name"]= "Warden of the Maji", + ["flavourText"]= "A Warden of the Maji has sworn\nto walk the righteous path.", + ["flavourTextColour"]= "b0d9b3", + ["flavourTextRect"]= { + ["x"]= 485, + ["y"]= 226, + ["width"]= 1000, + ["height"]= 1000 + } + }, + { + ["id"]= "Warlock", + ["name"]= "Warlock of the Mists", + ["flavourText"]= " A Warlock of the Mists\n seeks mastery over\nthe darkness.", + ["flavourTextColour"]= "bf999c", + ["flavourTextRect"]= { + ["x"]= 327, + ["y"]= 252, + ["width"]= 1000, + ["height"]= 1000 + } + }, + { + ["id"]= "Primalist", + ["name"]= "Wildwood Primalist", + ["flavourText"]= "A Primalist of the\nWildwood answers\nto no one.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 919, + ["y"]= 464, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Trialmaster", + ["name"]= "Chaos Bloodline", + ["flavourText"]= "Your entire existence is merely\na jest to entertain Chaos.", + ["flavourTextColour"]= "c1a76b", + ["flavourTextRect"]= { + ["x"]= 500, + ["y"]= 960, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Oshabi", + ["name"]= "Oshabi Bloodline", + ["flavourText"]= " Wraeclast's Lifeforce flows\nthrough your veins.", + ["flavourTextColour"]= "92c0e2", + ["flavourTextRect"]= { + ["x"]= 516, + ["y"]= 954, + ["width"]= 1050, + ["height"]= 1100 + } + }, + { + ["id"]= "KingInTheMists", + ["name"]= "Nameless Bloodline", + ["flavourText"]= "Crawling out of the dark,\nyou seek the exquisite\nlight of meaning.", + ["flavourTextColour"]= "7f7ab7", + ["flavourTextRect"]= { + ["x"]= 500, + ["y"]= 950, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Catarina", + ["name"]= "Catarina Bloodline", + ["flavourText"]= "Distant screaming echoes...\nthe Well of Souls, calling\nto you from below...", + ["flavourTextColour"]= "b4eecc", + ["flavourTextRect"]= { + ["x"]= 330, + ["y"]= 920, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Aul", + ["name"]= "Aul Bloodline", + ["flavourText"]= "The Crystal King traded his\npeople for dark power.\nNow, it is yours.", + ["flavourTextColour"]= "dcfaff", + ["flavourTextRect"]= { + ["x"]= 530, + ["y"]= 1025, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Lycia", + ["name"]= "Lycia Bloodline", + ["flavourText"]= "The Original Sin\nwas not your doing,\nbut it is still your\nburden to bear.", + ["flavourTextColour"]= "e8c2a7", + ["flavourTextRect"]= { + ["x"]= 925, + ["y"]= 530, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Olroth", + ["name"]= "Olroth Bloodline", + ["flavourText"]= "Yours is a legacy of\nheroes... fallen, or\notherwise.", + ["flavourTextColour"]= "90a8c6", + ["flavourTextRect"]= { + ["x"]= 570, + ["y"]= 470, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Farrul", + ["name"]= "Farrul Bloodline", + ["flavourText"]= "You and your pack run wild\nand free, brawling\nas you see fit.", + ["flavourTextColour"]= "ffcbaf", + ["flavourTextRect"]= { + ["x"]= 520, + ["y"]= 200, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Delirious", + ["name"]= "Delirious Bloodline", + ["flavourText"]= "Laughter echoes from\nthe darkest depths\nof your mind.", + ["flavourTextColour"]= "cfbd8a", + ["flavourTextRect"]= { + ["x"]= 850, + ["y"]= 800, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Breachlord", + ["name"]= "Breachlord Bloodline", + ["flavourText"]= "Deep within you, the chains\nof life itself were forged\nwith intent...", + ["flavourTextColour"]= "dcafff", + ["flavourTextRect"]= { + ["x"]= 340, + ["y"]= 960, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Necromantic", + ["name"]= "Saresh Bloodline", + ["flavourText"]= "Conquer not the darkness within.\nUse it. Make it your strength.", + ["flavourTextColour"]= "b4eecc", + ["flavourTextRect"]= { + ["x"]= 420, + ["y"]= 890, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Brinerot", + ["name"]= "Velka Bloodline", + ["flavourText"]= "Tsoatha awaits the drowned\nand damned, in depths\nbeyond the mortal ken.", + ["flavourTextColour"]= "b4eecc", + ["flavourTextRect"]= { + ["x"]= 540, + ["y"]= 930, + ["width"]= 900, + ["height"]= 1250 + } + }, + { + ["id"]= "Abyssal", + ["name"]= "Abyssal Bloodline", + ["flavourText"]= " Return to the Source. \nFrom there, be remade.", + ["flavourTextColour"]= "b7d68a", + ["flavourTextRect"]= { + ["x"]= 500, + ["y"]= 920, + ["width"]= 900, + ["height"]= 1250 + } + } + }, + ["groups"]= { + [1]= { + ["x"]= -1096.9000000000015, + ["y"]= 13399.92, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "28609" + } + }, + [2]= { + ["x"]= -1096.9000000000015, + ["y"]= 13800.330000000002, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16287" + } + }, + [3]= { + ["x"]= -7121.9, + ["y"]= 12087.57, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52349" + } + }, + [4]= { + ["x"]= -7116.700000000001, + ["y"]= 12250.84, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43376" + } + }, + [5]= { + ["x"]= -750.0, + ["y"]= 13600.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57472", + "25703", + "58999", + "2643", + "35214" + } + }, + [6]= { + ["x"]= -6963.5, + ["y"]= 12249.67, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21785" + } + }, + [7]= { + ["x"]= 475.39999999999964, + ["y"]= 12288.560000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27121" + } + }, + [8]= { + ["x"]= 580.5, + ["y"]= 12398.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "7442" + } + }, + [9]= { + ["x"]= -485.5, + ["y"]= 13519.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64963" + } + }, + [10]= { + ["x"]= -485.5, + ["y"]= 13681.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19208" + } + }, + [11]= { + ["x"]= -6750, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "9437", + "10696", + "41464", + "16350", + "542" + } + }, + [12]= { + ["x"]= 693.8999999999996, + ["y"]= 12290.91, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37670" + } + }, + [13]= { + ["x"]= 750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35011", + "48251", + "15739", + "41387", + "34952", + "31878", + "10861" + } + }, + [14]= { + ["x"]= -337.2000000000007, + ["y"]= 13519.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14588" + } + }, + [15]= { + ["x"]= -337.2000000000007, + ["y"]= 13681.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35380" + } + }, + [16]= { + ["x"]= -3750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "14190", + "59826", + "17309", + "38886", + "17570", + "44848", + "9086" + } + }, + [17]= { + ["x"]= 750.0, + ["y"]= 13236.72, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17080" + } + }, + [18]= { + ["x"]= 750.0, + ["y"]= 13600.0, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "13362", + "51685", + "34977", + "19078", + "39381", + "7600" + } + }, + [19]= { + ["x"]= 6750.000000000002, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "47543", + "18519", + "32216", + "36393", + "12542", + "63834", + "41389" + } + }, + [20]= { + ["x"]= 4808.200000000001, + ["y"]= 12003.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8138" + } + }, + [21]= { + ["x"]= 4912.800000000001, + ["y"]= 11893.029999999999, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40953" + } + }, + [22]= { + ["x"]= 4913.500000000002, + ["y"]= 12101.74, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48816" + } + }, + [23]= { + ["x"]= 3750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "43902", + "52553", + "44903", + "12354", + "46649", + "48836", + "9920" + } + }, + [24]= { + ["x"]= 5250.000000000002, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32265", + "10916", + "58438", + "63020", + "25187", + "13988", + "37815" + } + }, + [25]= { + ["x"]= -750.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "30061", + "33670", + "52408", + "34442", + "46704", + "39486", + "9939" + } + }, + [26]= { + ["x"]= 2250.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "27869", + "47767", + "3872", + "36020", + "8638", + "32740", + "31958" + } + }, + [27]= { + ["x"]= -2250, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61092", + "57290", + "60118", + "7403", + "17297" + } + }, + [28]= { + ["x"]= -10400.0, + ["y"]= 3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "5865", + "38999", + "24528", + "59920", + "63673", + "29630", + "48904", + "8592", + "63583", + "42861", + "50024", + "32251", + "57560", + "9271", + "29294" + } + }, + [29]= { + ["x"]= -10400, + ["y"]= -5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32992", + "61372", + "64768", + "16745", + "4494", + "40010", + "19641", + "5929", + "3458", + "55146", + "42264", + "39728", + "32364", + "37419", + "46952", + "20050", + "409" + } + }, + [30]= { + ["x"]= -2039.8999999999996, + ["y"]= 11751.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49785" + } + }, + [31]= { + ["x"]= -1882, + ["y"]= 11911.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27737" + } + }, + [32]= { + ["x"]= -1878.3999999999996, + ["y"]= 11755.55, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30271" + } + }, + [33]= { + ["x"]= 9384.8, + ["y"]= 11882.65, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8066" + } + }, + [34]= { + ["x"]= -10403.7, + ["y"]= 5198.65, + ["orbits"]= { + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "17988", + "16093", + "63417", + "51998", + "5819", + "53816" + } + }, + [35]= { + ["x"]= -10400.0, + ["y"]= 5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "23972", + "44297", + "1734", + "56789", + "49153", + "32115", + "62349", + "62595", + "17765" + } + }, + [36]= { + ["x"]= -5250.0, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6344", + "48711", + "52855", + "35069", + "53398", + "48406", + "63630" + } + }, + [37]= { + ["x"]= -10400.0, + ["y"]= -3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "44797", + "34434", + "25651", + "60462", + "33167", + "40510", + "38387", + "51492", + "26714", + "14870", + "29994", + "11046", + "22637", + "922", + "29026", + "1105", + "30940" + } + }, + [38]= { + ["x"]= -10400.0, + ["y"]= 2200, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "24704", + "47486", + "48480", + "53095", + "14996", + "61355", + "32249", + "10238", + "42659", + "982", + "9971", + "5643", + "6028", + "31667", + "50692", + "1731" + } + }, + [39]= { + ["x"]= 9750, + ["y"]= 12000.0, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "12860", + "43660", + "5452", + "60686", + "38740", + "8133" + } + }, + [40]= { + ["x"]= -10400.0, + ["y"]= -2200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "43193", + "3154", + "39790", + "32816", + "27055", + "13851", + "19417", + "35739", + "57222", + "10635", + "60769", + "662", + "37486", + "53884", + "48214", + "40059", + "61871" + } + }, + [41]= { + ["x"]= 9300.0, + ["y"]= 7300.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "8982", + "20931", + "52780", + "699", + "57850", + "58281", + "24924", + "39142", + "26596", + "23155", + "60511", + "30632", + "19689", + "42328", + "45727" + } + }, + [42]= { + ["x"]= -10156.7, + ["y"]= -75.185, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "49951" + } + }, + [43]= { + ["x"]= 9537.1, + ["y"]= 7243.85, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "28601" + } + }, + [44]= { + ["x"]= -8139.519999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32669" + } + }, + [45]= { + ["x"]= 9635.01, + ["y"]= 7409.410000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52417" + } + }, + [46]= { + ["x"]= -8037.519999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43645" + } + }, + [47]= { + ["x"]= 9732.29, + ["y"]= 7243.85, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10538" + } + }, + [48]= { + ["x"]= -7935.1799999999985, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1977" + } + }, + [49]= { + ["x"]= -7800.0, + ["y"]= 10600.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61133", + "15900", + "31517", + "1564", + "56292", + "25944", + "63954", + "27123", + "30675", + "35877", + "46479", + "15726" + } + }, + [50]= { + ["x"]= -9609.67, + ["y"]= -116.185, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28018", + "36931" + } + }, + [51]= { + ["x"]= -9513.17, + ["y"]= -1271.76, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "22046" + } + }, + [52]= { + ["x"]= -7680.799999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52633" + } + }, + [53]= { + ["x"]= -7578.799999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32095" + } + }, + [54]= { + ["x"]= -9381.74, + ["y"]= 1107.23, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "3854" + } + }, + [55]= { + ["x"]= -7476.799999999999, + ["y"]= 10600.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19993" + } + }, + [56]= { + ["x"]= -8397.960000000001, + ["y"]= 7384.120000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4194" + } + }, + [57]= { + ["x"]= -9204.17, + ["y"]= -818.535, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53203", + "14993" + } + }, + [58]= { + ["x"]= -9143.74, + ["y"]= 613.015, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25441", + "24970" + } + }, + [59]= { + ["x"]= -8308.84, + ["y"]= 7307.630000000001, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "57052" + } + }, + [60]= { + ["x"]= 7200.0, + ["y"]= 9400.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "63623", + "43670", + "29914", + "18060", + "34229", + "22174", + "4245", + "54139", + "24462", + "10539", + "10622" + } + }, + [61]= { + ["x"]= -8263.54, + ["y"]= 6772.18, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "42144" + } + }, + [62]= { + ["x"]= -8218.460000000001, + ["y"]= 7384.860000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "61072" + } + }, + [63]= { + ["x"]= -8169.710000000001, + ["y"]= 6934.780000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43962" + } + }, + [64]= { + ["x"]= -8169.710000000001, + ["y"]= 6988.360000000001, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41534", + "22551", + "15435", + "54877", + "57429" + } + }, + [65]= { + ["x"]= -8168.549999999999, + ["y"]= 7413.67, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33875", + "30690", + "193", + "61437", + "24755" + } + }, + [66]= { + ["x"]= -8947.77, + ["y"]= -2419.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5624" + } + }, + [67]= { + ["x"]= -8077.540000000001, + ["y"]= 6773.14, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30919" + } + }, + [68]= { + ["x"]= -8032.210000000001, + ["y"]= 7653.950000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43195" + } + }, + [69]= { + ["x"]= -8839.55, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52282" + } + }, + [70]= { + ["x"]= -8798.67, + ["y"]= -116.185, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "49080", + "17219", + "44169", + "30275" + } + }, + [71]= { + ["x"]= -7940.299999999999, + ["y"]= 7730.33, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "34774" + } + }, + [72]= { + ["x"]= -7846.370000000001, + ["y"]= 7652.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39598" + } + }, + [73]= { + ["x"]= -7800.0, + ["y"]= 7200.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35754" + } + }, + [74]= { + ["x"]= -7800.0, + ["y"]= 7626.0, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17445", + "41996", + "607", + "24798", + "63357" + } + }, + [75]= { + ["x"]= -7798.85, + ["y"]= 6774.01, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2521", + "56722", + "58029", + "51782", + "62162" + } + }, + [76]= { + ["x"]= -8407.01, + ["y"]= 8900.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56940" + } + }, + [77]= { + ["x"]= -7749.73, + ["y"]= 6745.64, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8281" + } + }, + [78]= { + ["x"]= 8249.999999999998, + ["y"]= 8350.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "8243", + "34814", + "5220", + "41197", + "34637", + "63362", + "53414", + "33897", + "48606", + "24764", + "20772", + "29259", + "32605", + "9414", + "29212" + } + }, + [79]= { + ["x"]= -8350.01, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48040" + } + }, + [80]= { + ["x"]= -8350.01, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35448" + } + }, + [81]= { + ["x"]= -7658.549999999999, + ["y"]= 6586.47, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10099" + } + }, + [82]= { + ["x"]= -8236.01, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16994" + } + }, + [83]= { + ["x"]= -8236.01, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22628" + } + }, + [84]= { + ["x"]= -7568.0, + ["y"]= 6745.280000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12597" + } + }, + [85]= { + ["x"]= -7521.26, + ["y"]= 7627.0700000000015, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8656" + } + }, + [86]= { + ["x"]= -8302.22, + ["y"]= -2419.3, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "7092", + "31153", + "11016", + "29061", + "55993", + "41251", + "8198", + "44298", + "13164", + "44347", + "14665" + } + }, + [87]= { + ["x"]= -8289.29, + ["y"]= 3504.75, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "25367", + "63184", + "33082", + "7082", + "62042", + "4336", + "55166", + "49415" + } + }, + [88]= { + ["x"]= -8285.5, + ["y"]= 2423.75, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "9976", + "20018", + "6113", + "12407", + "25682", + "49571", + "57953", + "4940", + "24224", + "23038" + } + }, + [89]= { + ["x"]= -7431.08, + ["y"]= 6987.0, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42546", + "45403", + "772", + "53992", + "43336" + } + }, + [90]= { + ["x"]= -7431.08, + ["y"]= 7413.0, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7618", + "42671", + "38689", + "31598", + "49532" + } + }, + [91]= { + ["x"]= -7431.08, + ["y"]= 7467.1900000000005, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "9327" + } + }, + [92]= { + ["x"]= -8255.37, + ["y"]= -473.585, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40849" + } + }, + [93]= { + ["x"]= -7409.25, + ["y"]= 7587.610000000001, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "34567" + } + }, + [94]= { + ["x"]= -7381.139999999999, + ["y"]= 7015.83, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43122" + } + }, + [95]= { + ["x"]= -8133.71, + ["y"]= -1435.31, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "62416", + "51559", + "54667", + "16113", + "18990", + "48282", + "16754", + "39761", + "37639", + "47427", + "60740", + "42917" + } + }, + [96]= { + ["x"]= -7290.77, + ["y"]= 7174.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6778" + } + }, + [97]= { + ["x"]= -8114.3, + ["y"]= 811.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60992", + "65125", + "33623", + "27806" + } + }, + [98]= { + ["x"]= -8112.84, + ["y"]= 1342.17, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "40645", + "46127", + "20966", + "8500", + "30547", + "15163", + "57266", + "38023", + "14832", + "16703" + } + }, + [99]= { + ["x"]= -7914.7300000000005, + ["y"]= 8407.03, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8081" + } + }, + [100]= { + ["x"]= -7914.0, + ["y"]= 9393.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20160" + } + }, + [101]= { + ["x"]= -7857.0, + ["y"]= 8308.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43857" + } + }, + [102]= { + ["x"]= -7857.0, + ["y"]= 8505.76, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59067" + } + }, + [103]= { + ["x"]= -7857.0, + ["y"]= 9294.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "47058" + } + }, + [104]= { + ["x"]= -7857.0, + ["y"]= 9491.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26055" + } + }, + [105]= { + ["x"]= -8037.65, + ["y"]= -734.625, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "58556" + } + }, + [106]= { + ["x"]= -8031.67, + ["y"]= -34.185, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "26712", + "35288", + "55190" + } + }, + [107]= { + ["x"]= -7197.92, + ["y"]= 7014.380000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "58827" + } + }, + [108]= { + ["x"]= -7800.0, + ["y"]= 8900.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35936", + "12003", + "36489", + "35989", + "22441", + "16633", + "15544", + "18147", + "9258", + "52094", + "60582", + "2460", + "10108" + } + }, + [109]= { + ["x"]= -7992.94, + ["y"]= -3226.1, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19732" + } + }, + [110]= { + ["x"]= -7961.5, + ["y"]= 3076.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64238", + "44268", + "4918", + "26037" + } + }, + [111]= { + ["x"]= -7953.34, + ["y"]= -3869.58, + ["orbits"]= { + 0, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35260", + "38989", + "26481", + "41190", + "43647", + "19103", + "15046", + "4177", + "29106", + "25332" + } + }, + [112]= { + ["x"]= -7952.3, + ["y"]= 487.555, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31961" + } + }, + [113]= { + ["x"]= -7743.0, + ["y"]= 8308.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17386" + } + }, + [114]= { + ["x"]= -7743.0, + ["y"]= 8505.76, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40276" + } + }, + [115]= { + ["x"]= -7743.0, + ["y"]= 9294.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "25795" + } + }, + [116]= { + ["x"]= -7743.0, + ["y"]= 9491.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54928" + } + }, + [117]= { + ["x"]= -7686.0, + ["y"]= 8407.03, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37303" + } + }, + [118]= { + ["x"]= -7686.0, + ["y"]= 9393.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27054" + } + }, + [119]= { + ["x"]= -7671.71, + ["y"]= -3403.6, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26270" + } + }, + [120]= { + ["x"]= -7671.71, + ["y"]= -2419.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60472" + } + }, + [121]= { + ["x"]= -7671.71, + ["y"]= -1435.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23027" + } + }, + [122]= { + ["x"]= -7671.71, + ["y"]= -734.625, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44202" + } + }, + [123]= { + ["x"]= -7671.71, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "29353" + } + }, + [124]= { + ["x"]= -7671.71, + ["y"]= 156.555, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "63282" + } + }, + [125]= { + ["x"]= -7671.71, + ["y"]= 1342.17, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59928" + } + }, + [126]= { + ["x"]= -7671.71, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63723" + } + }, + [127]= { + ["x"]= -7671.71, + ["y"]= 3504.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5233" + } + }, + [128]= { + ["x"]= -7670.75, + ["y"]= 4000.99, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16810", + "44922", + "48813", + "10851", + "861" + } + }, + [129]= { + ["x"]= -7421.0, + ["y"]= 8900.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "2768" + } + }, + [130]= { + ["x"]= -7364.0, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33467" + } + }, + [131]= { + ["x"]= -7364.0, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48410" + } + }, + [132]= { + ["x"]= -7250.0, + ["y"]= 8801.300000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8967" + } + }, + [133]= { + ["x"]= -7250.0, + ["y"]= 8998.800000000001, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36072" + } + }, + [134]= { + ["x"]= -7403.27, + ["y"]= -3010.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57283", + "33943", + "28449", + "27235" + } + }, + [135]= { + ["x"]= -7403.27, + ["y"]= -1834.61, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48144", + "21048", + "10555", + "46471" + } + }, + [136]= { + ["x"]= -7193.0, + ["y"]= 8900.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54569" + } + }, + [137]= { + ["x"]= -7386.21, + ["y"]= -5366.31, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "60619", + "20467", + "5068", + "18379", + "39657", + "24677", + "61950", + "27134", + "31292" + } + }, + [138]= { + ["x"]= -7352.58, + ["y"]= -1073.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "55027", + "22180", + "15783", + "18208", + "27157" + } + }, + [139]= { + ["x"]= -7345.25, + ["y"]= 2011.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44624", + "31604", + "43601", + "25796", + "26023" + } + }, + [140]= { + ["x"]= -7345.25, + ["y"]= 2836.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "864", + "61388", + "24858", + "52074" + } + }, + [141]= { + ["x"]= -7335.75, + ["y"]= 4904.96, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15727", + "53630", + "34750", + "30439", + "38320", + "55194", + "19794", + "61351", + "27697", + "8879", + "14419" + } + }, + [142]= { + ["x"]= -7313.92, + ["y"]= -311.685, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38377", + "24157", + "53757", + "11431", + "30825", + "63150" + } + }, + [143]= { + ["x"]= -7276.56, + ["y"]= 372.995, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9471", + "34590", + "48199", + "53332", + "30714", + "24716" + } + }, + [144]= { + ["x"]= -7250.82, + ["y"]= 892.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58831", + "33823", + "56355", + "39023", + "37501", + "15678" + } + }, + [145]= { + ["x"]= -7196.51, + ["y"]= -4864.57, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34487", + "65159", + "31520", + "4300", + "63635", + "35910", + "11190" + } + }, + [146]= { + ["x"]= -7163.5, + ["y"]= -3686.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "22472", + "57167", + "28076", + "51108", + "44948" + } + }, + [147]= { + ["x"]= -7045.5, + ["y"]= 1345.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "30302", + "53517", + "2219", + "48822" + } + }, + [148]= { + ["x"]= -6982.69, + ["y"]= 3147.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62017", + "55676", + "33287", + "64406" + } + }, + [149]= { + ["x"]= -6982.69, + ["y"]= 3823.5, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46585", + "54880", + "40619", + "32242" + } + }, + [150]= { + ["x"]= -6915.5, + ["y"]= 1795.43, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44429", + "30380", + "53118", + "4139" + } + }, + [151]= { + ["x"]= -6915.5, + ["y"]= 2421.91, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38508", + "26725", + "48109", + "37326", + "62429", + "62363" + } + }, + [152]= { + ["x"]= -6901.83, + ["y"]= -2419.3, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "40766", + "37999", + "26196", + "11730", + "34173", + "27575", + "34171" + } + }, + [153]= { + ["x"]= -6828.96, + ["y"]= -734.625, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46636", + "21929", + "38836", + "27137", + "38906", + "37641" + } + }, + [154]= { + ["x"]= -6820.83, + ["y"]= -3264.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40508", + "46897", + "35958", + "30393" + } + }, + [155]= { + ["x"]= -6820.83, + ["y"]= -1575.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "36949", + "6712", + "10031", + "41415" + } + }, + [156]= { + ["x"]= -6748.04, + ["y"]= 469.705, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "52220", + "55854", + "1572", + "47421", + "38538", + "23760", + "26564" + } + }, + [157]= { + ["x"]= -6747.96, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50570" + } + }, + [158]= { + ["x"]= -6747.23, + ["y"]= -5354.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41970" + } + }, + [159]= { + ["x"]= -6747.23, + ["y"]= -5004.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64210" + } + }, + [160]= { + ["x"]= -6721.77, + ["y"]= 5117.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "57279" + } + }, + [161]= { + ["x"]= -6705.94, + ["y"]= 3423.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12247", + "56359", + "2841", + "7285" + } + }, + [162]= { + ["x"]= -6704.71, + ["y"]= -6037.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5916", + "4713", + "6245", + "11505", + "29049" + } + }, + [163]= { + ["x"]= -6666.6, + ["y"]= -4474.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5935", + "9392", + "32932", + "47197", + "21974", + "25831" + } + }, + [164]= { + ["x"]= -6498.31, + ["y"]= 1345.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45163", + "5203", + "42106", + "10989", + "41305", + "58728" + } + }, + [165]= { + ["x"]= -6470.02, + ["y"]= 4400.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64221", + "39678", + "54629", + "48717" + } + }, + [166]= { + ["x"]= -6469.34, + ["y"]= 4904.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "3644" + } + }, + [167]= { + ["x"]= -6469.34, + ["y"]= 5399.76, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17527", + "9402", + "44191", + "22480" + } + }, + [168]= { + ["x"]= -6459.46, + ["y"]= 2775.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35977", + "63027", + "65400", + "36200", + "34973" + } + }, + [169]= { + ["x"]= -6403.61, + ["y"]= -6278.51, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63425" + } + }, + [170]= { + ["x"]= -6296.12, + ["y"]= 8427.24, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35070" + } + }, + [171]= { + ["x"]= -6235.44, + ["y"]= -3583.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40439", + "40776", + "53018", + "15973", + "19679", + "59070", + "21389" + } + }, + [172]= { + ["x"]= -6215.38, + ["y"]= 6072.29, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "25031", + "23036", + "40229", + "53987", + "11792", + "47426", + "10594", + "57992", + "31257", + "59423" + } + }, + [173]= { + ["x"]= -6195.83, + ["y"]= 469.705, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "27195", + "27166", + "7399", + "42792", + "48929", + "34917", + "15522", + "25989" + } + }, + [174]= { + ["x"]= -6186.4, + ["y"]= -4863.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58218", + "5743", + "9386", + "14057", + "32241" + } + }, + [175]= { + ["x"]= -6152.23, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22285" + } + }, + [176]= { + ["x"]= -6150.77, + ["y"]= -6644.11, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "64395", + "48349", + "34327", + "53945", + "45486", + "15716", + "22728", + "46672", + "56094" + } + }, + [177]= { + ["x"]= -6150.77, + ["y"]= -6037.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "7444" + } + }, + [178]= { + ["x"]= -6143.53, + ["y"]= -2418.83, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "29199" + } + }, + [179]= { + ["x"]= -6075.53, + ["y"]= -300.175, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7374", + "3533", + "11088", + "65108", + "48505" + } + }, + [180]= { + ["x"]= -6074.46, + ["y"]= 3794.65, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63422", + "28311", + "62108", + "28862" + } + }, + [181]= { + ["x"]= -6066.06, + ["y"]= -8240.17, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "40114" + } + }, + [182]= { + ["x"]= -6019.42, + ["y"]= 4582, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7528", + "20913", + "9361", + "40189", + "39437", + "223", + "50842" + } + }, + [183]= { + ["x"]= -5995.21, + ["y"]= -1100.35, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "494", + "63306", + "62879", + "59976", + "55017" + } + }, + [184]= { + ["x"]= -5928.13, + ["y"]= 849.435, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44941" + } + }, + [185]= { + ["x"]= -5913.84, + ["y"]= -665.845, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39713" + } + }, + [186]= { + ["x"]= -5850.88, + ["y"]= -5700.01, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46842", + "16123", + "63398", + "36452" + } + }, + [187]= { + ["x"]= -5843.81, + ["y"]= -3755.02, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "42343" + } + }, + [188]= { + ["x"]= -5830.3, + ["y"]= 4985.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28284", + "25531", + "19884", + "49772" + } + }, + [189]= { + ["x"]= -5751.73, + ["y"]= -4474.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38921", + "19919", + "62767", + "63138", + "55743", + "6967" + } + }, + [190]= { + ["x"]= -5749.1, + ["y"]= 8386.24, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58355", + "61666" + } + }, + [191]= { + ["x"]= -5694.69, + ["y"]= 6299.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23090" + } + }, + [192]= { + ["x"]= -5659.23, + ["y"]= -1897.57, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "31931", + "15064" + } + }, + [193]= { + ["x"]= -5659.23, + ["y"]= -812.845, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "15631" + } + }, + [194]= { + ["x"]= -5659.23, + ["y"]= -486.185, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "50422" + } + }, + [195]= { + ["x"]= -5659.23, + ["y"]= -381.175, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44967" + } + }, + [196]= { + ["x"]= -5659.23, + ["y"]= 686.855, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10221" + } + }, + [197]= { + ["x"]= -5659.23, + ["y"]= 1795.43, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "6446", + "55649" + } + }, + [198]= { + ["x"]= -5659.23, + ["y"]= 3066.9, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "53793", + "40653" + } + }, + [199]= { + ["x"]= -5659.23, + ["y"]= 4062.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38119", + "48284", + "9052", + "32738", + "5368" + } + }, + [200]= { + ["x"]= -5650.53, + ["y"]= -2950.04, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "10575", + "58402" + } + }, + [201]= { + ["x"]= -5581.6, + ["y"]= 9582.81, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "27475" + } + }, + [202]= { + ["x"]= -5519.05, + ["y"]= -8281.17, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55706", + "12613" + } + }, + [203]= { + ["x"]= -5515.19, + ["y"]= -5096.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40291", + "885", + "37163", + "24324", + "63268" + } + }, + [204]= { + ["x"]= -5465.32, + ["y"]= -3139.18, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59728" + } + }, + [205]= { + ["x"]= -5465.32, + ["y"]= -1675.85, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "62303" + } + }, + [206]= { + ["x"]= -5460.9, + ["y"]= 5527, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "43822", + "2411", + "35992", + "5126", + "27931" + } + }, + [207]= { + ["x"]= -5460.9, + ["y"]= 6072.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14930" + } + }, + [208]= { + ["x"]= -5460.9, + ["y"]= 6614.78, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40818", + "12664", + "41068", + "45565", + "31473", + "22295" + } + }, + [209]= { + ["x"]= -5429.29, + ["y"]= -6118.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14505", + "48713", + "7898", + "35685", + "35791", + "1722" + } + }, + [210]= { + ["x"]= -5422.56, + ["y"]= -9436.75, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "18361" + } + }, + [211]= { + ["x"]= -5370.94, + ["y"]= -159.685, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32245" + } + }, + [212]= { + ["x"]= -5370.94, + ["y"]= 173.315, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50197" + } + }, + [213]= { + ["x"]= -5362.15, + ["y"]= 1795.43, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "34130", + "14606", + "10282", + "39786", + "35663", + "64077", + "60169", + "2454", + "38777" + } + }, + [214]= { + ["x"]= -5362.15, + ["y"]= 3066.9, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6718", + "31928", + "61868", + "10542", + "31033", + "37884", + "32482", + "59861", + "65308" + } + }, + [215]= { + ["x"]= -5343.6, + ["y"]= 9088.58, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64166", + "51198" + } + }, + [216]= { + ["x"]= -5264.32, + ["y"]= -1040.84, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6968", + "49698", + "41599", + "55926", + "1761", + "36859" + } + }, + [217]= { + ["x"]= -5264.32, + ["y"]= -584.845, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25535", + "64426", + "62214", + "1593", + "20832" + } + }, + [218]= { + ["x"]= -5245.5, + ["y"]= -2418.83, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "30693", + "33435", + "44799", + "58453", + "21262", + "12536", + "54694" + } + }, + [219]= { + ["x"]= -5241.52, + ["y"]= 546.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2550", + "54396", + "1550", + "48267", + "25168", + "5430" + } + }, + [220]= { + ["x"]= -5241.52, + ["y"]= 1023.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50225", + "24155", + "15086", + "55772", + "59013" + } + }, + [221]= { + ["x"]= -5156.17, + ["y"]= -5460.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25313", + "63558", + "18239", + "55381" + } + }, + [222]= { + ["x"]= -5127.19, + ["y"]= 3807.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33098", + "49652", + "49645", + "22067" + } + }, + [223]= { + ["x"]= -5125.15, + ["y"]= 4488.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16756", + "30251", + "58540", + "7440" + } + }, + [224]= { + ["x"]= -5113.54, + ["y"]= -8983.51, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26661", + "16218" + } + }, + [225]= { + ["x"]= -5041.83, + ["y"]= 7475.71, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32376", + "64257", + "47902", + "38462", + "62109", + "15491", + "42495", + "56330", + "15226", + "41744" + } + }, + [226]= { + ["x"]= -4938.1, + ["y"]= 8386.24, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "10532", + "23756", + "46519", + "28650" + } + }, + [227]= { + ["x"]= -4925.05, + ["y"]= -7237.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57404", + "3089", + "60145", + "28034", + "9213" + } + }, + [228]= { + ["x"]= -4886.51, + ["y"]= -4619.33, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37698", + "44465", + "29472", + "45657" + } + }, + [229]= { + ["x"]= -4886.51, + ["y"]= -4085.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53677", + "24824", + "9505", + "54849", + "42668", + "43689" + } + }, + [230]= { + ["x"]= -4874.44, + ["y"]= -2998.88, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61308", + "40927", + "15365" + } + }, + [231]= { + ["x"]= -4874.19, + ["y"]= -1816.16, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46726", + "38516", + "31819" + } + }, + [232]= { + ["x"]= -4863.65, + ["y"]= 5908.21, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14767", + "62530", + "65112", + "14384", + "25781", + "13922", + "59335" + } + }, + [233]= { + ["x"]= -4863.65, + ["y"]= 6347.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34359", + "44916", + "62802", + "61529" + } + }, + [234]= { + ["x"]= -4853.15, + ["y"]= 4880.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62023", + "57923", + "46756", + "17038", + "38922", + "56982" + } + }, + [235]= { + ["x"]= -4782.65, + ["y"]= 5426.23, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6289", + "48287", + "5197", + "64587", + "25011" + } + }, + [236]= { + ["x"]= -4777.5, + ["y"]= -871.355, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10245", + "55913", + "45646", + "35192", + "55002" + } + }, + [237]= { + ["x"]= -4769.38, + ["y"]= -4529.03, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "6764", + "40366" + } + }, + [238]= { + ["x"]= -4750.09, + ["y"]= 546.555, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8460", + "19261", + "64181", + "49445", + "224", + "43833" + } + }, + [239]= { + ["x"]= -4736.79, + ["y"]= -329.645, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6359", + "7335", + "21413", + "3167", + "52462" + } + }, + [240]= { + ["x"]= -4712.84, + ["y"]= 4007.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "30160", + "1252", + "65456", + "52875" + } + }, + [241]= { + ["x"]= -4708.05, + ["y"]= -8281.17, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "29712", + "48679", + "9408", + "43989" + } + }, + [242]= { + ["x"]= -4635.92, + ["y"]= -5460.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26070", + "56922", + "20261", + "13712" + } + }, + [243]= { + ["x"]= -4532.6, + ["y"]= 9088.58, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37898", + "23984" + } + }, + [244]= { + ["x"]= -4483.59, + ["y"]= 7763, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "2491", + "18901", + "62319" + } + }, + [245]= { + ["x"]= -4435.9, + ["y"]= -3443.04, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17735" + } + }, + [246]= { + ["x"]= -4435.9, + ["y"]= -2998.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49254" + } + }, + [247]= { + ["x"]= -4435.9, + ["y"]= -2418.83, + ["orbits"]= { + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15599", + "44529", + "41472", + "61471", + "1203", + "6237" + } + }, + [248]= { + ["x"]= -4435.9, + ["y"]= -1816.16, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26866" + } + }, + [249]= { + ["x"]= -4435.9, + ["y"]= -1404.57, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44908" + } + }, + [250]= { + ["x"]= -4435.9, + ["y"]= -709.355, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "2913" + } + }, + [251]= { + ["x"]= -4435.9, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50862" + } + }, + [252]= { + ["x"]= -4435.9, + ["y"]= 1795.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "58449" + } + }, + [253]= { + ["x"]= -4435.9, + ["y"]= 2423.88, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39768", + "32739", + "61198", + "20551", + "5152", + "12795" + } + }, + [254]= { + ["x"]= -4435.9, + ["y"]= 3066.9, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24383" + } + }, + [255]= { + ["x"]= -4435.9, + ["y"]= 3559.9, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49412" + } + }, + [256]= { + ["x"]= -4435.88, + ["y"]= 686.855, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44606" + } + }, + [257]= { + ["x"]= -4435.88, + ["y"]= 1302.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "26523" + } + }, + [258]= { + ["x"]= -4395.06, + ["y"]= -7575.06, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "52502", + "20987", + "7960" + } + }, + [259]= { + ["x"]= -4390.35, + ["y"]= -6640.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45558", + "12246", + "43061", + "27323", + "22577", + "6770" + } + }, + [260]= { + ["x"]= -4354.9, + ["y"]= -4815.69, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63963", + "58763", + "32455", + "7153", + "5726" + } + }, + [261]= { + ["x"]= -4354.9, + ["y"]= -4086.61, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "36915", + "48290", + "34880", + "10904", + "55563", + "1609" + } + }, + [262]= { + ["x"]= -4341.21, + ["y"]= 6923.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "27119", + "56595", + "29797", + "18009", + "2092" + } + }, + [263]= { + ["x"]= -4302.55, + ["y"]= -8983.51, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "13201", + "2311" + } + }, + [264]= { + ["x"]= -4260.48, + ["y"]= 4509.09, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7162", + "9695", + "54340", + "42009" + } + }, + [265]= { + ["x"]= -4260.21, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34400" + } + }, + [266]= { + ["x"]= -4251.69, + ["y"]= 4940.36, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "487" + } + }, + [267]= { + ["x"]= -4251.69, + ["y"]= 5410.96, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53216", + "5103", + "37895", + "14001" + } + }, + [268]= { + ["x"]= -4247.05, + ["y"]= -7237.92, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36678" + } + }, + [269]= { + ["x"]= -4223.59, + ["y"]= 9541.8, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "48128" + } + }, + [270]= { + ["x"]= -4219.84, + ["y"]= 4484.85, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "42800" + } + }, + [271]= { + ["x"]= -4213.85, + ["y"]= 3944.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25934", + "28728", + "15438", + "8426", + "29034", + "35436" + } + }, + [272]= { + ["x"]= -4177.11, + ["y"]= 7789.46, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21210" + } + }, + [273]= { + ["x"]= -4173.53, + ["y"]= 270.545, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21650" + } + }, + [274]= { + ["x"]= -4160.65, + ["y"]= -1539.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14079" + } + }, + [275]= { + ["x"]= -4145.92, + ["y"]= -980.045, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "30148", + "61007", + "45350", + "15880", + "38595" + } + }, + [276]= { + ["x"]= -4119.19, + ["y"]= -5843.48, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5230", + "22702", + "53957", + "24229", + "4977" + } + }, + [277]= { + ["x"]= -4076.67, + ["y"]= 1474.49, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "13739" + } + }, + [278]= { + ["x"]= -4064.55, + ["y"]= -9477.75, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "7956" + } + }, + [279]= { + ["x"]= -4061.73, + ["y"]= -494.755, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "27308", + "61992", + "54267", + "23185", + "43133" + } + }, + [280]= { + ["x"]= -3923.35, + ["y"]= 6271.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64695", + "36945", + "22133", + "53072", + "50562", + "37911" + } + }, + [281]= { + ["x"]= -3914.99, + ["y"]= 4599.62, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24720" + } + }, + [282]= { + ["x"]= -3883.4, + ["y"]= -2130.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4354" + } + }, + [283]= { + ["x"]= -3882.88, + ["y"]= 5786.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "21548", + "47785", + "49635", + "60963", + "13703", + "35321" + } + }, + [284]= { + ["x"]= -3878.75, + ["y"]= -7968.17, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32075", + "58869", + "39986", + "50540" + } + }, + [285]= { + ["x"]= -3822.96, + ["y"]= 2423.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "38706" + } + }, + [286]= { + ["x"]= -3815.85, + ["y"]= 1795.43, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "7828", + "40535", + "30335", + "32480" + } + }, + [287]= { + ["x"]= -3815.85, + ["y"]= 3066.9, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15868", + "36047", + "63048", + "50264" + } + }, + [288]= { + ["x"]= -3802.01, + ["y"]= -2523.44, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4568", + "420", + "9294", + "33923", + "59005", + "61217" + } + }, + [289]= { + ["x"]= -3802.01, + ["y"]= -1814.02, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29005", + "39631", + "17251", + "31758", + "42837", + "23456" + } + }, + [290]= { + ["x"]= -3795.27, + ["y"]= -74.185, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33631", + "33740", + "15405" + } + }, + [291]= { + ["x"]= -3773.12, + ["y"]= 4942.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40698", + "1354", + "18202", + "22706" + } + }, + [292]= { + ["x"]= -3751.33, + ["y"]= 7723, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26697", + "61050", + "64024", + "35053", + "43514", + "57839" + } + }, + [293]= { + ["x"]= -3728.95, + ["y"]= 1795.43, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "23881", + "9511" + } + }, + [294]= { + ["x"]= -3718.68, + ["y"]= -5991.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56029" + } + }, + [295]= { + ["x"]= -3704.96, + ["y"]= -1897.57, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "35556", + "39916" + } + }, + [296]= { + ["x"]= -3692.82, + ["y"]= -3114.59, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37512" + } + }, + [297]= { + ["x"]= -3691.22, + ["y"]= 7146.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9995", + "34513", + "33718", + "64128" + } + }, + [298]= { + ["x"]= -3667.95, + ["y"]= -7117.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39332", + "26585", + "5462", + "7364", + "65273", + "7347" + } + }, + [299]= { + ["x"]= -3613, + ["y"]= -4066.11, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "651", + "9149", + "43057", + "3398", + "11820", + "17127" + } + }, + [300]= { + ["x"]= -3536.19, + ["y"]= -5333.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12250", + "3471", + "38701", + "18767", + "48298" + } + }, + [301]= { + ["x"]= -3508.25, + ["y"]= 2135.16, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14587" + } + }, + [302]= { + ["x"]= -3497.53, + ["y"]= -2950.04, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "14151", + "27564" + } + }, + [303]= { + ["x"]= -3484.79, + ["y"]= 3066.9, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "6981", + "36543" + } + }, + [304]= { + ["x"]= -3464.58, + ["y"]= -2322.24, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35724" + } + }, + [305]= { + ["x"]= -3464.58, + ["y"]= -1816.16, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17352" + } + }, + [306]= { + ["x"]= -3452.99, + ["y"]= 1795.43, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33988" + } + }, + [307]= { + ["x"]= -3446.18, + ["y"]= -3776.55, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "13009" + } + }, + [308]= { + ["x"]= -3429.43, + ["y"]= -6158.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5456" + } + }, + [309]= { + ["x"]= -3388.33, + ["y"]= -4921.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "23215", + "54954", + "4854", + "12503" + } + }, + [310]= { + ["x"]= -3374.09, + ["y"]= -7993.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19897", + "39416", + "43716", + "34144", + "52412", + "4247", + "17412" + } + }, + [311]= { + ["x"]= -3326.22, + ["y"]= 5867.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "14056" + } + }, + [312]= { + ["x"]= -3326.16, + ["y"]= 5524.46, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34601" + } + }, + [313]= { + ["x"]= -3312.55, + ["y"]= 4255.75, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "45341", + "6043", + "50340", + "60031", + "5065", + "33657" + } + }, + [314]= { + ["x"]= -3303.02, + ["y"]= 2466.05, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22627" + } + }, + [315]= { + ["x"]= -3294.84, + ["y"]= 7723, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19388", + "23852", + "32519", + "26188", + "52090", + "4424" + } + }, + [316]= { + ["x"]= -3245.22, + ["y"]= 6293.76, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8556", + "11700", + "50969", + "20835" + } + }, + [317]= { + ["x"]= -3224.83, + ["y"]= 4940.36, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "59494", + "16380", + "2225", + "35221" + } + }, + [318]= { + ["x"]= -3214.93, + ["y"]= 2951.63, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32853" + } + }, + [319]= { + ["x"]= -3163.95, + ["y"]= -6892.09, + ["orbits"]= {}, + ["nodes"]= { + "63447", + "39841" + } + }, + [320]= { + ["x"]= -3160.96, + ["y"]= -7409.31, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35038", + "20844", + "62217", + "56066", + "54043", + "30926", + "63944" + } + }, + [321]= { + ["x"]= -3160.96, + ["y"]= -6684.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2828", + "34423", + "48118", + "25970" + } + }, + [322]= { + ["x"]= -3103.98, + ["y"]= 7114.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12169", + "65107", + "60153", + "16860" + } + }, + [323]= { + ["x"]= -3037.77, + ["y"]= -4544.11, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17945", + "30370", + "51804", + "52742" + } + }, + [324]= { + ["x"]= -3037.77, + ["y"]= 5690.96, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18025" + } + }, + [325]= { + ["x"]= -2977.96, + ["y"]= -5896.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22088" + } + }, + [326]= { + ["x"]= -2956.77, + ["y"]= -5001.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "46340" + } + }, + [327]= { + ["x"]= -2898.21, + ["y"]= 3540.58, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "31080" + } + }, + [328]= { + ["x"]= -2875.77, + ["y"]= -5458.98, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61343", + "29033", + "51954", + "29861" + } + }, + [329]= { + ["x"]= -2837.03, + ["y"]= -1629.01, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "63965", + "20228", + "61525" + } + }, + [330]= { + ["x"]= -2824.29, + ["y"]= 1642.43, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "50904", + "47175", + "31628" + } + }, + [331]= { + ["x"]= -2804.43, + ["y"]= -4229.06, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34098" + } + }, + [332]= { + ["x"]= -2798.83, + ["y"]= 4940.36, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22703" + } + }, + [333]= { + ["x"]= -2783.94, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24914" + } + }, + [334]= { + ["x"]= -2783.94, + ["y"]= 8219.25, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "35118", + "10016", + "1909", + "8533", + "11515", + "35362", + "56381", + "49318" + } + }, + [335]= { + ["x"]= -2783.75, + ["y"]= 6053.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "57257" + } + }, + [336]= { + ["x"]= -2734.74, + ["y"]= 4320.61, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40907" + } + }, + [337]= { + ["x"]= -2703.05, + ["y"]= -6978.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "23659", + "367", + "33864", + "35706", + "27307", + "50029" + } + }, + [338]= { + ["x"]= -2688.66, + ["y"]= 3779.86, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6912", + "27301", + "64816", + "6884", + "34959", + "27140" + } + }, + [339]= { + ["x"]= -2635.19, + ["y"]= 6935.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51583", + "38664", + "56460", + "61636", + "37647" + } + }, + [340]= { + ["x"]= -2628.79, + ["y"]= -3732.47, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "21330", + "39648", + "17821", + "43818" + } + }, + [341]= { + ["x"]= -2567.55, + ["y"]= -8128.6, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "48556", + "56671", + "47949", + "48971", + "29629", + "26620", + "44362", + "23547" + } + }, + [342]= { + ["x"]= -2562.75, + ["y"]= -6027.56, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64401", + "55558", + "51748", + "61283", + "61785" + } + }, + [343]= { + ["x"]= -2562.75, + ["y"]= -5615.56, + ["orbits"]= {}, + ["nodes"]= { + "42760", + "7938", + "55332", + "14021" + } + }, + [344]= { + ["x"]= -2461.59, + ["y"]= 5479.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26294", + "63710", + "17833", + "11568", + "23199", + "60887", + "13273" + } + }, + [345]= { + ["x"]= -2461.59, + ["y"]= 5867.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6741" + } + }, + [346]= { + ["x"]= -2461.59, + ["y"]= 6255.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "13498", + "53292", + "40841", + "59833", + "15124", + "9194", + "48982" + } + }, + [347]= { + ["x"]= -2451.83, + ["y"]= -4127.28, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60398" + } + }, + [348]= { + ["x"]= -2428.03, + ["y"]= -5082.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5591", + "34478", + "23690", + "10729" + } + }, + [349]= { + ["x"]= -2374.68, + ["y"]= 4211.38, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43374" + } + }, + [350]= { + ["x"]= -2370.83, + ["y"]= -4539.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60648", + "42981", + "53802", + "18750" + } + }, + [351]= { + ["x"]= -1500.0, + ["y"]= 9800.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "33179", + "8419", + "63490", + "2598", + "14726", + "758", + "48760", + "37623", + "3651", + "24538", + "1675", + "27864", + "15616", + "52575", + "32730" + } + }, + [352]= { + ["x"]= -2311.98, + ["y"]= -243.095, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8139", + "19958", + "60781", + "12244" + } + }, + [353]= { + ["x"]= -2311.98, + ["y"]= 257.205, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24256", + "8732", + "34906", + "41026" + } + }, + [354]= { + ["x"]= -2221.21, + ["y"]= 7200.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10311", + "45503", + "61190", + "43307" + } + }, + [355]= { + ["x"]= -2201.7, + ["y"]= -6675.31, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12379", + "44183", + "7555", + "240" + } + }, + [356]= { + ["x"]= -2184.36, + ["y"]= 4590.01, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28498", + "24544", + "12033", + "37956" + } + }, + [357]= { + ["x"]= -2184.36, + ["y"]= 5022.54, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62015", + "50858", + "61602", + "15451" + } + }, + [358]= { + ["x"]= -2164.23, + ["y"]= 7871.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17429", + "47854", + "63413", + "39904", + "31400" + } + }, + [359]= { + ["x"]= -2151.7, + ["y"]= -7793.46, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34723", + "12888", + "16954", + "12783", + "9261" + } + }, + [360]= { + ["x"]= -2151.7, + ["y"]= -7186.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4270", + "64355", + "52655", + "35035", + "21143" + } + }, + [361]= { + ["x"]= -2125.03, + ["y"]= 3616.16, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28475", + "30733", + "49178" + } + }, + [362]= { + ["x"]= -2122.11, + ["y"]= 5671.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17818" + } + }, + [363]= { + ["x"]= -2065.84, + ["y"]= -5674.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26608", + "17569", + "33779", + "45366", + "20142", + "44562" + } + }, + [364]= { + ["x"]= -2061.53, + ["y"]= -3613.27, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "47251", + "7388", + "36634" + } + }, + [365]= { + ["x"]= -2031.31, + ["y"]= -486.185, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "16775", + "46910" + } + }, + [366]= { + ["x"]= -1920.09, + ["y"]= 6852.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "52061", + "55420", + "15543", + "30170", + "53840" + } + }, + [367]= { + ["x"]= -1500.0, + ["y"]= -9850, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "31984", + "37492", + "27096", + "62504", + "31316", + "43242", + "25309", + "47630", + "29161", + "17018", + "32417", + "6728", + "48124", + "50935", + "37127", + "31344", + "5502", + "18378" + } + }, + [368]= { + ["x"]= -1903.4, + ["y"]= -634.955, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12239", + "59306", + "34207", + "19609", + "45803", + "28878" + } + }, + [369]= { + ["x"]= -1861.16, + ["y"]= -4771.42, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34552", + "22062", + "15081", + "7688" + } + }, + [370]= { + ["x"]= -1851.8, + ["y"]= 4017.26, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38436", + "53558", + "2355", + "57900" + } + }, + [371]= { + ["x"]= -1834.27, + ["y"]= 4378.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30691" + } + }, + [372]= { + ["x"]= -1810.14, + ["y"]= 5487.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16245", + "54862", + "49407", + "56920", + "2599", + "4327" + } + }, + [373]= { + ["x"]= -1810.14, + ["y"]= 6219.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50515", + "56370", + "27605", + "6139", + "1340", + "51974" + } + }, + [374]= { + ["x"]= -1780.16, + ["y"]= -4359.11, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31875" + } + }, + [375]= { + ["x"]= -1713.47, + ["y"]= 190.315, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50288" + } + }, + [376]= { + ["x"]= -1693.96, + ["y"]= 4836.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42086", + "20402", + "27422", + "65395" + } + }, + [377]= { + ["x"]= -1653.82, + ["y"]= -7186.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "27733", + "58210", + "19008", + "11689", + "62970", + "46904" + } + }, + [378]= { + ["x"]= -1652.42, + ["y"]= 7871.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37800", + "29547", + "4378", + "35507", + "22356", + "35859" + } + }, + [379]= { + ["x"]= -1637.17, + ["y"]= -6342.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "54657", + "34157", + "9432", + "28680" + } + }, + [380]= { + ["x"]= -1545.59, + ["y"]= 5867.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24865" + } + }, + [381]= { + ["x"]= -1543.86, + ["y"]= -1568.64, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "10490", + "33479" + } + }, + [382]= { + ["x"]= -1499.71, + ["y"]= 7200.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58541", + "6633", + "24772", + "26456", + "24721", + "11596" + } + }, + [383]= { + ["x"]= -1498.91, + ["y"]= -1815.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25714", + "26960", + "45680", + "25237", + "10835", + "63559" + } + }, + [384]= { + ["x"]= -1476.2, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "47312", + "55866", + "45317", + "5348" + } + }, + [385]= { + ["x"]= -1427.09, + ["y"]= 7475.25, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "61262" + } + }, + [386]= { + ["x"]= -1402.81, + ["y"]= 818.705, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "13714", + "19939", + "62021", + "65034", + "65167", + "15073", + "55485", + "12382", + "12702" + } + }, + [387]= { + ["x"]= -1378.34, + ["y"]= -4501.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4397" + } + }, + [388]= { + ["x"]= -1377.82, + ["y"]= 1939.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29292", + "27718", + "12809", + "8629" + } + }, + [389]= { + ["x"]= -1358.94, + ["y"]= -779.755, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63976" + } + }, + [390]= { + ["x"]= -1351.78, + ["y"]= -6767.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "21958", + "33755", + "14936", + "12125" + } + }, + [391]= { + ["x"]= -1320.39, + ["y"]= 6242.57, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26154", + "8904", + "49167", + "35756", + "23834", + "64226" + } + }, + [392]= { + ["x"]= -1287.23, + ["y"]= 7660.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50679" + } + }, + [393]= { + ["x"]= -1274.4, + ["y"]= -49.185, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25959", + "15400", + "62480", + "25431", + "35190", + "2081", + "22959" + } + }, + [394]= { + ["x"]= -1262.71, + ["y"]= -7803.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63903" + } + }, + [395]= { + ["x"]= -1235.43, + ["y"]= 4563.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "476" + } + }, + [396]= { + ["x"]= -1081.71, + ["y"]= -7490.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44184" + } + }, + [397]= { + ["x"]= -1072.84, + ["y"]= -5361.29, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "38148", + "12852", + "4184", + "44983", + "34661", + "44955", + "58604", + "30225" + } + }, + [398]= { + ["x"]= -1071.71, + ["y"]= -6040.67, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1031" + } + }, + [399]= { + ["x"]= -1059.19, + ["y"]= 6702.11, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "1325", + "29933", + "31471", + "62588" + } + }, + [400]= { + ["x"]= -1041.83, + ["y"]= -4099.38, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5574" + } + }, + [401]= { + ["x"]= -1017.52, + ["y"]= 1491.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12926" + } + }, + [402]= { + ["x"]= -966.805, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24083" + } + }, + [403]= { + ["x"]= -834.765, + ["y"]= -1999.44, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "22970", + "18359", + "21973", + "34306" + } + }, + [404]= { + ["x"]= -828.505, + ["y"]= -1587.95, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "45175" + } + }, + [405]= { + ["x"]= -812.165, + ["y"]= -6767.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24362", + "29781", + "60388", + "53188" + } + }, + [406]= { + ["x"]= -770.325, + ["y"]= -436.995, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "38450", + "5560", + "51291", + "6230", + "26740", + "38048", + "55906", + "37690", + "48423", + "6204" + } + }, + [407]= { + ["x"]= -757.605, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41522", + "13191", + "7614", + "1006" + } + }, + [408]= { + ["x"]= -742.375, + ["y"]= -8082.92, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "38789", + "61804", + "14040", + "18715", + "31462", + "10893", + "13559", + "8624", + "11924", + "60501", + "34927" + } + }, + [409]= { + ["x"]= -726.985, + ["y"]= 5391.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34666", + "43303", + "30842", + "36972", + "43412" + } + }, + [410]= { + ["x"]= -663.955, + ["y"]= 3776.28, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20605" + } + }, + [411]= { + ["x"]= -660.625, + ["y"]= 8005.26, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "49343", + "36761", + "1159", + "37795", + "43413", + "3319", + "12878", + "44207" + } + }, + [412]= { + ["x"]= -657.365, + ["y"]= 1947.74, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57061", + "22061", + "5289", + "25186" + } + }, + [413]= { + ["x"]= -647.025, + ["y"]= 4732.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34009" + } + }, + [414]= { + ["x"]= -646.775, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "34031" + } + }, + [415]= { + ["x"]= -617.505, + ["y"]= 365.315, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "62662", + "17674", + "13782" + } + }, + [416]= { + ["x"]= -601.785, + ["y"]= 3971.51, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "40867", + "42911" + } + }, + [417]= { + ["x"]= -591.635, + ["y"]= 1260.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "65154", + "1696", + "25732", + "63933" + } + }, + [418]= { + ["x"]= -590.565, + ["y"]= 2105.26, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "46578", + "28330" + } + }, + [419]= { + ["x"]= -568.365, + ["y"]= 6699.85, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "49109", + "17566", + "21435", + "19750" + } + }, + [420]= { + ["x"]= -514.755, + ["y"]= 7214.26, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10073", + "49147", + "49416", + "45358" + } + }, + [421]= { + ["x"]= -482.865, + ["y"]= -4439.48, + ["orbits"]= {}, + ["nodes"]= { + "36542", + "37569" + } + }, + [422]= { + ["x"]= -474.595, + ["y"]= 4081.11, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39211", + "51856", + "48513", + "5612" + } + }, + [423]= { + ["x"]= -469.405, + ["y"]= -7150.35, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37403", + "27193", + "2474", + "55804" + } + }, + [424]= { + ["x"]= -419.445, + ["y"]= -6345.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32509", + "40075", + "49534", + "42485", + "7918" + } + }, + [425]= { + ["x"]= -284.375, + ["y"]= 5213.73, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19782", + "12236", + "46730", + "25324", + "49538" + } + }, + [426]= { + ["x"]= 0.0, + ["y"]= -9850.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61259", + "57197", + "4917", + "47873", + "258", + "12738", + "58998", + "12475", + "53123", + "27038", + "40810", + "37114", + "19595", + "6052", + "54279", + "56461", + "16023" + } + }, + [427]= { + ["x"]= 0.0, + ["y"]= 9800.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6982", + "56967", + "11412", + "27604", + "41433", + "13374", + "61478", + "60508", + "35185", + "25111", + "43725", + "31700", + "33940", + "35750", + "24984" + } + }, + [428]= { + ["x"]= -4.175, + ["y"]= -8121.6, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32431", + "49588", + "36121", + "55647", + "57362", + "58816", + "61264", + "46469", + "11645", + "56716" + } + }, + [429]= { + ["x"]= -4.175, + ["y"]= -6767.07, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15117", + "53279", + "61419", + "20528", + "8302", + "56158" + } + }, + [430]= { + ["x"]= -4.055, + ["y"]= -8805.58, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16246" + } + }, + [431]= { + ["x"]= -4.055, + ["y"]= -7490.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4367" + } + }, + [432]= { + ["x"]= -4.055, + ["y"]= -5546.94, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "19635" + } + }, + [433]= { + ["x"]= -4.055, + ["y"]= -4501.31, + ["orbits"]= { + 2, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38900", + "38805", + "21075", + "15711", + "1957", + "739", + "18866", + "53493", + "27929", + "59650", + "6949", + "19374", + "55643", + "2292", + "48362", + "27203", + "27611", + "40637", + "9650", + "60554", + "32024", + "25222", + "11420", + "44723", + "1346", + "16790", + "21934", + "36774", + "17579", + "33296", + "11659", + "11128", + "8135" + } + }, + [434]= { + ["x"]= -4.055, + ["y"]= -3179.89, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57226", + "57264", + "54447" + } + }, + [435]= { + ["x"]= -2.225, + ["y"]= -4029.12, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "62596" + } + }, + [436]= { + ["x"]= -1.355, + ["y"]= -3709.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33722" + } + }, + [437]= { + ["x"]= -0.205, + ["y"]= -2625.07, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27781" + } + }, + [438]= { + ["x"]= 2.415, + ["y"]= 4732.29, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "18302", + "25933", + "48438", + "50360", + "28265", + "54776" + } + }, + [439]= { + ["x"]= 2.665, + ["y"]= 3188.39, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "39725", + "50986", + "47389" + } + }, + [440]= { + ["x"]= 2.665, + ["y"]= 4116.94, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35568", + "59718", + "50306" + } + }, + [441]= { + ["x"]= 2.665, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56001" + } + }, + [442]= { + ["x"]= 2.665, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "16544" + } + }, + [443]= { + ["x"]= 3.435, + ["y"]= -1647.64, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "60090", + "14211", + "42731", + "22473", + "14182", + "13322", + "3452", + "18240", + "37078" + } + }, + [444]= { + ["x"]= 3.435, + ["y"]= -710.185, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "22497", + "8643", + "63845" + } + }, + [445]= { + ["x"]= 3.435, + ["y"]= 6.815, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15144", + "55373", + "2151", + "48828", + "62103", + "58833", + "47062" + } + }, + [446]= { + ["x"]= 3.435, + ["y"]= 899.815, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "7903", + "20310", + "45887", + "36881", + "33508", + "31683", + "35503", + "43162", + "39773", + "23122" + } + }, + [447]= { + ["x"]= 3.435, + ["y"]= 1612.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19144" + } + }, + [448]= { + ["x"]= 4.565, + ["y"]= 3613.13, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41169" + } + }, + [449]= { + ["x"]= 4.605, + ["y"]= 8295.38, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57011", + "65485", + "32690", + "64882", + "23951", + "57449", + "16213", + "58921", + "4707" + } + }, + [450]= { + ["x"]= 5.935, + ["y"]= 6370.12, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "18103", + "37584", + "49971", + "54127", + "4833", + "23066", + "11859" + } + }, + [451]= { + ["x"]= 286.365, + ["y"]= 5213.73, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25456", + "3009", + "24641", + "22423", + "4565" + } + }, + [452]= { + ["x"]= 309.445, + ["y"]= -7671.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "40351" + } + }, + [453]= { + ["x"]= 479.525, + ["y"]= -4439.48, + ["orbits"]= {}, + ["nodes"]= { + "32210", + "21678" + } + }, + [454]= { + ["x"]= 482.455, + ["y"]= 4105.85, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62694", + "45227", + "24377", + "56803" + } + }, + [455]= { + ["x"]= 490.135, + ["y"]= 7237.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57949", + "11364", + "43684", + "59766" + } + }, + [456]= { + ["x"]= 525.375, + ["y"]= -7139.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38246", + "60989", + "63039", + "35233", + "51213", + "36107", + "39836" + } + }, + [457]= { + ["x"]= 528.555, + ["y"]= -6345.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50826", + "18174", + "43000", + "12913", + "10115", + "13862" + } + }, + [458]= { + ["x"]= 550.025, + ["y"]= 3971.51, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "49806", + "63649" + } + }, + [459]= { + ["x"]= 566.045, + ["y"]= 6703.04, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17383", + "58545", + "14813", + "48859" + } + }, + [460]= { + ["x"]= 595.755, + ["y"]= 8005.26, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "15085", + "54268", + "56231", + "2392", + "13807", + "33089", + "49547", + "51761" + } + }, + [461]= { + ["x"]= 597.435, + ["y"]= 1260.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29993", + "52099", + "14090", + "4207", + "22893", + "24472", + "53042" + } + }, + [462]= { + ["x"]= 597.435, + ["y"]= 2105.26, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "16167", + "10829" + } + }, + [463]= { + ["x"]= 624.375, + ["y"]= 365.315, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35179", + "60532", + "9009" + } + }, + [464]= { + ["x"]= 650.295, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "17201" + } + }, + [465]= { + ["x"]= 652.555, + ["y"]= 4732.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "48807" + } + }, + [466]= { + ["x"]= 659.775, + ["y"]= 3773.93, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56146" + } + }, + [467]= { + ["x"]= 664.085, + ["y"]= 1939.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41967", + "17546", + "21634", + "45019" + } + }, + [468]= { + ["x"]= 722.345, + ["y"]= -8082.92, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "40705", + "36226", + "40609", + "12439", + "22090", + "5972", + "36412", + "53732", + "21460", + "8833", + "60170" + } + }, + [469]= { + ["x"]= 723.915, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24334", + "57565", + "2348", + "44788" + } + }, + [470]= { + ["x"]= 729.725, + ["y"]= 5391.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60002", + "52632", + "36222", + "47030", + "30155" + } + }, + [471]= { + ["x"]= 764.515, + ["y"]= -2024.88, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34907", + "28424", + "45067", + "48007" + } + }, + [472]= { + ["x"]= 768.825, + ["y"]= -1635.07, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60247" + } + }, + [473]= { + ["x"]= 775.925, + ["y"]= -439.185, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "3992", + "49807", + "37575", + "918", + "28221", + "24643", + "48768", + "45456", + "56153", + "11688" + } + }, + [474]= { + ["x"]= 901.755, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8544" + } + }, + [475]= { + ["x"]= 1024.39, + ["y"]= 1496.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56116" + } + }, + [476]= { + ["x"]= 1030.04, + ["y"]= 6528.03, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39338", + "29185", + "58803", + "32059" + } + }, + [477]= { + ["x"]= 1037.99, + ["y"]= -4096.44, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56274" + } + }, + [478]= { + ["x"]= 1063.6, + ["y"]= -7490.3, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19501" + } + }, + [479]= { + ["x"]= 1063.6, + ["y"]= -7049.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46111", + "34591", + "35730", + "51382", + "34225", + "23796" + } + }, + [480]= { + ["x"]= 1063.6, + ["y"]= -5547.36, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "11551" + } + }, + [481]= { + ["x"]= 1064.73, + ["y"]= -5361.29, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "42795", + "13753", + "7503", + "4432", + "65203", + "48514", + "27163", + "22315" + } + }, + [482]= { + ["x"]= 1126.55, + ["y"]= 7085.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "28863", + "38772", + "32053", + "19730" + } + }, + [483]= { + ["x"]= 1146.06, + ["y"]= -6404.42, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56128", + "63067", + "50472", + "22972" + } + }, + [484]= { + ["x"]= 1172.56, + ["y"]= 4529.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6580" + } + }, + [485]= { + ["x"]= 1173.43, + ["y"]= 6120.28, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34191", + "60529", + "33582", + "47059" + } + }, + [486]= { + ["x"]= 1222.19, + ["y"]= 7660.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10661" + } + }, + [487]= { + ["x"]= 1244.6, + ["y"]= -7803.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12128" + } + }, + [488]= { + ["x"]= 1316.69, + ["y"]= -48.685, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19287", + "61875", + "49379", + "38235" + } + }, + [489]= { + ["x"]= 1363.2, + ["y"]= -778.255, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "33545" + } + }, + [490]= { + ["x"]= 1370.46, + ["y"]= -4501.31, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8948" + } + }, + [491]= { + ["x"]= 1384.69, + ["y"]= 1939.77, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8930", + "18402", + "42041", + "46665" + } + }, + [492]= { + ["x"]= 1416.43, + ["y"]= 822.605, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "60204", + "17814", + "8348", + "6534", + "20812", + "50757", + "19506", + "44103", + "32091" + } + }, + [493]= { + ["x"]= 1443.51, + ["y"]= -1241.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57736", + "65097", + "6507", + "7594" + } + }, + [494]= { + ["x"]= 1464.21, + ["y"]= -1815.14, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "59926", + "17849", + "21602", + "33911", + "57615" + } + }, + [495]= { + ["x"]= 1479.76, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "19711" + } + }, + [496]= { + ["x"]= 1502.02, + ["y"]= -7229.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15167", + "24872", + "34506", + "26393" + } + }, + [497]= { + ["x"]= 1510.17, + ["y"]= -1568.64, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "46092", + "18033" + } + }, + [498]= { + ["x"]= 1596.8, + ["y"]= -6341.4, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18663" + } + }, + [499]= { + ["x"]= 1500.0, + ["y"]= -9850.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "55646", + "48719", + "3554", + "36017", + "26298", + "11490", + "23509", + "23572", + "18309", + "60547", + "39818", + "18574", + "5415", + "54159", + "65153", + "14603", + "60791" + } + }, + [500]= { + ["x"]= 1653.19, + ["y"]= 4745.61, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58214", + "51976", + "12095", + "18357", + "52018" + } + }, + [501]= { + ["x"]= 1708.76, + ["y"]= 5471.17, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "48823", + "41047", + "8566", + "34510", + "50041", + "42720", + "24552" + } + }, + [502]= { + ["x"]= 1708.76, + ["y"]= 6256.98, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45372", + "25355", + "17020", + "8410", + "34284" + } + }, + [503]= { + ["x"]= 1719.48, + ["y"]= 2174.13, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56207" + } + }, + [504]= { + ["x"]= 1734.19, + ["y"]= 4298.82, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "11651" + } + }, + [505]= { + ["x"]= 1752.43, + ["y"]= -4352.09, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27659" + } + }, + [506]= { + ["x"]= 1760.96, + ["y"]= 187.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23540" + } + }, + [507]= { + ["x"]= 1833.43, + ["y"]= -4782.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61982", + "9083", + "49047", + "51517" + } + }, + [508]= { + ["x"]= 1833.43, + ["y"]= -3921.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "11784", + "24481", + "4105", + "127" + } + }, + [509]= { + ["x"]= 1848.44, + ["y"]= 6937.13, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56807", + "59016", + "21324", + "15021", + "15437", + "33725" + } + }, + [510]= { + ["x"]= 1848.44, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "29937" + } + }, + [511]= { + ["x"]= 1848.61, + ["y"]= 8219.25, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "33566", + "58336", + "7728", + "30038", + "35406", + "22908", + "35237", + "63033", + "58382", + "55281" + } + }, + [512]= { + ["x"]= 1871.28, + ["y"]= -603.265, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "30471", + "34579", + "40100", + "35085" + } + }, + [513]= { + ["x"]= 1892.09, + ["y"]= -6532.62, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60512", + "12032", + "47504", + "60085" + } + }, + [514]= { + ["x"]= 1895.97, + ["y"]= 3562.33, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "238", + "11497", + "34483" + } + }, + [515]= { + ["x"]= 2007.62, + ["y"]= -5502.27, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41273", + "15452", + "50082", + "47085", + "27623" + } + }, + [516]= { + ["x"]= 2074.46, + ["y"]= -486.185, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "51786", + "28574" + } + }, + [517]= { + ["x"]= 1500.0, + ["y"]= 9800.0, + ["orbits"]= { + 0, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "61393", + "34484", + "10143", + "38180", + "50845", + "16306", + "15286", + "42293", + "34215", + "45696", + "20954", + "3184", + "17315", + "62817", + "33795" + } + }, + [518]= { + ["x"]= 2089.86, + ["y"]= -7229.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63482", + "13961", + "62697", + "26557" + } + }, + [519]= { + ["x"]= 2101.84, + ["y"]= 4491.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55348", + "37887", + "17934", + "29359", + "63727" + } + }, + [520]= { + ["x"]= 2117.76, + ["y"]= -7873.3, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "47242", + "9370", + "44360", + "6685", + "29381" + } + }, + [521]= { + ["x"]= 2154.91, + ["y"]= -3507.75, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48778", + "51923", + "41263" + } + }, + [522]= { + ["x"]= 2173.91, + ["y"]= 6198.04, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10808" + } + }, + [523]= { + ["x"]= 2175.82, + ["y"]= -5958.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "41225", + "29171", + "30658", + "31103", + "25409" + } + }, + [524]= { + ["x"]= 2273.01, + ["y"]= 4083.73, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5408" + } + }, + [525]= { + ["x"]= 2273.3, + ["y"]= -6834.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17236", + "7641", + "62577", + "6338" + } + }, + [526]= { + ["x"]= 2324.51, + ["y"]= -4517.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12189", + "5875", + "40196", + "9788" + } + }, + [527]= { + ["x"]= 2343.57, + ["y"]= 4936.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42161", + "26365", + "12415", + "7187", + "36736", + "19749" + } + }, + [528]= { + ["x"]= 2357.17, + ["y"]= -238.985, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17906", + "36877", + "7136", + "22488" + } + }, + [529]= { + ["x"]= 2357.17, + ["y"]= 255.495, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "31137", + "35737", + "47471", + "33678" + } + }, + [530]= { + ["x"]= 2389.17, + ["y"]= 5526.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9171", + "39530", + "36704", + "54872", + "1382", + "25446" + } + }, + [531]= { + ["x"]= 2389.5, + ["y"]= 5870.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20010" + } + }, + [532]= { + ["x"]= 2403.46, + ["y"]= 7085.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56659", + "53667", + "6783", + "49677" + } + }, + [533]= { + ["x"]= 2405.51, + ["y"]= -4102.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37671" + } + }, + [534]= { + ["x"]= 2432.77, + ["y"]= -5024.78, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40126", + "6109", + "53652", + "62506" + } + }, + [535]= { + ["x"]= 2446.13, + ["y"]= 3673.31, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46344", + "29089", + "36687", + "930", + "56855", + "13231", + "25349" + } + }, + [536]= { + ["x"]= 2524.35, + ["y"]= 7767.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "42637", + "30030", + "29543", + "26096", + "28039" + } + }, + [537]= { + ["x"]= 2529.85, + ["y"]= -6130.73, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23950" + } + }, + [538]= { + ["x"]= 2529.85, + ["y"]= -5467.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58198", + "14209", + "21170", + "58603", + "17380" + } + }, + [539]= { + ["x"]= 2529.89, + ["y"]= -5616.94, + ["orbits"]= {}, + ["nodes"]= { + "32710", + "38176", + "49651", + "41635" + } + }, + [540]= { + ["x"]= 2610.89, + ["y"]= -8000.83, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4492", + "27592", + "44924", + "55114" + } + }, + [541]= { + ["x"]= 2627.64, + ["y"]= 4191.98, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39085" + } + }, + [542]= { + ["x"]= 2692.79, + ["y"]= 6264.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "49969", + "62235", + "55392", + "53002", + "4944", + "55085", + "18703" + } + }, + [543]= { + ["x"]= 2724.09, + ["y"]= -3655.52, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55247", + "63799", + "61320", + "18865", + "25281" + } + }, + [544]= { + ["x"]= 2757.26, + ["y"]= -4226.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31703" + } + }, + [545]= { + ["x"]= 2801.57, + ["y"]= 4936.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56589" + } + }, + [546]= { + ["x"]= 2801.57, + ["y"]= 5328.94, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "13019" + } + }, + [547]= { + ["x"]= 2807.75, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6363" + } + }, + [548]= { + ["x"]= 2844.17, + ["y"]= -1627.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "44683" + } + }, + [549]= { + ["x"]= 2844.17, + ["y"]= 1642.43, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "45035", + "39821", + "50459" + } + }, + [550]= { + ["x"]= 2860.54, + ["y"]= -6834.73, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "27709", + "28887", + "38849", + "22647", + "40271" + } + }, + [551]= { + ["x"]= 2890.2, + ["y"]= -7275.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51219", + "13232", + "9567", + "55230" + } + }, + [552]= { + ["x"]= 2946.27, + ["y"]= -5900.27, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48411", + "64612", + "32942", + "64239", + "22407", + "63207", + "19098" + } + }, + [553]= { + ["x"]= 2960.24, + ["y"]= -6757.65, + ["orbits"]= {}, + ["nodes"]= { + "5296", + "33310" + } + }, + [554]= { + ["x"]= 2983.07, + ["y"]= -5467.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "43988" + } + }, + [555]= { + ["x"]= 2983.07, + ["y"]= -5105.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "27415" + } + }, + [556]= { + ["x"]= 2983.07, + ["y"]= -4559.5, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "54144", + "57457", + "13573", + "31619", + "39743", + "50071" + } + }, + [557]= { + ["x"]= 3052.59, + ["y"]= -1855.96, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "38129" + } + }, + [558]= { + ["x"]= 3053.77, + ["y"]= 5706.77, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36874" + } + }, + [559]= { + ["x"]= 3103.76, + ["y"]= 7085.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33037", + "64284", + "11456", + "55021", + "29522" + } + }, + [560]= { + ["x"]= 3103.76, + ["y"]= 7767.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55152", + "7786", + "55648", + "46291", + "544" + } + }, + [561]= { + ["x"]= 3119.9, + ["y"]= 2789.5, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "203" + } + }, + [562]= { + ["x"]= 3165.88, + ["y"]= 4078.63, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44330", + "53882", + "53809", + "24974", + "62721", + "64888", + "2275" + } + }, + [563]= { + ["x"]= 3187.88, + ["y"]= 4855.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "43787", + "29379", + "52230", + "42533" + } + }, + [564]= { + ["x"]= 3268.3, + ["y"]= -4958.32, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37175", + "36371", + "11200", + "25439", + "16970", + "32278" + } + }, + [565]= { + ["x"]= 3306.94, + ["y"]= 3671.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63139" + } + }, + [566]= { + ["x"]= 3312.19, + ["y"]= 2131.76, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24358" + } + }, + [567]= { + ["x"]= 3340.44, + ["y"]= 5024.29, + ["orbits"]= {}, + ["nodes"]= { + "23471" + } + }, + [568]= { + ["x"]= 3340.44, + ["y"]= 6424.04, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "52423", + "40287", + "570", + "59501" + } + }, + [569]= { + ["x"]= 3342.16, + ["y"]= 5540.27, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "15027" + } + }, + [570]= { + ["x"]= 3345.06, + ["y"]= -6591, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4036", + "15228", + "9586", + "47306" + } + }, + [571]= { + ["x"]= 3363, + ["y"]= -6155.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32345" + } + }, + [572]= { + ["x"]= 3375.98, + ["y"]= -8293.26, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "41476", + "16243", + "53828", + "52031", + "52848", + "27879", + "39521", + "40840", + "49779", + "29552", + "48878", + "51524", + "51146" + } + }, + [573]= { + ["x"]= 3379.59, + ["y"]= -7182.02, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53290", + "40483", + "62849", + "12831", + "53005", + "41870", + "38207" + } + }, + [574]= { + ["x"]= 3414.83, + ["y"]= 2612.2, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "444", + "52904", + "2094" + } + }, + [575]= { + ["x"]= 3415.41, + ["y"]= -3704.5, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21301" + } + }, + [576]= { + ["x"]= 3425.77, + ["y"]= 1647.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "465" + } + }, + [577]= { + ["x"]= 3503.29, + ["y"]= -5410.9, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51801", + "14745", + "53573", + "14113" + } + }, + [578]= { + ["x"]= 3581.96, + ["y"]= -3994.62, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "57746", + "52095", + "57044", + "62490", + "10511", + "12873" + } + }, + [579]= { + ["x"]= 3597.43, + ["y"]= -1313.9, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23549" + } + }, + [580]= { + ["x"]= 3627.66, + ["y"]= -1604.45, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "45838", + "8640", + "45272" + } + }, + [581]= { + ["x"]= 3652.18, + ["y"]= 5027.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45033", + "53324", + "15344", + "3883" + } + }, + [582]= { + ["x"]= 3653.51, + ["y"]= 3914.75, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "55307", + "64241", + "26471", + "15837", + "40743", + "31818" + } + }, + [583]= { + ["x"]= 3660.86, + ["y"]= 87.815, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24496", + "39861", + "33989" + } + }, + [584]= { + ["x"]= 3687.33, + ["y"]= -3111.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1365" + } + }, + [585]= { + ["x"]= 3702.12, + ["y"]= -5959.63, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "10153" + } + }, + [586]= { + ["x"]= 3767.38, + ["y"]= 5789.29, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46495", + "19196", + "23237", + "58851" + } + }, + [587]= { + ["x"]= 3793.25, + ["y"]= 7205.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10204", + "40135", + "9262", + "65093" + } + }, + [588]= { + ["x"]= 3793.6, + ["y"]= 1307.06, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "3195" + } + }, + [589]= { + ["x"]= 3802.19, + ["y"]= 1551.91, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "59370", + "63795" + } + }, + [590]= { + ["x"]= 3806.14, + ["y"]= 2611.82, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "54142" + } + }, + [591]= { + ["x"]= 3864.8, + ["y"]= 604.095, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64265", + "6799", + "53615", + "63194" + } + }, + [592]= { + ["x"]= 3865.28, + ["y"]= 2133.7, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41307" + } + }, + [593]= { + ["x"]= 3875.76, + ["y"]= -2639.76, + ["orbits"]= { + 2, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63639", + "64501", + "46136", + "58649", + "62069", + "31583", + "1600" + } + }, + [594]= { + ["x"]= 3878.64, + ["y"]= 1642.52, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38344", + "65033", + "10017", + "41250", + "41536", + "62712" + } + }, + [595]= { + ["x"]= 3878.93, + ["y"]= 2611.82, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6542", + "60803", + "94", + "29870", + "56149", + "720" + } + }, + [596]= { + ["x"]= 3884.04, + ["y"]= -2123.36, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "51360" + } + }, + [597]= { + ["x"]= 3898.59, + ["y"]= -2515.88, + ["orbits"]= {}, + ["nodes"]= { + "11334", + "15549" + } + }, + [598]= { + ["x"]= 3914.07, + ["y"]= 7769.12, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8620", + "27325", + "41595", + "58563" + } + }, + [599]= { + ["x"]= 3941.81, + ["y"]= -1604.45, + ["orbits"]= { + 2, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48477", + "23507", + "57248", + "41689", + "27276", + "62831", + "51220" + } + }, + [600]= { + ["x"]= 3948.22, + ["y"]= -741.835, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58968", + "37663", + "44988", + "21801" + } + }, + [601]= { + ["x"]= 3950.84, + ["y"]= -251.485, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "39524", + "23439", + "9015", + "60834" + } + }, + [602]= { + ["x"]= 3955.07, + ["y"]= -7624.75, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56075" + } + }, + [603]= { + ["x"]= 3956.96, + ["y"]= 4676.27, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34625", + "46106", + "12068", + "16851", + "47743", + "37502" + } + }, + [604]= { + ["x"]= 3987.22, + ["y"]= -5763.84, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6588", + "48275", + "21184", + "45945" + } + }, + [605]= { + ["x"]= 4037.96, + ["y"]= 5108.19, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "3469" + } + }, + [606]= { + ["x"]= 4043.07, + ["y"]= 260.655, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49639" + } + }, + [607]= { + ["x"]= 4069.13, + ["y"]= 9718.12, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "37147" + } + }, + [608]= { + ["x"]= 4172.23, + ["y"]= -9316.08, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "63754" + } + }, + [609]= { + ["x"]= 4178.25, + ["y"]= 6313.4, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34678", + "26528", + "58271", + "3042", + "19069" + } + }, + [610]= { + ["x"]= 4215.76, + ["y"]= -7959.34, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "53759" + } + }, + [611]= { + ["x"]= 4216.21, + ["y"]= -7241.65, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49605" + } + }, + [612]= { + ["x"]= 4216.21, + ["y"]= -6723.62, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53738", + "42006", + "18661", + "44102" + } + }, + [613]= { + ["x"]= 4218.78, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52157" + } + }, + [614]= { + ["x"]= 4219.9, + ["y"]= -3837.32, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10166", + "31371", + "40751", + "6233" + } + }, + [615]= { + ["x"]= 4260.04, + ["y"]= 6936.23, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57199", + "7023", + "61327", + "51404" + } + }, + [616]= { + ["x"]= 4260.04, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5237" + } + }, + [617]= { + ["x"]= 4299.23, + ["y"]= 1638.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "50338" + } + }, + [618]= { + ["x"]= 4299.25, + ["y"]= 523.095, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "6538" + } + }, + [619]= { + ["x"]= 4299.25, + ["y"]= 1060.17, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "38662" + } + }, + [620]= { + ["x"]= 4299.25, + ["y"]= 3274.2, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "61306" + } + }, + [621]= { + ["x"]= 4299.25, + ["y"]= 4126.36, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17421", + "29104", + "51440", + "9458" + } + }, + [622]= { + ["x"]= 4301.1, + ["y"]= -487.965, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "9355" + } + }, + [623]= { + ["x"]= 4301.17, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49978" + } + }, + [624]= { + ["x"]= 4301.65, + ["y"]= -1111.45, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "4011" + } + }, + [625]= { + ["x"]= 4308.13, + ["y"]= 9222.16, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35853", + "3109" + } + }, + [626]= { + ["x"]= 4353.27, + ["y"]= 5387.67, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63620" + } + }, + [627]= { + ["x"]= 4380.25, + ["y"]= 2129.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "65210", + "25178", + "57240", + "9373", + "32117", + "48099" + } + }, + [628]= { + ["x"]= 4405.04, + ["y"]= 7808.4, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "40132", + "58854", + "46882" + } + }, + [629]= { + ["x"]= 4407.88, + ["y"]= -2582.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1891" + } + }, + [630]= { + ["x"]= 4407.88, + ["y"]= -1877.68, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59009" + } + }, + [631]= { + ["x"]= 4432.23, + ["y"]= -7533.79, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "21984", + "22618", + "21033" + } + }, + [632]= { + ["x"]= 4481.73, + ["y"]= -8861.99, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58194", + "9797" + } + }, + [633]= { + ["x"]= 4547.4, + ["y"]= -2934.85, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "20546" + } + }, + [634]= { + ["x"]= 4558.21, + ["y"]= -2868.84, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35894" + } + }, + [635]= { + ["x"]= 4560.21, + ["y"]= -1604.45, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "5823" + } + }, + [636]= { + ["x"]= 4625.56, + ["y"]= 298.865, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6042", + "19401", + "63453", + "10141" + } + }, + [637]= { + ["x"]= 4632.04, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "42178" + } + }, + [638]= { + ["x"]= 4647.34, + ["y"]= -793.395, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32227", + "64509", + "3863", + "20167", + "62853" + } + }, + [639]= { + ["x"]= 4647.34, + ["y"]= 782.685, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17788", + "42133", + "57259", + "50690", + "41016" + } + }, + [640]= { + ["x"]= 4651.31, + ["y"]= -250.355, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62094", + "43495", + "3634", + "41819" + } + }, + [641]= { + ["x"]= 4703.92, + ["y"]= -2582.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21835" + } + }, + [642]= { + ["x"]= 4709.92, + ["y"]= -1877.68, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "9877" + } + }, + [643]= { + ["x"]= 4713.27, + ["y"]= 3779.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "23438", + "16602", + "41137", + "46761" + } + }, + [644]= { + ["x"]= 4715, + ["y"]= 8517.45, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "22994", + "40400", + "46393", + "25134" + } + }, + [645]= { + ["x"]= 4742.38, + ["y"]= -3686.89, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14157", + "28758", + "39443", + "15409", + "56276" + } + }, + [646]= { + ["x"]= 4798.76, + ["y"]= -7267.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "58168", + "52407", + "54645", + "14122" + } + }, + [647]= { + ["x"]= 4800.31, + ["y"]= 4689.07, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "38622", + "50734", + "13965", + "26763" + } + }, + [648]= { + ["x"]= 4808.28, + ["y"]= -6363.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50382", + "6616", + "48093", + "44824", + "16743", + "34560", + "17411" + } + }, + [649]= { + ["x"]= 4808.31, + ["y"]= 6046.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "8370", + "63439", + "43608", + "63921" + } + }, + [650]= { + ["x"]= 4864.82, + ["y"]= -4754.52, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "20852", + "6785", + "36585", + "42649", + "13387" + } + }, + [651]= { + ["x"]= 4883.75, + ["y"]= 4207.29, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64709" + } + }, + [652]= { + ["x"]= 4887.73, + ["y"]= -8158.76, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "64583", + "61288", + "13170", + "18756" + } + }, + [653]= { + ["x"]= 4893.38, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "25058" + } + }, + [654]= { + ["x"]= 4926.4, + ["y"]= 1638.78, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "41380", + "57819", + "6654", + "6913", + "42964", + "65224" + } + }, + [655]= { + ["x"]= 5030.42, + ["y"]= 359.695, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44206", + "22845", + "21019", + "34978" + } + }, + [656]= { + ["x"]= 5050.25, + ["y"]= 5189.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "20730", + "4656", + "22217", + "6383", + "59866" + } + }, + [657]= { + ["x"]= 5072.35, + ["y"]= 7475.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "64217" + } + }, + [658]= { + ["x"]= 5110.28, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "8938" + } + }, + [659]= { + ["x"]= 5112.08, + ["y"]= 2622.5, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2715", + "3187", + "903", + "30894", + "18670", + "15842" + } + }, + [660]= { + ["x"]= 5121.5, + ["y"]= 9221.52, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57194", + "12161" + } + }, + [661]= { + ["x"]= 5190.54, + ["y"]= 6394.33, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "30679" + } + }, + [662]= { + ["x"]= 5190.54, + ["y"]= 6907, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5632", + "57651", + "12215", + "36764", + "45283", + "40170" + } + }, + [663]= { + ["x"]= 5238.98, + ["y"]= -6076.21, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "55571", + "12143", + "55491", + "28859" + } + }, + [664]= { + ["x"]= 5251.84, + ["y"]= -407.825, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "62795", + "56090", + "49408", + "4219", + "11032", + "48698" + } + }, + [665]= { + ["x"]= 5288.6, + ["y"]= -4327.57, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "33783", + "4502" + } + }, + [666]= { + ["x"]= 5293.73, + ["y"]= -8861.99, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34013", + "41876" + } + }, + [667]= { + ["x"]= 5309.23, + ["y"]= 4658.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38579", + "25766", + "32802", + "16236" + } + }, + [668]= { + ["x"]= 5351.48, + ["y"]= -2868.84, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "46965", + "28754", + "35283", + "10763", + "21575", + "40644", + "42686", + "60949", + "7920" + } + }, + [669]= { + ["x"]= 5351.48, + ["y"]= -1604.45, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "46289", + "30338", + "51212", + "58069", + "42623", + "30205", + "54338", + "33903", + "60737" + } + }, + [670]= { + ["x"]= 5373.1, + ["y"]= -4318.71, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "89", + "52522", + "11716", + "42744", + "45608" + } + }, + [671]= { + ["x"]= 5394.8, + ["y"]= -5242.17, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9769", + "49515", + "24067", + "54413" + } + }, + [672]= { + ["x"]= 5429, + ["y"]= 4207.29, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34660", + "30974", + "9933", + "56865" + } + }, + [673]= { + ["x"]= 5431.51, + ["y"]= 9676.49, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "44470" + } + }, + [674]= { + ["x"]= 5451.69, + ["y"]= 432.095, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45593", + "12801", + "53114", + "25067", + "31315", + "65528" + } + }, + [675]= { + ["x"]= 5473.85, + ["y"]= -3627.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38520", + "47321", + "265", + "56648", + "53365" + } + }, + [676]= { + ["x"]= 5485.88, + ["y"]= -7160.88, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "32314", + "31973", + "10992", + "1652", + "3359", + "6250", + "2785", + "51191", + "30767", + "43010", + "6570", + "22535" + } + }, + [677]= { + ["x"]= 5485.88, + ["y"]= -6503.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60440" + } + }, + [678]= { + ["x"]= 5526.25, + ["y"]= 5412.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "26820", + "50038", + "40383", + "61039" + } + }, + [679]= { + ["x"]= 5528, + ["y"]= 8517.45, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51233", + "61305" + } + }, + [680]= { + ["x"]= 5532.23, + ["y"]= -9357.08, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "54600" + } + }, + [681]= { + ["x"]= 5539.65, + ["y"]= -793.395, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "45788", + "2121", + "12518", + "28503" + } + }, + [682]= { + ["x"]= 5625.38, + ["y"]= -159.685, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "52714" + } + }, + [683]= { + ["x"]= 5625.38, + ["y"]= 173.315, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "60180" + } + }, + [684]= { + ["x"]= 5648.1, + ["y"]= 763.265, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "11239" + } + }, + [685]= { + ["x"]= 5684.5, + ["y"]= 6907, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5622", + "25209", + "30626", + "8872", + "6" + } + }, + [686]= { + ["x"]= 5699.73, + ["y"]= -8158.76, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "24452", + "59585" + } + }, + [687]= { + ["x"]= 5711.94, + ["y"]= 2129.71, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "1201", + "45491", + "7085" + } + }, + [688]= { + ["x"]= 5739.58, + ["y"]= 2611.82, + ["orbits"]= {}, + ["nodes"]= { + "41866", + "60942" + } + }, + [689]= { + ["x"]= 5739.58, + ["y"]= 3785.17, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "36801", + "19228", + "3362", + "4788", + "529" + } + }, + [690]= { + ["x"]= 5741.38, + ["y"]= -6061.34, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "60210", + "5018", + "45810", + "13168", + "11984", + "58032" + } + }, + [691]= { + ["x"]= 5787.26, + ["y"]= -6677.88, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "11455" + } + }, + [692]= { + ["x"]= 5889.17, + ["y"]= 5087.11, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "12794", + "30455", + "28658", + "14804", + "41119", + "47212" + } + }, + [693]= { + ["x"]= 5892.88, + ["y"]= 6475.33, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56023", + "11678", + "44306", + "8458", + "52288", + "31513" + } + }, + [694]= { + ["x"]= 5913.73, + ["y"]= -2868.8, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "3656", + "58244" + } + }, + [695]= { + ["x"]= 5913.73, + ["y"]= -487.945, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59252" + } + }, + [696]= { + ["x"]= 5913.96, + ["y"]= 6.815, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "59606" + } + }, + [697]= { + ["x"]= 5913.98, + ["y"]= -1604.45, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "13885", + "28012" + } + }, + [698]= { + ["x"]= 5916.07, + ["y"]= 513.095, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "39718" + } + }, + [699]= { + ["x"]= 5916.07, + ["y"]= 1553.17, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "27283", + "5616" + } + }, + [700]= { + ["x"]= 5970.17, + ["y"]= 5493.58, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "22266" + } + }, + [701]= { + ["x"]= 5999.55, + ["y"]= -4551.19, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "62791" + } + }, + [702]= { + ["x"]= 5999.85, + ["y"]= 1638.78, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "31508" + } + }, + [703]= { + ["x"]= 5999.85, + ["y"]= 2611.82, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "37504" + } + }, + [704]= { + ["x"]= 6051.17, + ["y"]= 5947.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9786", + "4573", + "33558", + "3309", + "41163" + } + }, + [705]= { + ["x"]= 6071.73, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "41989" + } + }, + [706]= { + ["x"]= 6077.01, + ["y"]= 8476.45, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "35313" + } + }, + [707]= { + ["x"]= 6116.13, + ["y"]= 4586.13, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "51420", + "49481", + "65053", + "6384" + } + }, + [708]= { + ["x"]= 6143.15, + ["y"]= -2868.8, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24050" + } + }, + [709]= { + ["x"]= 6143.15, + ["y"]= -1604.45, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "46408" + } + }, + [710]= { + ["x"]= 6161.55, + ["y"]= -4159.59, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "46896", + "4973", + "5129", + "9864", + "59482", + "47294" + } + }, + [711]= { + ["x"]= 6166.98, + ["y"]= -4894.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "18769", + "61653", + "38190", + "1822", + "857" + } + }, + [712]= { + ["x"]= 6222.09, + ["y"]= -3627.79, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37616", + "27962", + "31501", + "59556" + } + }, + [713]= { + ["x"]= 6247.75, + ["y"]= -8199.76, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "27819" + } + }, + [714]= { + ["x"]= 6248.55, + ["y"]= -5716.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "44540", + "39814", + "27190", + "25770" + } + }, + [715]= { + ["x"]= 6259.04, + ["y"]= -1878.44, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "47362" + } + }, + [716]= { + ["x"]= 6264.04, + ["y"]= -2582.81, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "1767" + } + }, + [717]= { + ["x"]= 6292.06, + ["y"]= -778.435, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "20675", + "19210", + "43316", + "47065" + } + }, + [718]= { + ["x"]= 6292.06, + ["y"]= -278.035, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "54868", + "39938", + "45360", + "57030", + "9535", + "27865" + } + }, + [719]= { + ["x"]= 6293.55, + ["y"]= 245.085, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "18707", + "1427", + "51235", + "19725" + } + }, + [720]= { + ["x"]= 6293.55, + ["y"]= 602.755, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34317", + "4481", + "56646", + "25511" + } + }, + [721]= { + ["x"]= 6401.58, + ["y"]= 2129.71, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "63843" + } + }, + [722]= { + ["x"]= 6406.54, + ["y"]= -2222.54, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "7112" + } + }, + [723]= { + ["x"]= 6408.53, + ["y"]= 5574.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "16882", + "43491", + "14400", + "41420", + "9393" + } + }, + [724]= { + ["x"]= 6504.09, + ["y"]= 3271.25, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33196", + "13202", + "17171", + "44179", + "43385", + "58474" + } + }, + [725]= { + ["x"]= 6511.65, + ["y"]= 989.835, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56814", + "46694", + "43457", + "11850", + "17608", + "38568" + } + }, + [726]= { + ["x"]= 6609.3, + ["y"]= -6224.5, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "34763", + "30110", + "42907", + "53013", + "42361" + } + }, + [727]= { + ["x"]= 6693.21, + ["y"]= 3983.05, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48660", + "50150", + "45436", + "64878", + "30969", + "32477", + "36281" + } + }, + [728]= { + ["x"]= 6693.21, + ["y"]= 4667.13, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "32555" + } + }, + [729]= { + ["x"]= 6711.3, + ["y"]= -5797.25, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36858" + } + }, + [730]= { + ["x"]= 6711.3, + ["y"]= -5042.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "61981", + "63861", + "60405", + "25757", + "47507", + "49929" + } + }, + [731]= { + ["x"]= 6805.63, + ["y"]= -4419.19, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "25789", + "54452", + "43328", + "59699", + "15852", + "16141" + } + }, + [732]= { + ["x"]= 6834.36, + ["y"]= 2130.82, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "14292", + "38348", + "16079", + "21758", + "60735", + "48614" + } + }, + [733]= { + ["x"]= 6836.94, + ["y"]= 1557.78, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "37619", + "64235", + "24133", + "27371" + } + }, + [734]= { + ["x"]= 6836.94, + ["y"]= 2693.91, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "19858", + "36221", + "9206", + "44316" + } + }, + [735]= { + ["x"]= 6872.46, + ["y"]= -6076.38, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23616" + } + }, + [736]= { + ["x"]= 6872.67, + ["y"]= -3422.68, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "32176", + "60259", + "11018", + "1215" + } + }, + [737]= { + ["x"]= 6872.67, + ["y"]= -1007.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "38995", + "8012", + "7488", + "8001" + } + }, + [738]= { + ["x"]= 6873.34, + ["y"]= 4959.02, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54922" + } + }, + [739]= { + ["x"]= 6925.46, + ["y"]= -2949.8, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "63228", + "49308", + "10495", + "42804" + } + }, + [740]= { + ["x"]= 6925.46, + ["y"]= -2222.54, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "53213", + "3314", + "27656", + "61834", + "42443", + "25411", + "3537" + } + }, + [741]= { + ["x"]= 6925.46, + ["y"]= -1523.45, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "40362", + "25260", + "27788", + "292" + } + }, + [742]= { + ["x"]= 7120.69, + ["y"]= -4006.48, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "6615", + "5022", + "37532", + "44339" + } + }, + [743]= { + ["x"]= 7133, + ["y"]= -5923.23, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64042", + "21693", + "5613", + "38539", + "54713" + } + }, + [744]= { + ["x"]= 7145.53, + ["y"]= 3423.75, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "64769", + "23449", + "36849", + "23886", + "7263", + "1205" + } + }, + [745]= { + ["x"]= 7180.42, + ["y"]= 1008.58, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "29454", + "62744", + "18770", + "63251", + "49820" + } + }, + [746]= { + ["x"]= 7191, + ["y"]= 6.795, + ["orbits"]= { + 4 + }, + ["nodes"]= { + "1461" + } + }, + [747]= { + ["x"]= 7201.69, + ["y"]= -4559.48, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "53456" + } + }, + [748]= { + ["x"]= 7202.4, + ["y"]= -5285.82, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "2959", + "30427", + "56186", + "11162", + "54887" + } + }, + [749]= { + ["x"]= 7219.81, + ["y"]= 4667.13, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "53574", + "26002", + "7659", + "25738", + "62759" + } + }, + [750]= { + ["x"]= 7253.25, + ["y"]= -243.625, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "31585", + "3676", + "17790", + "20736" + } + }, + [751]= { + ["x"]= 7258.01, + ["y"]= 267.535, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "15697", + "2413", + "30826", + "31438", + "11800", + "52030" + } + }, + [752]= { + ["x"]= 7267.19, + ["y"]= 1791.65, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "9469", + "59220", + "65502", + "31039" + } + }, + [753]= { + ["x"]= 7267.19, + ["y"]= 2473.92, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "57080", + "42104", + "49621", + "58302" + } + }, + [754]= { + ["x"]= 7286.55, + ["y"]= -769.775, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "5802", + "3424", + "1405", + "31197" + } + }, + [755]= { + ["x"]= 7364.98, + ["y"]= -3542.49, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "35255" + } + }, + [756]= { + ["x"]= 7407.03, + ["y"]= 669.295, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "13375", + "65427", + "45202", + "20953", + "49391" + } + }, + [757]= { + ["x"]= 7407.61, + ["y"]= -2872.02, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "17749", + "18747", + "52789", + "10414" + } + }, + [758]= { + ["x"]= 7407.61, + ["y"]= -1725.33, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35851", + "60592", + "47484", + "26148" + } + }, + [759]= { + ["x"]= 7469.86, + ["y"]= -4880.42, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "24426" + } + }, + [760]= { + ["x"]= 7684, + ["y"]= -3341.7, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18182" + } + }, + [761]= { + ["x"]= 7684, + ["y"]= -2222.56, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "56295" + } + }, + [762]= { + ["x"]= 7684, + ["y"]= -1088.96, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "46277" + } + }, + [763]= { + ["x"]= 7684, + ["y"]= -507.985, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "49900" + } + }, + [764]= { + ["x"]= 7684, + ["y"]= 939.335, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "36287" + } + }, + [765]= { + ["x"]= 7684, + ["y"]= 2136.2, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "20807" + } + }, + [766]= { + ["x"]= 7684, + ["y"]= 3504.79, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "12412" + } + }, + [767]= { + ["x"]= 7684, + ["y"]= 4234.94, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "48508", + "42632", + "27444", + "4750", + "58288", + "63618", + "15290" + } + }, + [768]= { + ["x"]= 7797.69, + ["y"]= -4559.48, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "27872", + "40409", + "4546", + "9055", + "33777", + "1655", + "8027", + "2260", + "35334", + "29549", + "61689" + } + }, + [769]= { + ["x"]= 7922.19, + ["y"]= 668.065, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "54307" + } + }, + [770]= { + ["x"]= 7941.78, + ["y"]= -247.355, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "23407" + } + }, + [771]= { + ["x"]= 8003.21, + ["y"]= 1686.6, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "10840", + "35086", + "13935", + "3571" + } + }, + [772]= { + ["x"]= 8003.21, + ["y"]= 2581.71, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "56519", + "655", + "45246", + "61573", + "6264", + "37425" + } + }, + [773]= { + ["x"]= 8038.44, + ["y"]= 47.815, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "32763", + "23334", + "6797" + } + }, + [774]= { + ["x"]= 8151.34, + ["y"]= -1088.96, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "4269", + "55880", + "32681", + "32657" + } + }, + [775]= { + ["x"]= 8153.54, + ["y"]= -2692.15, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "55414", + "22261", + "56174", + "38864", + "47422", + "44134", + "11489", + "8920", + "36490", + "7634" + } + }, + [776]= { + ["x"]= 8153.54, + ["y"]= -1747.19, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "36225", + "30745", + "49568", + "17908", + "25775", + "5629", + "35384", + "15614", + "54791", + "19050" + } + }, + [777]= { + ["x"]= 8172.15, + ["y"]= -588.985, + ["orbits"]= { + 0, + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "11811", + "28903", + "20127", + "1648", + "31359", + "37785" + } + }, + [778]= { + ["x"]= 8197.29, + ["y"]= -3636.07, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "10429", + "12824", + "45827", + "28753", + "55380", + "30319", + "54574", + "59605", + "54974", + "32432", + "21297" + } + }, + [779]= { + ["x"]= 8291, + ["y"]= 3504.79, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "59151", + "31291", + "12720", + "29856", + "1698", + "1568", + "54354", + "6108", + "56509", + "52213" + } + }, + [780]= { + ["x"]= 8532.18, + ["y"]= 1593.66, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "57006" + } + }, + [781]= { + ["x"]= 8533.09, + ["y"]= 939.335, + ["orbits"]= { + 0, + 2, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "45329", + "7069", + "5826", + "10843", + "33374", + "31222", + "38947", + "21228", + "51953", + "7609" + } + }, + [782]= { + ["x"]= 8533.09, + ["y"]= 2149.06, + ["orbits"]= { + 0, + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "39665", + "38149", + "32514", + "55750", + "2185", + "23912", + "12948", + "51881", + "49459", + "6427" + } + }, + [783]= { + ["x"]= 8807.45, + ["y"]= 129.815, + ["isProxy"]= true, + ["orbits"]= { + 3 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "6910", + "49684", + "33753", + "48132" + } + }, + [784]= { + ["x"]= 9213.95, + ["y"]= -574.265, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "35926", + "18436" + } + }, + [785]= { + ["x"]= 9213.95, + ["y"]= 833.895, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "50179", + "22748" + } + }, + [786]= { + ["x"]= 9452.95, + ["y"]= -1070.22, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "36414" + } + }, + [787]= { + ["x"]= 9523.96, + ["y"]= 1288.85, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "56439" + } + }, + [788]= { + ["x"]= 9620.45, + ["y"]= 129.815, + ["isProxy"]= true, + ["orbits"]= { + 2 + }, + ["background"]= { + ["image"]= "PSGroupBackground2" + }, + ["nodes"]= { + "33833", + "11150" + } + }, + [789]= { + ["x"]= 10169.5, + ["y"]= 88.815, + ["isProxy"]= true, + ["orbits"]= { + 1 + }, + ["background"]= { + ["image"]= "PSGroupBackground1" + }, + ["nodes"]= { + "10643" + } + }, + [790]= { + ["x"]= 9755.0, + ["y"]= -5200.0, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "21264" + } + }, + [791]= { + ["x"]= 9920.0, + ["y"]= -5104.7300000000005, + ["orbits"]= { + 0 + }, + ["nodes"]= { + "18335" + } + }, + [792]= { + ["x"]= 10200.0, + ["y"]= -5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "12850", + "19598", + "33954", + "1945", + "43215", + "28782", + "51402", + "29844", + "46676", + "21192", + "4242", + "47531", + "55686", + "48239", + "9014", + "6064", + "19083", + "23024", + "58229" + } + }, + [793]= { + ["x"]= 10200.0, + ["y"]= 3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "36242", + "6038", + "32662", + "40813", + "20480", + "1697", + "51101", + "14156", + "63293", + "32640", + "65296", + "40631", + "61805", + "59800", + "64111" + } + }, + [794]= { + ["x"]= 10200, + ["y"]= -3700.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "48999", + "37191", + "41891", + "2336", + "23225", + "13219", + "58454", + "32947", + "55867", + "63908", + "28884", + "19587", + "29825", + "35598", + "55236" + } + }, + [795]= { + ["x"]= 10200.0, + ["y"]= -2200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "64842", + "28535", + "25167", + "39834", + "869", + "38918", + "16212", + "47778", + "62067", + "57175", + "64785", + "16940", + "65085", + "1953", + "41081", + "5087", + "63135", + "14103", + "47366", + "51462", + "26446", + "18635" + } + }, + [796]= { + ["x"]= 10200.0, + ["y"]= 5200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "53421", + "33645", + "15550", + "55509", + "2060", + "58650", + "61761", + "63940", + "29662", + "40104", + "36958", + "31364", + "24214", + "19488", + "5926", + "16848", + "27536", + "4849", + "12146", + "11597", + "24432", + "58427" + } + }, + [797]= { + ["x"]= 10200.0, + ["y"]= 2200.0, + ["orbits"]= { + 0, + 2, + 3, + 4 + }, + ["background"]= { + ["image"]= "PSGroupBackground3", + ["isHalfImage"]= true + }, + ["nodes"]= { + "53086", + "44482", + "55985", + "62136", + "24848", + "1729", + "2872", + "56134", + "64028", + "22852", + "5443", + "23169", + "59837", + "61627", + "5082", + "26067", + "28995", + "45313", + "56856" + } + }, + [44472]= { + ["x"]= 0, + ["y"]= -10850, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 27602 + } + }, + [50933]= { + ["x"]= -11400, + ["y"]= -3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 57568 + } + }, + [25519]= { + ["x"]= -11400, + ["y"]= 3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 52435 + } + }, + [60495]= { + ["x"]= -8800, + ["y"]= 8200, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 19355 + } + }, + [63033]= { + ["x"]= 0, + ["y"]= 10800, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 42469 + } + }, + [56600]= { + ["x"]= 11200, + ["y"]= 3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 18054 + } + }, + [37841]= { + ["x"]= 11200, + ["y"]= -3700, + ["orbits"]= { + 0 + }, + ["nodes"]= { + 57331 + } + } + }, + ["nodes"]= { + ["root"]= { + ["group"]= 0, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50459", + "47175", + "50986", + "61525", + "54447", + "44683", + "58833", + "9414", + "42328", + "10622", + "17297", + "542", + "9086", + "10861", + "9920", + "31958", + "37815", + "41389", + "9939", + "63630", + "8133", + "7600", + "35214" + }, + ["in"]= {} + }, + [28609]= { + ["skill"]= 28609, + ["name"]= "Conjoined Spire", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampStygianSpires.png", + ["isNotable"]= true, + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "All other Summoned Totems die when you Summon a Totem", + "Skills used by Totems have 5% more Area of Effect per maximum number of Summoned Totems", + "Skills used by Totems deal 10% more Damage per maximum number of Summoned Totems", + "Totems have 5% more Life per maximum number of Summoned Totems" + }, + ["group"]= 1, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25703" + } + }, + [16287]= { + ["skill"]= 16287, + ["name"]= "Bone Feeders", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampAbyssalFiends.png", + ["isNotable"]= true, + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 2, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58999" + } + }, + [52349]= { + ["skill"]= 52349, + ["name"]= "The King's Contempt", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargeint.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Discipline has 50% increased Aura Effect while at Minimum Power Charges", + "Wrath has 50% increased Aura Effect while at maximum Power Charges" + }, + ["group"]= 3, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10696" + } + }, + [43376]= { + ["skill"]= 43376, + ["name"]= "The King's Heritage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargestr.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Determination has 50% increased Aura Effect while at Minimum Endurance Charges", + "Anger has 50% increased Aura Effect while at maximum Endurance Charges" + }, + ["group"]= 4, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10696" + } + }, + [57472]= { + ["skill"]= 57472, + ["name"]= "Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLich.png", + ["isNotable"]= true, + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 5, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "35380", + "19208", + "14588", + "64963" + }, + ["in"]= { + "2643" + } + }, + [25703]= { + ["skill"]= 25703, + ["name"]= "Totem Damage and Life ", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Totem Damage", + "15% increased Totem Life" + }, + ["group"]= 5, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "28609" + }, + ["in"]= { + "35214" + } + }, + [58999]= { + ["skill"]= 58999, + ["name"]= "Curse Effect on Self", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "25% reduced Effect of Curses on you" + }, + ["group"]= 5, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "16287" + }, + ["in"]= { + "35214" + } + }, + [2643]= { + ["skill"]= 2643, + ["name"]= "Debuff Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AbyssNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["stats"]= { + "Debuffs on you expire 15% faster" + }, + ["group"]= 5, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "57472" + }, + ["in"]= { + "35214" + } + }, + [35214]= { + ["skill"]= 35214, + ["name"]= "Abyssal Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Abyssal", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 5, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58999", + "2643", + "25703" + }, + ["in"]= {} + }, + [21785]= { + ["skill"]= 21785, + ["name"]= "The King's Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlinechargedex.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grace has 50% increased Aura Effect while at Minimum Frenzy Charges", + "Hatred has 50% increased Aura Effect while at maximum Frenzy Charges" + }, + ["group"]= 6, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10696" + } + }, + [27121]= { + ["skill"]= 27121, + ["name"]= "Farric Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable4.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Raised Beast Spectres have Farrul's Farric Presence", + "Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area" + }, + ["reminderText"]= { + "(Farrul's Farric Presence is an Aura which grants 80% increased Accuracy Rating, 120% increased Critical Strike Chance and Take no Extra Damage from Critical Hits)" + }, + ["group"]= 7, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15739" + } + }, + [7442]= { + ["skill"]= 7442, + ["name"]= "Fertile Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable5.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Raised Beast Spectres have Farrul's Fertile Presence", + "Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area" + }, + ["reminderText"]= { + "(Farrul's Fertile Presence is an Aura which grants 100% increased Damage, Regenerate 3% of Life per second and Cannot be Stunned)" + }, + ["group"]= 8, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15739" + } + }, + [64963]= { + ["skill"]= 64963, + ["name"]= "Searching Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode3.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "While you have at least 3 Searching Eye Jewels socketed:", + "Targets affected by Maim you inflict cannot deal Critical Strikes", + "Maim you inflict causes Hits against the target to have 20% more Critical Strike Chance" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + }, + ["group"]= 9, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [19208]= { + ["skill"]= 19208, + ["name"]= "Murderous Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode2.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= {}, + ["group"]= 10, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [9437]= { + ["skill"]= 9437, + ["name"]= " Precursor's Release", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["stats"]= { + "Action Speed cannot be modified to below Base Value if you have Equipped Boots with no Socketed Gems", + "Cannot be Stunned if you have an Equipped Helmet with no Socketed Gems", + "Elemental Ailments cannot be inflicted on you if you have an Equipped Body Armour with no Socketed Gems", + "Take no Extra Damage from Critical Strikes if you have Equipped Gloves with no Socketed Gems" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 11, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "41464" + } + }, + [10696]= { + ["skill"]= 10696, + ["name"]= "Legacy of the King", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 11, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "52349", + "43376", + "21785" + }, + ["in"]= { + "16350" + } + }, + [41464]= { + ["skill"]= 41464, + ["name"]= "Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Defences" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 11, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9437" + }, + ["in"]= { + "542" + } + }, + [16350]= { + ["skill"]= 16350, + ["name"]= "Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/AulBloodlineNode.png", + ["ascendancyName"]= "Aul", + ["isBloodline"]= true, + ["stats"]= { + "30% increased Endurance, Frenzy and Power Charge Duration" + }, + ["group"]= 11, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "10696" + }, + ["in"]= { + "542" + } + }, + [542]= { + ["skill"]= 542, + ["name"]= "Aul Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Aul", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 11, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41464", + "16350" + }, + ["in"]= {} + }, + [37670]= { + ["skill"]= 37670, + ["name"]= "Wild Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNotable6.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Raised Beast Spectres have Farrul's Wild Presence", + "Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area" + }, + ["reminderText"]= { + "(Farrul's Wild Presence is an Aura which grants 20% increased Attack, Cast and Movement Speed and prevents Action Speed from being lowered below the Base Value)" + }, + ["group"]= 12, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15739" + } + }, + [35011]= { + ["skill"]= 35011, + ["name"]= "Huntleader", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "Trigger Level 20 Summon Spectral Tiger on Critical Strike" + }, + ["reminderText"]= { + "(Summons a spectral tiger companion that attacks nearby enemies and dies after a duration. Each spectral tiger grants you a buff that increases Critical Strike Chance, and increases Attack and Cast Speed. If you have the maximum number of them, refreshes the duration and life of an existing one instead)" + }, + ["group"]= 13, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "41387" + } + }, + [48251]= { + ["skill"]= 48251, + ["name"]= "Primal Roar", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "4% increased Attack Speed per Minion, up to a maximum of 80%", + "Minions deal 80% increased Damage if you have Warcried Recently" + }, + ["group"]= 13, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "34952" + } + }, + [15739]= { + ["skill"]= 15739, + ["name"]= "Farrul's Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/FarrulNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 13, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "7442", + "37670", + "27121" + }, + ["in"]= { + "31878" + } + }, + [41387]= { + ["skill"]= 41387, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 25% increased Damage" + }, + ["group"]= 13, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35011" + }, + ["in"]= { + "10861" + } + }, + [34952]= { + ["skill"]= 34952, + ["name"]= "Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Warcry Speed" + }, + ["group"]= 13, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "48251" + }, + ["in"]= { + "10861" + } + }, + [31878]= { + ["skill"]= 31878, + ["name"]= "Maximum Spectres and Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BestiaryNode1.png", + ["ascendancyName"]= "Farrul", + ["isBloodline"]= true, + ["stats"]= { + "Minions have 25% increased maximum Life", + "Maximum number of Raised Spectres is 1" + }, + ["group"]= 13, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15739" + }, + ["in"]= { + "10861" + } + }, + [10861]= { + ["skill"]= 10861, + ["name"]= "Farrul Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Farrul", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 13, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41387", + "31878", + "34952" + }, + ["in"]= {} + }, + [14588]= { + ["skill"]= 14588, + ["name"]= "Hypnotic Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode4.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "While you have at least 3 Hypnotic Eye Jewels socketed:", + "Arcane Surge also grants 20% of Damage taken Recouped as Mana to you", + "Arcane Surge also grants 20% increased Mana Cost Efficiency to you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 14, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [35380]= { + ["skill"]= 35380, + ["name"]= "Ghastly Gaze of the Lich", + ["icon"]= "Art/2DArt/SkillIcons/passives/AbyssRevampGazeoftheLichNode1.png", + ["ascendancyName"]= "Abyssal", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "While you have at least 3 Ghastly Eye Jewels socketed:", + "Unholy Might you grant also causes target's Damage to Penetrate 10% Chaos Resistance", + "Unholy Might you grant also applies 20% Increased Effect of Withered" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)", + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 15, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57472" + } + }, + [14190]= { + ["skill"]= 14190, + ["name"]= " Death Offering", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualAid.png", + ["isNotable"]= true, + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "50% increased effect of Offerings", + "Offerings Kill affected Damagable targets when Offering Duration expires" + }, + ["group"]= 16, + ["orbit"]= 3, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "38886" + } + }, + [59826]= { + ["skill"]= 59826, + ["name"]= "Umbral Army", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "2% increased Attack and Cast Speed per Summoned Raging Spirit", + "15% increased Attack Damage per Raised Zombie", + "10% increased Defences per Raised Spectre", + "2% increased Movement Speed per Summoned Phantasm", + "6% increased Spell Damage per Summoned Skeleton" + }, + ["group"]= 16, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "17570" + } + }, + [17309]= { + ["skill"]= 17309, + ["name"]= "Prolonged Servitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualCommand.png", + ["isNotable"]= true, + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 20% more Damage while they are on Low Life", + "Minions cannot be Killed, but die 6 seconds after being reduced to 1 Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + }, + ["group"]= 16, + ["orbit"]= 3, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "44848" + } + }, + [38886]= { + ["skill"]= 38886, + ["name"]= "Offering Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png", + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Offering Skills have 20% increased Duration" + }, + ["group"]= 16, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "14190" + }, + ["in"]= { + "9086" + } + }, + [17570]= { + ["skill"]= 17570, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png", + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Minions have 25% increased maximum Life" + }, + ["group"]= 16, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "59826" + }, + ["in"]= { + "9086" + } + }, + [44848]= { + ["skill"]= 44848, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LichNode1.png", + ["ascendancyName"]= "Catarina", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 25% increased Damage" + }, + ["group"]= 16, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "17309" + }, + ["in"]= { + "9086" + } + }, + [9086]= { + ["skill"]= 9086, + ["name"]= "Catarina Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Catarina", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 16, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38886", + "44848", + "17570" + }, + ["in"]= {} + }, + [17080]= { + ["skill"]= 17080, + ["name"]= "Tide Caller", + ["icon"]= "Art/2DArt/SkillIcons/passives/TideCaller.png", + ["isNotable"]= true, + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "Trigger Level 20 Surging Torrent when you cast an Elemental Spell", + "Drop Brine Ground while moving, lasting 4 seconds" + }, + ["reminderText"]= { + "(A torrent rushes upwards after a short delay, dealing damage in an area while leaving Brine Ground)", + "(Enemies on your Brine Ground have 30% increased effect of Lightning and Cold Ailments on them and have 25% reduced Armour and Evasion Rating. Allies on your Brine Ground gain 10% of Physical Damage as extra Cold Damage and as extra Lightning Damage)" + }, + ["group"]= 17, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34977" + } + }, + [13362]= { + ["skill"]= 13362, + ["name"]= "Salt and Scale", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "Inflict Barnacles on nearby Enemies every second" + }, + ["reminderText"]= { + "(Enemies affected by Barnacles Convert 5% of Physical Damage to Cold and have 5% increased duration of Chill and Freeze on them. Each instance of Barnacles lasts 30 seconds and can be inflicted up to 10 times)" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "19078" + } + }, + [51685]= { + ["skill"]= 51685, + ["name"]= "Brine Rot", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrineRot.png", + ["isNotable"]= true, + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "Triggers Drowning Domain when Allocated" + }, + ["reminderText"]= { + "(30% of Damage over Time taken by Enemies within the Drowning Domain is inflicted as Brine Rot. Enemies lose life equal to stored Brine Rot when they leave the Drowning Domain)" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "39381" + } + }, + [34977]= { + ["skill"]= 34977, + ["name"]= "Cold Damage ", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png", + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Cold Damage" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 2, + ["out"]= { + "17080" + }, + ["in"]= { + "7600" + } + }, + [19078]= { + ["skill"]= 19078, + ["name"]= "Cold Resistance and Effect of Cold Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png", + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "+10% to Cold Resistance", + "10% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "13362" + }, + ["in"]= { + "7600" + } + }, + [39381]= { + ["skill"]= 39381, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrustaceousGrowth.png", + ["ascendancyName"]= "Brinerot", + ["isBloodline"]= true, + ["stats"]= { + "+8% to Damage over Time Multiplier" + }, + ["group"]= 18, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "51685" + }, + ["in"]= { + "7600" + } + }, + [7600]= { + ["skill"]= 7600, + ["name"]= "Velka Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Brinerot", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 18, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "34977", + "39381", + "19078" + }, + ["in"]= {} + }, + [47543]= { + ["skill"]= 47543, + ["name"]= "The Primal Owl", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWisps.png", + ["isNotable"]= true, + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Unsealed Spells gain 5% more Damage each time their effects Reoccur", + "Skills supported by Unleash have +3 to maximum number of Seals" + }, + ["group"]= 19, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "36393" + } + }, + [18519]= { + ["skill"]= 18519, + ["name"]= "The Wild Bear", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWisps.png", + ["isNotable"]= true, + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "+20 to Maximum Rage", + "Lose all Rage on reaching Maximum Rage and gain Wild Savagery\nfor 1 second per 10 Rage lost this way" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Wild Savagery grants 100% increased Physical Damage, 10% increased Action Speed, Hits ignore Enemy Physical Damage Reduction and Cannot be Stunned)" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "12542" + } + }, + [32216]= { + ["skill"]= 32216, + ["name"]= "The Vivid Cat", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWisps.png", + ["isNotable"]= true, + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Elusive has 50% chance to be removed from you at 100% effect", + "50% increased Effect of your Marks while Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 19, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "63834" + } + }, + [36393]= { + ["skill"]= 36393, + ["name"]= "Seal gain frequency", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MorePrimalWispsSmall.png", + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Skills Supported by Unleash have 20% increased Seal gain frequency" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "47543" + }, + ["in"]= { + "41389" + } + }, + [12542]= { + ["skill"]= 12542, + ["name"]= "Rage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreWildWispsSmall.png", + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "Gain 2 Rage on Attack Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "18519" + }, + ["in"]= { + "41389" + } + }, + [63834]= { + ["skill"]= 63834, + ["name"]= "Elusive effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/MoreVividWispsSmall.png", + ["ascendancyName"]= "Oshabi", + ["isBloodline"]= true, + ["stats"]= { + "20% increased Elusive Effect" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 19, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "32216" + }, + ["in"]= { + "41389" + } + }, + [41389]= { + ["skill"]= 41389, + ["name"]= "Oshabi Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Oshabi", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 19, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36393", + "63834", + "12542" + }, + ["in"]= {} + }, + [8138]= { + ["skill"]= 8138, + ["name"]= "Boon of the Mountain", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune3.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "50% less Damage Taken from Damage over Time while you have Unbroken Ward" + }, + ["group"]= 20, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58438" + }, + ["in"]= {} + }, + [40953]= { + ["skill"]= 40953, + ["name"]= "Boon of the River", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune2.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "5% chance to Restore your Ward on Hit" + }, + ["group"]= 21, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58438" + }, + ["in"]= {} + }, + [48816]= { + ["skill"]= 48816, + ["name"]= "Boon of the Sun", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothRune1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "30% faster Restoration of Ward per Enemy Hit taken Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 22, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58438" + }, + ["in"]= {} + }, + [43902]= { + ["skill"]= 43902, + ["name"]= "The Unseen Hand", + ["icon"]= "Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "+1 Ring Slot" + }, + ["group"]= 23, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "44903", + "12354", + "46649" + } + }, + [52553]= { + ["skill"]= 52553, + ["name"]= "Unlight Silhouette", + ["icon"]= "Art/2DArt/SkillIcons/passives/RitualBloodLineNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Skills gain Added Chaos Damage equal to 25% of Life Cost, if Life Cost is not higher than the maximum you could spend", + "Skills gain a Base Life Cost equal to 100% of Base Mana Cost" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "48836" + } + }, + [44903]= { + ["skill"]= 44903, + ["name"]= "Toad's Price", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Unaffected by Poison", + "Utility Flasks are Disabled" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "43902" + }, + ["in"]= { + "9920" + } + }, + [12354]= { + ["skill"]= 12354, + ["name"]= "Serpent's Price", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Unaffected by Curses", + "Can't use Amulets" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "43902" + }, + ["in"]= { + "9920" + } + }, + [46649]= { + ["skill"]= 46649, + ["name"]= "Beetle's Price", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "Unaffected by Bleeding", + "Can't use Belts" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 23, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "43902" + }, + ["in"]= { + "9920" + } + }, + [48836]= { + ["skill"]= 48836, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/RitualBloodlineNode.png", + ["ascendancyName"]= "KingInTheMists", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 23, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "52553" + }, + ["in"]= { + "9920" + } + }, + [9920]= { + ["skill"]= 9920, + ["name"]= "Nameless Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "KingInTheMists", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 23, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44903", + "12354", + "46649", + "48836" + }, + ["in"]= {} + }, + [32265]= { + ["skill"]= 32265, + ["name"]= "Enhanced Starlight", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "Damage taken bypasses Unbroken Ward if the Hit deals less Damage than 15% of Ward", + "70% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "63020" + } + }, + [10916]= { + ["skill"]= 10916, + ["name"]= "Volatile Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "Trigger Level 20 Ward Shatter when your Ward Breaks" + }, + ["reminderText"]= { + "(Explodes when your Ward is broken, dealing Physical Spell Damage around you equal to a percentage of your Ward and inflicting Enervation on Hit, a debuff that lowers Movement Speed by 20% and prevents Life and Energy Shield Recovery for 4 seconds)" + }, + ["group"]= 24, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "25187" + }, + ["in"]= {} + }, + [58438]= { + ["skill"]= 58438, + ["name"]= "Runic Boon", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BloodLineOlrothNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 24, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "13988" + }, + ["in"]= { + "8138", + "40953", + "48816" + } + }, + [63020]= { + ["skill"]= 63020, + ["name"]= "Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32265" + }, + ["in"]= { + "37815" + } + }, + [25187]= { + ["skill"]= 25187, + ["name"]= "Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "10916", + "37815" + } + }, + [13988]= { + ["skill"]= 13988, + ["name"]= "Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/ExpeditionNode1.png", + ["ascendancyName"]= "Olroth", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Ward from Equipped Armour Items" + }, + ["group"]= 24, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "58438", + "37815" + } + }, + [37815]= { + ["skill"]= 37815, + ["name"]= "Olroth Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Olroth", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 24, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63020", + "13988", + "25187" + }, + ["in"]= {} + }, + [30061]= { + ["skill"]= 30061, + ["name"]= "You're the crazy one!", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 1 Embrace Madness Skill", + "While affected by Glorious Madness, inflict Mania on nearby Enemies every second" + }, + ["reminderText"]= { + "(Grants Glorious Madness. While under Glorious Madness gain a random Touched Debuff every 2 seconds. Using this skill again will remove Glorious Madness and the Touched Debuffs it inflicts, but you will be unable to Embrace Madness again until the cooldown expires)", + "(Mania applies 4% increased Damage taken, 2% reduced Action Speed and 10% reduced Life and Energy Shield Recovery Rate for 15 seconds, and can be inflicted up to 15 times)" + }, + ["group"]= 25, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "34442" + } + }, + [33670]= { + ["skill"]= 33670, + ["name"]= "It wasn't me!", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Misty Reflection Skill" + }, + ["reminderText"]= { + "(Dash backwards, leaving a short-lived mist copy of yourself that Taunts nearby Enemies for a short duration. The copy can be damaged by Enemies, and copies that are killed by an Enemy will apply a debuff in an area that makes affected targets take 30% increased Damage and deal 30% less Damage for 4 seconds)" + }, + ["group"]= 25, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "46704" + } + }, + [52408]= { + ["skill"]= 52408, + ["name"]= "That didn't happen!", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Take 40% less Damage from Hits", + "Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit", + "Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no effect" + }, + ["group"]= 25, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "39486" + } + }, + [34442]= { + ["skill"]= 34442, + ["name"]= "Debuff Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png", + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "Debuffs on you expire 15% faster" + }, + ["group"]= 25, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "30061" + }, + ["in"]= { + "9939" + } + }, + [46704]= { + ["skill"]= 46704, + ["name"]= "Cooldown Recovery Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png", + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "15% increased Cooldown Recovery Rate" + }, + ["group"]= 25, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33670" + }, + ["in"]= { + "9939" + } + }, + [39486]= { + ["skill"]= 39486, + ["name"]= "Life Recovery rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/DeliriumNode1.png", + ["ascendancyName"]= "Delirious", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Life Recovery rate" + }, + ["group"]= 25, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52408" + }, + ["in"]= { + "9939" + } + }, + [9939]= { + ["skill"]= 9939, + ["name"]= "Delirious", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Delirious", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 25, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "34442", + "46704", + "39486" + }, + ["in"]= {} + }, + [27869]= { + ["skill"]= 27869, + ["name"]= "Bitter Heresy", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "Create Profane Ground instead of Consecrated Ground", + "Profane Ground you create inflicts Malediction on Enemies", + "Profane Ground you create also affects you and your Allies, granting Chaotic Might" + }, + ["reminderText"]= { + "(Hits against Enemies on Profane Ground have 100% increased Critical Strike Chance, and Curses have 10% increased Effect on them)", + "(Malediction causes 10% reduced Damage dealt and 10% increased Damage taken)", + "(Chaotic Might grants 30% of Physical Damage as extra Chaos Damage)" + }, + ["group"]= 26, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "36020" + } + }, + [47767]= { + ["skill"]= 47767, + ["name"]= "Sinner Saint", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "67% of Lightning Damage Converted to Chaos Damage", + "67% of Cold Damage Converted to Chaos Damage", + "67% of Fire Damage Converted to Chaos Damage" + }, + ["group"]= 26, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "8638" + } + }, + [3872]= { + ["skill"]= 3872, + ["name"]= "Farewell to Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "Herald Skills have 2% more Buff Effect for every 1% of Maximum Mana they Reserve", + "Herald Skills and Minions from Herald Skills deal 1% more Damage for every 1% of Maximum Life those Skills Reserve" + }, + ["group"]= 26, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "32740" + } + }, + [36020]= { + ["skill"]= 36020, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png", + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Effect of your Curses" + }, + ["group"]= 26, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27869" + }, + ["in"]= { + "31958" + } + }, + [8638]= { + ["skill"]= 8638, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png", + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Chaos Damage" + }, + ["group"]= 26, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "47767" + }, + ["in"]= { + "31958" + } + }, + [32740]= { + ["skill"]= 32740, + ["name"]= "Herald and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/LyciaNode1.png", + ["ascendancyName"]= "Lycia", + ["isBloodline"]= true, + ["stats"]= { + "Herald Skills deal 20% increased Damage", + "Minions deal 20% increased Damage while you are affected by a Herald" + }, + ["group"]= 26, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "3872" + }, + ["in"]= { + "31958" + } + }, + [31958]= { + ["skill"]= 31958, + ["name"]= "Lycia Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Lycia", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 26, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36020", + "8638", + "32740" + }, + ["in"]= {} + }, + [61092]= { + ["skill"]= 61092, + ["name"]= "Corruption's Embrace", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["stats"]= { + "You have Shepherd of Souls if at least 4 Corrupted Items are Equipped", + "You have Everlasting Sacrifice if at least 6 Corrupted Items are Equipped", + "You have Sacrifice of Blood if at least 8 Corrupted Items are Equipped" + }, + ["reminderText"]= { + "(Vaal Non-Aura Skills require 80% less Souls. Vaal Non-Aura Skills require 100% increased Souls per Vaal Skill used in the past 8 seconds)", + "(When you reach full Energy Shield, Sacrifice all Energy Shield to gain +5% to all Maximum Resistances for 4 seconds)", + "(Life Recovery from Regeneration grants Blood Barrier while on Full Life. Maximum Blood Barrier is equal to 30% of your Maximum Life. Damage from Hits is taken from Blood Barrier before your Life or Energy Shield. 50% less Life Regeneration Rate)" + }, + ["group"]= 27, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "60118" + } + }, + [57290]= { + ["skill"]= 57290, + ["name"]= "Deceitful Servant", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 27, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "49785", + "30271", + "27737" + }, + ["in"]= { + "7403" + } + }, + [60118]= { + ["skill"]= 60118, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 27, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "61092" + }, + ["in"]= { + "17297" + } + }, + [7403]= { + ["skill"]= 7403, + ["name"]= "Vaal Souls", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNode1.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["stats"]= { + "Gain 1 Vaal Soul per second" + }, + ["group"]= 27, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "57290" + }, + ["in"]= { + "17297" + } + }, + [17297]= { + ["skill"]= 17297, + ["name"]= "Chaos Bloodline", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Trialmaster", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 27, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60118", + "7403" + }, + ["in"]= {} + }, + [5865]= { + ["skill"]= 5865, + ["name"]= "Physical Damage, Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgLeech.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "15% increased Armour", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9271" + }, + ["in"]= { + "29294" + } + }, + [38999]= { + ["skill"]= 38999, + ["name"]= "Ancestral Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/Blitz.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Strike Skills also target the previous location they were used" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "8592" + } + }, + [24528]= { + ["skill"]= 24528, + ["name"]= "Crave the Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/CombatFrenzy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Every Rage also grants 1% increased Attack Speed" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "63583", + "42861" + } + }, + [59920]= { + ["skill"]= 59920, + ["name"]= "Aspect of Carnage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/AspectOfCarnage.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "10% increased Damage taken", + "25% more Damage" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "48904" + }, + ["in"]= { + "63673" + } + }, + [63673]= { + ["skill"]= 63673, + ["name"]= "Physical Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "59920" + }, + ["in"]= { + "29294" + } + }, + [29630]= { + ["skill"]= 29630, + ["name"]= "Gore Dancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/CloakedAgony.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "30% of Life Leech is Instant" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "48904" + } + }, + [48904]= { + ["skill"]= 48904, + ["name"]= "Physical Damage, Life Leeched per Second", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgCrit.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "30% increased total Recovery per second from Life Leech", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "29630" + }, + ["in"]= { + "59920" + } + }, + [8592]= { + ["skill"]= 8592, + ["name"]= "Physical Damage, Melee Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "+0.2 metres to Melee Strike Range", + "10% increased Physical Damage" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "38999" + }, + ["in"]= { + "29294" + } + }, + [63583]= { + ["skill"]= 63583, + ["name"]= "Physical Damage, Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Gain 1 Rage on Attack Hit", + "10% increased Physical Damage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "24528" + }, + ["in"]= { + "29294" + } + }, + [42861]= { + ["skill"]= 42861, + ["name"]= "Physical Damage, Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgAttackSpeed.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Gain 1 Rage on Attack Hit", + "10% increased Physical Damage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "24528" + }, + ["in"]= { + "57560" + } + }, + [50024]= { + ["skill"]= 50024, + ["name"]= "Physical Damage, Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DmgWarcry.png", + ["ascendancyName"]= "Berserker", + ["stats"]= { + "20% increased Warcry Speed", + "10% increased Physical Damage" + }, + ["group"]= 28, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "32251" + }, + ["in"]= { + "29294" + } + }, + [32251]= { + ["skill"]= 32251, + ["name"]= "War Bringer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/WarBringer.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Warcries Exert twice as many Attacks" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50024" + } + }, + [57560]= { + ["skill"]= 57560, + ["name"]= "Rite of Ruin", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/RiteOfRuin.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Lose 0.1% of Life per second per Rage while you are not losing Rage", + "50% increased Rage Effect" + }, + ["reminderText"]= { + "(Every Rage has an inherent effect of 1% more Attack Damage, and modifiers can add extra effects to Rage)" + }, + ["group"]= 28, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "42861" + }, + ["in"]= {} + }, + [9271]= { + ["skill"]= 9271, + ["name"]= "Defy Pain", + ["icon"]= "Art/2DArt/SkillIcons/passives/Berserker/DefyPain.png", + ["isNotable"]= true, + ["ascendancyName"]= "Berserker", + ["stats"]= { + "Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no\nmore than once every 0.3 seconds", + "Lose all Defiance when you reach 10 Defiance", + "Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance" + }, + ["group"]= 28, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "5865" + } + }, + [29294]= { + ["skill"]= 29294, + ["name"]= "Berserker", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Berserker", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 28, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50024", + "63673", + "63583", + "8592", + "5865" + }, + ["in"]= { + "47175" + } + }, + [32992]= { + ["skill"]= 32992, + ["name"]= "Armour and Energy Shield, Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldStaves.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "30% increased Block Recovery", + "14% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "39728" + }, + ["in"]= { + "409" + } + }, + [61372]= { + ["skill"]= 61372, + ["name"]= "Harmony of Purpose", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/HarmonyOfPurpose.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Gain a random Shrine buff every 10 seconds" + }, + ["reminderText"]= { + "(Random Shrine buffs have a base duration of 20 seconds)" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "46952" + } + }, + [64768]= { + ["skill"]= 64768, + ["name"]= "Unwavering Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/UnwaveringFaith.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "30% increased Reservation Efficiency of Skills" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "20050" + } + }, + [16745]= { + ["skill"]= 16745, + ["name"]= "Armour and Energy Shield, Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "Minions deal 10% increased Damage" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "19641" + }, + ["in"]= { + "4494" + } + }, + [4494]= { + ["skill"]= 4494, + ["name"]= "Radiant Crusade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Radient Crusade.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Grants Level 20 Summon Sentinel of Radiance Skill", + "10% of Damage from Hits is taken from your Sentinel of Radiance's Life before you" + }, + ["reminderText"]= { + "(Summons a Sentinel of Radiance which follows you and attacks enemies in melee, while burning enemies around it and taking a portion of damage from hits for you. You can only have one Sentinel of Radiance)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "16745" + }, + ["in"]= { + "40010" + } + }, + [40010]= { + ["skill"]= 40010, + ["name"]= "Armour and Energy Shield, Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Minion Damage Armour and Energy Shield.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "Minions deal 10% increased Damage" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "4494" + }, + ["in"]= { + "409" + } + }, + [19641]= { + ["skill"]= 19641, + ["name"]= "Unwavering Crusade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/Unwavering Crusade.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "25% chance to Trigger Level 20 Summon Elemental Relic when you or a nearby Ally Kill an Enemy, or Hit a Rare or Unique Enemy" + }, + ["reminderText"]= { + "(Summons a Relic of a random element that stays near you. Depending on the element chosen, the relic minion will have an Anger, Hatred, or Wrath aura. These relics explode when they die, dealing elemental damage to enemies around them. If you already have a relic of the chosen element, its duration will be refreshed instead of summoning a new one)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 19, + ["out"]= {}, + ["in"]= { + "16745" + } + }, + [5929]= { + ["skill"]= 5929, + ["name"]= "Hallowing Flame Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNode.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "20% increased magnitude of Hallowing Flame you inflict" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "3458" + }, + ["in"]= { + "409" + } + }, + [3458]= { + ["skill"]= 3458, + ["name"]= "Marshal of Divinity", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/GuardianHallowingFlameNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Inflict Hallowing Flame on Melee Hit", + "You can inflict +1 Hallowing Flame on Enemies", + "Gain 10% of Physical Damage as Extra Lightning Damage for each of your Hallowing Flames that have been removed by an allied hit recently, up to 80%" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "5929" + } + }, + [55146]= { + ["skill"]= 55146, + ["name"]= "Time of Need", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/TimeOfNeed.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Every 4 seconds, remove Curses and Ailments from you", + "Every 4 seconds, Regenerate 100% of Life over one second" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "32364" + } + }, + [42264]= { + ["skill"]= 42264, + ["name"]= "Radiant Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/RadientFaith.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "Grants Armour equal to 25% of your Reserved Mana to you and nearby Allies", + "Grants maximum Energy Shield equal to 10% of your Reserved Mana to\nyou and nearby Allies" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "20050" + }, + ["in"]= { + "37419" + } + }, + [39728]= { + ["skill"]= 39728, + ["name"]= "Bastion of Hope", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ShieldMastery.png", + ["isNotable"]= true, + ["ascendancyName"]= "Guardian", + ["stats"]= { + "If you've Attacked Recently, you and nearby Allies have +15% Chance to Block Attack Damage", + "If you've Cast a Spell Recently, you and nearby Allies have +15% Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "32992" + } + }, + [32364]= { + ["skill"]= 32364, + ["name"]= "Armour and Energy Shield, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldDefenseFromShields.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "55146" + }, + ["in"]= { + "409" + } + }, + [37419]= { + ["skill"]= 37419, + ["name"]= "Armour and Energy Shield, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 29, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "42264" + }, + ["in"]= { + "409" + } + }, + [46952]= { + ["skill"]= 46952, + ["name"]= "Armour and Energy Shield, Shrine Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyMeleeDamage.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "10% increased Effect of Shrine Buffs on you" + }, + ["group"]= 29, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "61372" + }, + ["in"]= { + "409" + } + }, + [20050]= { + ["skill"]= 20050, + ["name"]= "Armour and Energy Shield, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Guardian/ArmourEnergyShieldManaPool.png", + ["ascendancyName"]= "Guardian", + ["stats"]= { + "14% increased Armour", + "5% increased maximum Energy Shield", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 29, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "64768" + }, + ["in"]= { + "42264" + } + }, + [409]= { + ["skill"]= 409, + ["name"]= "Guardian", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Guardian", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 29, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37419", + "32364", + "46952", + "32992", + "40010", + "5929" + }, + ["in"]= { + "61525" + } + }, + [49785]= { + ["skill"]= 49785, + ["name"]= "Priest of Yaomac", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters1.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "20% reduced Soul Gain Prevention Duration", + "Vaal Skills require 30% less Souls per Use", + "Vaal Skills have 20% chance to regain consumed Souls when used" + }, + ["group"]= 30, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57290" + } + }, + [27737]= { + ["skill"]= 27737, + ["name"]= "Priest of Kamasa", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableStoneCircle.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Vaal Skills have 50% increased Skill Effect Duration", + "Vaal Skills have 50% increased Area of Effect", + "50% increased Effect of Auras from your Vaal Skills" + }, + ["group"]= 31, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57290" + } + }, + [30271]= { + ["skill"]= 30271, + ["name"]= "Priest of Kopec", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/UltimatumNotableMonsters2.png", + ["ascendancyName"]= "Trialmaster", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Vaal Skills deal 1% more Damage per Soul Required", + "Vaal Skills require 40% increased Souls per Use", + "Vaal Skills can store +1 Use" + }, + ["group"]= 32, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57290" + } + }, + [8066]= { + ["skill"]= 8066, + ["name"]= "Bitter Lash", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNoteble2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Skills from Equipped Main Hand Weapon are supported by level 1 Cruelty" + }, + ["group"]= 33, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38740" + } + }, + [17988]= { + ["skill"]= 17988, + ["name"]= "Untiring", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unbreakable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "1.5% of Physical Damage prevented from Hits in the past\n10 seconds is Regenerated as Life per second" + }, + ["group"]= 34, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "16093" + } + }, + [16093]= { + ["skill"]= 16093, + ["name"]= "Armour, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourLifeRegeneration.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 34, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "17988" + }, + ["in"]= { + "17765" + } + }, + [63417]= { + ["skill"]= 63417, + ["name"]= "Armour, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourMovementSpeed.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "4% increased Movement Speed" + }, + ["group"]= 34, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "5819" + }, + ["in"]= { + "17765" + } + }, + [51998]= { + ["skill"]= 51998, + ["name"]= "Armour, Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "+11% to Chaos Resistance" + }, + ["group"]= 34, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53816" + }, + ["in"]= { + "17765" + } + }, + [5819]= { + ["skill"]= 5819, + ["name"]= "Unstoppable", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unstoppable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "Action Speed cannot be modified to below Base Value", + "Movement Speed cannot be modified to below Base Value" + }, + ["group"]= 34, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "63417" + } + }, + [53816]= { + ["skill"]= 53816, + ["name"]= "Unbreakable", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/JuggernautArmourNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "Armour from Equipped Body Armour is doubled" + }, + ["group"]= 34, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "51998" + } + }, + [23972]= { + ["skill"]= 23972, + ["name"]= "Armour, Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "15% increased Endurance Charge Duration" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "1734", + "56789" + } + }, + [44297]= { + ["skill"]= 44297, + ["name"]= "Undeniable", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Undeniable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "1% increased Attack Speed per 150 Accuracy Rating", + "Gain Accuracy Rating equal to your Strength" + }, + ["group"]= 35, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "32115" + } + }, + [1734]= { + ["skill"]= 1734, + ["name"]= "Unflinching", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unflinching.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "50% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", + "+1 to Maximum Endurance Charges" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "23972", + "62349" + }, + ["in"]= { + "49153" + } + }, + [56789]= { + ["skill"]= 56789, + ["name"]= "Unrelenting", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unrelenting.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "1% additional Elemental Damage Reduction per Endurance Charge", + "1% additional Physical Damage Reduction per Endurance Charge" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 15, + ["out"]= { + "23972" + }, + ["in"]= {} + }, + [49153]= { + ["skill"]= 49153, + ["name"]= "Armour, Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackDamage.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "15% increased Endurance Charge Duration" + }, + ["group"]= 35, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "1734" + }, + ["in"]= { + "17765" + } + }, + [32115]= { + ["skill"]= 32115, + ["name"]= "Armour, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourAttackSpeed.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "5% increased Attack Speed", + "15% increased Armour" + }, + ["group"]= 35, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "44297" + }, + ["in"]= { + "17765" + } + }, + [62349]= { + ["skill"]= 62349, + ["name"]= "Armour, Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/IncreasedArmourStunDuration.png", + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "15% increased Armour", + "20% increased Stun Duration on Enemies" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= { + "62595" + }, + ["in"]= { + "1734" + } + }, + [62595]= { + ["skill"]= 62595, + ["name"]= "Unyielding", + ["icon"]= "Art/2DArt/SkillIcons/passives/Juggernaut/Unyielding.png", + ["isNotable"]= true, + ["ascendancyName"]= "Juggernaut", + ["stats"]= { + "6% increased Area of Effect per Endurance Charge", + "10% chance to gain an Endurance Charge when you Stun an Enemy", + "10% increased Stun Duration on Enemies per Endurance Charge" + }, + ["group"]= 35, + ["orbit"]= 4, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "62349" + } + }, + [17765]= { + ["skill"]= 17765, + ["name"]= "Juggernaut", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Juggernaut", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 35, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32115", + "51998", + "49153", + "63417", + "16093" + }, + ["in"]= { + "47175" + } + }, + [6344]= { + ["skill"]= 6344, + ["name"]= "Esh of the Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "Your Hits ignore Enemy Monster Lightning Resistances if all Equipped Rings are Synaptic Rings", + "+2 to Level of all Lightning Skill Gems if at least 4 Foulborn Unique Items are Equipped", + "+30 to Intelligence" + }, + ["group"]= 36, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "35069" + } + }, + [48711]= { + ["skill"]= 48711, + ["name"]= "Tul of the Blizzard", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "30% increased Freeze Duration on Enemies", + "+2 to Level of all Cold Skill Gems if at least 4 Foulborn Unique Items are Equipped", + "Your Hits ignore Enemy Monster Cold Resistances if all Equipped Rings are Cryonic Rings" + }, + ["group"]= 36, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "53398" + } + }, + [52855]= { + ["skill"]= 52855, + ["name"]= "Cryogenesis", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "You gain Added Cold Damage instead of Added Damage of other types if Dexterity exceeds both other Attributes", + "You gain Added Lightning Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes", + "Elemental Hit's Added Damage cannot be replaced this way" + }, + ["reminderText"]= { + "(Local Modifiers on Weapons that add damage to that Weapon do not grant you Added Damage, so are unchanged by this)", + "(Attributes are Strength, Dexterity, and Intelligence)" + }, + ["group"]= 36, + ["orbit"]= 3, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "48406" + } + }, + [35069]= { + ["skill"]= 35069, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Lightning Damage" + }, + ["group"]= 36, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "6344" + }, + ["in"]= { + "63630" + } + }, + [53398]= { + ["skill"]= 53398, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "25% increased Cold Damage" + }, + ["group"]= 36, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "48711" + }, + ["in"]= { + "63630" + } + }, + [48406]= { + ["skill"]= 48406, + ["name"]= "Maximum Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/AtlasTrees/BreachBossClaspedHands.png", + ["ascendancyName"]= "Breachlord", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 36, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52855" + }, + ["in"]= { + "63630" + } + }, + [63630]= { + ["skill"]= 63630, + ["name"]= "Breachlord", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Breachlord", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 36, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35069", + "48406", + "53398" + }, + ["in"]= {} + }, + [44797]= { + ["skill"]= 44797, + ["name"]= "Mana Regeneration, Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "40510" + }, + ["in"]= { + "30940" + } + }, + [34434]= { + ["skill"]= 34434, + ["name"]= "Ritual of Awakening", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/AncestralZeal.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "3% more Damage per Summoned Totem", + "10% of Damage from Hits is taken from your nearest Totem's Life before you" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "14870" + } + }, + [25651]= { + ["skill"]= 25651, + ["name"]= "Conviction of Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/DiscipleOfRuin.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "+3 to Minimum Endurance Charges", + "+3 to Minimum Power Charges" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "22637" + } + }, + [60462]= { + ["skill"]= 60462, + ["name"]= "Illuminated Devotion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ItemAugment.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Non-Damaging Ailments have 50% reduced Effect on you while you have Arcane Surge", + "Arcane Surge also grants 8% more Spell Damage to you" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "33167" + } + }, + [33167]= { + ["skill"]= 33167, + ["name"]= "Mana Regeneration, Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= { + "60462" + }, + ["in"]= { + "40510" + } + }, + [40510]= { + ["skill"]= 40510, + ["name"]= "Arcane Blessing", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ArcaneSurge.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Gain Arcane Surge after Spending a total of 200 Mana" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "33167" + }, + ["in"]= { + "44797" + } + }, + [38387]= { + ["skill"]= 38387, + ["name"]= "Mana Regeneration, Brand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "14% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 37, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "51492" + }, + ["in"]= { + "30940" + } + }, + [51492]= { + ["skill"]= 51492, + ["name"]= "Sign of Purpose", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/SignOfPurpose.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Brands have 100% more Activation Frequency if 75% of Attached Duration expired", + "Brand Recall has 100% increased Cooldown Recovery Rate" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "38387" + } + }, + [26714]= { + ["skill"]= 26714, + ["name"]= "Mana Regeneration, Totem Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Totem Placement speed" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "1105" + }, + ["in"]= { + "30940" + } + }, + [14870]= { + ["skill"]= 14870, + ["name"]= "Mana Regeneration, Totem Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "20% increased Mana Regeneration Rate", + "20% increased Totem Placement speed" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= { + "34434" + }, + ["in"]= { + "1105" + } + }, + [29994]= { + ["skill"]= 29994, + ["name"]= "Mana Regeneration, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "922", + "29026" + } + }, + [11046]= { + ["skill"]= 11046, + ["name"]= "Mana Regeneration, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 37, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "922" + }, + ["in"]= { + "30940" + } + }, + [22637]= { + ["skill"]= 22637, + ["name"]= "Mana Regeneration, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/ManaRegen.png", + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 37, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25651" + }, + ["in"]= { + "30940" + } + }, + [922]= { + ["skill"]= 922, + ["name"]= "Divine Guidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBody.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "10% of Damage is taken from Mana before Life", + "Transfiguration of Mind" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Mana also apply to Damage at 30% of their value)" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "29994" + }, + ["in"]= { + "11046" + } + }, + [29026]= { + ["skill"]= 29026, + ["name"]= "Sanctuary of Thought", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/MindOverBeing.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "Gain 20% of Maximum Mana as Extra Maximum Energy Shield", + "25% less Mana Cost of Skills" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "29994" + }, + ["in"]= {} + }, + [1105]= { + ["skill"]= 1105, + ["name"]= "Pursuit of Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hierophant/SpiritualEmpowerment.png", + ["isNotable"]= true, + ["ascendancyName"]= "Hierophant", + ["stats"]= { + "+1 to maximum number of Summoned Totems" + }, + ["group"]= 37, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "14870" + }, + ["in"]= { + "26714" + } + }, + [30940]= { + ["skill"]= 30940, + ["name"]= "Hierophant", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Hierophant", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 37, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11046", + "22637", + "44797", + "26714", + "38387" + }, + ["in"]= { + "61525" + } + }, + [24704]= { + ["skill"]= 24704, + ["name"]= "Chieftain", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Chieftain", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 38, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6028", + "5643", + "9971", + "14996", + "10238" + }, + ["in"]= { + "47175" + } + }, + [47486]= { + ["skill"]= 47486, + ["name"]= "Life Regeneration, Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Melee Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "53095", + "31667" + }, + ["in"]= {} + }, + [48480]= { + ["skill"]= 48480, + ["name"]= "Tasalio, Cleansing Water", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/TasalioCleansingWater.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Modifiers to Fire Resistance also apply to Cold and Lightning Resistances at 50% of their Value", + "Unaffected by Ignite" + }, + ["reminderText"]= { + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "42659" + }, + ["in"]= { + "5643" + } + }, + [53095]= { + ["skill"]= 53095, + ["name"]= "Tukohama, War's Herald", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/TukomahaWarsHerald.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Skills from Equipped Body Armour are Supported by Level 20 Ancestral Call", + "Skills from Equipped Body Armour are Supported by Level 1 Fist of War" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "47486", + "982" + } + }, + [14996]= { + ["skill"]= 14996, + ["name"]= "Life Regeneration, Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Fire Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "50692" + }, + ["in"]= { + "24704" + } + }, + [61355]= { + ["skill"]= 61355, + ["name"]= "Ramako, Sun's Light", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/RamakoSunsLight.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Nearby Enemy Monsters have no Fire Resistance against\nDamage over Time while you are Stationary" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "10238" + } + }, + [32249]= { + ["skill"]= 32249, + ["name"]= "Valako, Storm's Embrace", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/ValakoStormsEmbrace.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Modifiers to Maximum Fire Resistance also apply to Maximum Cold and Lightning Resistances" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "42659" + } + }, + [10238]= { + ["skill"]= 10238, + ["name"]= "Life Regeneration, Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Fire Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "61355" + }, + ["in"]= { + "24704" + } + }, + [42659]= { + ["skill"]= 42659, + ["name"]= "Life Regeneration, Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "+15% to Fire Resistance", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= { + "32249" + }, + ["in"]= { + "48480" + } + }, + [982]= { + ["skill"]= 982, + ["name"]= "Life Regeneration, Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenStrength.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Melee Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "53095" + }, + ["in"]= { + "1731" + } + }, + [9971]= { + ["skill"]= 9971, + ["name"]= "Life Regeneration, Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenFireDamage.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "10% increased Fire Damage", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "1731" + }, + ["in"]= { + "24704" + } + }, + [5643]= { + ["skill"]= 5643, + ["name"]= "Life Regeneration, Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "+15% to Fire Resistance", + "Regenerate 0.5% of Life per second" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "48480" + }, + ["in"]= { + "24704" + } + }, + [6028]= { + ["skill"]= 6028, + ["name"]= "Life Regeneration, Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/LifeRegenTotemPlacementSpeed.png", + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Regenerate 0.5% of Life per second", + "15% increased Warcry Duration" + }, + ["group"]= 38, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "31667" + }, + ["in"]= { + "24704" + } + }, + [31667]= { + ["skill"]= 31667, + ["name"]= "Sione, Sun's Roar", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/ArohunguiMoonsPresenceWarcry.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Warcries have infinite Power" + }, + ["reminderText"]= { + "(Normal Monsters have 1 Power, Magic Monsters 2, Rare Monsters 10, Unique Monsters 20, and Players 5)" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "47486", + "6028" + } + }, + [50692]= { + ["skill"]= 50692, + ["name"]= "Ngamahu, Flame's Advance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/NgamahuFlamesAdvance.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Non-Unique Jewels cause Increases and Reductions to other Damage Types in a Large Radius to be Transformed to apply to Fire Damage", + "Non-Unique Jewels cause Small and Notable Passive Skills in a Large Radius to\nalso grant +4 to Strength" + }, + ["reminderText"]= { + "(Passive Skills that are not Notable, Masteries, Keystones, or Jewel Sockets are Small)" + }, + ["group"]= 38, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "14996" + } + }, + [1731]= { + ["skill"]= 1731, + ["name"]= "Hinekora, Death's Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/Chieftain/HinekoraDeathsFury.png", + ["isNotable"]= true, + ["ascendancyName"]= "Chieftain", + ["stats"]= { + "Enemies you or your Totems Kill have 10% chance to Explode, dealing 250% of their maximum Life as Fire Damage" + }, + ["group"]= 38, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "982" + }, + ["in"]= { + "9971" + } + }, + [12860]= { + ["skill"]= 12860, + ["name"]= "Bound Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Gain 20 Baryatic Tension per 20 Life Spent on Upfront Costs of Spells", + "Maximum Baryatic Tension is equal to 30% of maximum Life", + "When you take a Savage Hit, lose Baryatic Tension to recover that much Life, up to maximum" + }, + ["group"]= 39, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "5452" + } + }, + [43660]= { + ["skill"]= 43660, + ["name"]= "Afarud Ritual", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNotable3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Damageable Minions deal 30% increased Damage for each second they have been alive,\nup to a maximum of 150%", + "Damageable Minions take 5% increased Damage for each second they have been alive,\nup to a maximum of 50%" + }, + ["group"]= 39, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "60686" + } + }, + [5452]= { + ["skill"]= 5452, + ["name"]= "Maximum Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png", + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "8% increased maximum Life" + }, + ["group"]= 39, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12860" + }, + ["in"]= { + "8133" + } + }, + [60686]= { + ["skill"]= 60686, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png", + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "Minions deal 25% increased Damage" + }, + ["group"]= 39, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "43660" + }, + ["in"]= { + "8133" + } + }, + [38740]= { + ["skill"]= 38740, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SareshBloodlineNode.png", + ["ascendancyName"]= "Necromantic", + ["isBloodline"]= true, + ["stats"]= { + "+8% to Damage over Time Multiplier" + }, + ["group"]= 39, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "8066" + }, + ["in"]= { + "8133" + } + }, + [8133]= { + ["skill"]= 8133, + ["name"]= "Necromantic", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Necromantic", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 39, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38740", + "5452", + "60686" + }, + ["in"]= {} + }, + [43193]= { + ["skill"]= 43193, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 40, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "19417" + }, + ["in"]= { + "61871" + } + }, + [3154]= { + ["skill"]= 3154, + ["name"]= "Instruments of Justice", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/CriticalStrikeChance.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= {}, + ["in"]= { + "35739" + } + }, + [39790]= { + ["skill"]= 39790, + ["name"]= "Sanctuary", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/Sanctify.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Consecrated Ground you create applies 8% increased Damage taken to Enemies", + "You have Consecrated Ground around you while stationary" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "57222" + }, + ["in"]= { + "10635" + } + }, + [32816]= { + ["skill"]= 32816, + ["name"]= "Pious Path", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/GloryOfTheSavant.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Consecrated Ground you create causes Life Regeneration to\nalso Recover Energy Shield for you and Allies", + "Effects of Consecrated Ground you create Linger for 4 seconds" + }, + ["reminderText"]= { + "(The effects of the ground still apply to you, allies or enemies after leaving its area)" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "57222" + } + }, + [27055]= { + ["skill"]= 27055, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "13851" + }, + ["in"]= { + "19417" + } + }, + [13851]= { + ["skill"]= 13851, + ["name"]= "Instruments of Zeal", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsofZeal.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Gain Fanaticism for 5 seconds on reaching Maximum Fanatic Charges", + "Gain 1 Fanatic Charge every second if you've Attacked in the past second", + "Lose all Fanatic Charges on reaching Maximum Fanatic Charges", + "+5 to Maximum Fanatic Charges" + }, + ["reminderText"]= { + "(Fanaticism grants Spells you Cast yourself 75% more Cast Speed, 75% less Cost and 75% increased Area of Effect)" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= {}, + ["in"]= { + "27055" + } + }, + [19417]= { + ["skill"]= 19417, + ["name"]= "Instruments of Virtue", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/InstrumentsOfVirtue.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Battlemage" + }, + ["reminderText"]= { + "(Gain Added Spell Damage equal to the Damage of your Main Hand Weapon)" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "27055", + "35739" + }, + ["in"]= { + "43193" + } + }, + [35739]= { + ["skill"]= 35739, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "3154" + }, + ["in"]= { + "19417" + } + }, + [57222]= { + ["skill"]= 57222, + ["name"]= "Elemental Damage, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Regenerate 0.5% of Life per second", + "10% increased Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "32816" + }, + ["in"]= { + "39790" + } + }, + [10635]= { + ["skill"]= 10635, + ["name"]= "Elemental Damage, Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAvoidElementalStatusEffects.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Regenerate 0.5% of Life per second", + "10% increased Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "39790" + }, + ["in"]= { + "61871" + } + }, + [60769]= { + ["skill"]= 60769, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageElementalPenetration.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "40059" + }, + ["in"]= { + "61871" + } + }, + [662]= { + ["skill"]= 662, + ["name"]= "Elemental Damage, Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "+10% to Critical Strike Multiplier" + }, + ["group"]= 40, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53884" + }, + ["in"]= { + "61871" + } + }, + [37486]= { + ["skill"]= 37486, + ["name"]= "Elemental Damage, Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageCasteSpeed.png", + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "10% increased Elemental Damage", + "+10% to Critical Strike Multiplier" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "48214" + }, + ["in"]= { + "53884" + } + }, + [53884]= { + ["skill"]= 53884, + ["name"]= "Righteous Providence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalMastery.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "1% increased Critical Strike Chance per point of Strength or Intelligence, whichever is lower" + }, + ["group"]= 40, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "37486" + }, + ["in"]= { + "662" + } + }, + [48214]= { + ["skill"]= 48214, + ["name"]= "Inevitable Judgement", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalForce.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Critical Strikes ignore Enemy Monster Elemental Resistances" + }, + ["reminderText"]= { + "(Ignoring Resistances means your Damage cannot be modified in any way by any Resistance stats)" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 16, + ["out"]= {}, + ["in"]= { + "37486" + } + }, + [40059]= { + ["skill"]= 40059, + ["name"]= "Augury of Penitence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inquistitor/ElementalDomination.png", + ["isNotable"]= true, + ["ascendancyName"]= "Inquisitor", + ["stats"]= { + "Nearby Enemies take 8% increased Elemental Damage", + "Nearby Enemies deal 8% less Elemental Damage" + }, + ["group"]= 40, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "60769" + } + }, + [61871]= { + ["skill"]= 61871, + ["name"]= "Inquisitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Inquisitor", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 40, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60769", + "10635", + "43193", + "662" + }, + ["in"]= { + "61525" + } + }, + [8982]= { + ["skill"]= 8982, + ["name"]= "Sanguimancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Skills Cost Life instead of Mana", + "Skills Reserve Life instead of Mana", + "Removes all Mana", + "50% increased Life Reservation Efficiency of Skills" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "39142", + "24924" + }, + ["in"]= { + "26596" + } + }, + [20931]= { + ["skill"]= 20931, + ["name"]= "Crimson Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Removes all Energy Shield", + "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", + "-6 Maximum Life per Level" + }, + ["reminderText"]= { + "(Characters inherently gain +12 Life per Level)" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= {}, + ["in"]= { + "24924" + } + }, + [52780]= { + ["skill"]= 52780, + ["name"]= "Cannibalised Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanBloodMagic3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Spells you cast yourself gain Added Physical Damage equal to 75% of Life Cost, if Life Cost is not higher than the maximum you could spend" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= {}, + ["in"]= { + "39142" + } + }, + [699]= { + ["skill"]= 699, + ["name"]= "Foul Pact", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCurses2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Enemies Pacified by you take 20% increased Damage", + "Minions affected by Affliction have Onslaught", + "Phantasms from Penance Mark have a 50% chance to grant a Vaal Soul when Killed", + "Phantasms from Penance Mark grant 50% increased Flask Charges" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "30632" + } + }, + [57850]= { + ["skill"]= 57850, + ["name"]= "Warlock Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCursesChoice.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "28601", + "10538", + "52417", + "30632" + }, + ["in"]= { + "19689" + } + }, + [58281]= { + ["skill"]= 58281, + ["name"]= "Blood Hunt", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanCorpses.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Ravenous Skill", + "Enemies display their Monster Category" + }, + ["reminderText"]= { + "(Ravenous consumes a targeted corpse, granting you a buff that causes you to deal more damage to, and take less damage from, enemies of the same Monster Category as the corpse)" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "23155" + } + }, + [24924]= { + ["skill"]= 24924, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 24, + ["out"]= { + "20931" + }, + ["in"]= { + "8982" + } + }, + [39142]= { + ["skill"]= 39142, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "52780" + }, + ["in"]= { + "8982" + } + }, + [26596]= { + ["skill"]= 26596, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "8982" + }, + ["in"]= { + "42328" + } + }, + [23155]= { + ["skill"]= 23155, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "58281" + }, + ["in"]= { + "42328" + } + }, + [60511]= { + ["skill"]= 60511, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45727" + }, + ["in"]= { + "42328" + } + }, + [30632]= { + ["skill"]= 30632, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= { + "699" + }, + ["in"]= { + "57850" + } + }, + [19689]= { + ["skill"]= 19689, + ["name"]= "Wild Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanNode.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Wild Wisps found in the Viridian Wildwood" + }, + ["group"]= 41, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "57850" + }, + ["in"]= { + "42328" + } + }, + [42328]= { + ["skill"]= 42328, + ["name"]= "Warlock of the Mists", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Warlock", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 41, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23155", + "60511", + "26596", + "19689" + }, + ["in"]= {} + }, + [45727]= { + ["skill"]= 45727, + ["name"]= "Soul Splitting", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanVoodooDoll.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Summon Dark Effigy Skill" + }, + ["reminderText"]= { + "(Creates a Dark Effigy tethered to you. Damage you take from enemy hits is taken from the Effigy's life before you, and damage the Effigy takes from enemy hits is taken from your life before it, at doubled value. The Effigy is destroyed if you get too far away from it)" + }, + ["group"]= 41, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "60511" + } + }, + [49951]= { + ["skill"]= 49951, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 42, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "36931" + }, + ["in"]= {} + }, + [28601]= { + ["skill"]= 28601, + ["name"]= "Creeping Lobotomy", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse1.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Level 20 Pacify Skill" + }, + ["reminderText"]= { + "(You can only take one of the three Warlock Power passives)", + "(Pacify curses all targets in an area, having no effect at first, but causing them to deal no damage once 60% of the curse's duration has expired)" + }, + ["group"]= 43, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57850" + } + }, + [32669]= { + ["skill"]= 32669, + ["name"]= "Legendary Amulets", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable13.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Amulets" + }, + ["group"]= 44, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [52417]= { + ["skill"]= 52417, + ["name"]= "Black Mass", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse3.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Level 20 Affliction Skill" + }, + ["reminderText"]= { + "(You can only take one of the three Warlock Power passives)", + "(Affliction permanently Afflicts any of your damageable minions in a targeted area, causing them to take physical damage over time, at an accelerating rate. Each such minion causes you to regenerate life at a rate based on the current damage of its Affliction debuff. Afflicted Minions explode if their life is lowered to a fifth of maximum)" + }, + ["group"]= 45, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57850" + } + }, + [43645]= { + ["skill"]= 43645, + ["name"]= "Legendary Rings", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable14.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Rings" + }, + ["group"]= 46, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [10538]= { + ["skill"]= 10538, + ["name"]= "Choir of the Damned", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoodooShaman/VoodooShamanSpecialCurse2.png", + ["ascendancyName"]= "Warlock", + ["isBloodline"]= true, + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Level 20 Penance Mark Skill" + }, + ["reminderText"]= { + "(You can only take one of the three Warlock Power passives)", + "(Penance Mark curses a single enemy, causing them to spawn multiple phantasms when hit. The phantasms will be allies of the marked enemy with the same monster level. They cast a projectile spell which deals physical damage, and are immune to curses. You can only have one Mark at a time)" + }, + ["group"]= 47, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57850" + } + }, + [1977]= { + ["skill"]= 1977, + ["name"]= "Legendary Belts", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable12.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Belts" + }, + ["group"]= 48, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [61133]= { + ["skill"]= 61133, + ["name"]= "Mercenary Life, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary and their Minions have 15% increased maximum Life", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "56292" + }, + ["in"]= { + "1564" + } + }, + [15900]= { + ["skill"]= 15900, + ["name"]= "Oath of Fealty", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Link Skills have infinite Attachment Duration", + "If your Linked Mercenary dies, the Link owner does not also die" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "63954" + }, + ["in"]= { + "30675" + } + }, + [31517]= { + ["skill"]= 31517, + ["name"]= "Golden Glory", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Increases and Reductions to Light Radius also apply to Effect\nof your Link Skill Buffs on your Mercenary" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "63954" + } + }, + [1564]= { + ["skill"]= 1564, + ["name"]= "Loyal Bodyguard", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable4.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "If your Mercenary's Life is higher than your own, 15% of Damage from Hits is\ntaken from your Mercenary's Life before you", + "If your Mercenary's Life is lower than your own, 30% of Damage they take is Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "61133" + }, + ["in"]= { + "27123" + } + }, + [56292]= { + ["skill"]= 56292, + ["name"]= "Bestowed Knighthood", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable5.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary Taunts on Hit", + "Your Mercenary has 30% increased effect of Non-Curse Auras from Skills" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "61133" + } + }, + [25944]= { + ["skill"]= 25944, + ["name"]= "Legendary Arms", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable6.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Weapons, Shields and Quivers", + "Your Mercenary and their Minions deal 4% more Damage for\neach Unique item they have equipped" + }, + ["group"]= 49, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "32669", + "43645", + "1977", + "52633", + "32095", + "19993" + } + }, + [63954]= { + ["skill"]= 63954, + ["name"]= "Link Cast Speed, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Link Skills have 10% increased Cast Speed", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "31517" + }, + ["in"]= { + "15900" + } + }, + [27123]= { + ["skill"]= 27123, + ["name"]= "Mercenary Life, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary and their Minions have 15% increased maximum Life", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= { + "1564" + }, + ["in"]= { + "46479" + } + }, + [30675]= { + ["skill"]= 30675, + ["name"]= "Link Cast Speed, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Link Skills have 10% increased Cast Speed", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= { + "15900" + }, + ["in"]= { + "46479" + } + }, + [35877]= { + ["skill"]= 35877, + ["name"]= "Mercenary Damage, Light Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNode.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary and their Minions deal 15% increased Damage", + "5% increased Light Radius" + }, + ["group"]= 49, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "46479" + }, + ["in"]= { + "15726" + } + }, + [46479]= { + ["skill"]= 46479, + ["name"]= "Noble Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Luminary", + ["stats"]= { + "You can hire a Mercenary permanently" + }, + ["reminderText"]= { + "(While you have this passive allocated, you will have the option to permanently hire Mercenaries found in the wild. Permanently hired Mercenaries and their Minions deal less Damage than temporarily hired Mercenaries, but you can change what gear they have equipped. Passives that affect your Mercenary do not affect temporarily hired Mercenaries. Permanently hired Mercenaries will only follow Luminaries with this passive allocated)" + }, + ["group"]= 49, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "30675", + "27123", + "32669", + "43645", + "1977", + "52633", + "32095", + "19993" + }, + ["in"]= { + "35877" + } + }, + [15726]= { + ["skill"]= 15726, + ["name"]= "Luminary", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Luminary", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 49, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35877" + }, + ["in"]= { + "58833" + } + }, + [28018]= { + ["skill"]= 28018, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 50, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "17219", + "36931" + }, + ["in"]= {} + }, + [36931]= { + ["skill"]= 36931, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "49951", + ["parent"]= "17219" + }, + ["stats"]= {}, + ["group"]= 50, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "49951", + "28018" + } + }, + [22046]= { + ["skill"]= 22046, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 51, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "14993" + }, + ["in"]= {} + }, + [52633]= { + ["skill"]= 52633, + ["name"]= "Legendary Gloves", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable9.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Gloves" + }, + ["group"]= 52, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [32095]= { + ["skill"]= 32095, + ["name"]= "Legendary Helmets", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable10.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Helmets" + }, + ["group"]= 53, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [3854]= { + ["skill"]= 3854, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 54, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "24970" + }, + ["in"]= {} + }, + [19993]= { + ["skill"]= 19993, + ["name"]= "Legendary Boots", + ["icon"]= "Art/2DArt/SkillIcons/passives/Luminary/LuminaryNotable11.png", + ["ascendancyName"]= "Luminary", + ["stats"]= { + "Your Mercenary can equip Unique Boots" + }, + ["group"]= 55, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25944" + }, + ["in"]= { + "46479" + } + }, + [4194]= { + ["skill"]= 4194, + ["name"]= "Berserker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Berserker.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "5% increased Damage taken", + "15% more Damage", + "10% of Leech is Instant", + "Inherent Rage Loss starts 1 second later" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)", + "(You can only take one of the three Marauder Ascendancy passives)", + "(Recently refers to the past 4 seconds)", + "(Base Maximum Rage is 30)", + "(You lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 56, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61437" + } + }, + [53203]= { + ["skill"]= 53203, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 57, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "44169", + "14993" + }, + ["in"]= {} + }, + [14993]= { + ["skill"]= 14993, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "22046", + ["parent"]= "44169" + }, + ["stats"]= {}, + ["group"]= 57, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "22046", + "53203" + } + }, + [25441]= { + ["skill"]= 25441, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 58, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "49080", + "24970" + }, + ["in"]= {} + }, + [24970]= { + ["skill"]= 24970, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "3854", + ["parent"]= "49080" + }, + ["stats"]= {}, + ["group"]= 58, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "3854", + "25441" + } + }, + [57052]= { + ["skill"]= 57052, + ["name"]= "Chieftain", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Chieftain.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", + "Unaffected by Ignite", + "30% increased Warcry Buff Effect" + }, + ["reminderText"]= { + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)", + "(You can only take one of the three Marauder Ascendancy passives)" + }, + ["group"]= 59, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61437" + } + }, + [63623]= { + ["skill"]= 63623, + ["name"]= "Might of the Bear", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistInventoryExpansion.png", + ["isNotable"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "5% increased Character Size", + "Equip a Wildwood Rucksack which has 20 Inventory Slots" + }, + ["group"]= 60, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "4245" + }, + ["in"]= { + "24462" + } + }, + [43670]= { + ["skill"]= 43670, + ["name"]= "Charm Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "22174" + }, + ["in"]= { + "4245" + } + }, + [29914]= { + ["skill"]= 29914, + ["name"]= "Charm Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "54139" + }, + ["in"]= { + "22174" + } + }, + [18060]= { + ["skill"]= 18060, + ["name"]= "Charm Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "54139" + } + }, + [34229]= { + ["skill"]= 34229, + ["name"]= "Howl of the Wolf", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistCorpseLoot.png", + ["isNotable"]= true, + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "Your Warcries attempt to shake extra items from Corpses", + "Your Warcries open Chests" + }, + ["group"]= 60, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "10539" + } + }, + [22174]= { + ["skill"]= 22174, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "29914" + }, + ["in"]= { + "43670" + } + }, + [4245]= { + ["skill"]= 4245, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "43670" + }, + ["in"]= { + "63623" + } + }, + [54139]= { + ["skill"]= 54139, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "18060" + }, + ["in"]= { + "29914" + } + }, + [24462]= { + ["skill"]= 24462, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "63623" + }, + ["in"]= { + "10622" + } + }, + [10539]= { + ["skill"]= 10539, + ["name"]= "Primal Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.png", + ["ascendancyName"]= "Primalist", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Primal Wisps found in the Viridian Wildwood" + }, + ["group"]= 60, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34229" + }, + ["in"]= { + "10622" + } + }, + [10622]= { + ["skill"]= 10622, + ["name"]= "Wildwood Primalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Primalist", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 60, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10539", + "24462" + }, + ["in"]= {} + }, + [42144]= { + ["skill"]= 42144, + ["name"]= "Hierophant", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Hierophant.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+1 to maximum number of Summoned Totems", + "8% of Damage is taken from Mana before Life", + "Gain Arcane Surge after Spending a total of 200 Mana" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)", + "(You can only take one of the three Templar Ascendancy passives)" + }, + ["group"]= 61, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15435" + } + }, + [61072]= { + ["skill"]= 61072, + ["name"]= "Juggernaut", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Juggernaut.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Cannot be Chilled", + "10% chance to gain an Endurance Charge when you Stun an Enemy", + "1% of Physical Damage prevented from Hits in the past\n10 seconds is Regenerated as Life per second" + }, + ["reminderText"]= { + "(You can only take one of the three Marauder Ascendancy passives)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 62, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61437" + } + }, + [43962]= { + ["skill"]= 43962, + ["name"]= "Inquisitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Inquisitor.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Damage Penetrates 8% of Enemy Elemental Resistances", + "Effects of Consecrated Ground you create Linger for 4 seconds", + "Nearby Enemies take 8% increased Elemental Damage" + }, + ["reminderText"]= { + "(The effects of the ground still apply to you, allies or enemies after leaving its area)", + "(You can only take one of the three Templar Ascendancy passives)", + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)" + }, + ["group"]= 63, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15435" + } + }, + [41534]= { + ["skill"]= 41534, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "15435" + }, + ["in"]= { + "22551" + } + }, + [22551]= { + ["skill"]= 22551, + ["name"]= "Strength and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrengthintelligence.png", + ["grantedStrength"]= 20, + ["grantedIntelligence"]= 20, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+20 to Strength and Intelligence" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41534" + }, + ["in"]= { + "35754" + } + }, + [15435]= { + ["skill"]= 15435, + ["name"]= "Templar Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "57429", + "43962", + "42144", + "30919" + }, + ["in"]= { + "41534" + } + }, + [54877]= { + ["skill"]= 54877, + ["name"]= "Path of the Templar", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Templar's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "63965", + "20228" + }, + ["in"]= { + "57429" + } + }, + [57429]= { + ["skill"]= 57429, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 64, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "54877" + }, + ["in"]= { + "15435" + } + }, + [33875]= { + ["skill"]= 33875, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61437" + }, + ["in"]= { + "193" + } + }, + [30690]= { + ["skill"]= 30690, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "24755" + }, + ["in"]= { + "61437" + } + }, + [193]= { + ["skill"]= 193, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 40, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+40 to Strength" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "33875" + }, + ["in"]= { + "35754" + } + }, + [61437]= { + ["skill"]= 61437, + ["name"]= "Marauder Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "30690", + "4194", + "61072", + "57052" + }, + ["in"]= { + "33875" + } + }, + [24755]= { + ["skill"]= 24755, + ["name"]= "Path of the Marauder", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Str.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Marauder's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 65, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31628", + "50904" + }, + ["in"]= { + "30690" + } + }, + [5624]= { + ["skill"]= 5624, + ["name"]= "Crusader", + ["icon"]= "Art/2DArt/SkillIcons/passives/MindPact.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Mana", + "Transfiguration of Mind" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Mana also apply to Damage at 30% of their value)" + }, + ["group"]= 66, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [30919]= { + ["skill"]= 30919, + ["name"]= "Guardian", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Guardian.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% increased Reservation Efficiency of Skills", + "Every 4 seconds, Regenerate 50% of Life over one second", + "If you've Attacked Recently, you and nearby Allies have +7% Chance to Block Attack Damage", + "If you've Cast a Spell Recently, you and nearby Allies have +7% Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(You can only take one of the three Templar Ascendancy passives)" + }, + ["group"]= 67, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15435" + } + }, + [43195]= { + ["skill"]= 43195, + ["name"]= "Slayer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Slayer.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Culling Strike", + "Life Leech effects are not removed when Unreserved Life is Filled", + "Cannot take Reflected Physical Damage" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)", + "(You can only take one of the three Duelist Ascendancy passives)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 68, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24798" + } + }, + [52282]= { + ["skill"]= 52282, + ["name"]= "Tenacity", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodPact.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "5% increased maximum Life", + "Transfiguration of Body" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Life also apply to Attack Damage at 30% of their value)" + }, + ["group"]= 69, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [49080]= { + ["skill"]= 49080, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "25441", + ["parent"]= "55190" + }, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "25441", + "17219", + "30275" + } + }, + [17219]= { + ["skill"]= 17219, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "28018", + ["parent"]= "55190" + }, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "49080" + }, + ["in"]= { + "28018", + "44169" + } + }, + [44169]= { + ["skill"]= 44169, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "53203", + ["parent"]= "55190" + }, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "17219" + }, + ["in"]= { + "53203", + "30275" + } + }, + [30275]= { + ["skill"]= 30275, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 70, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "49080", + "44169", + "55190" + }, + ["in"]= {} + }, + [34774]= { + ["skill"]= 34774, + ["name"]= "Gladiator", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Gladiator.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Attacks", + "Gain 50% Chance to Block from Equipped Shield instead of the Shield's value", + "Inherent Bonuses from Dual Wielding are doubled" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)", + "(Dual Wielding inherently grants +20% chance to Block Attack Damage and 10% more Attack Speed)", + "(You can only take one of the three Duelist Ascendancy passives)" + }, + ["group"]= 71, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "24798" + } + }, + [39598]= { + ["skill"]= 39598, + ["name"]= "Champion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Champion.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Melee Hits Fortify", + "Enemies Taunted by you take 8% increased Damage", + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)", + "(You can only take one of the three Duelist Ascendancy passives)", + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)", + "(Intimidated enemies take 10% increased Attack Damage)" + }, + ["group"]= 72, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24798" + } + }, + [35754]= { + ["skill"]= 35754, + ["name"]= "Ascendant", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Ascendant", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 73, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "22551", + "58029", + "45403", + "31598", + "607", + "193" + }, + ["in"]= { + "58833" + } + }, + [17445]= { + ["skill"]= 17445, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "63357" + }, + ["in"]= { + "24798" + } + }, + [41996]= { + ["skill"]= 41996, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "24798" + }, + ["in"]= { + "607" + } + }, + [607]= { + ["skill"]= 607, + ["name"]= "Strength and Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrengthdexterity.png", + ["grantedStrength"]= 20, + ["grantedDexterity"]= 20, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+20 to Strength and Dexterity" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "41996" + }, + ["in"]= { + "35754" + } + }, + [24798]= { + ["skill"]= 24798, + ["name"]= "Duelist Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "17445", + "39598", + "34774", + "43195" + }, + ["in"]= { + "41996" + } + }, + [63357]= { + ["skill"]= 63357, + ["name"]= "Path of the Duelist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Duelist's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 74, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "47389", + "39725" + }, + ["in"]= { + "17445" + } + }, + [2521]= { + ["skill"]= 2521, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "51782" + }, + ["in"]= { + "58029" + } + }, + [56722]= { + ["skill"]= 56722, + ["name"]= "Path of the Witch", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Int.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Witch's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "57264", + "57226" + }, + ["in"]= { + "62162" + } + }, + [58029]= { + ["skill"]= 58029, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 40, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+40 to Intelligence" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "2521" + }, + ["in"]= { + "35754" + } + }, + [51782]= { + ["skill"]= 51782, + ["name"]= "Witch Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62162", + "10099", + "8281", + "12597" + }, + ["in"]= { + "2521" + } + }, + [62162]= { + ["skill"]= 62162, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 75, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "56722" + }, + ["in"]= { + "51782" + } + }, + [56940]= { + ["skill"]= 56940, + ["name"]= "The Apostate", + ["icon"]= "Art/2DArt/SkillIcons/passives/ApostateNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Removes all Energy Shield", + "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", + "-12 Maximum Life per Level" + }, + ["group"]= 76, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [8281]= { + ["skill"]= 8281, + ["name"]= "Elementalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Elementalist.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 8%", + "Shocks from your Hits always increase Damage taken by at least 8%", + "Cannot take Reflected Elemental Damage" + }, + ["reminderText"]= { + "(You can only take one of the three Witch Ascendancy passives)" + }, + ["group"]= 77, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51782" + } + }, + [8243]= { + ["skill"]= 8243, + ["name"]= "Wildwood Blessing", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Grants Level 20 Barkskin Skill" + }, + ["reminderText"]= { + "(Adopt the power of the forest, gradually covering your body in bark. Getting hit by enemy attacks causes bark to be removed. You take reduced damage from physical attack hits the more bark builds up, but higher chance to evade when less covered in bark)" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "53414" + }, + ["in"]= { + "33897" + } + }, + [34814]= { + ["skill"]= 34814, + ["name"]= "Lesson of the Seasons", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% chance to Avoid non-Damaging Ailments on you per Bark below maximum", + "10% reduced Duration of Damaging Ailments on you per Bark" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "53414" + } + }, + [5220]= { + ["skill"]= 5220, + ["name"]= "Oath of the Maji", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenPrimitivism.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Defences from Equipped Body Armour are doubled if it has no Socketed Gems", + "+50% to all Elemental Resistances if you have an Equipped Helmet with no Socketed Gems", + "25% increased Maximum Life if you have Equipped Gloves with no Socketed Gems", + "30% increased Movement Speed if you have Equipped Boots with no Socketed Gems" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "32605" + } + }, + [41197]= { + ["skill"]= 41197, + ["name"]= "Coated Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "48606", + "24764" + }, + ["in"]= { + "20772" + } + }, + [34637]= { + ["skill"]= 34637, + ["name"]= "Nature's Concoction", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Flasks adjacent to active Tinctures gain 3 charges when you Hit an\nEnemy with a Melee Weapon, no more than once every second", + "Flasks adjacent to applied Tincture have 30% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "48606" + } + }, + [63362]= { + ["skill"]= 63362, + ["name"]= "Intensifying Suffusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Tinctures applied to you have 75% increased Effect per empty Flask Slot" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "24764" + } + }, + [53414]= { + ["skill"]= 53414, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "34814" + }, + ["in"]= { + "8243" + } + }, + [33897]= { + ["skill"]= 33897, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "8243" + }, + ["in"]= { + "9414" + } + }, + [48606]= { + ["skill"]= 48606, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "34637" + }, + ["in"]= { + "41197" + } + }, + [24764]= { + ["skill"]= 24764, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "63362" + }, + ["in"]= { + "41197" + } + }, + [20772]= { + ["skill"]= 20772, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "41197" + }, + ["in"]= { + "9414" + } + }, + [29259]= { + ["skill"]= 29259, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "29212" + }, + ["in"]= { + "9414" + } + }, + [32605]= { + ["skill"]= 32605, + ["name"]= "Vivid Wisps found", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenNode.png", + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "10% increased Quantity of Vivid Wisps found in the Viridian Wildwood" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "5220" + }, + ["in"]= { + "9414" + } + }, + [9414]= { + ["skill"]= 9414, + ["name"]= "Warden of the Maji", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Warden", + ["isAscendancyStart"]= true, + ["isBloodline"]= true, + ["stats"]= {}, + ["group"]= 78, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "33897", + "20772", + "29259", + "32605" + }, + ["in"]= {} + }, + [29212]= { + ["skill"]= 29212, + ["name"]= "Detect Evil", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenTracking.png", + ["isNotable"]= true, + ["ascendancyName"]= "Warden", + ["isBloodline"]= true, + ["stats"]= { + "Your Hits against Marked Enemy cannot be Blocked or Suppressed", + "Rare and Unique Enemies within 120 metres have Minimap Icons" + }, + ["group"]= 78, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "29259" + } + }, + [48040]= { + ["skill"]= 48040, + ["name"]= "Elevore", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElvoreNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+25% chance to Suppress Spell Damage", + "Recover 200 Life when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 79, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [35448]= { + ["skill"]= 35448, + ["name"]= "Kaom's Roots", + ["icon"]= "Art/2DArt/SkillIcons/passives/KaomsRootsNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+50 to maximum Life", + "Cannot be Knocked Back", + "Action Speed cannot be modified to below Base Value", + "Cannot Evade enemy Attacks\nCannot be Stunned" + }, + ["group"]= 80, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [10099]= { + ["skill"]= 10099, + ["name"]= "Necromancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Necromancer.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Your Offering Skills also affect you", + "Your Offerings have 50% reduced Effect on you", + "Auras from your Skills grant 2% increased Attack and Cast\nSpeed to you and Allies", + "If you've Consumed a corpse Recently, you and your Minions have 30% increased Area of Effect" + }, + ["reminderText"]= { + "(Auras can only grant bonuses to things they affect)", + "(Recently refers to the past 4 seconds)", + "(You can only take one of the three Witch Ascendancy passives)" + }, + ["group"]= 81, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51782" + } + }, + [16994]= { + ["skill"]= 16994, + ["name"]= "Vaal Caress", + ["icon"]= "Art/2DArt/SkillIcons/passives/VaalCaressNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "You gain Onslaught for 10 seconds on using a Vaal Skill", + "+2 to Level of all Vaal Skill Gems" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + }, + ["group"]= 82, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [22628]= { + ["skill"]= 22628, + ["name"]= "Dawnbreaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/DawnbreakerNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% of Cold Damage taken as Fire Damage", + "25% of Lightning Damage taken as Fire Damage", + "25% of Physical Damage taken as Fire Damage" + }, + ["group"]= 83, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36489" + } + }, + [12597]= { + ["skill"]= 12597, + ["name"]= "Occultist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Occultist.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "You can apply an additional Curse", + "Regenerate 2% of Energy Shield per second", + "Nearby Enemies are Chilled" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by 10%)", + "(You can only take one of the three Witch Ascendancy passives)" + }, + ["group"]= 84, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51782" + } + }, + [8656]= { + ["skill"]= 8656, + ["name"]= "Warden", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Raider.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+15% chance to Suppress Spell Damage", + "Attack Damage Penetrates 5% of Enemy Elemental Resistances", + "You can have an additional Tincture active" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)", + "(You can only take one of the three Ranger Ascendancy passives)" + }, + ["group"]= 85, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49532" + } + }, + [7092]= { + ["skill"]= 7092, + ["name"]= "Physical and Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineWrath.png", + ["stats"]= { + "8% increased Lightning Damage", + "8% increased Physical Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "14665" + }, + ["in"]= { + "29061" + } + }, + [31153]= { + ["skill"]= 31153, + ["name"]= "Physical and Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineFury.png", + ["stats"]= { + "8% increased Fire Damage", + "8% increased Physical Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "29061" + }, + ["in"]= { + "44347" + } + }, + [11016]= { + ["skill"]= 11016, + ["name"]= "Physical and Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "8% increased Elemental Damage", + "8% increased Physical Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "44347" + }, + ["in"]= { + "14665" + } + }, + [29061]= { + ["skill"]= 29061, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "7092", + "55993" + }, + ["in"]= { + "31153", + "60472" + } + }, + [55993]= { + ["skill"]= 55993, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "12% increased Elemental Damage" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "41251", + "8198" + }, + ["in"]= { + "29061" + } + }, + [41251]= { + ["skill"]= 41251, + ["name"]= "Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "20% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "13164" + }, + ["in"]= { + "55993" + } + }, + [8198]= { + ["skill"]= 8198, + ["name"]= "Chance to Ignite, Freeze and Shock", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "15% chance to Freeze, Shock and Ignite" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13164" + }, + ["in"]= { + "55993" + } + }, + [44298]= { + ["skill"]= 44298, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 86, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13164", + "44347", + "14665" + } + }, + [13164]= { + ["skill"]= 13164, + ["name"]= "Divine Judgement", + ["icon"]= "Art/2DArt/SkillIcons/passives/CelestialPunishment.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "50% increased Elemental Damage" + }, + ["group"]= 86, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "44298" + }, + ["in"]= { + "41251", + "8198" + } + }, + [44347]= { + ["skill"]= 44347, + ["name"]= "Divine Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineFury.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "BlackOil" + }, + ["stats"]= { + "Gain 5% of Physical Damage as Extra Fire Damage", + "Damage Penetrates 5% Fire Resistance" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "31153", + "44298" + }, + ["in"]= { + "11016" + } + }, + [14665]= { + ["skill"]= 14665, + ["name"]= "Divine Wrath", + ["icon"]= "Art/2DArt/SkillIcons/passives/DivineWrath.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "OpalescentOil" + }, + ["stats"]= { + "Gain 5% of Physical Damage as Extra Lightning Damage", + "Damage Penetrates 5% Lightning Resistance" + }, + ["group"]= 86, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "11016", + "44298" + }, + ["in"]= { + "7092" + } + }, + [25367]= { + ["skill"]= 25367, + ["name"]= "Blade Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/blademaster.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "SilverOil" + }, + ["stats"]= { + "20% increased Physical Damage with Swords", + "Sword Attacks deal 20% increased Damage with Ailments", + "8% increased Attack Speed with Swords", + "+200 to Accuracy Rating with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "55166", + "63184" + }, + ["in"]= {} + }, + [63184]= { + ["skill"]= 63184, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 87, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25367", + "33082" + } + }, + [33082]= { + ["skill"]= 33082, + ["name"]= "Razor's Edge", + ["icon"]= "Art/2DArt/SkillIcons/passives/razorsedge.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "35% increased Physical Damage with Swords", + "Sword Attacks deal 35% increased Damage with Ailments", + "Hits have 35% chance to ignore Enemy Physical Damage Reduction" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "63184" + }, + ["in"]= { + "62042" + } + }, + [7082]= { + ["skill"]= 7082, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "14% increased Physical Damage with Swords", + "Sword Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "4336", + "5233" + }, + ["in"]= { + "49415" + } + }, + [62042]= { + ["skill"]= 62042, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterysword.png", + ["stats"]= { + "16% increased Physical Damage with Swords", + "Sword Attacks deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "33082" + }, + ["in"]= { + "4336" + } + }, + [4336]= { + ["skill"]= 4336, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterysword.png", + ["stats"]= { + "16% increased Physical Damage with Swords", + "Sword Attacks deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62042" + }, + ["in"]= { + "7082" + } + }, + [55166]= { + ["skill"]= 55166, + ["name"]= "Sword Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "10% increased Physical Damage with Swords", + "Sword Attacks deal 10% increased Damage with Ailments", + "4% increased Attack Speed with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49415" + }, + ["in"]= { + "25367" + } + }, + [49415]= { + ["skill"]= 49415, + ["name"]= "Sword Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "10% increased Physical Damage with Swords", + "Sword Attacks deal 10% increased Damage with Ailments", + "4% increased Attack Speed with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 87, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "7082" + }, + ["in"]= { + "55166" + } + }, + [9976]= { + ["skill"]= 9976, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "18% increased Physical Damage with Axes", + "Axe Attacks deal 18% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "4940" + }, + ["in"]= { + "6113" + } + }, + [20018]= { + ["skill"]= 20018, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "18% increased Physical Damage with Axes", + "Axe Attacks deal 18% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "6113" + }, + ["in"]= { + "25682" + } + }, + [6113]= { + ["skill"]= 6113, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "18% increased Physical Damage with Axes", + "Axe Attacks deal 18% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "9976" + }, + ["in"]= { + "20018" + } + }, + [12407]= { + ["skill"]= 12407, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "12% increased Physical Damage with Axes", + "Axe Attacks deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "57953" + }, + ["in"]= { + "23038" + } + }, + [25682]= { + ["skill"]= 25682, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "14% increased Physical Damage with Axes", + "Axe Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "20018", + "63723" + }, + ["in"]= { + "49571" + } + }, + [49571]= { + ["skill"]= 49571, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "12% increased Physical Damage with Axes", + "Axe Attacks deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "25682" + }, + ["in"]= { + "57953" + } + }, + [57953]= { + ["skill"]= 57953, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "12% increased Physical Damage with Axes", + "Axe Attacks deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "49571" + }, + ["in"]= { + "12407" + } + }, + [4940]= { + ["skill"]= 4940, + ["name"]= "Cleaving", + ["icon"]= "Art/2DArt/SkillIcons/passives/hatchetmaster.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Physical Damage with Axes", + "Axe Attacks deal 30% increased Damage with Ailments", + "15% chance to Intimidate Enemies for 4 seconds on Hit with Attacks" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Intimidated enemies take 10% increased Attack Damage)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "24224" + }, + ["in"]= { + "9976" + } + }, + [24224]= { + ["skill"]= 24224, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 88, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4940", + "23038" + } + }, + [23038]= { + ["skill"]= 23038, + ["name"]= "Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/fellingtheweak.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "25% increased Physical Damage with Axes", + "Axe Attacks deal 25% increased Damage with Ailments", + "8% increased Attack Speed with Axes", + "Gain 1 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 88, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "12407", + "24224" + }, + ["in"]= {} + }, + [42546]= { + ["skill"]= 42546, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "772" + }, + ["in"]= { + "45403" + } + }, + [45403]= { + ["skill"]= 45403, + ["name"]= "Dexterity and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligencedexterity.png", + ["grantedDexterity"]= 20, + ["grantedIntelligence"]= 20, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+20 to Dexterity and Intelligence" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "42546" + }, + ["in"]= { + "35754" + } + }, + [772]= { + ["skill"]= 772, + ["name"]= "Shadow Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "43336", + "43122", + "6778", + "58827" + }, + ["in"]= { + "42546" + } + }, + [53992]= { + ["skill"]= 53992, + ["name"]= "Path of the Shadow", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Shadow's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "45272", + "38129" + }, + ["in"]= { + "43336" + } + }, + [43336]= { + ["skill"]= 43336, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 89, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "53992" + }, + ["in"]= { + "772" + } + }, + [7618]= { + ["skill"]= 7618, + ["name"]= "Path of the Ranger", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 2, + ["stats"]= { + "Can Allocate Passives from the Ranger's starting point", + "Grants 2 Passive Skill Points" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "45035", + "39821" + }, + ["in"]= { + "42671" + } + }, + [42671]= { + ["skill"]= 42671, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "7618" + }, + ["in"]= { + "49532" + } + }, + [38689]= { + ["skill"]= 38689, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Ascendant", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49532" + }, + ["in"]= { + "31598" + } + }, + [31598]= { + ["skill"]= 31598, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 40, + ["ascendancyName"]= "Ascendant", + ["stats"]= { + "+40 to Dexterity" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "38689" + }, + ["in"]= { + "35754" + } + }, + [49532]= { + ["skill"]= 49532, + ["name"]= "Ranger Ascendancy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Ascendancy.png", + ["isNotable"]= true, + ["ascendancyName"]= "Ascendant", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the three attached options)" + }, + ["group"]= 90, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42671", + "8656", + "34567", + "9327" + }, + ["in"]= { + "38689" + } + }, + [9327]= { + ["skill"]= 9327, + ["name"]= "Pathfinder", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Pathfinder.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Removes Bleeding when you use a Flask", + "Flasks gain a Charge every 3 seconds", + "20% chance for Flasks you use to not consume Charges" + }, + ["reminderText"]= { + "(You can only take one of the three Ranger Ascendancy passives)" + }, + ["group"]= 91, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49532" + } + }, + [40849]= { + ["skill"]= 40849, + ["name"]= "Persistence", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShrugOff.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "-10 Physical Damage taken from Hits", + "-1 Physical Damage taken from Hits per Level" + }, + ["group"]= 92, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [34567]= { + ["skill"]= 34567, + ["name"]= "Deadeye", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Deadeye.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "25% increased Effect of your Marks", + "Skills fire an additional Projectile", + "You and nearby Allies have Tailwind" + }, + ["reminderText"]= { + "(Tailwind increases Action Speed by 8%)", + "(You can only take one of the three Ranger Ascendancy passives)" + }, + ["group"]= 93, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "49532" + } + }, + [43122]= { + ["skill"]= 43122, + ["name"]= "Assassin", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Assassin.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike", + "10% chance to gain Elusive on Critical Strike", + "Damage cannot be Reflected" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)", + "(You can only take one of the three Shadow Ascendancy passives)" + }, + ["group"]= 94, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "772" + } + }, + [62416]= { + ["skill"]= 62416, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 95, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51559", + "39761", + "42917" + } + }, + [51559]= { + ["skill"]= 51559, + ["name"]= "Smashing Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstaff.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "Staff Attacks deal 30% increased Damage with Hits and Ailments", + "30% increased Critical Strike Chance with Staves", + "10% chance to gain an Endurance Charge on Melee Critical Strike" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "37639", + "48282", + "62416" + }, + ["in"]= {} + }, + [54667]= { + ["skill"]= 54667, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstaff.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "16113" + }, + ["in"]= { + "23027" + } + }, + [16113]= { + ["skill"]= 16113, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstaff.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "18990" + }, + ["in"]= { + "54667" + } + }, + [18990]= { + ["skill"]= 18990, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstaff.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "42917" + }, + ["in"]= { + "16113" + } + }, + [48282]= { + ["skill"]= 48282, + ["name"]= "Staff Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffspeed.png", + ["stats"]= { + "30% increased Critical Strike Chance while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "39761" + }, + ["in"]= { + "51559" + } + }, + [16754]= { + ["skill"]= 16754, + ["name"]= "Staff Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffspeed.png", + ["stats"]= { + "30% increased Critical Strike Chance while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "39761" + }, + ["in"]= { + "42917" + } + }, + [39761]= { + ["skill"]= 39761, + ["name"]= "Counterweight", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffCrit.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "SilverOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance while wielding a Staff", + "+30% to Critical Strike Multiplier while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "62416" + }, + ["in"]= { + "48282", + "16754" + } + }, + [37639]= { + ["skill"]= 37639, + ["name"]= "Staff Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 16% increased Damage with Hits and Ailments", + "10% increased Stun Duration with Staves on Enemies" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "51559", + "60740" + } + }, + [47427]= { + ["skill"]= 47427, + ["name"]= "Staff Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 16% increased Damage with Hits and Ailments", + "10% increased Stun Duration with Staves on Enemies" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "60740" + }, + ["in"]= { + "23027" + } + }, + [60740]= { + ["skill"]= 60740, + ["name"]= "Staff Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 16% increased Damage with Hits and Ailments", + "10% increased Stun Duration with Staves on Enemies" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 95, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "37639" + }, + ["in"]= { + "47427" + } + }, + [42917]= { + ["skill"]= 42917, + ["name"]= "Whirling Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/whirlingstaff.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "20% chance to gain a Power Charge when you Block", + "+8% Chance to Block Attack Damage while wielding a Staff", + "+8% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 95, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "16754", + "62416" + }, + ["in"]= { + "18990" + } + }, + [6778]= { + ["skill"]= 6778, + ["name"]= "Trickster", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Trickster.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Prevent +6% of Suppressed Spell Damage while on Full Energy Shield", + "1% more Damage for each different type of Mastery you have Allocated", + "Nearby Enemy Monsters' Action Speed is at most 90% of base value" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)", + "(You can only take one of the three Shadow Ascendancy passives)" + }, + ["group"]= 96, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "772" + } + }, + [60992]= { + ["skill"]= 60992, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 97, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27806" + } + }, + [65125]= { + ["skill"]= 65125, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 97, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33623" + }, + ["in"]= { + "63282" + } + }, + [33623]= { + ["skill"]= 33623, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 97, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "27806" + }, + ["in"]= { + "65125" + } + }, + [27806]= { + ["skill"]= 27806, + ["name"]= "As The Thunder", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryBuffEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "IndigoOil" + }, + ["stats"]= { + "25% increased Warcry Duration", + "20% increased Warcry Buff Effect" + }, + ["group"]= 97, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "60992" + }, + ["in"]= { + "33623" + } + }, + [40645]= { + ["skill"]= 40645, + ["name"]= "Bone Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "30% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 30% increased Damage with Ailments", + "15% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "38023", + "14832" + }, + ["in"]= { + "15163" + } + }, + [46127]= { + ["skill"]= 46127, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "20% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "8500" + }, + ["in"]= { + "20966" + } + }, + [20966]= { + ["skill"]= 20966, + ["name"]= "Mace Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "14% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "46127", + "59928" + }, + ["in"]= { + "30547" + } + }, + [8500]= { + ["skill"]= 8500, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "20% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "46127", + "16703" + } + }, + [30547]= { + ["skill"]= 30547, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedmace.png", + ["stats"]= { + "14% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 14% increased Damage with Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "20966" + }, + ["in"]= { + "15163" + } + }, + [15163]= { + ["skill"]= 15163, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedmace.png", + ["stats"]= { + "14% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 14% increased Damage with Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 98, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "30547", + "40645" + }, + ["in"]= {} + }, + [57266]= { + ["skill"]= 57266, + ["name"]= "Mace Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunmace.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "5% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 98, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "38023" + }, + ["in"]= { + "16703" + } + }, + [38023]= { + ["skill"]= 38023, + ["name"]= "Mace Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunmace.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "5% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 98, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= {}, + ["in"]= { + "40645", + "57266" + } + }, + [14832]= { + ["skill"]= 14832, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 98, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "40645", + "16703" + } + }, + [16703]= { + ["skill"]= 16703, + ["name"]= "Skull Cracking", + ["icon"]= "Art/2DArt/SkillIcons/passives/skullcracking.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "36% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 36% increased Damage with Ailments", + "12% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 98, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "8500", + "57266", + "14832" + }, + ["in"]= {} + }, + [8081]= { + ["skill"]= 8081, + ["name"]= "The Sands of Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/SandsofTimeNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Trigger level 1 Suspend in Time on Casting a Spell" + }, + ["reminderText"]= { + "(Creates a Suspended Mirage - an astral-infused clone of yourself that is suspended in time, just before the release of the spellcast that triggered them. On reaching three Suspended Mirages, all Suspended Mirages will be released, using the spell which was cast to create them. Suspended Mirages are not created by Vaal spells, channelling spells, instant spells, or spells which create minions)" + }, + ["group"]= 99, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [20160]= { + ["skill"]= 20160, + ["name"]= "Fidelitas' Spike", + ["icon"]= "Art/2DArt/SkillIcons/passives/FidelitasSpikeNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "30% chance to Shock", + "Deal no Physical Damage", + "Herald of Thunder has 66% increased Buff Effect", + "Herald of Thunder has 66% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 100, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [43857]= { + ["skill"]= 43857, + ["name"]= "Arakaali's Fang", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArakaalisFangNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Trigger Level 20 Raise Spiders on Kill" + }, + ["reminderText"]= { + "(Raise two spectral spiders from each nearby corpse that will attack your enemies with Viper Strike. Each raised spider grants you increased Attack Speed and increased Damage with Poison. Enemies will not engage the spiders directly, and they are immune to damage)" + }, + ["group"]= 101, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [59067]= { + ["skill"]= 59067, + ["name"]= "Femurs of the Saints", + ["icon"]= "Art/2DArt/SkillIcons/passives/FemuroftheSaintsNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+1% Chance to Block Attack Damage per Summoned Skeleton", + "2% increased Attack and Cast Speed per Summoned Raging Spirit", + "Regenerate 0.6% of Life per second for each Raised Zombie", + "30% increased Mana Regeneration Rate per Raised Spectre" + }, + ["group"]= 102, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [47058]= { + ["skill"]= 47058, + ["name"]= "Ahn's Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/AhnsMightNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "20% more Accuracy Rating while at maximum Frenzy Charges", + "-1 to Maximum Frenzy Charges", + "+100% to Critical Strike Multiplier while you have no Frenzy Charges" + }, + ["group"]= 103, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [26055]= { + ["skill"]= 26055, + ["name"]= "The Shattered Divinity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShatteredDivinityNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Grants Summon Greater Harbinger of Directions Skill" + }, + ["reminderText"]= { + "(Summons an immortal Harbinger minion. The minion will cast a random buff on you that grants one or all of the following: Fire 2 additional Projectiles, Chain 2 additional times, Projectiles Pierce 2 additional targets, or Projectiles Fork then Fork an additional time)" + }, + ["group"]= 104, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [58556]= { + ["skill"]= 58556, + ["name"]= "Divine Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergisedFortress.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Recover Energy Shield to above Armour\n3% of Physical Damage prevented from Hits Recently is Regenerated as Energy Shield per second" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "My faith is my shield." + }, + ["group"]= 105, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44202" + }, + ["in"]= {} + }, + [26712]= { + ["skill"]= 26712, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "8% increased Armour" + }, + ["group"]= 106, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "55190" + }, + ["in"]= { + "35288" + } + }, + [35288]= { + ["skill"]= 35288, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "8% increased Armour" + }, + ["group"]= 106, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "26712" + }, + ["in"]= { + "29353" + } + }, + [55190]= { + ["skill"]= 55190, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 2, + ["proxy"]= "30275" + }, + ["stats"]= {}, + ["group"]= 106, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30275", + "26712" + } + }, + [58827]= { + ["skill"]= 58827, + ["name"]= "Saboteur", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Saboteur.png", + ["ascendancyName"]= "Ascendant", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "15% increased Cooldown Recovery Rate", + "Hits have 20% chance to deal 50% more Area Damage", + "25% chance to Blind Enemies on Hit" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)", + "(You can only take one of the three Shadow Ascendancy passives)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 107, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "772" + } + }, + [35936]= { + ["skill"]= 35936, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "22441" + }, + ["in"]= { + "10108" + } + }, + [12003]= { + ["skill"]= 12003, + ["name"]= "Martial Weapon Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "9258", + "47058", + "26055", + "20160", + "54928", + "27054", + "25795" + }, + ["in"]= { + "60582" + } + }, + [36489]= { + ["skill"]= 36489, + ["name"]= "Armour Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "16633", + "52094", + "16994", + "48040", + "56940", + "35448", + "22628" + }, + ["in"]= { + "22441" + } + }, + [35989]= { + ["skill"]= 35989, + ["name"]= "Jewellery Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "48410", + "36072", + "54569", + "8967", + "33467", + "2768" + }, + ["in"]= { + "18147", + "9258" + } + }, + [22441]= { + ["skill"]= 22441, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "36489" + }, + ["in"]= { + "35936" + } + }, + [16633]= { + ["skill"]= 16633, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "15544" + }, + ["in"]= { + "36489" + } + }, + [15544]= { + ["skill"]= 15544, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "2460" + }, + ["in"]= { + "16633" + } + }, + [18147]= { + ["skill"]= 18147, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 5, + ["out"]= { + "35989" + }, + ["in"]= { + "2460" + } + }, + [9258]= { + ["skill"]= 9258, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 15, + ["out"]= { + "35989" + }, + ["in"]= { + "12003" + } + }, + [52094]= { + ["skill"]= 52094, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "60582" + }, + ["in"]= { + "36489" + } + }, + [60582]= { + ["skill"]= 60582, + ["name"]= "Passive Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["ascendancyName"]= "Reliquarian", + ["grantedPassivePoints"]= 1, + ["stats"]= { + "Grants 1 Passive Skill Point" + }, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "12003" + }, + ["in"]= { + "52094" + } + }, + [2460]= { + ["skill"]= 2460, + ["name"]= "Caster Weapon Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/ReliquarianAscendancyCenter.png", + ["isNotable"]= true, + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "18147", + "8081", + "17386", + "43857", + "37303", + "59067", + "40276" + }, + ["in"]= { + "15544" + } + }, + [10108]= { + ["skill"]= 10108, + ["name"]= "Reliquarian", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Reliquarian", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 108, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58833", + "35936" + }, + ["in"]= {} + }, + [19732]= { + ["skill"]= 19732, + ["name"]= "The Agnostic", + ["icon"]= "Art/2DArt/SkillIcons/passives/MiracleMaker.png", + ["isKeystone"]= true, + ["stats"]= { + "Removes all Energy Shield\nWhile not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life" + }, + ["flavourText"]= { + "Put your faith in intellect rather than mysticism." + }, + ["group"]= 109, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26270" + }, + ["in"]= {} + }, + [64238]= { + ["skill"]= 64238, + ["name"]= "Retaliation Skill Area Of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills have 15% increased Area of Effect" + }, + ["group"]= 110, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "4918" + }, + ["in"]= { + "44268" + } + }, + [44268]= { + ["skill"]= 44268, + ["name"]= "Retaliation Skill Area Of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills have 15% increased Area of Effect" + }, + ["group"]= 110, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64238" + }, + ["in"]= { + "5233" + } + }, + [4918]= { + ["skill"]= 4918, + ["name"]= "Indiscriminate Revenge", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationAoE.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "ClearOil" + }, + ["stats"]= { + "Retaliation Skills have 30% increased Area of Effect" + }, + ["group"]= 110, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26037" + }, + ["in"]= { + "64238" + } + }, + [26037]= { + ["skill"]= 26037, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 110, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4918" + } + }, + [35260]= { + ["skill"]= 35260, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "4177" + }, + ["in"]= { + "19103" + } + }, + [38989]= { + ["skill"]= 38989, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "15046", + "4177" + } + }, + [26481]= { + ["skill"]= 26481, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "19103" + }, + ["in"]= { + "41190" + } + }, + [41190]= { + ["skill"]= 41190, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "26481" + }, + ["in"]= { + "26270" + } + }, + [43647]= { + ["skill"]= 43647, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 111, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19103", + "15046", + "4177" + } + }, + [19103]= { + ["skill"]= 19103, + ["name"]= "Righteous Army", + ["icon"]= "Art/2DArt/SkillIcons/passives/RighteousArmy.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Regenerate 1% of Life per second", + "Minions deal 20% increased Damage", + "Minions Regenerate 1% of Life per second" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "35260", + "43647" + }, + ["in"]= { + "26481" + } + }, + [15046]= { + ["skill"]= 15046, + ["name"]= "Redemption", + ["icon"]= "Art/2DArt/SkillIcons/passives/Redemption.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "Minions deal 20% increased Damage", + "Minions have 10% increased Attack Speed", + "Minions have 10% increased Cast Speed" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "38989", + "43647" + }, + ["in"]= { + "29106" + } + }, + [4177]= { + ["skill"]= 4177, + ["name"]= "Spiritual Aid", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualAid.png", + ["isNotable"]= true, + ["recipe"]= { + "SilverOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Increases and Reductions to Minion Damage also affect you" + }, + ["group"]= 111, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "38989", + "43647" + }, + ["in"]= { + "35260" + } + }, + [29106]= { + ["skill"]= 29106, + ["name"]= "Minion Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "Minions have 3% increased Attack Speed", + "Minions have 3% increased Cast Speed" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "25332", + "15046" + }, + ["in"]= {} + }, + [25332]= { + ["skill"]= 25332, + ["name"]= "Minion Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "Minions have 3% increased Attack Speed", + "Minions have 3% increased Cast Speed" + }, + ["group"]= 111, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "29106", + "26270" + } + }, + [31961]= { + ["skill"]= 31961, + ["name"]= "Resolute Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.png", + ["isKeystone"]= true, + ["stats"]= { + "Your hits can't be Evaded\nNever deal Critical Strikes" + }, + ["flavourText"]= { + "Great tacticians learn that consistency often trumps potential." + }, + ["group"]= 112, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63282" + }, + ["in"]= {} + }, + [17386]= { + ["skill"]= 17386, + ["name"]= "Xirgil's Crank", + ["icon"]= "Art/2DArt/SkillIcons/passives/XirgilsCrankNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+1 to Level of all Spell Skill Gems", + "30% chance for Energy Shield Recharge to start when you Block" + }, + ["group"]= 113, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [40276]= { + ["skill"]= 40276, + ["name"]= "Shimmeron", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShimmeronNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+8% to Critical Strike Multiplier per Power Charge", + "+0.3% to Critical Strike Chance per Power Charge", + "+3% Chance to Block Spell Damage per Power Charge" + }, + ["group"]= 114, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [25795]= { + ["skill"]= 25795, + ["name"]= "Ngamahu's Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/RiriTeNgamahuNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Trigger Level 20 Molten Burst on Melee Hit" + }, + ["reminderText"]= { + "(Molten Burst launches molten projectiles from the point of impact, causing area attack damage to enemies where they land)" + }, + ["group"]= 115, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [54928]= { + ["skill"]= 54928, + ["name"]= "The Sacred Chalice", + ["icon"]= "Art/2DArt/SkillIcons/passives/SacredChaliceNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Gain a Flask Charge when you deal a Critical Strike", + "Gain 20% of Physical Damage as Extra Cold Damage if you've\nused a Sapphire Flask Recently", + "Gain 20% of Physical Damage as Extra Fire Damage if you've\nused a Ruby Flask Recently", + "Gain 20% of Physical Damage as Extra Lightning Damage if you've\nused a Topaz Flask Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 116, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [37303]= { + ["skill"]= 37303, + ["name"]= "The Black Cane", + ["icon"]= "Art/2DArt/SkillIcons/passives/TheBlackCaneNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Each Summoned Phantasm grants you Phantasmal Might" + }, + ["reminderText"]= { + "(Phantasmal Might grants Added Spell Physical Damage based on the level of the Phantasm. Multiple instances of Phantasmal Might stack)" + }, + ["group"]= 117, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2460" + } + }, + [27054]= { + ["skill"]= 27054, + ["name"]= "Al Dhih", + ["icon"]= "Art/2DArt/SkillIcons/passives/AldihNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage", + "Warcry Skills' Cooldown Time is 4 seconds" + }, + ["group"]= 118, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12003" + } + }, + [26270]= { + ["skill"]= 26270, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 119, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41190", + "25332", + "22472", + "57283" + }, + ["in"]= { + "19732", + "60472", + "46897", + "64210" + } + }, + [60472]= { + ["skill"]= 60472, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 120, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23027", + "26270", + "29061" + }, + ["in"]= { + "34171" + } + }, + [23027]= { + ["skill"]= 23027, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 121, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "54667", + "47427", + "10555" + }, + ["in"]= { + "60472", + "44202", + "6712" + } + }, + [44202]= { + ["skill"]= 44202, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 122, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "29353", + "23027" + }, + ["in"]= { + "58556", + "18208", + "21929" + } + }, + [29353]= { + ["skill"]= 29353, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 123, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35288", + "50570", + "11431" + }, + ["in"]= { + "44202", + "63282" + } + }, + [63282]= { + ["skill"]= 63282, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 124, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "29353", + "59928", + "34590", + "65125" + }, + ["in"]= { + "31961", + "37501" + } + }, + [59928]= { + ["skill"]= 59928, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 125, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63723" + }, + ["in"]= { + "20966", + "63282", + "44624", + "2219", + "30380" + } + }, + [63723]= { + ["skill"]= 63723, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 126, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5233" + }, + ["in"]= { + "25682", + "59928", + "48109", + "62429" + } + }, + [5233]= { + ["skill"]= 5233, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 127, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "3644", + "10851", + "44268" + }, + ["in"]= { + "7082", + "63723", + "61388", + "55676", + "46585", + "7285" + } + }, + [16810]= { + ["skill"]= 16810, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 128, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "861" + } + }, + [44922]= { + ["skill"]= 44922, + ["name"]= "Shield Damage and Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "14% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 14% increased Damage with Ailments while holding a Shield", + "30% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "861" + }, + ["in"]= { + "10851" + } + }, + [48813]= { + ["skill"]= 48813, + ["name"]= "Shield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "10% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 10% increased Damage with Ailments while holding a Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10851" + }, + ["in"]= { + "861" + } + }, + [10851]= { + ["skill"]= 10851, + ["name"]= "Shield Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "12% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 12% increased Damage with Ailments while holding a Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "44922" + }, + ["in"]= { + "5233", + "48813" + } + }, + [861]= { + ["skill"]= 861, + ["name"]= "Aggressive Bastion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while holding a Shield", + "30% increased Physical Attack Damage while holding a Shield", + "Attack Skills deal 30% increased Damage with Ailments while holding a Shield", + "10% chance to gain an Endurance Charge on Kill while holding a Shield" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 128, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48813", + "16810" + }, + ["in"]= { + "44922" + } + }, + [2768]= { + ["skill"]= 2768, + ["name"]= "Melding of the Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeldingoftheFleshNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "-50% to all Elemental Resistances", + "-5% to all maximum Elemental Resistances", + "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 129, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [33467]= { + ["skill"]= 33467, + ["name"]= "Kaom's Binding", + ["icon"]= "Art/2DArt/SkillIcons/passives/KaomBeltNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Nearby Enemies Convert 25% of their Physical Damage to Fire" + }, + ["group"]= 130, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [48410]= { + ["skill"]= 48410, + ["name"]= "Polaric Devastation", + ["icon"]= "Art/2DArt/SkillIcons/passives/PolaricDevastationNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Cover Enemies in Ash for 5 seconds when you Ignite them", + "Cover Enemies in Frost for 5 seconds when you Freeze them" + }, + ["reminderText"]= { + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken)", + "(Being Covered in Frost applies 50% less Critical Strike Chance and 20% increased Cold Damage Taken)" + }, + ["group"]= 131, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [8967]= { + ["skill"]= 8967, + ["name"]= "Screams of the Desiccated", + ["icon"]= "Art/2DArt/SkillIcons/passives/ScreamsoftheDesiccatedNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "You have Impenetrable Shrine Buff while affected by no Flasks" + }, + ["group"]= 132, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [36072]= { + ["skill"]= 36072, + ["name"]= "Gloomfang", + ["icon"]= "Art/2DArt/SkillIcons/passives/GloomfangNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Skills Chain +1 times", + "Projectiles that have Chained gain 20% of Non-Chaos Damage as extra Chaos Damage" + }, + ["group"]= 133, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [57283]= { + ["skill"]= 57283, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 134, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26270", + "33943" + } + }, + [33943]= { + ["skill"]= 33943, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 134, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "57283" + }, + ["in"]= { + "28449" + } + }, + [28449]= { + ["skill"]= 28449, + ["name"]= "Surge of Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRegenerationGainRegenNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "Every 4 seconds, Regenerate 15% of Life over one second" + }, + ["group"]= 134, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "33943", + "27235" + }, + ["in"]= {} + }, + [27235]= { + ["skill"]= 27235, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 134, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "28449" + } + }, + [48144]= { + ["skill"]= 48144, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 135, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46471" + } + }, + [21048]= { + ["skill"]= 21048, + ["name"]= "Link Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode2.png", + ["stats"]= { + "Link Skills have 15% increased Skill Effect Duration" + }, + ["group"]= 135, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46471" + }, + ["in"]= { + "10555" + } + }, + [10555]= { + ["skill"]= 10555, + ["name"]= "Link Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode2.png", + ["stats"]= { + "Link Skills have 15% increased Skill Effect Duration" + }, + ["group"]= 135, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "21048" + }, + ["in"]= { + "23027" + } + }, + [46471]= { + ["skill"]= 46471, + ["name"]= "Powerful Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLink3.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "20% increased Buff Effect of your Links for which 50% of Link Duration has Expired", + "Curses are inflicted on you instead of Linked targets" + }, + ["group"]= 135, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "48144" + }, + ["in"]= { + "21048" + } + }, + [54569]= { + ["skill"]= 54569, + ["name"]= "Presence of Chayula", + ["icon"]= "Art/2DArt/SkillIcons/passives/PresenceofChayulaNode.png", + ["ascendancyName"]= "Reliquarian", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "Cannot be Stunned", + "20% of Maximum Life Converted to Energy Shield" + }, + ["group"]= 136, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35989" + } + }, + [60619]= { + ["skill"]= 60619, + ["name"]= "Galvanic Hammer", + ["icon"]= "Art/2DArt/SkillIcons/passives/galvanichammer.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "CrimsonOil" + }, + ["stats"]= { + "10% increased Accuracy Rating with Maces or Sceptres", + "30% increased Elemental Damage with Maces or Sceptres", + "Damage with Weapons Penetrates 5% Elemental Resistances" + }, + ["group"]= 137, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "31292" + }, + ["in"]= { + "24677" + } + }, + [20467]= { + ["skill"]= 20467, + ["name"]= "Mace Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "16% increased Critical Strike Chance with Maces or Sceptres", + "+16% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "18379" + }, + ["in"]= { + "5068" + } + }, + [5068]= { + ["skill"]= 5068, + ["name"]= "Mace Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "16% increased Critical Strike Chance with Maces or Sceptres", + "+16% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "20467" + }, + ["in"]= { + "27134" + } + }, + [18379]= { + ["skill"]= 18379, + ["name"]= "Mace Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "16% increased Critical Strike Chance with Maces or Sceptres", + "+16% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "39657" + }, + ["in"]= { + "20467" + } + }, + [39657]= { + ["skill"]= 39657, + ["name"]= "Pain Forger", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance with Maces or Sceptres", + "10% reduced Enemy Stun Threshold with Maces or Sceptres", + "10% chance to gain a Power Charge when you Stun with Melee Damage" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "31292" + }, + ["in"]= { + "18379" + } + }, + [24677]= { + ["skill"]= 24677, + ["name"]= "Mace Elemental Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceElemental.png", + ["stats"]= { + "8% increased Accuracy Rating with Maces or Sceptres", + "12% increased Elemental Damage with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "60619" + }, + ["in"]= { + "61950" + } + }, + [61950]= { + ["skill"]= 61950, + ["name"]= "Mace Elemental Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceElemental.png", + ["stats"]= { + "8% increased Accuracy Rating with Maces or Sceptres", + "12% increased Elemental Damage with Maces or Sceptres" + }, + ["group"]= 137, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "24677" + }, + ["in"]= { + "27134" + } + }, + [27134]= { + ["skill"]= 27134, + ["name"]= "Mace Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 14% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 137, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "5068", + "61950", + "64210" + }, + ["in"]= {} + }, + [31292]= { + ["skill"]= 31292, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 137, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60619", + "39657" + } + }, + [55027]= { + ["skill"]= 55027, + ["name"]= "Shining Justice", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplar1.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Effect of Consecrated Ground you create", + "Consecrated Ground you create grants 30% increased Accuracy Rating to you and Allies" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "27157" + }, + ["in"]= { + "22180", + "15783" + } + }, + [22180]= { + ["skill"]= 22180, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "15% increased Accuracy Rating" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "55027" + }, + ["in"]= { + "18208" + } + }, + [15783]= { + ["skill"]= 15783, + ["name"]= "Consecrated Ground Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png", + ["stats"]= { + "20% increased Effect of Consecrated Ground you create" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55027" + }, + ["in"]= { + "18208" + } + }, + [18208]= { + ["skill"]= 18208, + ["name"]= "Consecrated Ground Effect and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplarNode.png", + ["stats"]= { + "10% increased Effect of Consecrated Ground you create", + "10% increased Accuracy Rating" + }, + ["group"]= 138, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "44202", + "15783", + "22180" + }, + ["in"]= {} + }, + [27157]= { + ["skill"]= 27157, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 138, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55027" + } + }, + [44624]= { + ["skill"]= 44624, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "31604", + "59928", + "25796" + }, + ["in"]= {} + }, + [31604]= { + ["skill"]= 31604, + ["name"]= "Faster Bleeding", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Bleeding you inflict deals Damage 5% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "26023" + }, + ["in"]= { + "44624" + } + }, + [43601]= { + ["skill"]= 43601, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 139, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26023" + } + }, + [25796]= { + ["skill"]= 25796, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26023" + }, + ["in"]= { + "44624" + } + }, + [26023]= { + ["skill"]= 26023, + ["name"]= "Savage Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/FasterBleeding2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 139, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "43601" + }, + ["in"]= { + "31604", + "25796" + } + }, + [864]= { + ["skill"]= 864, + ["name"]= "Impale Effect with Two Handed Weapons", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "10% increased Effect of Impales you inflict with Two Handed Weapons" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 140, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "24858" + }, + ["in"]= { + "61388" + } + }, + [61388]= { + ["skill"]= 61388, + ["name"]= "Impale Chance with Two Handed Weapons", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Two Handed Weapons" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 140, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "864", + "5233" + }, + ["in"]= {} + }, + [24858]= { + ["skill"]= 24858, + ["name"]= "Harpooner", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedweaponImpalesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Two Handed Weapons", + "30% increased Effect of Impales you inflict with Two Handed Weapons on Non-Impaled Enemies", + "50% increased Impale Duration" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 140, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "52074" + }, + ["in"]= { + "864" + } + }, + [52074]= { + ["skill"]= 52074, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 140, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24858" + } + }, + [15727]= { + ["skill"]= 15727, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "53630" + }, + ["in"]= { + "34750" + } + }, + [53630]= { + ["skill"]= 53630, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "55194" + }, + ["in"]= { + "15727" + } + }, + [34750]= { + ["skill"]= 34750, + ["name"]= "Weapon Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "12% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "14419", + "15727" + }, + ["in"]= { + "3644" + } + }, + [30439]= { + ["skill"]= 30439, + ["name"]= "Lava Lash", + ["icon"]= "Art/2DArt/SkillIcons/passives/lavalash.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "GoldenOil" + }, + ["stats"]= { + "Damage with Weapons Penetrates 8% Fire Resistance", + "30% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "38320", + "27697" + }, + ["in"]= { + "8879" + } + }, + [38320]= { + ["skill"]= 38320, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 141, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30439", + "55194", + "19794" + } + }, + [55194]= { + ["skill"]= 55194, + ["name"]= "Settling Ash", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteAshNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "Nearby Enemies are Covered in Ash if you haven't moved in the past 2 seconds" + }, + ["reminderText"]= { + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken)" + }, + ["group"]= 141, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "61351", + "38320" + }, + ["in"]= { + "53630" + } + }, + [19794]= { + ["skill"]= 19794, + ["name"]= "Concussive Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteStunNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Hits Stun as though dealing 50% more Melee Fire Damage", + "Ignites from Stunning Melee Hits deal 20% more Damage" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "27697", + "38320" + }, + ["in"]= { + "61351" + } + }, + [61351]= { + ["skill"]= 61351, + ["name"]= "Stun Threshold Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "19794" + }, + ["in"]= { + "55194" + } + }, + [27697]= { + ["skill"]= 27697, + ["name"]= "Stun Threshold Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "30439", + "19794" + } + }, + [8879]= { + ["skill"]= 8879, + ["name"]= "Weapon Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "16% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "30439" + }, + ["in"]= { + "14419" + } + }, + [14419]= { + ["skill"]= 14419, + ["name"]= "Weapon Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "16% increased Fire Damage with Attack Skills" + }, + ["group"]= 141, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "8879" + }, + ["in"]= { + "34750" + } + }, + [38377]= { + ["skill"]= 38377, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 142, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53757", + "63150" + } + }, + [24157]= { + ["skill"]= 24157, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53757" + }, + ["in"]= { + "11431" + } + }, + [53757]= { + ["skill"]= 53757, + ["name"]= "Shamanistic Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/shamsnisticfury.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "VioletOil" + }, + ["stats"]= { + "25% increased Totem Damage", + "25% increased Totem Placement speed" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "38377" + }, + ["in"]= { + "24157" + } + }, + [11431]= { + ["skill"]= 11431, + ["name"]= "Totem Life and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Life" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "24157", + "30825" + }, + ["in"]= { + "29353" + } + }, + [30825]= { + ["skill"]= 30825, + ["name"]= "Totem Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "15% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "63150" + }, + ["in"]= { + "11431" + } + }, + [63150]= { + ["skill"]= 63150, + ["name"]= "Ironwood", + ["icon"]= "Art/2DArt/SkillIcons/passives/ironwoodtotem.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "TealOil" + }, + ["stats"]= { + "40% increased Totem Life", + "Totems have 40% additional Physical Damage Reduction" + }, + ["group"]= 142, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38377" + }, + ["in"]= { + "30825" + } + }, + [9471]= { + ["skill"]= 9471, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 143, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24716" + } + }, + [34590]= { + ["skill"]= 34590, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "48199", + "53332" + }, + ["in"]= { + "63282" + } + }, + [48199]= { + ["skill"]= 48199, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "24716" + }, + ["in"]= { + "34590" + } + }, + [53332]= { + ["skill"]= 53332, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "30714" + }, + ["in"]= { + "34590" + } + }, + [30714]= { + ["skill"]= 30714, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24716" + }, + ["in"]= { + "53332" + } + }, + [24716]= { + ["skill"]= 24716, + ["name"]= "Battle Trance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "AmberOil" + }, + ["stats"]= { + "+10 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 143, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9471" + }, + ["in"]= { + "48199", + "30714" + } + }, + [58831]= { + ["skill"]= 58831, + ["name"]= "Disemboweling", + ["icon"]= "Art/2DArt/SkillIcons/passives/deadlyprecision.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "50% increased Melee Critical Strike Chance", + "+25% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15678", + "33823" + }, + ["in"]= { + "39023" + } + }, + [33823]= { + ["skill"]= 33823, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 144, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58831" + } + }, + [56355]= { + ["skill"]= 56355, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "20% increased Melee Critical Strike Chance", + "+10% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "39023" + }, + ["in"]= { + "37501" + } + }, + [39023]= { + ["skill"]= 39023, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "20% increased Melee Critical Strike Chance", + "+10% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "58831" + }, + ["in"]= { + "56355" + } + }, + [37501]= { + ["skill"]= 37501, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "25% increased Melee Critical Strike Chance" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "56355", + "63282" + }, + ["in"]= { + "15678" + } + }, + [15678]= { + ["skill"]= 15678, + ["name"]= "Melee Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png", + ["stats"]= { + "+12% to Melee Critical Strike Multiplier" + }, + ["group"]= 144, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "37501" + }, + ["in"]= { + "58831" + } + }, + [34487]= { + ["skill"]= 34487, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 145, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63635" + } + }, + [65159]= { + ["skill"]= 65159, + ["name"]= "Totem Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png", + ["stats"]= { + "Spells Cast by Totems have 5% increased Cast Speed", + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "31520" + }, + ["in"]= { + "4300" + } + }, + [31520]= { + ["skill"]= 31520, + ["name"]= "Totem Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandattackspeed.png", + ["stats"]= { + "Spells Cast by Totems have 5% increased Cast Speed", + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63635" + }, + ["in"]= { + "65159" + } + }, + [4300]= { + ["skill"]= 4300, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "65159" + }, + ["in"]= { + "11190", + "64210" + } + }, + [63635]= { + ["skill"]= 63635, + ["name"]= "Primal Manifestation", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemicmastery.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Totem Damage", + "30% increased Totem Life", + "50% increased Totem Duration" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "35910", + "34487" + }, + ["in"]= { + "31520" + } + }, + [35910]= { + ["skill"]= 35910, + ["name"]= "Totem Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "15% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "11190" + }, + ["in"]= { + "63635" + } + }, + [11190]= { + ["skill"]= 11190, + ["name"]= "Totem Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemlife.png", + ["stats"]= { + "15% increased Totem Life", + "Totems gain +16% to all Elemental Resistances" + }, + ["group"]= 145, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "4300" + }, + ["in"]= { + "35910" + } + }, + [22472]= { + ["skill"]= 22472, + ["name"]= "Mana and Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "28076", + "57167" + }, + ["in"]= { + "26270" + } + }, + [57167]= { + ["skill"]= 57167, + ["name"]= "Mana and Arcane Surge Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "20% increased Effect of Arcane Surge on you" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "51108" + }, + ["in"]= { + "22472" + } + }, + [28076]= { + ["skill"]= 28076, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "51108" + }, + ["in"]= { + "22472" + } + }, + [51108]= { + ["skill"]= 51108, + ["name"]= "Arcane Capacitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandArcaneSurge.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "15% increased maximum Mana", + "10% increased Effect of Arcane Surge on you per\n200 Mana spent Recently, up to 50%", + "10% chance to gain Arcane Surge when you Kill an Enemy" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 146, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "44948" + }, + ["in"]= { + "57167", + "28076" + } + }, + [44948]= { + ["skill"]= 44948, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 146, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51108" + } + }, + [30302]= { + ["skill"]= 30302, + ["name"]= "Hearty", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hearty.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "15% increased Life Regeneration rate", + "Regenerate 1.8% of Life per second" + }, + ["group"]= 147, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53517" + }, + ["in"]= { + "48822" + } + }, + [53517]= { + ["skill"]= 53517, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 147, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30302" + } + }, + [2219]= { + ["skill"]= 2219, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 147, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "48822", + "59928" + }, + ["in"]= {} + }, + [48822]= { + ["skill"]= 48822, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 147, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "30302" + }, + ["in"]= { + "2219" + } + }, + [62017]= { + ["skill"]= 62017, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increased armor.png", + ["stats"]= { + "8% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 148, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "33287", + "53793" + }, + ["in"]= {} + }, + [55676]= { + ["skill"]= 55676, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increased armor.png", + ["stats"]= { + "8% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 148, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "5233" + }, + ["in"]= { + "33287" + } + }, + [33287]= { + ["skill"]= 33287, + ["name"]= "Juggernaut", + ["icon"]= "Art/2DArt/SkillIcons/passives/increased armor.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "24% increased Armour", + "8% increased maximum Life" + }, + ["group"]= 148, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55676", + "64406" + }, + ["in"]= { + "62017" + } + }, + [64406]= { + ["skill"]= 64406, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 148, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33287" + } + }, + [46585]= { + ["skill"]= 46585, + ["name"]= "Banner Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 12% increased Area of Effect" + }, + ["group"]= 149, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "54880", + "5233" + }, + ["in"]= {} + }, + [54880]= { + ["skill"]= 54880, + ["name"]= "Banner Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 12% increased Area of Effect" + }, + ["group"]= 149, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "40619" + }, + ["in"]= { + "46585" + } + }, + [40619]= { + ["skill"]= 40619, + ["name"]= "Awe and Terror", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Enemies Killed near your Banner have 20% chance to Explode, dealing a tenth of their Life as Physical Damage", + "Banner Skills have 20% increased Area of Effect" + }, + ["group"]= 149, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32242" + }, + ["in"]= { + "54880" + } + }, + [32242]= { + ["skill"]= 32242, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 149, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "40619" + } + }, + [44429]= { + ["skill"]= 44429, + ["name"]= "Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "+3% to all Elemental Resistances" + }, + ["group"]= 150, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53118", + "55649" + }, + ["in"]= {} + }, + [30380]= { + ["skill"]= 30380, + ["name"]= "Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "+3% to all Elemental Resistances" + }, + ["group"]= 150, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "59928" + }, + ["in"]= { + "53118" + } + }, + [53118]= { + ["skill"]= 53118, + ["name"]= "Barbarism", + ["icon"]= "Art/2DArt/SkillIcons/passives/titanicmight.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Life", + "+1% to maximum Fire Resistance", + "+8% to Fire Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 150, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30380", + "4139" + }, + ["in"]= { + "44429" + } + }, + [4139]= { + ["skill"]= 4139, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 150, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53118" + } + }, + [38508]= { + ["skill"]= 38508, + ["name"]= "Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "20% increased Endurance Charge Duration" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "37326" + }, + ["in"]= { + "22285" + } + }, + [26725]= { + ["skill"]= 26725, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "62429" + }, + ["in"]= { + "62363" + } + }, + [48109]= { + ["skill"]= 48109, + ["name"]= "Life Regeneration per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "Regenerate 0.2% of Life per second per Endurance Charge" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "63723" + }, + ["in"]= { + "37326" + } + }, + [37326]= { + ["skill"]= 37326, + ["name"]= "Stamina", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Endurance Charges" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "48109" + }, + ["in"]= { + "38508" + } + }, + [62429]= { + ["skill"]= 62429, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "63723" + }, + ["in"]= { + "26725" + } + }, + [62363]= { + ["skill"]= 62363, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 151, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26725" + }, + ["in"]= { + "22285" + } + }, + [40766]= { + ["skill"]= 40766, + ["name"]= "Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "20% increased Endurance Charge Duration" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "11730", + "37999" + }, + ["in"]= {} + }, + [37999]= { + ["skill"]= 37999, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "34173", + "29199" + }, + ["in"]= { + "40766", + "26196" + } + }, + [26196]= { + ["skill"]= 26196, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 152, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37999", + "34171" + }, + ["in"]= {} + }, + [11730]= { + ["skill"]= 11730, + ["name"]= "Endurance", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+1 to Maximum Endurance Charges" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "40766", + "34171" + } + }, + [34173]= { + ["skill"]= 34173, + ["name"]= "Overcharge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Power Charges" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "27575" + }, + ["in"]= { + "37999" + } + }, + [27575]= { + ["skill"]= 27575, + ["name"]= "Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "20% increased Power Charge Duration" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "34171" + }, + ["in"]= { + "34173" + } + }, + [34171]= { + ["skill"]= 34171, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 152, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "11730", + "60472" + }, + ["in"]= { + "26196", + "27575" + } + }, + [46636]= { + ["skill"]= 46636, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38906" + }, + ["in"]= { + "27137" + } + }, + [21929]= { + ["skill"]= 21929, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "38836", + "44202" + }, + ["in"]= {} + }, + [38836]= { + ["skill"]= 38836, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "27137" + }, + ["in"]= { + "21929" + } + }, + [27137]= { + ["skill"]= 27137, + ["name"]= "Sanctum of Thought", + ["icon"]= "Art/2DArt/SkillIcons/passives/Unwavering.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes", + "18% increased Armour", + "12% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "37641", + "46636" + }, + ["in"]= { + "38836" + } + }, + [38906]= { + ["skill"]= 38906, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Energy Shield" + }, + ["group"]= 153, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "50570" + }, + ["in"]= { + "46636" + } + }, + [37641]= { + ["skill"]= 37641, + ["name"]= "Armour and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40578, + ["stats"]= { + "2% chance to Defend with 150% of Armour per 5% missing Energy Shield" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 37614, + ["stats"]= { + "Recover 5% of Energy Shield over 1 second when you take Physical Damage from an Enemy Hit" + } + }, + { + ["effect"]= 16215, + ["stats"]= { + "You take 20% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 18301, + ["stats"]= { + "Increases and Reductions to Armour also apply to Energy\nShield Recharge Rate at 20% of their value" + } + }, + { + ["effect"]= 8653, + ["stats"]= { + "100% increased Armour and Energy Shield from Equipped Body Armour if Equipped Helmet,\nGloves and Boots all have Armour and Energy Shield" + } + }, + { + ["effect"]= 65504, + ["stats"]= { + "20% reduced Effect of Curses on you" + } + } + }, + ["stats"]= {}, + ["group"]= 153, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27137" + } + }, + [40508]= { + ["skill"]= 40508, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "8% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 154, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35958" + }, + ["in"]= { + "10575" + } + }, + [46897]= { + ["skill"]= 46897, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "8% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 154, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26270" + }, + ["in"]= { + "35958" + } + }, + [35958]= { + ["skill"]= 35958, + ["name"]= "Faith and Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/bodysoul.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "15% increased Armour", + "10% increased maximum Energy Shield", + "+8% to all Elemental Resistances" + }, + ["group"]= 154, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46897", + "30393" + }, + ["in"]= { + "40508" + } + }, + [30393]= { + ["skill"]= 30393, + ["name"]= "Armour and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40578, + ["stats"]= { + "2% chance to Defend with 150% of Armour per 5% missing Energy Shield" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 37614, + ["stats"]= { + "Recover 5% of Energy Shield over 1 second when you take Physical Damage from an Enemy Hit" + } + }, + { + ["effect"]= 16215, + ["stats"]= { + "You take 20% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 18301, + ["stats"]= { + "Increases and Reductions to Armour also apply to Energy\nShield Recharge Rate at 20% of their value" + } + }, + { + ["effect"]= 8653, + ["stats"]= { + "100% increased Armour and Energy Shield from Equipped Body Armour if Equipped Helmet,\nGloves and Boots all have Armour and Energy Shield" + } + }, + { + ["effect"]= 65504, + ["stats"]= { + "20% reduced Effect of Curses on you" + } + } + }, + ["stats"]= {}, + ["group"]= 154, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35958" + } + }, + [36949]= { + ["skill"]= 36949, + ["name"]= "Devotion", + ["icon"]= "Art/2DArt/SkillIcons/passives/titanicmight.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "25% increased Effect of Consecrated Ground you create" + }, + ["group"]= 155, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "10031", + "41415" + }, + ["in"]= { + "6712" + } + }, + [6712]= { + ["skill"]= 6712, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 155, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "36949", + "23027" + }, + ["in"]= {} + }, + [10031]= { + ["skill"]= 10031, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 155, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "15064" + }, + ["in"]= { + "36949" + } + }, + [41415]= { + ["skill"]= 41415, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 155, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36949" + } + }, + [52220]= { + ["skill"]= 52220, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 156, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26564" + } + }, + [55854]= { + ["skill"]= 55854, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "12% increased Physical Damage" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "1572", + "38538", + "50570" + }, + ["in"]= {} + }, + [1572]= { + ["skill"]= 1572, + ["name"]= "Physical Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png", + ["stats"]= { + "+6% to Physical Damage over Time Multiplier" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "47421" + }, + ["in"]= { + "55854" + } + }, + [47421]= { + ["skill"]= 47421, + ["name"]= "Physical Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png", + ["stats"]= { + "+6% to Physical Damage over Time Multiplier" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26564" + }, + ["in"]= { + "1572" + } + }, + [38538]= { + ["skill"]= 38538, + ["name"]= "Physical Damage and Overwhelm", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "10% increased Physical Damage" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "23760" + }, + ["in"]= { + "55854" + } + }, + [23760]= { + ["skill"]= 23760, + ["name"]= "Physical Damage and Overwhelm", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "10% increased Physical Damage" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "26564" + }, + ["in"]= { + "38538" + } + }, + [26564]= { + ["skill"]= 26564, + ["name"]= "Vanquisher", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Crush Enemies for 4 seconds when you Hit them while they are on Full Life", + "40% increased Physical Damage" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15%)" + }, + ["group"]= 156, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52220" + }, + ["in"]= { + "47421", + "23760" + } + }, + [50570]= { + ["skill"]= 50570, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 157, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50422" + }, + ["in"]= { + "29353", + "38906", + "55854", + "7399" + } + }, + [41970]= { + ["skill"]= 41970, + ["name"]= "Ancestral Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemmax.png", + ["isKeystone"]= true, + ["stats"]= { + "You can't deal Damage with Skills yourself\n+1 to maximum number of Summoned Totems" + }, + ["flavourText"]= { + "A wooden construct, mute and blind.", + "But fear the wrath of shackled mind." + }, + ["group"]= 158, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64210" + } + }, + [64210]= { + ["skill"]= 64210, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 159, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26270", + "5935", + "41970", + "4300" + }, + ["in"]= { + "27134", + "5743", + "7444" + } + }, + [57279]= { + ["skill"]= 57279, + ["name"]= "Blood Magic", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.png", + ["isKeystone"]= true, + ["stats"]= { + "Removes all mana\n10% more maximum Life\nSkills Cost Life instead of Mana\nSkills Reserve Life instead of Mana" + }, + ["flavourText"]= { + "Lay open your veins, and draw power from your own spilled life." + }, + ["group"]= 160, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "3644" + }, + ["in"]= {} + }, + [12247]= { + ["skill"]= 12247, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 161, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "53793" + }, + ["in"]= { + "56359" + } + }, + [56359]= { + ["skill"]= 56359, + ["name"]= "Cannibalistic Rite", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "Attack Skills Cost Life instead of 10% of Mana Cost", + "25% increased Cost Efficiency of Attacks" + }, + ["group"]= 161, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "12247", + "2841" + }, + ["in"]= { + "7285" + } + }, + [2841]= { + ["skill"]= 2841, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 161, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56359" + } + }, + [7285]= { + ["skill"]= 7285, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 161, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56359", + "5233" + }, + ["in"]= {} + }, + [5916]= { + ["skill"]= 5916, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "4713" + }, + ["in"]= { + "29049" + } + }, + [4713]= { + ["skill"]= 4713, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "+4% to Fire Damage over Time Multiplier" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "7444", + "6245" + }, + ["in"]= { + "5916" + } + }, + [6245]= { + ["skill"]= 6245, + ["name"]= "Chance to Ignite", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "20% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "29049" + }, + ["in"]= { + "4713" + } + }, + [11505]= { + ["skill"]= 11505, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 162, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29049" + } + }, + [29049]= { + ["skill"]= 29049, + ["name"]= "Holy Fire", + ["icon"]= "Art/2DArt/SkillIcons/passives/pyromaniac.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "+24% to Fire Resistance" + }, + ["group"]= 162, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5916", + "11505" + }, + ["in"]= { + "6245" + } + }, + [5935]= { + ["skill"]= 5935, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "9392" + }, + ["in"]= { + "64210", + "25831" + } + }, + [9392]= { + ["skill"]= 9392, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "32932" + }, + ["in"]= { + "5935" + } + }, + [32932]= { + ["skill"]= 32932, + ["name"]= "Sovereignty", + ["icon"]= "Art/2DArt/SkillIcons/passives/sovereignty.png", + ["isNotable"]= true, + ["recipe"]= { + "SilverOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills", + "10% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "21974", + "47197" + }, + ["in"]= { + "9392" + } + }, + [47197]= { + ["skill"]= 47197, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 163, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32932" + } + }, + [21974]= { + ["skill"]= 21974, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "25831" + }, + ["in"]= { + "32932" + } + }, + [25831]= { + ["skill"]= 25831, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 163, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5935" + }, + ["in"]= { + "21974" + } + }, + [45163]= { + ["skill"]= 45163, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 16% increased Damage" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42106", + "5203", + "55649" + }, + ["in"]= {} + }, + [5203]= { + ["skill"]= 5203, + ["name"]= "Retaliation Skill Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills have 25% increased Stun Duration on Enemies" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41305" + }, + ["in"]= { + "45163" + } + }, + [42106]= { + ["skill"]= 42106, + ["name"]= "Retaliation Skill Damage and Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills deal 15% increased Damage", + "Retaliation Skills have 10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "10989" + }, + ["in"]= { + "45163" + } + }, + [10989]= { + ["skill"]= 10989, + ["name"]= "Retaliation Skill Damage and Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills deal 15% increased Damage", + "Retaliation Skills have 10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "41305" + }, + ["in"]= { + "42106" + } + }, + [41305]= { + ["skill"]= 41305, + ["name"]= "Crushing Reply", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationStun.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "AmberOil" + }, + ["stats"]= { + "Retaliation Skills have 50% increased Stun Duration on Enemies", + "Retaliation Skills Fortify on Melee Hit" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + }, + ["group"]= 164, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "58728" + }, + ["in"]= { + "5203", + "10989" + } + }, + [58728]= { + ["skill"]= 58728, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 164, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41305" + } + }, + [64221]= { + ["skill"]= 64221, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "20% increased Armour" + }, + ["group"]= 165, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "54629" + }, + ["in"]= { + "39678" + } + }, + [39678]= { + ["skill"]= 39678, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "14% increased Armour" + }, + ["group"]= 165, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "64221" + }, + ["in"]= { + "3644" + } + }, + [54629]= { + ["skill"]= 54629, + ["name"]= "Inexorable", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "25% chance to gain an Endurance Charge when you are Hit", + "50% increased Armour while stationary" + }, + ["group"]= 165, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "48717" + }, + ["in"]= { + "64221" + } + }, + [48717]= { + ["skill"]= 48717, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 165, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "54629" + } + }, + [3644]= { + ["skill"]= 3644, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 166, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14930", + "39678", + "34750", + "20913", + "9402" + }, + ["in"]= { + "5233", + "57279", + "25531" + } + }, + [17527]= { + ["skill"]= 17527, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 167, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "44191" + }, + ["in"]= { + "9402" + } + }, + [9402]= { + ["skill"]= 9402, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 167, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "17527" + }, + ["in"]= { + "3644" + } + }, + [44191]= { + ["skill"]= 44191, + ["name"]= "As The Mountain", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericBlockNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "+12% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "+3% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + }, + ["group"]= 167, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "22480" + }, + ["in"]= { + "17527" + } + }, + [22480]= { + ["skill"]= 22480, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 167, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44191" + } + }, + [35977]= { + ["skill"]= 35977, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 168, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34973" + } + }, + [63027]= { + ["skill"]= 63027, + ["name"]= "Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png", + ["stats"]= { + "Exerted Attacks deal 20% increased Damage" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "65400", + "36200", + "53793" + } + }, + [65400]= { + ["skill"]= 65400, + ["name"]= "Warcry Cooldown Recovery and Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png", + ["stats"]= { + "12% increased Warcry Cooldown Recovery Rate", + "Exerted Attacks deal 15% increased Damage" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "63027" + }, + ["in"]= { + "34973" + } + }, + [36200]= { + ["skill"]= 36200, + ["name"]= "Warcry Speed and Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/EmpoweredAttackWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Speed", + "Exerted Attacks deal 15% increased Damage" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "63027" + }, + ["in"]= { + "34973" + } + }, + [34973]= { + ["skill"]= 34973, + ["name"]= "Measured Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeasuredFuryNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Warcries Exert 1 additional Attack" + }, + ["group"]= 168, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "36200", + "65400", + "35977" + }, + ["in"]= {} + }, + [63425]= { + ["skill"]= 63425, + ["name"]= "Zealot's Oath", + ["icon"]= "Art/2DArt/SkillIcons/passives/liferegentoenergyshield.png", + ["isKeystone"]= true, + ["stats"]= { + "Life Regeneration is applied to Energy Shield instead" + }, + ["flavourText"]= { + "Tear my flesh and splinter my bones. You will never break my spirit." + }, + ["group"]= 169, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7444" + } + }, + [35070]= { + ["skill"]= 35070, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 170, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "61666" + }, + ["in"]= {} + }, + [40439]= { + ["skill"]= 40439, + ["name"]= "Brand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBrand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37186, + ["stats"]= { + "Recover 10% of Mana when a Brand expires while Attached" + } + }, + { + ["effect"]= 5907, + ["stats"]= { + "Brands have 30% increased Area of Effect if 50% of Attached Duration expired" + } + }, + { + ["effect"]= 20630, + ["stats"]= { + "Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds" + } + }, + { + ["effect"]= 39863, + ["stats"]= { + "Brand Recall has 50% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 32877, + ["stats"]= { + "You can Cast 2 additional Brands" + } + }, + { + ["effect"]= 46672, + ["stats"]= { + "40% increased Brand Attachment range" + } + } + }, + ["stats"]= {}, + ["group"]= 171, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21389" + } + }, + [40776]= { + ["skill"]= 40776, + ["name"]= "Brand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "12% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "19679", + "53018" + }, + ["in"]= { + "58402" + } + }, + [53018]= { + ["skill"]= 53018, + ["name"]= "Brand Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "10% increased Brand Damage", + "Brand Skills have 10% increased Duration" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "15973" + }, + ["in"]= { + "40776" + } + }, + [15973]= { + ["skill"]= 15973, + ["name"]= "Brand Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "10% increased Brand Damage", + "Brand Skills have 10% increased Duration" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "21389" + }, + ["in"]= { + "53018" + } + }, + [19679]= { + ["skill"]= 19679, + ["name"]= "Brand Range and Brand Recall Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Recall has 10% increased Cooldown Recovery Rate", + "10% increased Brand Attachment range" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59070" + }, + ["in"]= { + "40776" + } + }, + [59070]= { + ["skill"]= 59070, + ["name"]= "Brand Range and Brand Recall Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Recall has 10% increased Cooldown Recovery Rate", + "10% increased Brand Attachment range" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "21389" + }, + ["in"]= { + "19679" + } + }, + [21389]= { + ["skill"]= 21389, + ["name"]= "Runesmith", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand4.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "12% increased Cast Speed with Brand Skills", + "Enemies take 5% increased Damage for each of your Brands Attached to them" + }, + ["group"]= 171, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "40439" + }, + ["in"]= { + "15973", + "59070" + } + }, + [25031]= { + ["skill"]= 25031, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 172, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31257", + "59423" + } + }, + [23036]= { + ["skill"]= 23036, + ["name"]= "Warcry Cooldown Recovery and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate", + "Warcry Skills have 15% increased Area of Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "59423" + }, + ["in"]= { + "40229" + } + }, + [40229]= { + ["skill"]= 40229, + ["name"]= "Warcry Cooldown Recovery and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarCryCooldown.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate", + "Warcry Skills have 15% increased Area of Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "23036" + }, + ["in"]= { + "31257" + } + }, + [53987]= { + ["skill"]= 53987, + ["name"]= "Warcry Duration and Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode1.png", + ["stats"]= { + "10% increased Warcry Duration", + "5% increased Warcry Buff Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "10594", + "11792", + "14930" + }, + ["in"]= {} + }, + [11792]= { + ["skill"]= 11792, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "47426" + }, + ["in"]= { + "53987" + } + }, + [47426]= { + ["skill"]= 47426, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "59423" + }, + ["in"]= { + "11792" + } + }, + [10594]= { + ["skill"]= 10594, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "57992" + }, + ["in"]= { + "53987" + } + }, + [57992]= { + ["skill"]= 57992, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "31257" + }, + ["in"]= { + "10594" + } + }, + [31257]= { + ["skill"]= 31257, + ["name"]= "Natural Authority", + ["icon"]= "Art/2DArt/SkillIcons/passives/NaturalAuthorityNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Enemies Taunted by your Warcries take 8% increased Damage", + "20% increased Warcry Buff Effect" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "25031", + "40229" + }, + ["in"]= { + "57992" + } + }, + [59423]= { + ["skill"]= 59423, + ["name"]= "Escalation", + ["icon"]= "Art/2DArt/SkillIcons/passives/EscalationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "10% increased Melee Damage for each second you've been affected by a Warcry Buff, up to a maximum of 60%" + }, + ["group"]= 172, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "25031" + }, + ["in"]= { + "23036", + "47426" + } + }, + [27195]= { + ["skill"]= 27195, + ["name"]= "Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/coldresist.png", + ["stats"]= { + "+8% to Cold Resistance" + }, + ["group"]= 173, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "50422" + }, + ["in"]= { + "34917" + } + }, + [27166]= { + ["skill"]= 27166, + ["name"]= "Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/fireresist.png", + ["stats"]= { + "+8% to Fire Resistance" + }, + ["group"]= 173, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "6446" + }, + ["in"]= { + "48929" + } + }, + [7399]= { + ["skill"]= 7399, + ["name"]= "Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningstr.png", + ["stats"]= { + "+8% to Lightning Resistance" + }, + ["group"]= 173, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "50570" + }, + ["in"]= { + "15522" + } + }, + [42792]= { + ["skill"]= 42792, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 173, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25989" + } + }, + [48929]= { + ["skill"]= 48929, + ["name"]= "Maximum Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "+1% to maximum Fire Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "27166" + }, + ["in"]= { + "25989" + } + }, + [34917]= { + ["skill"]= 34917, + ["name"]= "Maximum Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "+1% to maximum Cold Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "27195" + }, + ["in"]= { + "25989" + } + }, + [15522]= { + ["skill"]= 15522, + ["name"]= "Maximum Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "+1% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "7399" + }, + ["in"]= { + "25989" + } + }, + [25989]= { + ["skill"]= 25989, + ["name"]= "Nomadic Teachings", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxElementalResistNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+2% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 173, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42792", + "15522", + "48929", + "34917" + }, + ["in"]= {} + }, + [58218]= { + ["skill"]= 58218, + ["name"]= "Purity of Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "8% increased maximum Energy Shield", + "10% increased maximum Life", + "+8% to Chaos Resistance" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "32241" + }, + ["in"]= { + "5743" + } + }, + [5743]= { + ["skill"]= 5743, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "64210", + "58218" + }, + ["in"]= { + "9386" + } + }, + [9386]= { + ["skill"]= 9386, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "5743" + }, + ["in"]= { + "14057" + } + }, + [14057]= { + ["skill"]= 14057, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 174, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "9386", + "6764" + }, + ["in"]= {} + }, + [32241]= { + ["skill"]= 32241, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 174, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58218" + } + }, + [22285]= { + ["skill"]= 22285, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 175, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "55649", + "53793", + "38508", + "62363" + }, + ["in"]= {} + }, + [64395]= { + ["skill"]= 64395, + ["name"]= "Blunt Trauma", + ["icon"]= "Art/2DArt/SkillIcons/passives/hammerblows.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "40% increased Critical Strike Chance with Staves", + "+20% to Critical Strike Multiplier with Staves", + "Knocks Back Enemies if you get a Critical Strike with a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Knockback pushes Enemies away when Hit)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "48349" + }, + ["in"]= { + "53945", + "15716" + } + }, + [48349]= { + ["skill"]= 48349, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 176, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64395", + "56094" + } + }, + [34327]= { + ["skill"]= 34327, + ["name"]= "Staff Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffaccuracy.png", + ["stats"]= { + "14% increased Accuracy Rating with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "53945" + }, + ["in"]= { + "56094" + } + }, + [53945]= { + ["skill"]= 53945, + ["name"]= "Staff Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/staffaccuracy.png", + ["stats"]= { + "14% increased Accuracy Rating with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "64395" + }, + ["in"]= { + "34327" + } + }, + [45486]= { + ["skill"]= 45486, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "20% increased Critical Strike Chance with Staves", + "+12% to Critical Strike Multiplier with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "15716" + }, + ["in"]= { + "7444" + } + }, + [15716]= { + ["skill"]= 15716, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "20% increased Critical Strike Chance with Staves", + "+12% to Critical Strike Multiplier with Staves" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "64395" + }, + ["in"]= { + "45486" + } + }, + [22728]= { + ["skill"]= 22728, + ["name"]= "Staff Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "10% increased Elemental Damage with Staves", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "56094" + }, + ["in"]= { + "46672" + } + }, + [46672]= { + ["skill"]= 46672, + ["name"]= "Staff Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "10% increased Elemental Damage with Staves", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "22728" + }, + ["in"]= { + "7444" + } + }, + [56094]= { + ["skill"]= 56094, + ["name"]= "One with the River", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Elemental Damage with Staves", + "Damage with Weapons Penetrates 5% Elemental Resistances" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 176, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "34327", + "48349" + }, + ["in"]= { + "22728" + } + }, + [7444]= { + ["skill"]= 7444, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 177, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "64210", + "45486", + "46672", + "63425" + }, + ["in"]= { + "4713", + "63398", + "48713", + "36678" + } + }, + [29199]= { + ["skill"]= 29199, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 178, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "15064" + }, + ["in"]= { + "37999", + "10575" + } + }, + [7374]= { + ["skill"]= 7374, + ["name"]= "Life and Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "44967" + }, + ["in"]= { + "11088" + } + }, + [3533]= { + ["skill"]= 3533, + ["name"]= "Life and Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11088" + }, + ["in"]= { + "65108" + } + }, + [11088]= { + ["skill"]= 11088, + ["name"]= "Life and Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndReducedManaCost.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "7374" + }, + ["in"]= { + "3533" + } + }, + [65108]= { + ["skill"]= 65108, + ["name"]= "Tireless", + ["icon"]= "Art/2DArt/SkillIcons/passives/Unrelenting.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "10% increased maximum Life", + "10% increased Cost Efficiency" + }, + ["group"]= 179, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "3533", + "48505" + }, + ["in"]= {} + }, + [48505]= { + ["skill"]= 48505, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 179, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65108" + } + }, + [63422]= { + ["skill"]= 63422, + ["name"]= "Lust for Carnage", + ["icon"]= "Art/2DArt/SkillIcons/passives/LustforCarnage.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "12% increased Attack Speed", + "1.5% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 180, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "28862" + }, + ["in"]= { + "28311" + } + }, + [28311]= { + ["skill"]= 28311, + ["name"]= "Life Leech Speed and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["stats"]= { + "3% increased Attack Speed", + "40% increased total Recovery per second from Life Leech" + }, + ["group"]= 180, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63422" + }, + ["in"]= { + "62108" + } + }, + [62108]= { + ["skill"]= 62108, + ["name"]= "Life Leech and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["stats"]= { + "3% increased Attack Speed", + "0.4% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 180, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "28311", + "40653" + }, + ["in"]= {} + }, + [28862]= { + ["skill"]= 28862, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 180, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63422" + } + }, + [40114]= { + ["skill"]= 40114, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 181, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "12613" + }, + ["in"]= {} + }, + [7528]= { + ["skill"]= 7528, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 182, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50842" + } + }, + [20913]= { + ["skill"]= 20913, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "39437", + "9361" + }, + ["in"]= { + "3644" + } + }, + [9361]= { + ["skill"]= 9361, + ["name"]= "Maximum Rage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "+3 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "40189" + }, + ["in"]= { + "20913" + } + }, + [40189]= { + ["skill"]= 40189, + ["name"]= "Maximum Rage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "+3 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "50842" + }, + ["in"]= { + "9361" + } + }, + [39437]= { + ["skill"]= 39437, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "223" + }, + ["in"]= { + "20913" + } + }, + [223]= { + ["skill"]= 223, + ["name"]= "Slower Rage Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Inherent loss of Rage is 10% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50842" + }, + ["in"]= { + "39437" + } + }, + [50842]= { + ["skill"]= 50842, + ["name"]= "Veteran's Wrath", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "Gain 2 Rage on Melee Hit", + "Inherent Rage Loss starts 1 second later" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 182, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "7528" + }, + ["in"]= { + "40189", + "223" + } + }, + [494]= { + ["skill"]= 494, + ["name"]= "Retaliation Skill Damage and Shield Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode3.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "Retaliation Skills deal 12% increased Damage" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "63306", + "59976" + } + }, + [63306]= { + ["skill"]= 63306, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 16% increased Damage" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "494" + }, + ["in"]= { + "62879", + "15631" + } + }, + [62879]= { + ["skill"]= 62879, + ["name"]= "Retaliation Skill Speed and Shield Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode3.png", + ["stats"]= { + "+3% chance to Block Spell Damage while holding a Shield", + "Retaliation Skills have 6% increased Speed" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63306", + "59976" + }, + ["in"]= {} + }, + [59976]= { + ["skill"]= 59976, + ["name"]= "Careful Counterattack", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationSpellBlock.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "AmberOil" + }, + ["stats"]= { + "10% chance to Block Attack Damage if you've used a Retaliation Skill Recently", + "10% chance to Block Spell Damage if you've used a Retaliation Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 183, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "494", + "55017" + }, + ["in"]= { + "62879" + } + }, + [55017]= { + ["skill"]= 55017, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 183, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59976" + } + }, + [44941]= { + ["skill"]= 44941, + ["name"]= "Avatar of Fire", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.png", + ["isKeystone"]= true, + ["stats"]= { + "50% of Physical, Cold and Lightning Damage Converted to Fire Damage\nDeal no Non-Fire Damage" + }, + ["flavourText"]= { + "\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"" + }, + ["group"]= 184, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10221" + }, + ["in"]= {} + }, + [39713]= { + ["skill"]= 39713, + ["name"]= "Glancing Blows", + ["icon"]= "Art/2DArt/SkillIcons/passives/GlancingBlows.png", + ["isKeystone"]= true, + ["stats"]= { + "Chance to Block Attack Damage is doubled\nChance to Block Spell Damage is doubled\nYou take 65% of Damage from Blocked Hits" + }, + ["flavourText"]= { + "Utter trust in your defence unleashes ultimate potential." + }, + ["group"]= 185, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "15631" + }, + ["in"]= {} + }, + [46842]= { + ["skill"]= 46842, + ["name"]= "Arcane Potency", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcanepotency.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Spell Critical Strike Chance", + "+30% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 186, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "36452", + "16123" + }, + ["in"]= {} + }, + [16123]= { + ["skill"]= 16123, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 186, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46842" + } + }, + [63398]= { + ["skill"]= 63398, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 186, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "7444" + }, + ["in"]= { + "36452" + } + }, + [36452]= { + ["skill"]= 36452, + ["name"]= "Spell Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + ["stats"]= { + "+10% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 186, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63398" + }, + ["in"]= { + "46842" + } + }, + [42343]= { + ["skill"]= 42343, + ["name"]= "Runebinder", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "-1 to maximum number of Summoned Totems\nYou can have an additional Brand Attached to an Enemy" + }, + ["flavourText"]= { + "An arcane pattern, secrets bound. Blind truth splinters with lies abound." + }, + ["group"]= 187, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58402" + } + }, + [28284]= { + ["skill"]= 28284, + ["name"]= "Attributes Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 5356, + ["stats"]= { + "5% increased Attributes" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 41483, + ["stats"]= { + "1% increased Damage per 5 of your lowest Attribute" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 26621, + ["stats"]= { + "+5 to Strength per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 52604, + ["stats"]= { + "+5 to Intelligence per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 15826, + ["stats"]= { + "+5 to Dexterity per Allocated Mastery Passive Skill" + } + } + }, + ["stats"]= {}, + ["group"]= 188, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49772" + } + }, + [25531]= { + ["skill"]= 25531, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 15, + ["stats"]= { + "+15 to Strength" + }, + ["group"]= 188, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "3644" + }, + ["in"]= { + "19884" + } + }, + [19884]= { + ["skill"]= 19884, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 15, + ["stats"]= { + "+15 to Strength" + }, + ["group"]= 188, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "25531" + }, + ["in"]= { + "49772" + } + }, + [49772]= { + ["skill"]= 49772, + ["name"]= "Utmost Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "CrimsonOil" + }, + ["grantedStrength"]= 40, + ["stats"]= { + "+40 to Strength", + "8% increased Strength" + }, + ["group"]= 188, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "19884", + "28284" + }, + ["in"]= {} + }, + [38921]= { + ["skill"]= 38921, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 189, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6967" + } + }, + [19919]= { + ["skill"]= 19919, + ["name"]= "Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+3% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "55743", + "62767", + "6764" + }, + ["in"]= {} + }, + [62767]= { + ["skill"]= 62767, + ["name"]= "Spell Block and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "+3% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "63138" + }, + ["in"]= { + "19919" + } + }, + [63138]= { + ["skill"]= 63138, + ["name"]= "Spell Block and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "+3% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6967" + }, + ["in"]= { + "62767" + } + }, + [55743]= { + ["skill"]= 55743, + ["name"]= "Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "6967" + }, + ["in"]= { + "19919" + } + }, + [6967]= { + ["skill"]= 6967, + ["name"]= "Safeguard", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericSpellBlockNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "+3% to maximum Chance to Block Spell Damage", + "Recover 50 Energy Shield when you Block Spell Damage", + "+10% chance to Block Spell Damage while holding a Staff or Shield" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + }, + ["group"]= 189, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "38921" + }, + ["in"]= { + "63138", + "55743" + } + }, + [58355]= { + ["skill"]= 58355, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 190, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "46519" + }, + ["in"]= { + "61666" + } + }, + [61666]= { + ["skill"]= 61666, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "35070", + ["parent"]= "46519" + }, + ["stats"]= {}, + ["group"]= 190, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58355" + }, + ["in"]= { + "35070" + } + }, + [23090]= { + ["skill"]= 23090, + ["name"]= "Call to Arms", + ["icon"]= "Art/2DArt/SkillIcons/passives/CallToArms.png", + ["isKeystone"]= true, + ["stats"]= { + "Your Warcries do not grant Buffs or Charges to You\n100% more Warcry Duration" + }, + ["flavourText"]= { + "Follow me, and I will show you strength!" + }, + ["group"]= 191, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14930" + } + }, + [31931]= { + ["skill"]= 31931, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 192, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "15064", + "15631" + }, + ["in"]= { + "62303", + "44908" + } + }, + [15064]= { + ["skill"]= 15064, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 192, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "10031", + "29199", + "31931", + "12536" + } + }, + [15631]= { + ["skill"]= 15631, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 193, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "64426", + "44967", + "41599", + "63306" + }, + ["in"]= { + "39713", + "31931" + } + }, + [50422]= { + ["skill"]= 50422, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 194, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "50197", + "10221", + "50862" + }, + ["in"]= { + "50570", + "27195", + "44967", + "32245" + } + }, + [44967]= { + ["skill"]= 44967, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 195, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50422" + }, + ["in"]= { + "7374", + "15631" + } + }, + [10221]= { + ["skill"]= 10221, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 196, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6446", + "24155", + "25168" + }, + ["in"]= { + "44941", + "50422", + "54396" + } + }, + [6446]= { + ["skill"]= 6446, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 197, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "55649" + }, + ["in"]= { + "27166", + "10221", + "26523" + } + }, + [55649]= { + ["skill"]= 55649, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 197, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "44429", + "45163", + "22285", + "6446", + "34130" + } + }, + [53793]= { + ["skill"]= 53793, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 198, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "40653", + "63027" + }, + ["in"]= { + "62017", + "12247", + "22285", + "37884" + } + }, + [40653]= { + ["skill"]= 40653, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 198, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "42800", + "9052" + }, + ["in"]= { + "62108", + "53793", + "33098", + "49412" + } + }, + [38119]= { + ["skill"]= 38119, + ["name"]= "Block and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "12% increased Armour" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "32738" + }, + ["in"]= { + "9052" + } + }, + [48284]= { + ["skill"]= 48284, + ["name"]= "Block and Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "30% increased Block Recovery" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "32738" + }, + ["in"]= { + "9052" + } + }, + [9052]= { + ["skill"]= 9052, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "38119", + "48284" + }, + ["in"]= { + "40653" + } + }, + [32738]= { + ["skill"]= 32738, + ["name"]= "Wall of Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericBlockNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "+300 Armour if you've Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 199, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "5368" + }, + ["in"]= { + "38119", + "48284" + } + }, + [5368]= { + ["skill"]= 5368, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 199, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32738" + } + }, + [10575]= { + ["skill"]= 10575, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 200, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "40508", + "29199" + }, + ["in"]= { + "58402", + "21262" + } + }, + [58402]= { + ["skill"]= 58402, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 200, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "10575", + "6764", + "59728", + "40776", + "42343" + }, + ["in"]= { + "17735" + } + }, + [27475]= { + ["skill"]= 27475, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 201, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "51198" + }, + ["in"]= {} + }, + [55706]= { + ["skill"]= 55706, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 202, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "12613", + "29712" + }, + ["in"]= {} + }, + [12613]= { + ["skill"]= 12613, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "40114", + ["parent"]= "29712" + }, + ["stats"]= {}, + ["group"]= 202, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "40114", + "55706" + } + }, + [40291]= { + ["skill"]= 40291, + ["name"]= "Fire Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "8% increased Fire Damage", + "8% increased Area of Effect" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "24324" + }, + ["in"]= { + "885" + } + }, + [885]= { + ["skill"]= 885, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "12% increased Fire Damage" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40291" + }, + ["in"]= { + "37163", + "40366" + } + }, + [37163]= { + ["skill"]= 37163, + ["name"]= "Fire Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "8% increased Fire Damage", + "3% increased Cast Speed" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24324", + "885" + }, + ["in"]= {} + }, + [24324]= { + ["skill"]= 24324, + ["name"]= "Explosive Impact", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Fire Damage", + "12% increased Area of Effect" + }, + ["group"]= 203, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63268" + }, + ["in"]= { + "40291", + "37163" + } + }, + [63268]= { + ["skill"]= 63268, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 203, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24324" + } + }, + [59728]= { + ["skill"]= 59728, + ["name"]= "Area of Effect Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/areaofeffect.png", + ["stats"]= { + "10% increased Area Damage" + }, + ["group"]= 204, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "61308" + }, + ["in"]= { + "58402" + } + }, + [62303]= { + ["skill"]= 62303, + ["name"]= "Mana and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "8% increased maximum Mana", + "6% increased Mana Cost Efficiency" + }, + ["group"]= 205, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31931" + }, + ["in"]= { + "38516" + } + }, + [43822]= { + ["skill"]= 43822, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "12% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 12% increased Damage with Ailments", + "10% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35992", + "2411", + "14930" + }, + ["in"]= {} + }, + [2411]= { + ["skill"]= 2411, + ["name"]= "Mace Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "10% chance to double Stun Duration" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "5126" + }, + ["in"]= { + "43822" + } + }, + [35992]= { + ["skill"]= 35992, + ["name"]= "Mace Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "16% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 16% increased Damage with Ailments", + "10% reduced Enemy Stun Threshold with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5126" + }, + ["in"]= { + "43822" + } + }, + [5126]= { + ["skill"]= 5126, + ["name"]= "Spinecruncher", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunmace.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 30% increased Damage with Ailments", + "100% increased Stun Duration against Enemies that are on Full Life" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 206, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "27931" + }, + ["in"]= { + "2411", + "35992" + } + }, + [27931]= { + ["skill"]= 27931, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 206, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5126" + } + }, + [14930]= { + ["skill"]= 14930, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 207, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23090", + "40818", + "44916" + }, + ["in"]= { + "3644", + "53987", + "43822", + "25781", + "48287", + "34400" + } + }, + [40818]= { + ["skill"]= 40818, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12664" + }, + ["in"]= { + "14930", + "41068" + } + }, + [12664]= { + ["skill"]= 12664, + ["name"]= "Faster Bleeding", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Bleeding you inflict deals Damage 5% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "31473" + }, + ["in"]= { + "40818" + } + }, + [41068]= { + ["skill"]= 41068, + ["name"]= "Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% increased Bleeding Duration" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "40818" + }, + ["in"]= { + "45565" + } + }, + [45565]= { + ["skill"]= 45565, + ["name"]= "Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% increased Bleeding Duration" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41068" + }, + ["in"]= { + "31473" + } + }, + [31473]= { + ["skill"]= 31473, + ["name"]= "Master of Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedingNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "+12% to Damage over Time Multiplier for Bleeding", + "30% reduced Bleed Duration on you" + }, + ["group"]= 208, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "22295", + "45565" + }, + ["in"]= { + "12664" + } + }, + [22295]= { + ["skill"]= 22295, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 208, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31473" + } + }, + [14505]= { + ["skill"]= 14505, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 209, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35685" + } + }, + [48713]= { + ["skill"]= 48713, + ["name"]= "Minion Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have 20% increased Critical Strike Chance" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "7898", + "7444", + "35791" + }, + ["in"]= {} + }, + [7898]= { + ["skill"]= 7898, + ["name"]= "Minion Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have 25% increased Critical Strike Chance" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35685" + }, + ["in"]= { + "48713" + } + }, + [35685]= { + ["skill"]= 35685, + ["name"]= "Fearsome Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "Minions have 60% increased Critical Strike Chance", + "Minions have +20% to Critical Strike Multiplier" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "14505" + }, + ["in"]= { + "7898", + "1722" + } + }, + [35791]= { + ["skill"]= 35791, + ["name"]= "Minion Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have +20% to Critical Strike Multiplier" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "1722" + }, + ["in"]= { + "48713" + } + }, + [1722]= { + ["skill"]= 1722, + ["name"]= "Minion Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectofMinionsNode.png", + ["stats"]= { + "Minions have +20% to Critical Strike Multiplier" + }, + ["group"]= 209, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "35685" + }, + ["in"]= { + "35791" + } + }, + [18361]= { + ["skill"]= 18361, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 210, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "16218" + }, + ["in"]= {} + }, + [32245]= { + ["skill"]= 32245, + ["name"]= "Expertise", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 211, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50422" + }, + ["in"]= {} + }, + [50197]= { + ["skill"]= 50197, + ["name"]= "Ancestral Knowledge", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 212, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50422" + } + }, + [34130]= { + ["skill"]= 34130, + ["name"]= "Melee Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/meleeattackspeed.png", + ["stats"]= { + "4% increased Melee Attack Speed" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "60169", + "55649" + }, + ["in"]= { + "39786", + "64077" + } + }, + [14606]= { + ["skill"]= 14606, + ["name"]= "Butchery", + ["icon"]= "Art/2DArt/SkillIcons/passives/butchery.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "CrimsonOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "25% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments", + "5% increased Attack Speed with Two Handed Melee Weapons", + "+20 to Strength" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "2454" + }, + ["in"]= { + "60169" + } + }, + [10282]= { + ["skill"]= 10282, + ["name"]= "One Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehanddamage.png", + ["stats"]= { + "16% increased Physical Damage with One Handed Melee Weapons", + "Attacks with One Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "35663" + }, + ["in"]= { + "64077", + "38777" + } + }, + [39786]= { + ["skill"]= 39786, + ["name"]= "One Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehanddamage.png", + ["stats"]= { + "16% increased Physical Damage with One Handed Melee Weapons", + "Attacks with One Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "34130" + }, + ["in"]= { + "35663" + } + }, + [35663]= { + ["skill"]= 35663, + ["name"]= "Strong Arm", + ["icon"]= "Art/2DArt/SkillIcons/passives/strongarm.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "OpalescentOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "25% increased Physical Damage with One Handed Melee Weapons", + "Attacks with One Handed Melee Weapons deal 25% increased Damage with Ailments", + "5% increased Attack Speed with One Handed Melee Weapons", + "+20 to Strength" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "39786" + }, + ["in"]= { + "10282" + } + }, + [64077]= { + ["skill"]= 64077, + ["name"]= "Warrior Training", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeUtility.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "+0.2 metres to Melee Strike Range", + "Melee Skills have 12% increased Area of Effect" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 213, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10282", + "2454", + "34130" + }, + ["in"]= {} + }, + [60169]= { + ["skill"]= 60169, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "16% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "14606" + }, + ["in"]= { + "34130" + } + }, + [2454]= { + ["skill"]= 2454, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "16% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "38777" + }, + ["in"]= { + "14606", + "64077" + } + }, + [38777]= { + ["skill"]= 38777, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "Attacks with Melee Weapons deal 12% increased Damage with Ailments", + "12% increased Melee Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 213, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "10282", + "58449" + }, + ["in"]= { + "2454" + } + }, + [6718]= { + ["skill"]= 6718, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% to all Elemental Resistances" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "59861", + "24383", + "61868", + "65308" + }, + ["in"]= {} + }, + [31928]= { + ["skill"]= 31928, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "14% increased Armour" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "10542", + "37884" + }, + ["in"]= { + "65308" + } + }, + [61868]= { + ["skill"]= 61868, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "14% increased Armour" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "10542" + }, + ["in"]= { + "6718" + } + }, + [10542]= { + ["skill"]= 10542, + ["name"]= "Spiked Bulwark", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpikedBulwark.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "TealOil" + }, + ["stats"]= { + "28% increased Armour", + "Reflects 50 Physical Damage to Melee Attackers" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31928", + "61868" + } + }, + [31033]= { + ["skill"]= 31033, + ["name"]= "Robust", + ["icon"]= "Art/2DArt/SkillIcons/passives/Robust.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "TealOil" + }, + ["stats"]= { + "Regenerate 10 Life per second", + "Regenerate 1.2% of Life per second" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "59861", + "32482" + }, + ["in"]= {} + }, + [37884]= { + ["skill"]= 37884, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% to all Elemental Resistances" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "53793" + }, + ["in"]= { + "31928", + "32482" + } + }, + [32482]= { + ["skill"]= 32482, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "37884" + }, + ["in"]= { + "31033", + "65308" + } + }, + [59861]= { + ["skill"]= 59861, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 214, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "6718", + "31033" + } + }, + [65308]= { + ["skill"]= 65308, + ["name"]= "Diamond Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/DiamondSkin2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "+15% to all Elemental Resistances" + }, + ["group"]= 214, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31928", + "32482" + }, + ["in"]= { + "6718" + } + }, + [64166]= { + ["skill"]= 64166, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 215, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "23756" + }, + ["in"]= { + "51198" + } + }, + [51198]= { + ["skill"]= 51198, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "27475", + ["parent"]= "23756" + }, + ["stats"]= {}, + ["group"]= 215, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64166" + }, + ["in"]= { + "27475" + } + }, + [6968]= { + ["skill"]= 6968, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 216, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36859" + } + }, + [49698]= { + ["skill"]= 49698, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "36859" + }, + ["in"]= { + "55926" + } + }, + [41599]= { + ["skill"]= 41599, + ["name"]= "Staff Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 10% increased Damage with Hits and Ailments", + "+2% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "55926" + }, + ["in"]= { + "15631", + "1761" + } + }, + [55926]= { + ["skill"]= 55926, + ["name"]= "Staff Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "+4% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "49698" + }, + ["in"]= { + "41599" + } + }, + [1761]= { + ["skill"]= 1761, + ["name"]= "Staff Damage and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagestaff.png", + ["stats"]= { + "Staff Attacks deal 15% increased Damage with Hits and Ailments", + "15% increased Armour" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41599", + "36859" + }, + ["in"]= {} + }, + [36859]= { + ["skill"]= 36859, + ["name"]= "Steelwood Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "Staff Attacks deal 30% increased Damage with Hits and Ailments", + "+800 Armour if you've Blocked Recently", + "+10% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 216, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "6968" + }, + ["in"]= { + "49698", + "1761" + } + }, + [25535]= { + ["skill"]= 25535, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 217, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20832" + } + }, + [64426]= { + ["skill"]= 64426, + ["name"]= "Elemental Resistances with a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% Elemental Resistances while holding a Shield" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "1593", + "62214" + }, + ["in"]= { + "15631" + } + }, + [62214]= { + ["skill"]= 62214, + ["name"]= "Shield Spell Block and Elemental Resistances with a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while holding a Shield", + "+3% Elemental Resistances while holding a Shield" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "64426", + "20832" + } + }, + [1593]= { + ["skill"]= 1593, + ["name"]= "Shield Block and Elemental Resistances with a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "+3% Elemental Resistances while holding a Shield" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "20832" + }, + ["in"]= { + "64426" + } + }, + [20832]= { + ["skill"]= 20832, + ["name"]= "Sanctuary", + ["icon"]= "Art/2DArt/SkillIcons/passives/Sanctuary.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "+4% Chance to Block Attack Damage while holding a Shield", + "+4% Chance to Block Spell Damage while holding a Shield", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 217, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "62214", + "25535" + }, + ["in"]= { + "1593" + } + }, + [30693]= { + ["skill"]= 30693, + ["name"]= "Divine Fervour", + ["icon"]= "Art/2DArt/SkillIcons/passives/catalyse.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "IndigoOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Attack Damage", + "30% increased Melee Critical Strike Chance", + "+10 to Strength and Intelligence" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "12536" + }, + ["in"]= { + "58453" + } + }, + [33435]= { + ["skill"]= 33435, + ["name"]= "Holy Dominion", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementalist.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "+12% to all Elemental Resistances", + "24% increased Elemental Damage", + "10% chance to Freeze, Shock and Ignite" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 218, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12536", + "21262" + }, + ["in"]= { + "44799", + "58453" + } + }, + [44799]= { + ["skill"]= 44799, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "54694", + "40927", + "33435" + }, + ["in"]= { + "41472" + } + }, + [58453]= { + ["skill"]= 58453, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "30693", + "46726", + "33435" + }, + ["in"]= { + "41472" + } + }, + [21262]= { + ["skill"]= 21262, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "54694", + "10575" + }, + ["in"]= { + "33435" + } + }, + [12536]= { + ["skill"]= 12536, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "15064" + }, + ["in"]= { + "30693", + "33435" + } + }, + [54694]= { + ["skill"]= 54694, + ["name"]= "Light of Divinity", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightOfDivinity.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "CrimsonOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Spell Damage", + "30% increased Spell Critical Strike Chance", + "+10 to Strength and Intelligence", + "10% increased Light Radius" + }, + ["group"]= 218, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44799", + "21262" + } + }, + [2550]= { + ["skill"]= 2550, + ["name"]= "Arsonist", + ["icon"]= "Art/2DArt/SkillIcons/passives/arsonist.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "+10% to Fire Damage over Time Multiplier", + "Regenerate 1.2% of Life per second" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "54396", + "48267" + }, + ["in"]= { + "1550" + } + }, + [54396]= { + ["skill"]= 54396, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "+4% to Fire Damage over Time Multiplier" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "10221" + }, + ["in"]= { + "2550" + } + }, + [1550]= { + ["skill"]= 1550, + ["name"]= "Fire Damage and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "12% increased Fire Damage", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2550", + "5430" + }, + ["in"]= {} + }, + [48267]= { + ["skill"]= 48267, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 219, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2550", + "5430" + } + }, + [25168]= { + ["skill"]= 25168, + ["name"]= "Physical Damage as Extra Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeFireNode.png", + ["stats"]= { + "Gain 4% of Physical Damage as Extra Fire Damage" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5430" + }, + ["in"]= { + "10221" + } + }, + [5430]= { + ["skill"]= 5430, + ["name"]= "Magmatic Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeFireNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Every 10 seconds, gain 30% of Physical Damage\nas Extra Fire Damage for 4 seconds" + }, + ["group"]= 219, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "48267" + }, + ["in"]= { + "1550", + "25168" + } + }, + [50225]= { + ["skill"]= 50225, + ["name"]= "Mace Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "55772" + }, + ["in"]= { + "24155" + } + }, + [24155]= { + ["skill"]= 24155, + ["name"]= "Mace Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "20% increased Critical Strike Chance with Maces or Sceptres" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50225", + "15086" + }, + ["in"]= { + "10221" + } + }, + [15086]= { + ["skill"]= 15086, + ["name"]= "Mace Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/macecritdmgspeed.png", + ["stats"]= { + "10% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 10% increased Damage with Ailments", + "20% increased Critical Strike Chance with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "55772" + }, + ["in"]= { + "24155" + } + }, + [55772]= { + ["skill"]= 55772, + ["name"]= "Blacksmith's Clout", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "35% increased Physical Damage with Maces or Sceptres", + "Mace or Sceptre Attacks deal 35% increased Damage with Ailments", + "+35% to Critical Strike Multiplier with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 220, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "59013" + }, + ["in"]= { + "50225", + "15086" + } + }, + [59013]= { + ["skill"]= 59013, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 220, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55772" + } + }, + [25313]= { + ["skill"]= 25313, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 221, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55381" + } + }, + [63558]= { + ["skill"]= 63558, + ["name"]= "Spell Damage and Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage", + "10% increased Stun and Block Recovery" + }, + ["group"]= 221, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "55381" + }, + ["in"]= { + "18239" + } + }, + [18239]= { + ["skill"]= 18239, + ["name"]= "Spell Damage and Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage", + "10% increased Stun and Block Recovery" + }, + ["group"]= 221, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "63558" + }, + ["in"]= { + "40366" + } + }, + [55381]= { + ["skill"]= 55381, + ["name"]= "Arcane Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "25% more Spell Damage if you've been Stunned while Casting Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 221, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "25313" + }, + ["in"]= { + "63558" + } + }, + [33098]= { + ["skill"]= 33098, + ["name"]= "Ignite and Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteBleedNode.png", + ["stats"]= { + "25% increased Ignite Duration on Enemies", + "25% increased Bleeding Duration" + }, + ["group"]= 222, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "40653" + }, + ["in"]= { + "49652" + } + }, + [49652]= { + ["skill"]= 49652, + ["name"]= "Ignite and Bleed Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteBleedNode.png", + ["stats"]= { + "25% increased Ignite Duration on Enemies", + "25% increased Bleeding Duration" + }, + ["group"]= 222, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "33098" + }, + ["in"]= { + "49645" + } + }, + [49645]= { + ["skill"]= 49645, + ["name"]= "Cauterisation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteBleedNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "IndigoOil" + }, + ["stats"]= { + "Bleeding enemies cannot inflict Bleeding on you", + "Ignited enemies cannot Ignite you" + }, + ["group"]= 222, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "22067", + "49652" + }, + ["in"]= {} + }, + [22067]= { + ["skill"]= 22067, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 222, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49645" + } + }, + [16756]= { + ["skill"]= 16756, + ["name"]= "Axe Damage and Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "14% increased Physical Damage with Axes", + "Axe Attacks deal 14% increased Damage with Ailments", + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 223, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "7440" + }, + ["in"]= { + "30251" + } + }, + [30251]= { + ["skill"]= 30251, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "14% increased Physical Damage with Axes", + "Axe Attacks deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 223, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "16756", + "42800" + }, + ["in"]= {} + }, + [58540]= { + ["skill"]= 58540, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 223, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7440" + } + }, + [7440]= { + ["skill"]= 7440, + ["name"]= "Harvester of Foes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "IndigoOil" + }, + ["stats"]= { + "30% increased Physical Damage with Axes", + "Axe Attacks deal 30% increased Damage with Ailments", + "12% increased Impale Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 223, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58540" + }, + ["in"]= { + "16756" + } + }, + [26661]= { + ["skill"]= 26661, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 224, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "16218", + "48679" + }, + ["in"]= {} + }, + [16218]= { + ["skill"]= 16218, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "18361", + ["parent"]= "48679" + }, + ["stats"]= {}, + ["group"]= 224, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "18361", + "26661" + } + }, + [32376]= { + ["skill"]= 32376, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 16% increased Damage" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "34400", + "47902", + "64257" + }, + ["in"]= {} + }, + [64257]= { + ["skill"]= 64257, + ["name"]= "Retaliation Skill Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills have 8% increased Speed" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "32376", + "38462" + } + }, + [47902]= { + ["skill"]= 47902, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 20% increased Damage" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "15491" + }, + ["in"]= { + "32376" + } + }, + [38462]= { + ["skill"]= 38462, + ["name"]= "Retaliation Skill Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode5.png", + ["stats"]= { + "Retaliation Skills have 8% increased Speed" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "64257" + }, + ["in"]= { + "15226" + } + }, + [62109]= { + ["skill"]= 62109, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 15% increased Cooldown Recovery Rate" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "42495" + }, + ["in"]= { + "15226" + } + }, + [15491]= { + ["skill"]= 15491, + ["name"]= "Retaliation Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode4.png", + ["stats"]= { + "Retaliation Skills deal 20% increased Damage" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "56330" + }, + ["in"]= { + "47902" + } + }, + [42495]= { + ["skill"]= 42495, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 15% increased Cooldown Recovery Rate" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "56330" + }, + ["in"]= { + "62109" + } + }, + [56330]= { + ["skill"]= 56330, + ["name"]= "Flow of Battle", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationAttackBlock.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "AmberOil" + }, + ["stats"]= { + "Retaliation Skills deal 30% increased Damage", + "Gain 5 Rage on Hit with Retaliation Skills" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "41744" + }, + ["in"]= { + "15491", + "42495" + } + }, + [15226]= { + ["skill"]= 15226, + ["name"]= "Cruel Retort", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationSkillDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "SepiaOil" + }, + ["stats"]= { + "Every fourth Retaliation Skill you use always Critically Strikes", + "Retaliation Skills have 20% increased Speed" + }, + ["group"]= 225, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "41744", + "38462", + "62109" + }, + ["in"]= {} + }, + [41744]= { + ["skill"]= 41744, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 225, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56330", + "15226" + } + }, + [10532]= { + ["skill"]= 10532, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "37898", + ["parent"]= "2491" + }, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "28650", + "37898" + }, + ["in"]= { + "23756" + } + }, + [23756]= { + ["skill"]= 23756, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "64166", + ["parent"]= "2491" + }, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "10532", + "46519" + }, + ["in"]= { + "64166" + } + }, + [46519]= { + ["skill"]= 46519, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "58355", + ["parent"]= "2491" + }, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "28650" + }, + ["in"]= { + "58355", + "23756" + } + }, + [28650]= { + ["skill"]= 28650, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 226, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "2491" + }, + ["in"]= { + "10532", + "46519" + } + }, + [57404]= { + ["skill"]= 57404, + ["name"]= "Link Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 5% increased Buff Effect" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "3089" + }, + ["in"]= { + "36678" + } + }, + [3089]= { + ["skill"]= 3089, + ["name"]= "Link Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 5% increased Buff Effect" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "60145" + }, + ["in"]= { + "57404" + } + }, + [60145]= { + ["skill"]= 60145, + ["name"]= "Link Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 5% increased Buff Effect" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "28034" + }, + ["in"]= { + "3089" + } + }, + [28034]= { + ["skill"]= 28034, + ["name"]= "Empowered Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/LinkNotable4.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "+2 to Level of all Link Skill Gems" + }, + ["group"]= 227, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9213" + }, + ["in"]= { + "60145" + } + }, + [9213]= { + ["skill"]= 9213, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 227, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "28034" + } + }, + [37698]= { + ["skill"]= 37698, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 228, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45657" + } + }, + [44465]= { + ["skill"]= 44465, + ["name"]= "Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun and Block Recovery" + }, + ["group"]= 228, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "29472" + }, + ["in"]= { + "6764" + } + }, + [29472]= { + ["skill"]= 29472, + ["name"]= "Stun Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun and Block Recovery" + }, + ["group"]= 228, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45657" + }, + ["in"]= { + "44465" + } + }, + [45657]= { + ["skill"]= 45657, + ["name"]= "Trial of the Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/AntiStunNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "50% increased Stun and Block Recovery", + "Regenerate 5% of Energy Shield over 1 second when Stunned", + "Regenerate 5% of Life over 1 second when Stunned" + }, + ["group"]= 228, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "37698" + }, + ["in"]= { + "29472" + } + }, + [53677]= { + ["skill"]= 53677, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "43689" + }, + ["in"]= { + "9505" + } + }, + [24824]= { + ["skill"]= 24824, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "9505", + "6764", + "42668" + }, + ["in"]= {} + }, + [9505]= { + ["skill"]= 9505, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53677" + }, + ["in"]= { + "24824" + } + }, + [54849]= { + ["skill"]= 54849, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 229, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "43689" + } + }, + [42668]= { + ["skill"]= 42668, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10904" + }, + ["in"]= { + "24824", + "43689" + } + }, + [43689]= { + ["skill"]= 43689, + ["name"]= "Spiritual Command", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpiritualCommand.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "GoldenOil" + }, + ["stats"]= { + "Minions have 8% increased Attack Speed", + "Minions have 8% increased Cast Speed", + "Increases and Reductions to Minion Attack Speed also affect you" + }, + ["group"]= 229, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "42668", + "54849" + }, + ["in"]= { + "53677" + } + }, + [61308]= { + ["skill"]= 61308, + ["name"]= "Amplify", + ["icon"]= "Art/2DArt/SkillIcons/passives/amplify.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "10% increased Area of Effect", + "20% increased Area Damage" + }, + ["group"]= 230, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "59728", + "40927", + "15365" + } + }, + [40927]= { + ["skill"]= 40927, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 230, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "61308", + "15365" + }, + ["in"]= { + "44799" + } + }, + [15365]= { + ["skill"]= 15365, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 230, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "61308", + "49254" + }, + ["in"]= { + "40927" + } + }, + [46726]= { + ["skill"]= 46726, + ["name"]= "Mana and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "6% increased maximum Mana", + "6% increased Mana Cost Efficiency" + }, + ["group"]= 231, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "58453", + "38516", + "31819" + } + }, + [38516]= { + ["skill"]= 38516, + ["name"]= "Righteous Decree", + ["icon"]= "Art/2DArt/SkillIcons/passives/Righteous Decree.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "TealOil" + }, + ["stats"]= { + "22% increased maximum Mana", + "12% increased Mana Cost Efficiency" + }, + ["group"]= 231, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "31819", + "46726", + "62303" + }, + ["in"]= {} + }, + [31819]= { + ["skill"]= 31819, + ["name"]= "Mana and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "6% increased maximum Mana", + "6% increased Mana Cost Efficiency" + }, + ["group"]= 231, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26866", + "46726" + }, + ["in"]= { + "38516" + } + }, + [14767]= { + ["skill"]= 14767, + ["name"]= "Fortification Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "40% increased Fortification Duration" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "62530" + }, + ["in"]= { + "25781" + } + }, + [62530]= { + ["skill"]= 62530, + ["name"]= "Fortification Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "40% increased Fortification Duration" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "13922" + }, + ["in"]= { + "14767" + } + }, + [65112]= { + ["skill"]= 65112, + ["name"]= "Maximum Fortification", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "+1 to maximum Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13922" + }, + ["in"]= { + "14384" + } + }, + [14384]= { + ["skill"]= 14384, + ["name"]= "Maximum Fortification", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "+1 to maximum Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "65112" + }, + ["in"]= { + "25781" + } + }, + [25781]= { + ["skill"]= 25781, + ["name"]= "Maximum Fortification", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "+1 to maximum Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "14384", + "14767", + "14930" + }, + ["in"]= {} + }, + [13922]= { + ["skill"]= 13922, + ["name"]= "Steadfast", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+3 to maximum Fortification", + "Regenerate 0.1% of Life per second per Fortification" + }, + ["group"]= 232, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59335" + }, + ["in"]= { + "62530", + "65112" + } + }, + [59335]= { + ["skill"]= 59335, + ["name"]= "Fortify Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37925, + ["stats"]= { + "Recover 100 Life for each Fortification lost" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification)" + } + }, + { + ["effect"]= 51153, + ["stats"]= { + "Gain 20 Fortification on Melee Kill against a Rare or Unique Enemy" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 27173, + ["stats"]= { + "2% reduced Duration of Ailments inflicted on you per Fortification" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 4710, + ["stats"]= { + "4% increased Stun and Block Recovery per Fortification" + } + }, + { + ["effect"]= 28469, + ["stats"]= { + "Melee Hits Fortify", + "-3 to maximum Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 23472, + ["stats"]= { + "10% reduced Damage over Time Taken while you have at least 20 Fortification" + } + } + }, + ["stats"]= {}, + ["group"]= 232, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13922" + } + }, + [34359]= { + ["skill"]= 34359, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 233, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "62802" + }, + ["in"]= { + "44916" + } + }, + [44916]= { + ["skill"]= 44916, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.6% of Life per second" + }, + ["group"]= 233, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "34359" + }, + ["in"]= { + "14930" + } + }, + [62802]= { + ["skill"]= 62802, + ["name"]= "Brink of Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRegenerationLowlifeBonusNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "Regenerate 4% of Life per second while on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + }, + ["group"]= 233, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "61529" + }, + ["in"]= { + "34359" + } + }, + [61529]= { + ["skill"]= 61529, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 233, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62802" + } + }, + [62023]= { + ["skill"]= 62023, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 234, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38922" + } + }, + [57923]= { + ["skill"]= 57923, + ["name"]= "Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "25% increased Stun Duration on Enemies" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "17038" + }, + ["in"]= { + "38922" + } + }, + [46756]= { + ["skill"]= 46756, + ["name"]= "Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "20% increased Stun Duration on Enemies" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42800" + }, + ["in"]= { + "17038", + "56982" + } + }, + [17038]= { + ["skill"]= 17038, + ["name"]= "Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "25% increased Stun Duration on Enemies" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "46756" + }, + ["in"]= { + "57923" + } + }, + [38922]= { + ["skill"]= 38922, + ["name"]= "Goliath", + ["icon"]= "Art/2DArt/SkillIcons/passives/StunMastery.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "GoldenOil" + }, + ["stats"]= { + "50% chance to double Stun Duration" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "57923", + "62023" + }, + ["in"]= { + "56982" + } + }, + [56982]= { + ["skill"]= 56982, + ["name"]= "Stun Threshold Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 234, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "46756", + "38922" + }, + ["in"]= {} + }, + [6289]= { + ["skill"]= 6289, + ["name"]= "Bloodless", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleechimmunity.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "10% increased maximum Life", + "Enemies Cannot Leech Life From you" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "48287", + "25011" + }, + ["in"]= {} + }, + [48287]= { + ["skill"]= 48287, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "14930", + "64587" + }, + ["in"]= { + "6289" + } + }, + [5197]= { + ["skill"]= 5197, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "487" + }, + ["in"]= { + "64587" + } + }, + [64587]= { + ["skill"]= 64587, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 235, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "5197" + }, + ["in"]= { + "48287" + } + }, + [25011]= { + ["skill"]= 25011, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 235, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6289" + } + }, + [10245]= { + ["skill"]= 10245, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 236, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55002" + } + }, + [55913]= { + ["skill"]= 55913, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45646" + }, + ["in"]= { + "2913" + } + }, + [45646]= { + ["skill"]= 45646, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35192" + }, + ["in"]= { + "55913" + } + }, + [35192]= { + ["skill"]= 35192, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedAttackSmallPassive.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "55002" + }, + ["in"]= { + "45646" + } + }, + [55002]= { + ["skill"]= 55002, + ["name"]= "Righteous Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/RedHolyAttackNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "10% chance to create Consecrated Ground on Melee Kill, lasting 4 seconds", + "40% increased Melee Damage with Hits at Close Range" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)", + "(Close Range is up to 2 metres)" + }, + ["group"]= 236, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10245" + }, + ["in"]= { + "35192" + } + }, + [6764]= { + ["skill"]= 6764, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 237, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "40366", + "44465" + }, + ["in"]= { + "14057", + "19919", + "58402", + "24824" + } + }, + [40366]= { + ["skill"]= 40366, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 237, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "42760", + "885", + "58763", + "18239", + "26070" + }, + ["in"]= { + "6764" + } + }, + [8460]= { + ["skill"]= 8460, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 238, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49445" + } + }, + [19261]= { + ["skill"]= 19261, + ["name"]= "Warcry Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png", + ["stats"]= { + "12% increased Warcry Cooldown Recovery Rate" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "64181", + "44606", + "43833" + }, + ["in"]= {} + }, + [64181]= { + ["skill"]= 64181, + ["name"]= "Warcry Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png", + ["stats"]= { + "Warcry Skills have 20% increased Area of Effect" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "49445" + }, + ["in"]= { + "19261" + } + }, + [49445]= { + ["skill"]= 49445, + ["name"]= "Deep Breaths", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeepBreathsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "35% increased Warcry Cooldown Recovery Rate", + "Warcry Skills have 40% increased Area of Effect" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "8460" + }, + ["in"]= { + "64181", + "224" + } + }, + [224]= { + ["skill"]= 224, + ["name"]= "Warcry Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "43833", + "49445" + }, + ["in"]= {} + }, + [43833]= { + ["skill"]= 43833, + ["name"]= "Warcry Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/CooldownWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Cooldown Recovery Rate" + }, + ["group"]= 238, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "19261", + "224" + } + }, + [6359]= { + ["skill"]= 6359, + ["name"]= "Armour and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "10% increased Armour", + "3% increased maximum Life" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "21413" + }, + ["in"]= { + "3167" + } + }, + [7335]= { + ["skill"]= 7335, + ["name"]= "Armour and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "10% increased Armour", + "Regenerate 0.6% of Life per second" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "3167" + }, + ["in"]= { + "21413" + } + }, + [21413]= { + ["skill"]= 21413, + ["name"]= "Combat Stamina", + ["icon"]= "Art/2DArt/SkillIcons/passives/CombatStamina.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "BlackOil" + }, + ["stats"]= { + "20% increased Armour", + "5% increased maximum Life", + "Regenerate 1% of Life per second" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "7335", + "52462" + }, + ["in"]= { + "6359" + } + }, + [3167]= { + ["skill"]= 3167, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.5% of Life per second" + }, + ["group"]= 239, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6359" + }, + ["in"]= { + "7335", + "50862" + } + }, + [52462]= { + ["skill"]= 52462, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 239, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21413" + } + }, + [30160]= { + ["skill"]= 30160, + ["name"]= "Fending", + ["icon"]= "Art/2DArt/SkillIcons/passives/fending.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "VerdantOil" + }, + ["stats"]= { + "15% chance to Knock Enemies Back on hit", + "25% increased Knockback Distance" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + }, + ["group"]= 240, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "52875" + }, + ["in"]= { + "65456" + } + }, + [1252]= { + ["skill"]= 1252, + ["name"]= "Knockback Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/knockback.png", + ["stats"]= { + "10% chance to Knock Enemies Back on hit" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + }, + ["group"]= 240, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "65456" + }, + ["in"]= { + "42800" + } + }, + [65456]= { + ["skill"]= 65456, + ["name"]= "Knockback Distance", + ["icon"]= "Art/2DArt/SkillIcons/passives/knockback.png", + ["stats"]= { + "25% increased Knockback Distance" + }, + ["group"]= 240, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "30160" + }, + ["in"]= { + "1252" + } + }, + [52875]= { + ["skill"]= 52875, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 240, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30160" + } + }, + [29712]= { + ["skill"]= 29712, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "55706", + ["parent"]= "7960" + }, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "43989" + }, + ["in"]= { + "55706", + "48679" + } + }, + [48679]= { + ["skill"]= 48679, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "26661", + ["parent"]= "7960" + }, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "29712" + }, + ["in"]= { + "26661", + "9408" + } + }, + [9408]= { + ["skill"]= 9408, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "13201", + ["parent"]= "7960" + }, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "48679", + "43989" + }, + ["in"]= { + "13201" + } + }, + [43989]= { + ["skill"]= 43989, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 241, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "7960" + }, + ["in"]= { + "29712", + "9408" + } + }, + [26070]= { + ["skill"]= 26070, + ["name"]= "Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "15% increased Cost Efficiency" + }, + ["group"]= 242, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "20261" + }, + ["in"]= { + "40366", + "56922" + } + }, + [56922]= { + ["skill"]= 56922, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manastr.png", + ["stats"]= { + "6% increased Reservation Efficiency of Skills", + "10% increased Cost Efficiency" + }, + ["group"]= 242, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "20261", + "26070" + }, + ["in"]= {} + }, + [20261]= { + ["skill"]= 20261, + ["name"]= "Contemplative Meditation", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "8% increased Reservation Efficiency of Skills", + "20% increased Cost Efficiency" + }, + ["group"]= 242, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "13712" + }, + ["in"]= { + "26070", + "56922" + } + }, + [13712]= { + ["skill"]= 13712, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 242, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20261" + } + }, + [37898]= { + ["skill"]= 37898, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 243, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "23984" + }, + ["in"]= { + "10532" + } + }, + [23984]= { + ["skill"]= 23984, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "48128", + ["parent"]= "10532" + }, + ["stats"]= {}, + ["group"]= 243, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "48128" + }, + ["in"]= { + "37898" + } + }, + [2491]= { + ["skill"]= 2491, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 3, + ["proxy"]= "28650" + }, + ["stats"]= {}, + ["group"]= 244, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= { + "18901" + }, + ["in"]= { + "28650" + } + }, + [18901]= { + ["skill"]= 18901, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "Attacks with Melee Weapons deal 4% increased Damage with Ailments", + "4% increased Melee Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 244, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "2491", + "62319" + } + }, + [62319]= { + ["skill"]= 62319, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "Attacks with Melee Weapons deal 4% increased Damage with Ailments", + "4% increased Melee Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 244, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "34400", + "18901" + }, + ["in"]= {} + }, + [17735]= { + ["skill"]= 17735, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 245, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "13009", + "58402" + }, + ["in"]= { + "49254", + "34880", + "27564" + } + }, + [49254]= { + ["skill"]= 49254, + ["name"]= "Retribution", + ["icon"]= "Art/2DArt/SkillIcons/passives/Retribution.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "OpalescentOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "15% increased Damage", + "Minions deal 15% increased Damage", + "5% increased Attack and Cast Speed", + "+10 to Strength and Intelligence" + }, + ["group"]= 246, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "17735" + }, + ["in"]= { + "15365", + "44529", + "1203", + "420", + "61217" + } + }, + [15599]= { + ["skill"]= 15599, + ["name"]= "Attack and Cast Speed, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "4% increased Attack and Cast Speed" + }, + ["group"]= 247, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "6237", + "26866" + } + }, + [44529]= { + ["skill"]= 44529, + ["name"]= "Attack and Cast Speed, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "4% increased Attack and Cast Speed" + }, + ["group"]= 247, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49254" + }, + ["in"]= { + "6237" + } + }, + [41472]= { + ["skill"]= 41472, + ["name"]= "Discipline and Training", + ["icon"]= "Art/2DArt/SkillIcons/passives/newtitanicmight.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+30 to maximum Life", + "10% increased maximum Life" + }, + ["group"]= 247, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "61471", + "44799", + "58453" + }, + ["in"]= { + "1203" + } + }, + [61471]= { + ["skill"]= 61471, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 247, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "26866" + }, + ["in"]= { + "41472" + } + }, + [1203]= { + ["skill"]= 1203, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 247, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "41472", + "49254" + }, + ["in"]= {} + }, + [6237]= { + ["skill"]= 6237, + ["name"]= "Precision", + ["icon"]= "Art/2DArt/SkillIcons/passives/precision.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "CrimsonOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "6% increased Attack and Cast Speed", + "+20 to Dexterity", + "10% increased Accuracy Rating" + }, + ["group"]= 247, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "15599", + "44529" + }, + ["in"]= {} + }, + [26866]= { + ["skill"]= 26866, + ["name"]= "Sanctity", + ["icon"]= "Art/2DArt/SkillIcons/passives/bodysoul.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "BlackOil" + }, + ["grantedStrength"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Armour", + "10% increased maximum Energy Shield", + "Regenerate 1% of Life per second", + "+10 to Strength and Intelligence" + }, + ["group"]= 248, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44908", + "15599" + }, + ["in"]= { + "31819", + "61471", + "17251", + "31758" + } + }, + [44908]= { + ["skill"]= 44908, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 249, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "2913", + "31931" + }, + ["in"]= { + "26866", + "35556" + } + }, + [2913]= { + ["skill"]= 2913, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 250, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50862", + "54267", + "55913" + }, + ["in"]= { + "44908", + "61007" + } + }, + [50862]= { + ["skill"]= 50862, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 251, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44606", + "15405", + "3167", + "21650" + }, + ["in"]= { + "50422", + "2913" + } + }, + [58449]= { + ["skill"]= 58449, + ["name"]= "Born to Fight", + ["icon"]= "Art/2DArt/SkillIcons/passives/borntofight.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "GoldenOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "4% increased Attack Speed", + "+20 to Strength", + "26% increased Physical Damage" + }, + ["group"]= 252, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26523", + "39768" + }, + ["in"]= { + "38777", + "20551", + "40535" + } + }, + [39768]= { + ["skill"]= 39768, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "6% increased Accuracy Rating" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "12795" + }, + ["in"]= { + "58449" + } + }, + [32739]= { + ["skill"]= 32739, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "6% increased Accuracy Rating" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "24383" + }, + ["in"]= { + "12795" + } + }, + [61198]= { + ["skill"]= 61198, + ["name"]= "Heart of the Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/heartofthegladiator.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "SilverOil", + "GoldenOil" + }, + ["grantedStrength"]= 10, + ["stats"]= { + "+20 to maximum Life", + "10% increased maximum Life", + "+10 to Strength" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "20551" + }, + ["in"]= { + "5152" + } + }, + [20551]= { + ["skill"]= 20551, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "58449" + }, + ["in"]= { + "61198" + } + }, + [5152]= { + ["skill"]= 5152, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "61198" + }, + ["in"]= { + "24383" + } + }, + [12795]= { + ["skill"]= 12795, + ["name"]= "Versatility", + ["icon"]= "Art/2DArt/SkillIcons/passives/precision.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "OpalescentOil" + }, + ["grantedDexterity"]= 20, + ["grantedIntelligence"]= 20, + ["stats"]= { + "5% increased Movement Speed", + "+20 to Dexterity and Intelligence", + "15% increased Accuracy Rating" + }, + ["group"]= 253, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "32739" + }, + ["in"]= { + "39768" + } + }, + [24383]= { + ["skill"]= 24383, + ["name"]= "Warrior's Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/trollblood.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "BlackOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "Regenerate 1.8% of Life per second", + "20% increased Stun Threshold", + "+20 to Strength" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 254, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49412", + "5152" + }, + ["in"]= { + "6718", + "32739", + "63048" + } + }, + [49412]= { + ["skill"]= 49412, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 255, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31080", + "40653" + }, + ["in"]= { + "24383", + "15438", + "36543" + } + }, + [44606]= { + ["skill"]= 44606, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 256, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26523" + }, + ["in"]= { + "19261", + "50862" + } + }, + [26523]= { + ["skill"]= 26523, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 257, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6446" + }, + ["in"]= { + "58449", + "44606", + "23881" + } + }, + [52502]= { + ["skill"]= 52502, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "6% increased Elemental Damage" + }, + ["group"]= 258, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= { + "7960" + }, + ["in"]= { + "20987" + } + }, + [20987]= { + ["skill"]= 20987, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "6% increased Elemental Damage" + }, + ["group"]= 258, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "52502" + }, + ["in"]= { + "36678" + } + }, + [7960]= { + ["skill"]= 7960, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 0, + ["proxy"]= "43989" + }, + ["stats"]= {}, + ["group"]= 258, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "43989", + "52502" + } + }, + [45558]= { + ["skill"]= 45558, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 259, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6770" + } + }, + [12246]= { + ["skill"]= 12246, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "30% increased Energy Shield from Equipped Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "43061" + }, + ["in"]= { + "22577", + "36678" + } + }, + [43061]= { + ["skill"]= 43061, + ["name"]= "Shield Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while holding a Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "27323" + }, + ["in"]= { + "12246" + } + }, + [27323]= { + ["skill"]= 27323, + ["name"]= "Shield Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while holding a Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6770" + }, + ["in"]= { + "43061" + } + }, + [22577]= { + ["skill"]= 22577, + ["name"]= "Block Recovery and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "50% increased Block Recovery", + "50% increased Energy Shield from Equipped Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "6770", + "12246" + }, + ["in"]= {} + }, + [6770]= { + ["skill"]= 6770, + ["name"]= "Arcane Guarding", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "+10% Chance to Block Spell Damage while holding a Shield", + "60% increased Energy Shield from Equipped Shield" + }, + ["group"]= 259, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "45558" + }, + ["in"]= { + "27323", + "22577" + } + }, + [63963]= { + ["skill"]= 63963, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "58763", + "32455" + } + }, + [58763]= { + ["skill"]= 58763, + ["name"]= "Cold and Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/HalfColdHalfLightning.png", + ["stats"]= { + "8% increased Cold Damage", + "8% increased Lightning Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63963" + }, + ["in"]= { + "40366", + "7153" + } + }, + [32455]= { + ["skill"]= 32455, + ["name"]= "Storm Weaver", + ["icon"]= "Art/2DArt/SkillIcons/passives/Storm Weaver.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Cold Damage", + "25% increased Lightning Damage", + "Enemies Shocked or Frozen by you take 5% increased Elemental Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63963", + "5726" + }, + ["in"]= { + "7153" + } + }, + [7153]= { + ["skill"]= 7153, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 260, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "58763", + "32455" + }, + ["in"]= {} + }, + [5726]= { + ["skill"]= 5726, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 260, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32455" + } + }, + [36915]= { + ["skill"]= 36915, + ["name"]= "Sacrifice", + ["icon"]= "Art/2DArt/SkillIcons/passives/graveexpectations.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "Minions have 20% increased maximum Life", + "Regenerate 1% of Life per second", + "Minions Regenerate 1% of Life per second" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "48290" + }, + ["in"]= { + "10904", + "1609" + } + }, + [48290]= { + ["skill"]= 48290, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 261, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36915" + } + }, + [34880]= { + ["skill"]= 34880, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "55563", + "17735", + "10904" + }, + ["in"]= {} + }, + [10904]= { + ["skill"]= 10904, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "36915" + }, + ["in"]= { + "42668", + "34880" + } + }, + [55563]= { + ["skill"]= 55563, + ["name"]= "Minion Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions Regenerate 1.5% of Life per second" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "1609" + }, + ["in"]= { + "34880" + } + }, + [1609]= { + ["skill"]= 1609, + ["name"]= "Minion Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions Regenerate 1.5% of Life per second" + }, + ["group"]= 261, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "36915" + }, + ["in"]= { + "55563" + } + }, + [27119]= { + ["skill"]= 27119, + ["name"]= "Tribal Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/StrikeSkillsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Melee Strike Skills deal Splash Damage to surrounding targets" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "56595" + }, + ["in"]= { + "2092" + } + }, + [56595]= { + ["skill"]= 56595, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 262, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27119" + } + }, + [29797]= { + ["skill"]= 29797, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Damage" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "18009" + }, + ["in"]= { + "34400" + } + }, + [18009]= { + ["skill"]= 18009, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StrikeRangeNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "2092" + }, + ["in"]= { + "29797" + } + }, + [2092]= { + ["skill"]= 2092, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StrikeRangeNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 262, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "27119" + }, + ["in"]= { + "18009" + } + }, + [13201]= { + ["skill"]= 13201, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 263, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "2311", + "9408" + }, + ["in"]= {} + }, + [2311]= { + ["skill"]= 2311, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "7956", + ["parent"]= "9408" + }, + ["stats"]= {}, + ["group"]= 263, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7956" + }, + ["in"]= { + "13201" + } + }, + [7162]= { + ["skill"]= 7162, + ["name"]= "Armour and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "10% increased Armour", + "+5% to all Elemental Resistances" + }, + ["group"]= 264, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9695" + }, + ["in"]= { + "487" + } + }, + [9695]= { + ["skill"]= 9695, + ["name"]= "Armour and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "10% increased Armour", + "+5% to all Elemental Resistances" + }, + ["group"]= 264, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "7162", + "42009" + } + }, + [54340]= { + ["skill"]= 54340, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 264, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42009" + } + }, + [42009]= { + ["skill"]= 42009, + ["name"]= "Soul of Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/armourmastery.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+150 to Armour", + "30% increased Armour", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 264, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9695", + "54340" + }, + ["in"]= {} + }, + [34400]= { + ["skill"]= 34400, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 265, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "24914", + "14930", + "14056", + "35053", + "29797", + "34513", + "21210" + }, + ["in"]= { + "32376", + "62319" + } + }, + [487]= { + ["skill"]= 487, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 266, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "7162", + "24720", + "5103", + "1354" + }, + ["in"]= { + "5197", + "42800", + "14056" + } + }, + [53216]= { + ["skill"]= 53216, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 267, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14001" + } + }, + [5103]= { + ["skill"]= 5103, + ["name"]= "Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 267, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "37895" + }, + ["in"]= { + "487" + } + }, + [37895]= { + ["skill"]= 37895, + ["name"]= "Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/stunstr.png", + ["stats"]= { + "15% increased Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 267, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "14001" + }, + ["in"]= { + "5103" + } + }, + [14001]= { + ["skill"]= 14001, + ["name"]= "Unfaltering", + ["icon"]= "Art/2DArt/SkillIcons/passives/Unfaltering.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "50% increased Stun Threshold", + "10% of Damage taken from Stunning Hits is Recovered as Life" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 267, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "53216" + }, + ["in"]= { + "37895" + } + }, + [36678]= { + ["skill"]= 36678, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 268, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42760", + "7444", + "20987", + "12246", + "57404" + }, + ["in"]= { + "39841" + } + }, + [48128]= { + ["skill"]= 48128, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 269, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "23984" + } + }, + [42800]= { + ["skill"]= 42800, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 270, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "487", + "1252" + }, + ["in"]= { + "40653", + "30251", + "46756" + } + }, + [25934]= { + ["skill"]= 25934, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 271, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "35436" + } + }, + [28728]= { + ["skill"]= 28728, + ["name"]= "Two Handed Melee Damage and Ignore Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments", + "Hits have 15% chance to ignore Enemy Physical Damage Reduction" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "35436" + }, + ["in"]= { + "15438" + } + }, + [15438]= { + ["skill"]= 15438, + ["name"]= "Two Handed Melee Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "10% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 10% increased Damage with Ailments", + "10% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49412", + "8426", + "28728" + }, + ["in"]= {} + }, + [8426]= { + ["skill"]= 8426, + ["name"]= "Two Handed Melee Damage and Reduced Enemy Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments", + "5% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "29034" + }, + ["in"]= { + "15438" + } + }, + [29034]= { + ["skill"]= 29034, + ["name"]= "Two Handed Melee Damage and Stun Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments", + "20% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35436" + }, + ["in"]= { + "8426" + } + }, + [35436]= { + ["skill"]= 35436, + ["name"]= "Kinetic Impacts", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "25% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments", + "10% chance to double Stun Duration", + "5% chance to deal Double Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 271, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "25934" + }, + ["in"]= { + "28728", + "29034" + } + }, + [21210]= { + ["skill"]= 21210, + ["name"]= "Arsenal of Vengeance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "Damaging Retaliation Skills become Usable every sixth Hit from Enemies instead" + }, + ["flavourText"]= { + "Never start the war... but be sure to end it." + }, + ["group"]= 272, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34400" + } + }, + [21650]= { + ["skill"]= 21650, + ["name"]= "Eternal Youth", + ["icon"]= "Art/2DArt/SkillIcons/passives/EternalYouth.png", + ["isKeystone"]= true, + ["stats"]= { + "50% less Life Regeneration Rate\n50% less maximum Total Life Recovery per Second from Leech\nEnergy Shield Recharge instead applies to Life" + }, + ["flavourText"]= { + "Burn the spirit to vitalise the flesh." + }, + ["group"]= 273, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50862" + } + }, + [14079]= { + ["skill"]= 14079, + ["name"]= "Wood, Stone, and Spell", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeirophantAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "10% increased effect of Arcane Surge on you per Summoned Totem" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate)" + }, + ["group"]= 274, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [30148]= { + ["skill"]= 30148, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+30 to Accuracy Rating", + "10% increased Accuracy Rating" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "45350" + }, + ["in"]= { + "61007" + } + }, + [61007]= { + ["skill"]= 61007, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+20 to Accuracy Rating", + "6% increased Accuracy Rating" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "2913", + "15880", + "30148" + }, + ["in"]= {} + }, + [45350]= { + ["skill"]= 45350, + ["name"]= "Glory of Command", + ["icon"]= "Art/2DArt/SkillIcons/passives/AccuracyTemplar2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "40% increased Accuracy Rating while you have at least 1 nearby Ally", + "15% increased Area of Effect for Attacks while you have at least 1 nearby Ally" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "38595" + }, + ["in"]= { + "30148", + "15880" + } + }, + [15880]= { + ["skill"]= 15880, + ["name"]= "Attack Area of Effect and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + ["stats"]= { + "8% increased Area of Effect for Attacks", + "10% increased Accuracy Rating" + }, + ["group"]= 275, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "45350" + }, + ["in"]= { + "61007" + } + }, + [38595]= { + ["skill"]= 38595, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 275, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45350" + } + }, + [5230]= { + ["skill"]= 5230, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 276, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22702" + } + }, + [22702]= { + ["skill"]= 22702, + ["name"]= "Serpent Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/serpentstance.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "40% increased Critical Strike Chance while wielding a Staff", + "+30% to Critical Strike Multiplier while wielding a Staff", + "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "5230" + }, + ["in"]= { + "53957" + } + }, + [53957]= { + ["skill"]= 53957, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/critstrchnc.png", + ["stats"]= { + "20% increased Critical Strike Chance while wielding a Staff", + "+10% to Critical Strike Multiplier while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "22702" + }, + ["in"]= { + "4977" + } + }, + [24229]= { + ["skill"]= 24229, + ["name"]= "Staff Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/critstrchnc.png", + ["stats"]= { + "20% increased Critical Strike Chance while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "4977", + "42760" + } + }, + [4977]= { + ["skill"]= 4977, + ["name"]= "Staff Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/critstrchnc.png", + ["stats"]= { + "20% increased Critical Strike Chance while wielding a Staff", + "+10% to Critical Strike Multiplier while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 276, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "24229", + "53957" + }, + ["in"]= {} + }, + [13739]= { + ["skill"]= 13739, + ["name"]= "Always Angry", + ["icon"]= "Art/2DArt/SkillIcons/passives/BeserkerAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "+8 to Minimum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 277, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [7956]= { + ["skill"]= 7956, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 278, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "2311" + } + }, + [27308]= { + ["skill"]= 27308, + ["name"]= "Gravepact", + ["icon"]= "Art/2DArt/SkillIcons/passives/gravepact.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "+7% to Chaos Resistance", + "Minions have 8% chance to deal Double Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "61992" + }, + ["in"]= { + "43133" + } + }, + [61992]= { + ["skill"]= 61992, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 279, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27308" + } + }, + [54267]= { + ["skill"]= 54267, + ["name"]= "Chaos Resistance and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "+3% to Chaos Resistance", + "Minions deal 12% increased Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "23185" + }, + ["in"]= { + "2913" + } + }, + [23185]= { + ["skill"]= 23185, + ["name"]= "Chaos Resistance and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "+3% to Chaos Resistance", + "Minions deal 12% increased Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "43133" + }, + ["in"]= { + "54267" + } + }, + [43133]= { + ["skill"]= 43133, + ["name"]= "Chaos Resistance and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.png", + ["stats"]= { + "+3% to Chaos Resistance", + "Minions deal 12% increased Damage" + }, + ["group"]= 279, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "27308" + }, + ["in"]= { + "23185" + } + }, + [64695]= { + ["skill"]= 64695, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "22133" + }, + ["in"]= { + "36945" + } + }, + [36945]= { + ["skill"]= 36945, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "64695" + }, + ["in"]= { + "53072", + "14056" + } + }, + [22133]= { + ["skill"]= 22133, + ["name"]= "Invigorating Blaze", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgniteAttackNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "+10% to Fire Damage over Time Multiplier with Attack Skills", + "Recover 2% of Life when you Ignite a non-Ignited Enemy" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "37911", + "50562" + }, + ["in"]= { + "64695" + } + }, + [53072]= { + ["skill"]= 53072, + ["name"]= "Burning Damage Multiplier with Attacks", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier with Attack Skills" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "36945" + }, + ["in"]= { + "50562" + } + }, + [50562]= { + ["skill"]= 50562, + ["name"]= "Burning Damage Multiplier with Attacks", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier with Attack Skills" + }, + ["group"]= 280, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "53072" + }, + ["in"]= { + "22133" + } + }, + [37911]= { + ["skill"]= 37911, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 280, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22133" + } + }, + [24720]= { + ["skill"]= 24720, + ["name"]= "Imbalanced Guard", + ["icon"]= "Art/2DArt/SkillIcons/passives/SacredBastionKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "100% chance to Defend with 200% of Armour\nMaximum Damage Reduction for any Damage Type is 50%" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + }, + ["flavourText"]= { + "Layer only your most vital areas, child. We have less steel,", + "but we are willing to bleed, and that is why we will be victorious." + }, + ["group"]= 281, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "487" + } + }, + [4354]= { + ["skill"]= 4354, + ["name"]= "Beacon of Hope", + ["icon"]= "Art/2DArt/SkillIcons/passives/GuardianAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "80% increased Area of Effect of Aura Skills" + }, + ["group"]= 282, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [21548]= { + ["skill"]= 21548, + ["name"]= "Banner Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 20% increased Duration" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13703" + }, + ["in"]= { + "47785" + } + }, + [47785]= { + ["skill"]= 47785, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "21548" + }, + ["in"]= { + "49635", + "14056" + } + }, + [49635]= { + ["skill"]= 49635, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "47785" + }, + ["in"]= { + "60963" + } + }, + [60963]= { + ["skill"]= 60963, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49635" + }, + ["in"]= { + "13703" + } + }, + [13703]= { + ["skill"]= 13703, + ["name"]= "Defiant Stand", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Gain 3 Endurance Charges when you consume maximum Valour to place a Banner", + "Gain 3 Frenzy Charges when you consume maximum Valour to place a Banner" + }, + ["group"]= 283, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "35321", + "60963" + }, + ["in"]= { + "21548" + } + }, + [35321]= { + ["skill"]= 35321, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 283, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13703" + } + }, + [32075]= { + ["skill"]= 32075, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 284, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "58869", + "39841" + }, + ["in"]= {} + }, + [58869]= { + ["skill"]= 58869, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 284, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "39986" + }, + ["in"]= { + "32075" + } + }, + [39986]= { + ["skill"]= 39986, + ["name"]= "Defiled Forces", + ["icon"]= "Art/2DArt/SkillIcons/passives/SkitteringRunes.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "Curse Skills have 15% increased Cast Speed", + "Refresh Duration of Chill and Shock on Enemies you Curse", + "Remove Elemental Ailments when you Cast a Curse Spell" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 284, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "50540" + }, + ["in"]= { + "58869" + } + }, + [50540]= { + ["skill"]= 50540, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 284, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39986" + } + }, + [38706]= { + ["skill"]= 38706, + ["name"]= "Way of the Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/EyesOfThePowerful.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "OpalescentOil" + }, + ["grantedStrength"]= 30, + ["stats"]= { + "16% increased Melee Damage", + "16% increased Armour", + "+16 to maximum Life", + "+30 to Strength" + }, + ["group"]= 285, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [7828]= { + ["skill"]= 7828, + ["name"]= "Melee Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/meleeattackspeed.png", + ["stats"]= { + "5% increased Melee Attack Speed" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32480" + }, + ["in"]= { + "40535" + } + }, + [40535]= { + ["skill"]= 40535, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Physical Damage" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "7828", + "58449" + }, + ["in"]= { + "30335" + } + }, + [30335]= { + ["skill"]= 30335, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "16% increased Melee Physical Damage" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "40535" + }, + ["in"]= { + "32480" + } + }, + [32480]= { + ["skill"]= 32480, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Physical Damage" + }, + ["group"]= 286, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "30335", + "33988" + }, + ["in"]= { + "7828" + } + }, + [15868]= { + ["skill"]= 15868, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "22627", + "36047" + }, + ["in"]= { + "50264" + } + }, + [36047]= { + ["skill"]= 36047, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "12% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "63048" + }, + ["in"]= { + "15868" + } + }, + [63048]= { + ["skill"]= 63048, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "10% increased Armour", + "4% increased maximum Life" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "50264", + "24383" + }, + ["in"]= { + "36047" + } + }, + [50264]= { + ["skill"]= 50264, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.8% of Life per second" + }, + ["group"]= 287, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15868" + }, + ["in"]= { + "63048" + } + }, + [4568]= { + ["skill"]= 4568, + ["name"]= "Physical and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "10% increased Physical Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "35724" + }, + ["in"]= { + "9294" + } + }, + [420]= { + ["skill"]= 420, + ["name"]= "Physical and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "10% increased Physical Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49254", + "9294" + }, + ["in"]= {} + }, + [9294]= { + ["skill"]= 9294, + ["name"]= "Physical and Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 10% increased Damage", + "10% increased Physical Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "4568" + }, + ["in"]= { + "420" + } + }, + [33923]= { + ["skill"]= 33923, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59005" + }, + ["in"]= { + "35724" + } + }, + [59005]= { + ["skill"]= 59005, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "61217" + }, + ["in"]= { + "33923" + } + }, + [61217]= { + ["skill"]= 61217, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 288, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49254" + }, + ["in"]= { + "59005" + } + }, + [29005]= { + ["skill"]= 29005, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "17352" + }, + ["in"]= { + "39631" + } + }, + [39631]= { + ["skill"]= 39631, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "29005" + }, + ["in"]= { + "17251" + } + }, + [17251]= { + ["skill"]= 17251, + ["name"]= "Armour and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.png", + ["stats"]= { + "10% increased Armour", + "5% increased maximum Energy Shield" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "39631", + "26866" + }, + ["in"]= {} + }, + [31758]= { + ["skill"]= 31758, + ["name"]= "Mana and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Mana Regeneration Rate", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "26866" + }, + ["in"]= { + "42837" + } + }, + [42837]= { + ["skill"]= 42837, + ["name"]= "Mana and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Mana Regeneration Rate", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31758" + }, + ["in"]= { + "23456" + } + }, + [23456]= { + ["skill"]= 23456, + ["name"]= "Mana and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Mana Regeneration Rate", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 289, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42837" + }, + ["in"]= { + "17352" + } + }, + [33631]= { + ["skill"]= 33631, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 290, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "15405" + } + }, + [33740]= { + ["skill"]= 33740, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 290, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46910", + "15405" + }, + ["in"]= {} + }, + [15405]= { + ["skill"]= 15405, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 290, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "33631" + }, + ["in"]= { + "50862", + "33740" + } + }, + [40698]= { + ["skill"]= 40698, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 291, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22706" + } + }, + [1354]= { + ["skill"]= 1354, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 291, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "18202" + }, + ["in"]= { + "487" + } + }, + [18202]= { + ["skill"]= 18202, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 291, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "22706" + }, + ["in"]= { + "1354" + } + }, + [22706]= { + ["skill"]= 22706, + ["name"]= "Savage Intensity", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Cost Efficiency of Attacks", + "Inherent loss of Rage is 20% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 291, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "40698" + }, + ["in"]= { + "18202" + } + }, + [26697]= { + ["skill"]= 26697, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 292, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57839" + } + }, + [61050]= { + ["skill"]= 61050, + ["name"]= "Sword Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "57839" + }, + ["in"]= { + "64024" + } + }, + [64024]= { + ["skill"]= 64024, + ["name"]= "Sword Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "61050" + }, + ["in"]= { + "35053" + } + }, + [35053]= { + ["skill"]= 35053, + ["name"]= "Sword Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "25% increased Critical Strike Chance with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "64024", + "43514" + }, + ["in"]= { + "34400" + } + }, + [43514]= { + ["skill"]= 43514, + ["name"]= "Sword Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "6% increased Accuracy Rating with Swords", + "20% increased Critical Strike Chance with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "35053", + "57839" + } + }, + [57839]= { + ["skill"]= 57839, + ["name"]= "Blade of Cunning", + ["icon"]= "Art/2DArt/SkillIcons/passives/legendaryswordsman.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "15% increased Accuracy Rating with Swords", + "45% increased Critical Strike Chance with Swords", + "+15% to Critical Strike Multiplier with Swords" + }, + ["group"]= 292, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "43514", + "26697" + }, + ["in"]= { + "61050" + } + }, + [23881]= { + ["skill"]= 23881, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 293, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "26523" + }, + ["in"]= { + "9511" + } + }, + [9511]= { + ["skill"]= 9511, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 293, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "23881" + }, + ["in"]= { + "31628" + } + }, + [56029]= { + ["skill"]= 56029, + ["name"]= "Agility", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 294, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42760" + }, + ["in"]= {} + }, + [35556]= { + ["skill"]= 35556, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 295, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "44908" + }, + ["in"]= { + "39916" + } + }, + [39916]= { + ["skill"]= 39916, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 295, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= { + "35556", + "20228" + }, + ["in"]= {} + }, + [37512]= { + ["skill"]= 37512, + ["name"]= "Bastion of Faith", + ["icon"]= "Art/2DArt/SkillIcons/passives/InquisitorAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "Consecrated Ground you create also grants\n50% reduced duration of Damaging Ailments on you" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 296, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [9995]= { + ["skill"]= 9995, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 297, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "33718" + }, + ["in"]= { + "34513" + } + }, + [34513]= { + ["skill"]= 34513, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 297, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "9995" + }, + ["in"]= { + "34400" + } + }, + [33718]= { + ["skill"]= 33718, + ["name"]= "Champion of the Cause", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "12% increased Area of Effect of Aura Skills", + "8% increased Reservation Efficiency of Skills", + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 297, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "64128" + }, + ["in"]= { + "9995" + } + }, + [64128]= { + ["skill"]= 64128, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 297, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33718" + } + }, + [39332]= { + ["skill"]= 39332, + ["name"]= "Staff Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupStaff.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStaffActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50863, + ["stats"]= { + "Recover 2% of Energy Shield when you Block Spell Damage while wielding a Staff", + "Recover 2% of Life when you Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 28589, + ["stats"]= { + "30% increased Defences while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + { + ["effect"]= 47249, + ["stats"]= { + "+8% Chance to Block Attack Damage if you've Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 22149, + ["stats"]= { + "12% increased maximum Life and Mana if your equipped Staff has a Red and Blue Socket" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + { + ["effect"]= 9143, + ["stats"]= { + "Gain Unholy Might on Block for 3 seconds" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 65233, + ["stats"]= { + "+60% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 298, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65273" + } + }, + [26585]= { + ["skill"]= 26585, + ["name"]= "Staff Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "7347" + }, + ["in"]= { + "5462" + } + }, + [5462]= { + ["skill"]= 5462, + ["name"]= "Staff Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png", + ["stats"]= { + "12% increased Area of Effect while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7364", + "26585" + }, + ["in"]= { + "39841" + } + }, + [7364]= { + ["skill"]= 7364, + ["name"]= "Staff Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png", + ["stats"]= { + "15% increased Area of Effect while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "65273" + }, + ["in"]= { + "5462" + } + }, + [65273]= { + ["skill"]= 65273, + ["name"]= "Enigmatic Reach", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "3% increased Area of Effect per Power Charge", + "25% chance to gain a Power Charge when you Block Spell Damage", + "+8% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "39332" + }, + ["in"]= { + "7364", + "7347" + } + }, + [7347]= { + ["skill"]= 7347, + ["name"]= "Staff Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "+4% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 298, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "65273" + }, + ["in"]= { + "26585" + } + }, + [651]= { + ["skill"]= 651, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/crystalskin.png", + ["stats"]= { + "10% reduced Elemental Ailment Duration on you", + "10% reduced Effect of Chill and Shock on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 299, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9149", + "13009", + "3398", + "43057" + }, + ["in"]= {} + }, + [9149]= { + ["skill"]= 9149, + ["name"]= "Chill and Freeze Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "20% reduced Effect of Chill on you", + "20% reduced Freeze Duration on you" + }, + ["reminderText"]= { + "(Chill reduces Action Speed by up to 30%)" + }, + ["group"]= 299, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "11820" + }, + ["in"]= { + "651" + } + }, + [43057]= { + ["skill"]= 43057, + ["name"]= "Ignite Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "20% reduced Ignite Duration on you" + }, + ["group"]= 299, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "11820" + }, + ["in"]= { + "651" + } + }, + [3398]= { + ["skill"]= 3398, + ["name"]= "Shock Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "20% reduced Effect of Shock on you" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%)" + }, + ["group"]= 299, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "11820" + }, + ["in"]= { + "651" + } + }, + [11820]= { + ["skill"]= 11820, + ["name"]= "Anointed Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalAilmentResistance.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+1% to all maximum Elemental Resistances", + "20% reduced Elemental Ailment Duration on you", + "20% reduced Effect of Chill and Shock on you" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)", + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 299, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "17127" + }, + ["in"]= { + "9149", + "43057", + "3398" + } + }, + [17127]= { + ["skill"]= 17127, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 299, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "11820" + } + }, + [12250]= { + ["skill"]= 12250, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "6% increased maximum Mana" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "38701", + "42760" + }, + ["in"]= {} + }, + [3471]= { + ["skill"]= 3471, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 300, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48298" + } + }, + [38701]= { + ["skill"]= 38701, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "6% increased maximum Mana" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "18767" + }, + ["in"]= { + "12250" + } + }, + [18767]= { + ["skill"]= 18767, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "6% increased maximum Mana" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48298" + }, + ["in"]= { + "38701" + } + }, + [48298]= { + ["skill"]= 48298, + ["name"]= "Insightfulness", + ["icon"]= "Art/2DArt/SkillIcons/passives/Inspiration.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "10% increased maximum Energy Shield", + "16% increased maximum Mana", + "16% increased Mana Cost Efficiency" + }, + ["group"]= 300, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "3471" + }, + ["in"]= { + "18767" + } + }, + [14587]= { + ["skill"]= 14587, + ["name"]= "Adaptive Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/JuggernautAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "5% chance to Defend with 200% of Armour for each\ntime you've been Hit by an Enemy Recently, up to 30%" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 301, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [14151]= { + ["skill"]= 14151, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 302, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "27564" + }, + ["in"]= { + "63965" + } + }, + [27564]= { + ["skill"]= 27564, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 302, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "17735" + }, + ["in"]= { + "14151" + } + }, + [6981]= { + ["skill"]= 6981, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 303, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "36543" + }, + ["in"]= { + "50904" + } + }, + [36543]= { + ["skill"]= 36543, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 303, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "49412" + }, + ["in"]= { + "6981" + } + }, + [35724]= { + ["skill"]= 35724, + ["name"]= "Damage and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "12% increased Damage", + "+10 to maximum Mana" + }, + ["group"]= 304, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63965", + "33923" + }, + ["in"]= { + "4568" + } + }, + [17352]= { + ["skill"]= 17352, + ["name"]= "Mana and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "5% increased maximum Life", + "5% increased maximum Mana" + }, + ["group"]= 305, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20228", + "23456" + }, + ["in"]= { + "29005" + } + }, + [33988]= { + ["skill"]= 33988, + ["name"]= "Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "12% increased Melee Physical Damage" + }, + ["group"]= 306, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31628" + }, + ["in"]= { + "32480" + } + }, + [13009]= { + ["skill"]= 13009, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 307, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60398" + }, + ["in"]= { + "17735", + "651" + } + }, + [5456]= { + ["skill"]= 5456, + ["name"]= "Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 308, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42760" + } + }, + [23215]= { + ["skill"]= 23215, + ["name"]= "Curse and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + ["stats"]= { + "+6% to Chaos Resistance", + "6% reduced Effect of Curses on you" + }, + ["group"]= 309, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "54954" + }, + ["in"]= { + "4854" + } + }, + [54954]= { + ["skill"]= 54954, + ["name"]= "Curse and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.png", + ["stats"]= { + "+6% to Chaos Resistance", + "6% reduced Effect of Curses on you" + }, + ["group"]= 309, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "23215", + "46340" + } + }, + [4854]= { + ["skill"]= 4854, + ["name"]= "Asylum", + ["icon"]= "Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "+18% to Chaos Resistance", + "18% reduced Effect of Curses on you" + }, + ["group"]= 309, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "23215", + "12503" + }, + ["in"]= {} + }, + [12503]= { + ["skill"]= 12503, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 309, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4854" + } + }, + [19897]= { + ["skill"]= 19897, + ["name"]= "Death Attunement", + ["icon"]= "Art/2DArt/SkillIcons/passives/deathattunement.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum number of Spectres", + "+1 to Maximum number of Raised Zombies", + "+1 to Maximum number of Skeletons" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "39416" + }, + ["in"]= { + "34144", + "4247" + } + }, + [39416]= { + ["skill"]= 39416, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 310, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19897" + } + }, + [43716]= { + ["skill"]= 43716, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "34144" + }, + ["in"]= { + "52412" + } + }, + [34144]= { + ["skill"]= 34144, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 16% increased Damage" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "19897" + }, + ["in"]= { + "43716" + } + }, + [52412]= { + ["skill"]= 52412, + ["name"]= "Minion Life and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "17412", + "43716", + "39841" + }, + ["in"]= {} + }, + [4247]= { + ["skill"]= 4247, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19897" + }, + ["in"]= { + "17412" + } + }, + [17412]= { + ["skill"]= 17412, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 310, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "4247" + }, + ["in"]= { + "52412" + } + }, + [14056]= { + ["skill"]= 14056, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 311, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "487", + "34601", + "11700", + "36945", + "47785" + }, + ["in"]= { + "34400", + "18025", + "22703", + "6741" + } + }, + [34601]= { + ["skill"]= 34601, + ["name"]= "Proficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 312, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14056" + } + }, + [45341]= { + ["skill"]= 45341, + ["name"]= "Maximum Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "+1% to maximum Cold Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "50340", + "60031" + } + }, + [6043]= { + ["skill"]= 6043, + ["name"]= "Maximum Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "+1% to maximum Fire Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "60031" + }, + ["in"]= { + "50340" + } + }, + [50340]= { + ["skill"]= 50340, + ["name"]= "Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+5% to all Elemental Resistances" + }, + ["group"]= 313, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "6043", + "45341", + "31080", + "5065" + }, + ["in"]= {} + }, + [60031]= { + ["skill"]= 60031, + ["name"]= "Prismatic Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaximumElementalResistances2.png", + ["isNotable"]= true, + ["recipe"]= { + "SilverOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "+2% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "45341", + "33657" + }, + ["in"]= { + "6043", + "5065" + } + }, + [5065]= { + ["skill"]= 5065, + ["name"]= "Maximum Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "+1% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 313, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "60031" + }, + ["in"]= { + "50340" + } + }, + [33657]= { + ["skill"]= 33657, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 313, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60031" + } + }, + [22627]= { + ["skill"]= 22627, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "+30 to Armour", + "5% increased maximum Life" + }, + ["group"]= 314, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "50904" + }, + ["in"]= { + "15868" + } + }, + [19388]= { + ["skill"]= 19388, + ["name"]= "Axe Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 10% increased Damage with Hits and Ailments", + "10% increased Accuracy Rating with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23852", + "52090" + }, + ["in"]= {} + }, + [23852]= { + ["skill"]= 23852, + ["name"]= "Axe Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "32519" + }, + ["in"]= { + "19388", + "24914" + } + }, + [32519]= { + ["skill"]= 32519, + ["name"]= "Axe Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 10% increased Damage with Hits and Ailments", + "25% increased Critical Strike Chance with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "23852", + "26188" + } + }, + [26188]= { + ["skill"]= 26188, + ["name"]= "Axe Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/damageaxe.png", + ["stats"]= { + "Axe Attacks deal 10% increased Damage with Hits and Ailments", + "25% increased Critical Strike Chance with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "32519" + }, + ["in"]= { + "52090" + } + }, + [52090]= { + ["skill"]= 52090, + ["name"]= "Feller of Foes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "Axe Attacks deal 30% increased Damage with Hits and Ailments", + "+40% to Critical Strike Multiplier with Axes", + "+200 to Accuracy Rating with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 315, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "4424", + "26188" + }, + ["in"]= { + "19388" + } + }, + [4424]= { + ["skill"]= 4424, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 315, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52090" + } + }, + [8556]= { + ["skill"]= 8556, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 316, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20835" + } + }, + [11700]= { + ["skill"]= 11700, + ["name"]= "Melee Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + ["stats"]= { + "Melee Skills have 10% increased Area of Effect" + }, + ["group"]= 316, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50969" + }, + ["in"]= { + "14056" + } + }, + [50969]= { + ["skill"]= 50969, + ["name"]= "Melee Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENode.png", + ["stats"]= { + "Melee Skills have 10% increased Area of Effect" + }, + ["group"]= 316, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20835" + }, + ["in"]= { + "11700" + } + }, + [20835]= { + ["skill"]= 20835, + ["name"]= "Brinkmanship", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeAoENotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "OpalescentOil" + }, + ["stats"]= { + "Melee Skills have 20% increased Area of Effect" + }, + ["group"]= 316, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "8556" + }, + ["in"]= { + "50969" + } + }, + [59494]= { + ["skill"]= 59494, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Critical Strike Chance", + "12% increased Accuracy Rating" + }, + ["group"]= 317, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "16380", + "2225" + } + }, + [16380]= { + ["skill"]= 16380, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Critical Strike Chance", + "12% increased Accuracy Rating" + }, + ["group"]= 317, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59494" + }, + ["in"]= { + "22703" + } + }, + [2225]= { + ["skill"]= 2225, + ["name"]= "Eagle Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/eagleeye.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "OpalescentOil" + }, + ["stats"]= { + "+150 to Accuracy Rating", + "20% increased Critical Strike Chance", + "20% increased Accuracy Rating" + }, + ["group"]= 317, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "59494", + "35221" + }, + ["in"]= {} + }, + [35221]= { + ["skill"]= 35221, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 317, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2225" + } + }, + [32853]= { + ["skill"]= 32853, + ["name"]= "Sione's Ambition", + ["icon"]= "Art/2DArt/SkillIcons/passives/CheiftainAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "Strike Skills which target additional Enemies can do so from 40% further away" + }, + ["group"]= 318, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [63447]= { + ["skill"]= 63447, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 319, + ["orbit"]= 6, + ["orbitIndex"]= 9, + ["out"]= { + "44184", + "56066", + "12888" + }, + ["in"]= { + "39841", + "33864", + "47949", + "52655" + } + }, + [39841]= { + ["skill"]= 39841, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 319, + ["orbit"]= 6, + ["orbitIndex"]= 66, + ["out"]= { + "63447", + "36678", + "5462" + }, + ["in"]= { + "32075", + "52412" + } + }, + [35038]= { + ["skill"]= 35038, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 320, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63944" + } + }, + [20844]= { + ["skill"]= 20844, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "5% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "63944" + }, + ["in"]= { + "62217" + } + }, + [62217]= { + ["skill"]= 62217, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "5% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "20844", + "56066" + }, + ["in"]= {} + }, + [56066]= { + ["skill"]= 56066, + ["name"]= "Wand Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Elemental Damage with Wands" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "63447", + "62217", + "30926" + } + }, + [54043]= { + ["skill"]= 54043, + ["name"]= "Wand Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "10% increased Elemental Damage with Wands", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30926" + }, + ["in"]= { + "63944" + } + }, + [30926]= { + ["skill"]= 30926, + ["name"]= "Wand Elemental Damage and Penetration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "10% increased Elemental Damage with Wands", + "Damage with Weapons Penetrates 2% Elemental Resistances" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "56066" + }, + ["in"]= { + "54043" + } + }, + [63944]= { + ["skill"]= 63944, + ["name"]= "Prism Weave", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "6% increased Attack Speed with Wands", + "24% increased Elemental Damage with Wands", + "Damage with Weapons Penetrates 5% Elemental Resistances" + }, + ["group"]= 320, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "54043", + "35038" + }, + ["in"]= { + "20844" + } + }, + [2828]= { + ["skill"]= 2828, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 321, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25970" + } + }, + [34423]= { + ["skill"]= 34423, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+6% to Damage over Time Multiplier" + }, + ["group"]= 321, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25970" + }, + ["in"]= { + "48118" + } + }, + [48118]= { + ["skill"]= 48118, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+6% to Damage over Time Multiplier" + }, + ["group"]= 321, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "34423" + }, + ["in"]= { + "55332" + } + }, + [25970]= { + ["skill"]= 25970, + ["name"]= "Acrimony", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "+15% to Damage over Time Multiplier" + }, + ["group"]= 321, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "2828" + }, + ["in"]= { + "34423" + } + }, + [12169]= { + ["skill"]= 12169, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 322, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65107" + } + }, + [65107]= { + ["skill"]= 65107, + ["name"]= "Bastion Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/ByTheBlade.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "30% increased Attack Physical Damage", + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + }, + ["group"]= 322, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12169" + }, + ["in"]= { + "60153" + } + }, + [60153]= { + ["skill"]= 60153, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "14% increased Attack Physical Damage" + }, + ["group"]= 322, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "65107" + }, + ["in"]= { + "16860" + } + }, + [16860]= { + ["skill"]= 16860, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "14% increased Attack Physical Damage" + }, + ["group"]= 322, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "60153" + }, + ["in"]= { + "24914" + } + }, + [17945]= { + ["skill"]= 17945, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 323, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52742" + } + }, + [30370]= { + ["skill"]= 30370, + ["name"]= "Spell Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "12% increased Damage Over Time with Spell Skills" + }, + ["group"]= 323, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "51804" + }, + ["in"]= { + "46340" + } + }, + [51804]= { + ["skill"]= 51804, + ["name"]= "Spell Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "16% increased Damage Over Time with Spell Skills" + }, + ["group"]= 323, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52742" + }, + ["in"]= { + "30370" + } + }, + [52742]= { + ["skill"]= 52742, + ["name"]= "Hasty Demise", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Damage Over Time with Spell Skills", + "8% increased Cast Speed", + "10% reduced Skill Effect Duration" + }, + ["group"]= 323, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "17945" + }, + ["in"]= { + "51804" + } + }, + [18025]= { + ["skill"]= 18025, + ["name"]= "Hard Knocks", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 324, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14056" + }, + ["in"]= {} + }, + [22088]= { + ["skill"]= 22088, + ["name"]= "Elemental Overload", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneElementalOverload.png", + ["isKeystone"]= true, + ["stats"]= { + "Skills that have dealt a Critical Strike in the past 8 seconds deal 40% more Elemental Damage with Hits and Ailments\nYour Critical Strikes do not deal extra Damage\nAilments never count as being from Critical Strikes" + }, + ["flavourText"]= { + "You are not a vanishing spark, but a patient ember waiting to seed a great fire." + }, + ["group"]= 325, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "55332" + }, + ["in"]= {} + }, + [46340]= { + ["skill"]= 46340, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 326, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42760", + "51954", + "54954", + "30370" + }, + ["in"]= { + "60398", + "34478" + } + }, + [31080]= { + ["skill"]= 31080, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 327, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= { + "43374" + }, + ["in"]= { + "49412", + "50340" + } + }, + [61343]= { + ["skill"]= 61343, + ["name"]= "Brand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBrand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37186, + ["stats"]= { + "Recover 10% of Mana when a Brand expires while Attached" + } + }, + { + ["effect"]= 5907, + ["stats"]= { + "Brands have 30% increased Area of Effect if 50% of Attached Duration expired" + } + }, + { + ["effect"]= 20630, + ["stats"]= { + "Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds" + } + }, + { + ["effect"]= 39863, + ["stats"]= { + "Brand Recall has 50% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 32877, + ["stats"]= { + "You can Cast 2 additional Brands" + } + }, + { + ["effect"]= 46672, + ["stats"]= { + "40% increased Brand Attachment range" + } + } + }, + ["stats"]= {}, + ["group"]= 328, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29861" + } + }, + [29033]= { + ["skill"]= 29033, + ["name"]= "Brand Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "25% increased Brand Critical Strike Chance" + }, + ["reminderText"]= { + "(Brand Critical Strikes are any Critical Strikes dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 328, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "29861" + }, + ["in"]= { + "51954" + } + }, + [51954]= { + ["skill"]= 51954, + ["name"]= "Brand Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand1.png", + ["stats"]= { + "25% increased Brand Critical Strike Chance" + }, + ["reminderText"]= { + "(Brand Critical Strikes are any Critical Strikes dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 328, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "29033" + }, + ["in"]= { + "46340" + } + }, + [29861]= { + ["skill"]= 29861, + ["name"]= "Explosive Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/ExplosiveRunes.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "+30% to Brand Critical Strike Multiplier", + "30% increased Brand Attachment range" + }, + ["reminderText"]= { + "(Brand Critical Strikes are any Critical Strikes dealt by Brand Skills or by Skills Triggered by a Brand)" + }, + ["group"]= 328, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "61343" + }, + ["in"]= { + "29033" + } + }, + [63965]= { + ["skill"]= 63965, + ["name"]= "Damage and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "14% increased Damage", + "+14 to maximum Mana" + }, + ["group"]= 329, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "14151" + }, + ["in"]= { + "54877", + "35724", + "61525" + } + }, + [20228]= { + ["skill"]= 20228, + ["name"]= "Mana Regeneration and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "+14 to maximum Life", + "20% increased Mana Regeneration Rate" + }, + ["group"]= 329, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "61525" + }, + ["in"]= { + "54877", + "39916", + "17352" + } + }, + [61525]= { + ["skill"]= 61525, + ["name"]= "TEMPLAR", + ["icon"]= "Art/2DArt/SkillIcons/passives/axedmgspeed.png", + ["stats"]= {}, + ["classStartIndex"]= 5, + ["group"]= 329, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63965", + "61871", + "30940", + "409" + }, + ["in"]= { + "20228" + } + }, + [50904]= { + ["skill"]= 50904, + ["name"]= "Life and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedarmorandlife.png", + ["stats"]= { + "+20 to Armour", + "+16 to maximum Life" + }, + ["group"]= 330, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "6981" + }, + ["in"]= { + "24755", + "22627", + "47175" + } + }, + [47175]= { + ["skill"]= 47175, + ["name"]= "MARAUDER", + ["icon"]= "Art/2DArt/SkillIcons/passives/blankStr.png", + ["stats"]= {}, + ["classStartIndex"]= 1, + ["group"]= 330, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "31628", + "50904", + "17765", + "24704", + "29294" + }, + ["in"]= {} + }, + [31628]= { + ["skill"]= 31628, + ["name"]= "Melee Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagemelee.png", + ["stats"]= { + "+16 to maximum Life", + "16% increased Melee Physical Damage" + }, + ["group"]= 330, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "9511" + }, + ["in"]= { + "24755", + "33988", + "47175" + } + }, + [34098]= { + ["skill"]= 34098, + ["name"]= "Mind Over Matter", + ["icon"]= "Art/2DArt/SkillIcons/passives/heroicspirit.png", + ["isKeystone"]= true, + ["stats"]= { + "40% of Damage is taken from Mana before Life" + }, + ["flavourText"]= { + "While the mind endures, so too will the body." + }, + ["group"]= 331, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60398" + }, + ["in"]= {} + }, + [22703]= { + ["skill"]= 22703, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 332, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14056", + "16380", + "15451" + }, + ["in"]= { + "43374" + } + }, + [24914]= { + ["skill"]= 24914, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 333, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "61262", + "8533", + "38664", + "16860", + "23852" + }, + ["in"]= { + "34400" + } + }, + [35118]= { + ["skill"]= 35118, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 334, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10016", + "49318" + } + }, + [10016]= { + ["skill"]= 10016, + ["name"]= "Executioner", + ["icon"]= "Art/2DArt/SkillIcons/passives/reaver.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "60% increased Damage with Hits against Enemies that are on Low Life", + "15% increased Area of Effect if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "35118" + }, + ["in"]= { + "35362" + } + }, + [1909]= { + ["skill"]= 1909, + ["name"]= "Two Handed Melee Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handedspeed.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Two Handed Melee Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "56381" + }, + ["in"]= { + "49318" + } + }, + [8533]= { + ["skill"]= 8533, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "14% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "11515" + }, + ["in"]= { + "24914", + "56381" + } + }, + [11515]= { + ["skill"]= 11515, + ["name"]= "Two Handed Melee Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "5% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "35362" + }, + ["in"]= { + "8533" + } + }, + [35362]= { + ["skill"]= 35362, + ["name"]= "Two Handed Melee Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "5% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "10016" + }, + ["in"]= { + "11515" + } + }, + [56381]= { + ["skill"]= 56381, + ["name"]= "Two Handed Melee Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handedspeed.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "3% increased Attack Speed with Two Handed Melee Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "8533" + }, + ["in"]= { + "1909" + } + }, + [49318]= { + ["skill"]= 49318, + ["name"]= "Wrecking Ball", + ["icon"]= "Art/2DArt/SkillIcons/passives/wreckingball.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Hits and Ailments", + "10% increased Attack Speed with Two Handed Melee Weapons", + "40% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 334, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "1909", + "35118" + }, + ["in"]= {} + }, + [57257]= { + ["skill"]= 57257, + ["name"]= "The Impaler", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "When your Hits Impale Enemies, also Impale other Enemies near them\nInflict 5 additional Impales on Enemies you Impale\nFor 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them" + }, + ["flavourText"]= { + "Punish your enemies with the excessive cruelty of a tyrant,", + "then move on without a second thought." + }, + ["group"]= 335, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6741" + }, + ["in"]= {} + }, + [40907]= { + ["skill"]= 40907, + ["name"]= "Unwavering Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Evade enemy Attacks\nCannot be Stunned" + }, + ["flavourText"]= { + "Stand your ground, child, keep your senses.", + "The pain is fleeting, but victory is forever." + }, + ["group"]= 336, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "43374" + }, + ["in"]= {} + }, + [23659]= { + ["skill"]= 23659, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50029" + }, + ["in"]= { + "33864" + } + }, + [367]= { + ["skill"]= 367, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "33864" + }, + ["in"]= { + "35706", + "14021" + } + }, + [33864]= { + ["skill"]= 33864, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63447", + "23659" + }, + ["in"]= { + "367" + } + }, + [35706]= { + ["skill"]= 35706, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "367", + "50029" + }, + ["in"]= {} + }, + [27307]= { + ["skill"]= 27307, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 337, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50029" + } + }, + [50029]= { + ["skill"]= 50029, + ["name"]= "Unnatural Calm", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcane focus.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "18% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate", + "+1% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 337, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "27307" + }, + ["in"]= { + "23659", + "35706" + } + }, + [6912]= { + ["skill"]= 6912, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 338, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27301" + } + }, + [27301]= { + ["skill"]= 27301, + ["name"]= "Martial Experience", + ["icon"]= "Art/2DArt/SkillIcons/passives/MartialExperience.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "30% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 30% increased Damage with Ailments", + "100% increased total Recovery per second from Life Leech", + "Hits have 30% chance to ignore Enemy Physical Damage Reduction" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "27140", + "6912" + }, + ["in"]= { + "6884" + } + }, + [64816]= { + ["skill"]= 64816, + ["name"]= "Two Handed Melee Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "0.4% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "27140", + "43374" + }, + ["in"]= { + "34959" + } + }, + [6884]= { + ["skill"]= 6884, + ["name"]= "Two Handed Melee Damage and Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "60% increased total Recovery per second from Life Leech" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27301" + }, + ["in"]= { + "34959" + } + }, + [34959]= { + ["skill"]= 34959, + ["name"]= "Two Handed Melee Damage and Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "60% increased total Recovery per second from Life Leech" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "64816", + "6884" + }, + ["in"]= {} + }, + [27140]= { + ["skill"]= 27140, + ["name"]= "Two Handed Melee Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy2h.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments", + "0.8% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 338, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "27301", + "64816" + } + }, + [51583]= { + ["skill"]= 51583, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 339, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37647" + } + }, + [38664]= { + ["skill"]= 38664, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "20% increased Melee Critical Strike Chance" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56460" + }, + ["in"]= { + "24914", + "61636" + } + }, + [56460]= { + ["skill"]= 56460, + ["name"]= "Melee Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeMultiplierNode.png", + ["stats"]= { + "+10% to Melee Critical Strike Multiplier" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "38664", + "37647" + } + }, + [61636]= { + ["skill"]= 61636, + ["name"]= "Melee Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikeChanceNode.png", + ["stats"]= { + "25% increased Melee Critical Strike Chance" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "38664", + "37647" + }, + ["in"]= {} + }, + [37647]= { + ["skill"]= 37647, + ["name"]= "Dismembering", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeCriticalStrikesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "40% increased Melee Critical Strike Chance", + "+20% to Melee Critical Strike Multiplier", + "20% chance to Maim Enemies on Critical Strike with Attacks" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + }, + ["group"]= 339, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "56460", + "51583" + }, + ["in"]= { + "61636" + } + }, + [21330]= { + ["skill"]= 21330, + ["name"]= "Quick Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/QuickRecovery.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "7% increased maximum Life", + "20% increased Mana Regeneration Rate", + "Regenerate 0.8% of Life per second" + }, + ["group"]= 340, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "17821", + "43818" + }, + ["in"]= {} + }, + [39648]= { + ["skill"]= 39648, + ["name"]= "Mana Regeneration and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 340, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "17821", + "60398" + } + }, + [17821]= { + ["skill"]= 17821, + ["name"]= "Mana Regeneration and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 340, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "39648" + }, + ["in"]= { + "21330" + } + }, + [43818]= { + ["skill"]= 43818, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 340, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21330" + } + }, + [48556]= { + ["skill"]= 48556, + ["name"]= "Heart of Darkness", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeartofChaos.png", + ["isNotable"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "27% increased Chaos Damage", + "Damage Penetrates 7% Chaos Resistance" + }, + ["group"]= 341, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "23547" + }, + ["in"]= { + "29629" + } + }, + [56671]= { + ["skill"]= 56671, + ["name"]= "Chaos Damage and Withered Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "Withered you Inflict expires 10% slower" + }, + ["reminderText"]= { + "(Effects cannot be slowed below 25% of their normal expiry rate)" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44362" + }, + ["in"]= { + "47949" + } + }, + [47949]= { + ["skill"]= 47949, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "12% increased Chaos Damage" + }, + ["group"]= 341, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "48971", + "56671", + "63447" + }, + ["in"]= {} + }, + [48971]= { + ["skill"]= 48971, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "16% increased Chaos Damage" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "29629" + }, + ["in"]= { + "47949" + } + }, + [29629]= { + ["skill"]= 29629, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "16% increased Chaos Damage" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "48556" + }, + ["in"]= { + "48971" + } + }, + [26620]= { + ["skill"]= 26620, + ["name"]= "Corruption", + ["icon"]= "Art/2DArt/SkillIcons/passives/Corruption.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "20% increased Effect of Withered" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 341, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "23547" + }, + ["in"]= { + "44362" + } + }, + [44362]= { + ["skill"]= 44362, + ["name"]= "Chaos Damage and Withered Expiry Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "Withered you Inflict expires 10% slower" + }, + ["reminderText"]= { + "(Effects cannot be slowed below 25% of their normal expiry rate)" + }, + ["group"]= 341, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26620" + }, + ["in"]= { + "56671" + } + }, + [23547]= { + ["skill"]= 23547, + ["name"]= "Chaos Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50933, + ["stats"]= { + "Recover 1% of Life per Withered Debuff on each Enemy you Kill" + } + }, + { + ["effect"]= 59574, + ["stats"]= { + "+1 to Level of all Chaos Skill Gems", + "Lose 10% of Life and Energy Shield when you use a Chaos Skill" + } + }, + { + ["effect"]= 1727, + ["stats"]= { + "+1% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 21652, + ["stats"]= { + "40% of Physical Damage Converted to Chaos Damage" + } + }, + { + ["effect"]= 28678, + ["stats"]= { + "Deal 10% more Chaos Damage to enemies which have Energy Shield" + } + }, + { + ["effect"]= 65015, + ["stats"]= { + "5% chance when you inflict Withered to inflict up to 15 Withered Debuffs instead" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + } + }, + ["stats"]= {}, + ["group"]= 341, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48556", + "26620" + } + }, + [64401]= { + ["skill"]= 64401, + ["name"]= "Life and Mana on Kill against Cursed Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandMana.png", + ["stats"]= { + "Recover 1% of Mana when you Kill a Cursed Enemy", + "Recover 1% of Life when you Kill a Cursed Enemy" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "55558" + }, + ["in"]= { + "61283", + "14021" + } + }, + [55558]= { + ["skill"]= 55558, + ["name"]= "Life on Kill against Cursed Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandCurses.png", + ["stats"]= { + "Recover 2% of Life when you Kill a Cursed Enemy" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "51748" + }, + ["in"]= { + "64401" + } + }, + [51748]= { + ["skill"]= 51748, + ["name"]= "Last Rites", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandCursesN.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Cursed Enemies you Kill are destroyed", + "Enemies Cursed by you have 50% reduced Life Regeneration Rate", + "Enemies you Curse cannot Recharge Energy Shield" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "61785", + "61283" + }, + ["in"]= { + "55558" + } + }, + [61283]= { + ["skill"]= 61283, + ["name"]= "Mana on Kill against Cursed Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandCurses2.png", + ["stats"]= { + "Recover 2% of Mana when you Kill a Cursed Enemy" + }, + ["group"]= 342, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "64401" + }, + ["in"]= { + "51748" + } + }, + [61785]= { + ["skill"]= 61785, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 342, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51748" + } + }, + [42760]= { + ["skill"]= 42760, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 56, + ["out"]= { + "5456", + "55332", + "24229" + }, + ["in"]= { + "40366", + "36678", + "56029", + "12250", + "46340" + } + }, + [7938]= { + ["skill"]= 7938, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 12, + ["out"]= { + "1031", + "33779", + "34157" + }, + ["in"]= { + "14021", + "4397" + } + }, + [55332]= { + ["skill"]= 55332, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 63, + ["out"]= { + "14021", + "48118" + }, + ["in"]= { + "22088", + "42760" + } + }, + [14021]= { + ["skill"]= 14021, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 343, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "7938", + "367", + "64401" + }, + ["in"]= { + "55332", + "12379" + } + }, + [26294]= { + ["skill"]= 26294, + ["name"]= "Bloodletting", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "+15% to Damage over Time Multiplier for Bleeding", + "10% chance to Aggravate Bleeding on targets you Hit with Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "17833", + "63710" + }, + ["in"]= { + "60887" + } + }, + [63710]= { + ["skill"]= 63710, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 344, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26294" + } + }, + [17833]= { + ["skill"]= 17833, + ["name"]= "Bleed Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "11568" + }, + ["in"]= { + "26294" + } + }, + [11568]= { + ["skill"]= 11568, + ["name"]= "Bleed Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "23199" + }, + ["in"]= { + "17833" + } + }, + [23199]= { + ["skill"]= 23199, + ["name"]= "Bleed Damage and Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "15% increased Damage with Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6741", + "13273" + }, + ["in"]= { + "11568" + } + }, + [60887]= { + ["skill"]= 60887, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "26294" + }, + ["in"]= { + "13273" + } + }, + [13273]= { + ["skill"]= 13273, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 344, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "60887" + }, + ["in"]= { + "23199" + } + }, + [6741]= { + ["skill"]= 6741, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 345, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "14056", + "17818", + "40841" + }, + ["in"]= { + "57257", + "23199", + "24865" + } + }, + [13498]= { + ["skill"]= 13498, + ["name"]= "Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "59833" + }, + ["in"]= { + "40841" + } + }, + [53292]= { + ["skill"]= 53292, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "15124" + }, + ["in"]= { + "40841" + } + }, + [40841]= { + ["skill"]= 40841, + ["name"]= "Impale Chance and Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% increased Attack Physical Damage", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "53292", + "13498" + }, + ["in"]= { + "6741" + } + }, + [59833]= { + ["skill"]= 59833, + ["name"]= "Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9194" + }, + ["in"]= { + "13498" + } + }, + [15124]= { + ["skill"]= 15124, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "9194" + }, + ["in"]= { + "53292" + } + }, + [9194]= { + ["skill"]= 9194, + ["name"]= "Merciless Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "15% chance to Impale Enemies on Hit with Attacks", + "12% increased Impale Effect" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 346, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48982" + }, + ["in"]= { + "59833", + "15124" + } + }, + [48982]= { + ["skill"]= 48982, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 346, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9194" + } + }, + [60398]= { + ["skill"]= 60398, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 347, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39648", + "46340" + }, + ["in"]= { + "13009", + "34098", + "60648", + "7388", + "31875" + } + }, + [5591]= { + ["skill"]= 5591, + ["name"]= "Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 348, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23690" + }, + ["in"]= { + "34478" + } + }, + [34478]= { + ["skill"]= 34478, + ["name"]= "Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 348, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "5591", + "46340" + }, + ["in"]= {} + }, + [23690]= { + ["skill"]= 23690, + ["name"]= "Essence Infusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcaneradience.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "VerdantOil" + }, + ["stats"]= { + "15% faster start of Energy Shield Recharge", + "30% increased Energy Shield Recharge Rate" + }, + ["group"]= 348, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "10729" + }, + ["in"]= { + "5591" + } + }, + [10729]= { + ["skill"]= 10729, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 348, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "23690" + } + }, + [43374]= { + ["skill"]= 43374, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 349, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "22703", + "30691" + }, + ["in"]= { + "31080", + "40907", + "64816", + "49178", + "2355" + } + }, + [60648]= { + ["skill"]= 60648, + ["name"]= "Mana Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "10% increased Mana Recovery from Flasks", + "5% increased Flask Charges gained" + }, + ["group"]= 350, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "42981", + "60398" + }, + ["in"]= {} + }, + [42981]= { + ["skill"]= 42981, + ["name"]= "Mana Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "10% increased Mana Recovery from Flasks", + "5% increased Flask Charges gained" + }, + ["group"]= 350, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "53802" + }, + ["in"]= { + "60648" + } + }, + [53802]= { + ["skill"]= 53802, + ["name"]= "Essence Extraction", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaFlasksOften.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Flask Charges gained", + "15% increased Mana Recovery Rate during Effect of any Mana Flask" + }, + ["group"]= 350, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18750" + }, + ["in"]= { + "42981" + } + }, + [18750]= { + ["skill"]= 18750, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 350, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53802" + } + }, + [33179]= { + ["skill"]= 33179, + ["name"]= "Attack Speed, Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "15616" + }, + ["in"]= { + "27864" + } + }, + [8419]= { + ["skill"]= 8419, + ["name"]= "Determined Survivor", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADPainForged.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Gain 40% Chance to Block from Equipped Shield instead of the Shield's value", + "Inherent Bonuses from Dual Wielding are doubled" + }, + ["reminderText"]= { + "(Dual Wielding inherently grants +20% chance to Block Attack Damage and 10% more Attack Speed)" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "24538" + }, + ["in"]= { + "1675" + } + }, + [63490]= { + ["skill"]= 63490, + ["name"]= "Measured Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolentRetaliation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Retaliation Skills become Usable for an additional 2 seconds", + "50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use" + }, + ["reminderText"]= { + "(They will also not be put on cooldown if they remain Usable)" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "37623" + } + }, + [2598]= { + ["skill"]= 2598, + ["name"]= "More Than Skill", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADVersitileCombatant.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "-5% to maximum Chance to Block Attack Damage", + "-5% to maximum Chance to Block Spell Damage", + "Chance to Block Attack or Spell Damage is Lucky if you've Blocked Recently" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)", + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)", + "(Lucky things are rolled twice and the best result used)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "24538" + } + }, + [14726]= { + ["skill"]= 14726, + ["name"]= "Attack Speed, Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "10% increased Attack Damage", + "5% increased Attack Speed" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "758" + }, + ["in"]= { + "32730" + } + }, + [758]= { + ["skill"]= 758, + ["name"]= "War of Attrition", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodAndSand.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Deal 1% more Damage with Hits and Ailments to Rare and Unique Enemies for every 2 seconds they've ever been in your Presence, up to a maximum of 50%" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "14726" + } + }, + [48760]= { + ["skill"]= 48760, + ["name"]= "Attack Speed, Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 351, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "27864" + }, + ["in"]= { + "32730" + } + }, + [37623]= { + ["skill"]= 37623, + ["name"]= "Attack Speed, Block Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "+3% Chance to Block Attack Damage" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "63490" + }, + ["in"]= { + "32730" + } + }, + [3651]= { + ["skill"]= 3651, + ["name"]= "Attack Speed and One Handed Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADOneHand.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Damage with One Handed Weapons" + }, + ["group"]= 351, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52575" + }, + ["in"]= { + "32730" + } + }, + [24538]= { + ["skill"]= 24538, + ["name"]= "Attack Speed, Block Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "+3% Chance to Block Attack Damage" + }, + ["group"]= 351, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "2598" + }, + ["in"]= { + "8419" + } + }, + [1675]= { + ["skill"]= 1675, + ["name"]= "Attack Speed, Block Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBlockChance.png", + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "5% increased Attack Speed", + "+3% Chance to Block Attack Damage" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "8419" + }, + ["in"]= { + "32730" + } + }, + [27864]= { + ["skill"]= 27864, + ["name"]= "Gratuitous Violence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADViolence.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Bleeding Enemies you Kill Explode, dealing 20% of\ntheir Maximum Life as Physical Damage" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "33179" + }, + ["in"]= { + "48760" + } + }, + [15616]= { + ["skill"]= 15616, + ["name"]= "Jagged Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GLADBloodInEyes.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "Bleeding you inflict is Aggravated" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "33179" + } + }, + [52575]= { + ["skill"]= 52575, + ["name"]= "Weapon Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/Gladiator/GladiatorDualWiledSwordAxeNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Gladiator", + ["stats"]= { + "10% more Accuracy Rating while wielding a Sword", + "10% more Area of Effect while wielding a Mace or Sceptre", + "10% more Critical Strike Chance while wielding a Dagger", + "10% of Leech is Instant while wielding a Claw", + "20% more Damage with Hits and Ailments against Enemies that are on Low Life while you are wielding an Axe" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(You are on Low Life if you have 50% of your Maximum Life or less)" + }, + ["group"]= 351, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "3651" + } + }, + [32730]= { + ["skill"]= 32730, + ["name"]= "Gladiator", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Gladiator", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 351, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "3651", + "1675", + "48760", + "14726", + "37623" + }, + ["in"]= { + "50986" + } + }, + [8139]= { + ["skill"]= 8139, + ["name"]= "Link Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 10% increased Cast Speed" + }, + ["group"]= 352, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "19958" + }, + ["in"]= { + "46910" + } + }, + [19958]= { + ["skill"]= 19958, + ["name"]= "Link Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "Link Skills have 10% increased Cast Speed" + }, + ["group"]= 352, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "60781" + }, + ["in"]= { + "8139" + } + }, + [60781]= { + ["skill"]= 60781, + ["name"]= "Inspiring Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/LinkNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "10% chance for Energy Shield Recharge to start when you Link to a target", + "Link Skills have 20% increased Buff Effect if you have Linked to a target Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 352, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "12244" + }, + ["in"]= { + "19958" + } + }, + [12244]= { + ["skill"]= 12244, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 352, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60781" + } + }, + [24256]= { + ["skill"]= 24256, + ["name"]= "Dynamo", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaGuardNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "AzureOil" + }, + ["stats"]= { + "18% increased maximum Mana", + "Guard Skills have 40% increased Duration" + }, + ["group"]= 353, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41026", + "8732" + }, + ["in"]= { + "34906" + } + }, + [8732]= { + ["skill"]= 8732, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 353, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24256" + } + }, + [34906]= { + ["skill"]= 34906, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 353, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24256" + }, + ["in"]= { + "41026", + "46910" + } + }, + [41026]= { + ["skill"]= 41026, + ["name"]= "Mana and Guard Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "10% increased maximum Mana", + "Guard Skills have 20% increased Cooldown Recovery Rate" + }, + ["group"]= 353, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34906" + }, + ["in"]= { + "24256" + } + }, + [10311]= { + ["skill"]= 10311, + ["name"]= "Banner Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 10% increased Aura Effect" + }, + ["group"]= 354, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61190" + }, + ["in"]= { + "45503" + } + }, + [45503]= { + ["skill"]= 45503, + ["name"]= "Banner Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerAreaNode.png", + ["stats"]= { + "Banner Skills have 10% increased Aura Effect" + }, + ["group"]= 354, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "10311", + "61262" + }, + ["in"]= {} + }, + [61190]= { + ["skill"]= 61190, + ["name"]= "Rallying Icon", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "Banner Skills have 15% increased Aura Effect", + "Banners also grant +5% to all Elemental Resistances to you and Allies" + }, + ["group"]= 354, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "43307" + }, + ["in"]= { + "10311" + } + }, + [43307]= { + ["skill"]= 43307, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 354, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61190" + } + }, + [12379]= { + ["skill"]= 12379, + ["name"]= "Lightning Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "8% increased Lightning Damage", + "3% increased Cast Speed" + }, + ["group"]= 355, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44183", + "14021" + }, + ["in"]= {} + }, + [44183]= { + ["skill"]= 44183, + ["name"]= "Lightning Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "8% increased Lightning Damage", + "3% increased Cast Speed" + }, + ["group"]= 355, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "7555" + }, + ["in"]= { + "12379" + } + }, + [7555]= { + ["skill"]= 7555, + ["name"]= "Crackling Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "24% increased Lightning Damage", + "8% increased Cast Speed" + }, + ["group"]= 355, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "240" + }, + ["in"]= { + "44183" + } + }, + [240]= { + ["skill"]= 240, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 355, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7555" + } + }, + [28498]= { + ["skill"]= 28498, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 356, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "24544", + "30691" + } + }, + [24544]= { + ["skill"]= 24544, + ["name"]= "Bleed Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 15% chance to cause Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 356, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "28498" + }, + ["in"]= { + "12033" + } + }, + [12033]= { + ["skill"]= 12033, + ["name"]= "Wicked Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedingNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "30% increased Damage with Bleeding", + "20% increased Bleeding Duration" + }, + ["group"]= 356, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "37956", + "24544" + }, + ["in"]= {} + }, + [37956]= { + ["skill"]= 37956, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 356, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12033" + } + }, + [62015]= { + ["skill"]= 62015, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 357, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50858" + } + }, + [50858]= { + ["skill"]= 50858, + ["name"]= "Admonisher", + ["icon"]= "Art/2DArt/SkillIcons/passives/AdmonisherNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Warcry Speed", + "15% increased Damage for each time you've Warcried Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 357, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62015" + }, + ["in"]= { + "61602" + } + }, + [61602]= { + ["skill"]= 61602, + ["name"]= "Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Speed" + }, + ["group"]= 357, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15451", + "50858" + }, + ["in"]= {} + }, + [15451]= { + ["skill"]= 15451, + ["name"]= "Warcry Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpeedWarcryNode1.png", + ["stats"]= { + "15% increased Warcry Speed" + }, + ["group"]= 357, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "22703", + "61602" + } + }, + [17429]= { + ["skill"]= 17429, + ["name"]= "Impale Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "2% increased Attack Speed", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63413" + }, + ["in"]= { + "61262" + } + }, + [47854]= { + ["skill"]= 47854, + ["name"]= "Impale Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "2% increased Attack Speed", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "63413", + "39904" + } + }, + [63413]= { + ["skill"]= 63413, + ["name"]= "Impale Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "2% increased Attack Speed", + "5% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "47854" + }, + ["in"]= { + "17429" + } + }, + [39904]= { + ["skill"]= 39904, + ["name"]= "Brutal Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/Impale1HandNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "Impales you inflict last 1 additional Hit" + }, + ["group"]= 358, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31400", + "47854" + }, + ["in"]= {} + }, + [31400]= { + ["skill"]= 31400, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 358, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39904" + } + }, + [34723]= { + ["skill"]= 34723, + ["name"]= "Charge Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28720, + ["stats"]= { + "Cannot be Ignited while at maximum Endurance Charges" + } + }, + { + ["effect"]= 48661, + ["stats"]= { + "Cannot be Chilled while at maximum Frenzy Charges" + } + }, + { + ["effect"]= 14100, + ["stats"]= { + "Cannot be Shocked while at maximum Power Charges" + } + }, + { + ["effect"]= 29652, + ["stats"]= { + "100% increased Charge Duration" + } + }, + { + ["effect"]= 40307, + ["stats"]= { + "3% increased Damage per Endurance, Frenzy or Power Charge" + } + }, + { + ["effect"]= 19142, + ["stats"]= { + "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" + } + } + }, + ["stats"]= {}, + ["group"]= 359, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9261" + } + }, + [12888]= { + ["skill"]= 12888, + ["name"]= "Mana Regeneration per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "8% increased Mana Regeneration Rate per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "16954" + }, + ["in"]= { + "63447" + } + }, + [16954]= { + ["skill"]= 16954, + ["name"]= "Critical Strike Chance per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "8% increased Critical Strike Chance per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "12783" + }, + ["in"]= { + "12888" + } + }, + [12783]= { + ["skill"]= 12783, + ["name"]= "Critical Strike Multiplier per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "+5% to Critical Strike Multiplier per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "9261" + }, + ["in"]= { + "16954" + } + }, + [9261]= { + ["skill"]= 9261, + ["name"]= "Disciple of the Forbidden", + ["icon"]= "Art/2DArt/SkillIcons/passives/PowerChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "+1 to Minimum Power Charges", + "8% chance to gain a Power Charge on Kill", + "8% increased Damage per Power Charge" + }, + ["group"]= 359, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34723" + }, + ["in"]= { + "12783" + } + }, + [4270]= { + ["skill"]= 4270, + ["name"]= "Brand Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Skills have 15% increased Duration" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64355" + }, + ["in"]= { + "52655" + } + }, + [64355]= { + ["skill"]= 64355, + ["name"]= "Brand Equity", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "You can Cast 2 additional Brands", + "Brand Skills have 20% increased Duration", + "Brand Recall has 20% increased Cooldown Recovery Rate" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "21143" + }, + ["in"]= { + "4270", + "35035" + } + }, + [52655]= { + ["skill"]= 52655, + ["name"]= "Brand Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Skills have 12% increased Duration" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35035", + "4270", + "63447" + }, + ["in"]= {} + }, + [35035]= { + ["skill"]= 35035, + ["name"]= "Brand Recall Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Brand2.png", + ["stats"]= { + "Brand Recall has 15% increased Cooldown Recovery Rate" + }, + ["group"]= 360, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "64355" + }, + ["in"]= { + "52655" + } + }, + [21143]= { + ["skill"]= 21143, + ["name"]= "Brand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBrand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBrandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37186, + ["stats"]= { + "Recover 10% of Mana when a Brand expires while Attached" + } + }, + { + ["effect"]= 5907, + ["stats"]= { + "Brands have 30% increased Area of Effect if 50% of Attached Duration expired" + } + }, + { + ["effect"]= 20630, + ["stats"]= { + "Brands Attach to a new Enemy each time they Activate, no more than once every 0.3 seconds" + } + }, + { + ["effect"]= 39863, + ["stats"]= { + "Brand Recall has 50% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 32877, + ["stats"]= { + "You can Cast 2 additional Brands" + } + }, + { + ["effect"]= 46672, + ["stats"]= { + "40% increased Brand Attachment range" + } + } + }, + ["stats"]= {}, + ["group"]= 360, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64355" + } + }, + [28475]= { + ["skill"]= 28475, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 361, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "49178" + } + }, + [30733]= { + ["skill"]= 30733, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 361, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "49178" + }, + ["in"]= { + "46578" + } + }, + [49178]= { + ["skill"]= 49178, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 361, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "43374", + "28475" + }, + ["in"]= { + "30733" + } + }, + [17818]= { + ["skill"]= 17818, + ["name"]= "Crimson Dance", + ["icon"]= "Art/2DArt/SkillIcons/passives/CrimsonDance.png", + ["isKeystone"]= true, + ["stats"]= { + "You can inflict Bleeding on an Enemy up to 8 times\nYour Bleeding does not deal extra Damage while the Enemy is moving and cannot be Aggravated\n50% less Damage with Bleeding" + }, + ["flavourText"]= { + "My blade sings so sweetly, your body cannot help but weep." + }, + ["group"]= 362, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6741" + } + }, + [26608]= { + ["skill"]= 26608, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 363, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44562" + } + }, + [17569]= { + ["skill"]= 17569, + ["name"]= "Totem Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandrange.png", + ["stats"]= { + "25% increased Critical Strike Chance with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "44562" + }, + ["in"]= { + "33779" + } + }, + [33779]= { + ["skill"]= 33779, + ["name"]= "Totem Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandrange.png", + ["stats"]= { + "20% increased Critical Strike Chance with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "17569" + }, + ["in"]= { + "7938", + "20142" + } + }, + [45366]= { + ["skill"]= 45366, + ["name"]= "Totem Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "+16% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20142" + }, + ["in"]= { + "44562" + } + }, + [20142]= { + ["skill"]= 20142, + ["name"]= "Totem Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbranddamage.png", + ["stats"]= { + "+16% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "33779" + }, + ["in"]= { + "45366" + } + }, + [44562]= { + ["skill"]= 44562, + ["name"]= "Shaman's Dominion", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemandbrandrange.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance with Totem Skills", + "+20% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 363, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "45366", + "26608" + }, + ["in"]= { + "17569" + } + }, + [47251]= { + ["skill"]= 47251, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 364, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "7388" + }, + ["in"]= { + "10490" + } + }, + [7388]= { + ["skill"]= 7388, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 364, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "60398", + "36634" + }, + ["in"]= { + "47251" + } + }, + [36634]= { + ["skill"]= 36634, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 364, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "7388" + } + }, + [16775]= { + ["skill"]= 16775, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 365, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "34207" + }, + ["in"]= { + "46910", + "63976", + "25959" + } + }, + [46910]= { + ["skill"]= 46910, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 365, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "16775", + "65034", + "34906", + "50288", + "8139" + }, + ["in"]= { + "33740" + } + }, + [52061]= { + ["skill"]= 52061, + ["name"]= "Rage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRageInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerRageActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRagePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2498, + ["stats"]= { + "Every Rage also grants 1% increased Stun Threshold" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 22300, + ["stats"]= { + "1% increased Movement Speed per 5 Rage" + } + }, + { + ["effect"]= 48718, + ["stats"]= { + "+7 to Maximum Rage", + "Inherent loss of Rage is 20% faster" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + } + }, + { + ["effect"]= 56848, + ["stats"]= { + "Warcries grant 1 Rage per 5 Enemy Power, up to 5" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + } + }, + { + ["effect"]= 10497, + ["stats"]= { + "25% increased Maximum total Life Recovery per second from Leech while at maximum Rage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 19628, + ["stats"]= { + "Nearby Enemies are Intimidated while you have Rage" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 366, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53840" + } + }, + [55420]= { + ["skill"]= 55420, + ["name"]= "Rage on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "Gain 1 Rage on Melee Hit" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15543", + "30170" + }, + ["in"]= { + "61262" + } + }, + [15543]= { + ["skill"]= 15543, + ["name"]= "Maximum Rage and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "8% increased Armour", + "+2 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53840" + }, + ["in"]= { + "55420" + } + }, + [30170]= { + ["skill"]= 30170, + ["name"]= "Slower Rage Decay and Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Rage.png", + ["stats"]= { + "8% increased Armour", + "Inherent loss of Rage is 8% slower" + }, + ["reminderText"]= { + "(This only affects the inherent loss of Rage when you haven't been Hit or gained Rage Recently)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53840" + }, + ["in"]= { + "55420" + } + }, + [53840]= { + ["skill"]= 53840, + ["name"]= "Vengeance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RageNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "Every Rage also grants 1% increased Armour", + "Gain 3 Rage when Hit by an Enemy" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + }, + ["group"]= 366, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "52061" + }, + ["in"]= { + "15543", + "30170" + } + }, + [31984]= { + ["skill"]= 31984, + ["name"]= "Energy Shield, Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "5% increased Effect of your Curses" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "37127" + }, + ["in"]= { + "18378" + } + }, + [37492]= { + ["skill"]= 37492, + ["name"]= "Vile Bastion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/SoulCatalyst.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Damage taken Recouped as Life is also Recouped as Energy Shield" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "29161" + }, + ["in"]= { + "48124" + } + }, + [27096]= { + ["skill"]= 27096, + ["name"]= "Void Beacon", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/VoidBeacon.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Nearby Enemies have -8% to Cold Resistance", + "Nearby Enemies have -8% to Chaos Resistance", + "Nearby Enemies have 100% reduced Life Regeneration rate" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "31316", + "43242" + }, + ["in"]= { + "32417" + } + }, + [62504]= { + ["skill"]= 62504, + ["name"]= "Forbidden Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/VowOfDamnation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Gain a Power Charge after Spending a total of 200 Mana", + "+1 to Maximum Power Charges" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 9, + ["out"]= { + "50935" + }, + ["in"]= { + "6728" + } + }, + [31316]= { + ["skill"]= 31316, + ["name"]= "Energy Shield, Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldChaos.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "10% increased Chaos Damage", + "6% increased maximum Energy Shield" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 24, + ["out"]= { + "25309" + }, + ["in"]= { + "27096" + } + }, + [43242]= { + ["skill"]= 43242, + ["name"]= "Energy Shield, Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EnergyShieldCold.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "10% increased Cold Damage", + "6% increased maximum Energy Shield" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= { + "47630" + }, + ["in"]= { + "27096" + } + }, + [25309]= { + ["skill"]= 25309, + ["name"]= "Withering Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/WitheringPresence.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Every second, inflict Withered on nearby Enemies for 15 seconds" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= {}, + ["in"]= { + "31316" + } + }, + [47630]= { + ["skill"]= 47630, + ["name"]= "Frigid Wake", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/FrigidWake.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Nearby Enemies are Chilled", + "Every 4 seconds, 50% chance to Freeze nearby Non-Frozen Enemies for 0.4 seconds" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by 10%)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "43242" + } + }, + [29161]= { + ["skill"]= 29161, + ["name"]= "Energy Shield, Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "5502" + }, + ["in"]= { + "37492" + } + }, + [17018]= { + ["skill"]= 17018, + ["name"]= "Energy Shield, Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldManaReservation.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "5% increased Effect of your Curses" + }, + ["group"]= 367, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "31344" + }, + ["in"]= { + "18378" + } + }, + [32417]= { + ["skill"]= 32417, + ["name"]= "Energy Shield, Cold and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldAttackAndCastSpeed.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "10% increased Cold Damage", + "10% increased Chaos Damage", + "6% increased maximum Energy Shield" + }, + ["group"]= 367, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "27096" + }, + ["in"]= { + "18378" + } + }, + [6728]= { + ["skill"]= 6728, + ["name"]= "Energy Shield, Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldCriticalStrikeChance.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Power Charge Duration" + }, + ["group"]= 367, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62504" + }, + ["in"]= { + "18378" + } + }, + [48124]= { + ["skill"]= 48124, + ["name"]= "Energy Shield, Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 367, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "37492" + }, + ["in"]= { + "18378" + } + }, + [50935]= { + ["skill"]= 50935, + ["name"]= "Energy Shield, Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/IncreasedEnergyShieldMaximumMana.png", + ["ascendancyName"]= "Occultist", + ["stats"]= { + "6% increased maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "5502" + }, + ["in"]= { + "62504" + } + }, + [37127]= { + ["skill"]= 37127, + ["name"]= "Profane Bloom", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/LotusExtract.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Cursed Enemies you or your Minions Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= {}, + ["in"]= { + "31984" + } + }, + [31344]= { + ["skill"]= 31344, + ["name"]= "Unholy Authority", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/FatefulEchoes.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "You can apply an additional Curse", + "Your Hexes can affect Hexproof Enemies" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 32, + ["out"]= {}, + ["in"]= { + "17018" + } + }, + [5502]= { + ["skill"]= 5502, + ["name"]= "Unhallowed Rite", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png", + ["isNotable"]= true, + ["ascendancyName"]= "Occultist", + ["stats"]= { + "Gain {SpiritInfusion|Spirit Infusion} every 0.5 seconds while Channelling a Spell" + }, + ["group"]= 367, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "29161", + "50935" + } + }, + [18378]= { + ["skill"]= 18378, + ["name"]= "Occultist", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Occultist", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 367, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "48124", + "6728", + "31984", + "32417", + "17018" + }, + ["in"]= { + "54447" + } + }, + [12239]= { + ["skill"]= 12239, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 368, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45803", + "28878" + } + }, + [59306]= { + ["skill"]= 59306, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "14% increased Physical Damage" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "28878" + }, + ["in"]= { + "34207" + } + }, + [34207]= { + ["skill"]= 34207, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "12% increased Physical Damage" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "19609", + "59306" + }, + ["in"]= { + "16775" + } + }, + [19609]= { + ["skill"]= 19609, + ["name"]= "Physical Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenode3.png", + ["stats"]= { + "+5% to Physical Damage over Time Multiplier" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "45803" + }, + ["in"]= { + "34207" + } + }, + [45803]= { + ["skill"]= 45803, + ["name"]= "Veteran Soldier", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimenotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "+15% to Physical Damage over Time Multiplier", + "+25 to maximum Life" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12239" + }, + ["in"]= { + "19609" + } + }, + [28878]= { + ["skill"]= 28878, + ["name"]= "Relentless", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeHybrid.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "Regenerate 1% of Life per second if you have Stunned an Enemy Recently", + "25% increased Physical Damage" + }, + ["group"]= 368, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "12239" + }, + ["in"]= { + "59306" + } + }, + [34552]= { + ["skill"]= 34552, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 369, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7688" + } + }, + [22062]= { + ["skill"]= 22062, + ["name"]= "Minion Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png", + ["stats"]= { + "Minions deal 12% increased Damage", + "12% increased Minion Duration" + }, + ["group"]= 369, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "15081" + }, + ["in"]= { + "31875" + } + }, + [15081]= { + ["skill"]= 15081, + ["name"]= "Minion Damage and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DurationofMinionsNode.png", + ["stats"]= { + "Minions deal 12% increased Damage", + "12% increased Minion Duration" + }, + ["group"]= 369, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "7688" + }, + ["in"]= { + "22062" + } + }, + [7688]= { + ["skill"]= 7688, + ["name"]= "Enduring Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/DurationofMinionsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Skill Effect Duration", + "Minions deal 30% increased Damage if you've used a Minion Skill Recently", + "20% increased Minion Duration" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 369, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "34552" + }, + ["in"]= { + "15081" + } + }, + [38436]= { + ["skill"]= 38436, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 370, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57900" + } + }, + [53558]= { + ["skill"]= 53558, + ["name"]= "Shield Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 370, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "57900" + }, + ["in"]= { + "2355" + } + }, + [2355]= { + ["skill"]= 2355, + ["name"]= "Shield Defences", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 370, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "53558", + "43374" + }, + ["in"]= {} + }, + [57900]= { + ["skill"]= 57900, + ["name"]= "Command of Steel", + ["icon"]= "Art/2DArt/SkillIcons/passives/CommandofSteel.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while holding a Shield", + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 370, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38436" + }, + ["in"]= { + "53558" + } + }, + [30691]= { + ["skill"]= 30691, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 371, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "476", + "28498", + "42086" + }, + ["in"]= { + "43374" + } + }, + [16245]= { + ["skill"]= 16245, + ["name"]= "Retaliation Skill Usable Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode1.png", + ["stats"]= { + "Retaliation Skills become Usable for 20% longer" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54862" + }, + ["in"]= { + "56920" + } + }, + [54862]= { + ["skill"]= 54862, + ["name"]= "Retaliation Skill Usable Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode1.png", + ["stats"]= { + "Retaliation Skills become Usable for 20% longer" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2599" + }, + ["in"]= { + "16245" + } + }, + [49407]= { + ["skill"]= 49407, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 15% increased Cooldown Recovery Rate" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "2599" + }, + ["in"]= { + "56920" + } + }, + [56920]= { + ["skill"]= 56920, + ["name"]= "Retaliation Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationNode2.png", + ["stats"]= { + "Retaliation Skills have 12% increased Cooldown Recovery Rate" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "16245", + "49407" + }, + ["in"]= { + "24865" + } + }, + [2599]= { + ["skill"]= 2599, + ["name"]= "Prepared Response", + ["icon"]= "Art/2DArt/SkillIcons/passives/RetaliationDurationCooldown.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "SepiaOil" + }, + ["stats"]= { + "25% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable", + "Retaliation Skills become Usable for 30% longer" + }, + ["group"]= 372, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "4327" + }, + ["in"]= { + "54862", + "49407" + } + }, + [4327]= { + ["skill"]= 4327, + ["name"]= "Retaliation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRetaliationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveRetaliationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRetaliationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 1915, + ["stats"]= { + "80% increased Duration of Ailments inflicted by Retaliation Skills" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 37307, + ["stats"]= { + "Retaliation Skills Debilitate Enemies for 3 seconds on Hit" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 47958, + ["stats"]= { + "20% increased Armour for each different Retaliation Skill you've used in the past 10 seconds" + } + }, + { + ["effect"]= 5944, + ["stats"]= { + "10% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable" + } + }, + { + ["effect"]= 23557, + ["stats"]= { + "100% increased Cost Efficiency of Retaliation Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 372, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2599" + } + }, + [50515]= { + ["skill"]= 50515, + ["name"]= "Fortify on Melee Stun", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Melee Hits which Stun have 10% chance to Fortify" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "27605", + "56370" + }, + ["in"]= { + "24865" + } + }, + [56370]= { + ["skill"]= 56370, + ["name"]= "Fortify on Melee Stun", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Melee Hits which Stun have 10% chance to Fortify" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "1340" + }, + ["in"]= { + "50515" + } + }, + [27605]= { + ["skill"]= 27605, + ["name"]= "Fortification Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Fortifying Hits grant 40% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6139" + }, + ["in"]= { + "50515" + } + }, + [6139]= { + ["skill"]= 6139, + ["name"]= "Fortification Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNode.png", + ["stats"]= { + "Fortifying Hits grant 40% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "1340" + }, + ["in"]= { + "27605" + } + }, + [1340]= { + ["skill"]= 1340, + ["name"]= "Rampart", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Armour and Evasion Rating while Fortified", + "Fortifying Hits against Unique Enemies grant 100% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + }, + ["group"]= 373, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "51974" + }, + ["in"]= { + "56370", + "6139" + } + }, + [51974]= { + ["skill"]= 51974, + ["name"]= "Fortify Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFortifyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37925, + ["stats"]= { + "Recover 100 Life for each Fortification lost" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification)" + } + }, + { + ["effect"]= 51153, + ["stats"]= { + "Gain 20 Fortification on Melee Kill against a Rare or Unique Enemy" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 27173, + ["stats"]= { + "2% reduced Duration of Ailments inflicted on you per Fortification" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 4710, + ["stats"]= { + "4% increased Stun and Block Recovery per Fortification" + } + }, + { + ["effect"]= 28469, + ["stats"]= { + "Melee Hits Fortify", + "-3 to maximum Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)", + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification. Fortification lasts 6 seconds)" + } + }, + { + ["effect"]= 23472, + ["stats"]= { + "10% reduced Damage over Time Taken while you have at least 20 Fortification" + } + } + }, + ["stats"]= {}, + ["group"]= 373, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1340" + } + }, + [31875]= { + ["skill"]= 31875, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 374, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "4397", + "60398", + "22062" + }, + ["in"]= {} + }, + [50288]= { + ["skill"]= 50288, + ["name"]= "Iron Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneIronWill.png", + ["isKeystone"]= true, + ["stats"]= { + "Strength's Damage bonus applies to all Spell Damage as well" + }, + ["flavourText"]= { + "Legend tells of incantations so powerful that only giants could recite them." + }, + ["group"]= 375, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46910" + } + }, + [42086]= { + ["skill"]= 42086, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 376, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27422" + }, + ["in"]= { + "30691", + "20402" + } + }, + [20402]= { + ["skill"]= 20402, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 376, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42086" + }, + ["in"]= { + "27422" + } + }, + [27422]= { + ["skill"]= 27422, + ["name"]= "Spirit of War", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "0.5% of Physical Attack Damage Leeched as Mana", + "25% increased Cost Efficiency of Attacks" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 376, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "20402", + "65395" + }, + ["in"]= { + "42086" + } + }, + [65395]= { + ["skill"]= 65395, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 376, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27422" + } + }, + [27733]= { + ["skill"]= 27733, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 377, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46904" + } + }, + [58210]= { + ["skill"]= 58210, + ["name"]= "Shield Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "12% increased Spell Damage while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19008", + "62970" + }, + ["in"]= { + "44184" + } + }, + [19008]= { + ["skill"]= 19008, + ["name"]= "Shield Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while holding a Shield", + "8% increased Spell Damage while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "11689" + }, + ["in"]= { + "58210" + } + }, + [11689]= { + ["skill"]= 11689, + ["name"]= "Shield Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while holding a Shield", + "8% increased Spell Damage while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46904" + }, + ["in"]= { + "19008" + } + }, + [62970]= { + ["skill"]= 62970, + ["name"]= "Shield Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.png", + ["stats"]= { + "4% increased Cast Speed while holding a Shield" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "46904" + }, + ["in"]= { + "58210" + } + }, + [46904]= { + ["skill"]= 46904, + ["name"]= "Arcane Sanctuary", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+8% Chance to Block Spell Damage while holding a Shield", + "25% increased Spell Damage while holding a Shield", + "25% reduced Elemental Ailment Duration on you while holding a Shield" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 377, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "27733" + }, + ["in"]= { + "11689", + "62970" + } + }, + [37800]= { + ["skill"]= 37800, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "0.6% of Physical Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35507", + "4378" + }, + ["in"]= { + "61262" + } + }, + [29547]= { + ["skill"]= 29547, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "15% increased Maximum total Life Recovery per second from Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "4378", + "22356" + }, + ["in"]= {} + }, + [4378]= { + ["skill"]= 4378, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "15% increased Maximum total Life Recovery per second from Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "37800", + "29547" + } + }, + [35507]= { + ["skill"]= 35507, + ["name"]= "Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "60% increased total Recovery per second from Life Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "22356" + }, + ["in"]= { + "37800" + } + }, + [22356]= { + ["skill"]= 22356, + ["name"]= "Hematophagy", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "40% increased Maximum total Life Recovery per second from Leech", + "100% increased total Recovery per second from Life Leech" + }, + ["group"]= 378, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35859" + }, + ["in"]= { + "29547", + "35507" + } + }, + [35859]= { + ["skill"]= 35859, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 378, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22356" + } + }, + [54657]= { + ["skill"]= 54657, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 379, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34157", + "9432" + }, + ["in"]= {} + }, + [34157]= { + ["skill"]= 34157, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 379, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "7938", + "54657" + } + }, + [9432]= { + ["skill"]= 9432, + ["name"]= "Mental Rapidity", + ["icon"]= "Art/2DArt/SkillIcons/passives/MentalRapidity.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "10% increased Cast Speed", + "30% increased Mana Regeneration Rate" + }, + ["group"]= 379, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "28680" + }, + ["in"]= { + "54657" + } + }, + [28680]= { + ["skill"]= 28680, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 379, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9432" + } + }, + [24865]= { + ["skill"]= 24865, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 380, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6741", + "34031", + "50515", + "56920", + "8904" + }, + ["in"]= { + "476" + } + }, + [10490]= { + ["skill"]= 10490, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 381, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "47251", + "45175", + "18359" + }, + ["in"]= { + "33479", + "45680", + "22473" + } + }, + [33479]= { + ["skill"]= 33479, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 381, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "10490", + "7614" + }, + ["in"]= { + "47312", + "63976" + } + }, + [58541]= { + ["skill"]= 58541, + ["name"]= "Mace Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 8% increased Damage with Hits and Ailments", + "3% increased Attack Speed with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "26456", + "24772" + }, + ["in"]= { + "61262" + } + }, + [6633]= { + ["skill"]= 6633, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 10% increased Damage with Hits and Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "24772", + "24721" + }, + ["in"]= {} + }, + [24772]= { + ["skill"]= 24772, + ["name"]= "Mace Damage and Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 10% increased Damage with Hits and Ailments", + "8% increased Area of Effect" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "58541", + "6633" + } + }, + [26456]= { + ["skill"]= 26456, + ["name"]= "Mace Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/macedmg.png", + ["stats"]= { + "Mace or Sceptre Attacks deal 8% increased Damage with Hits and Ailments", + "3% increased Attack Speed with Maces or Sceptres" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "58541", + "24721" + } + }, + [24721]= { + ["skill"]= 24721, + ["name"]= "Ribcage Crusher", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodyBludgeon.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "Mace or Sceptre Attacks deal 24% increased Damage with Hits and Ailments", + "6% increased Attack Speed with Maces or Sceptres", + "15% increased Area of Effect if you have Stunned an Enemy Recently" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 382, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26456", + "11596" + }, + ["in"]= { + "6633" + } + }, + [11596]= { + ["skill"]= 11596, + ["name"]= "Mace Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMace.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMaceActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 37132, + ["stats"]= { + "All Damage with Maces and Sceptres inflicts Chill" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + } + }, + { + ["effect"]= 17821, + ["stats"]= { + "20% increased Area of Effect if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 12139, + ["stats"]= { + "Crush Enemies on hit with Maces and Sceptres" + }, + ["reminderText"]= { + "(Crushed lowers Physical Damage Reduction by 15% for 4 seconds)" + } + }, + { + ["effect"]= 22542, + ["stats"]= { + "12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second" + } + }, + { + ["effect"]= 40991, + ["stats"]= { + "50% increased Stun Duration on Enemies" + } + }, + { + ["effect"]= 16425, + ["stats"]= { + "Hits that Stun Enemies have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + } + }, + ["stats"]= {}, + ["group"]= 382, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24721" + } + }, + [25714]= { + ["skill"]= 25714, + ["name"]= "Mana and Increased Mana Cost", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedManaCostNode.png", + ["stats"]= { + "10% increased maximum Mana", + "5% increased Mana Cost of Skills" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "26960" + }, + ["in"]= { + "45680" + } + }, + [26960]= { + ["skill"]= 26960, + ["name"]= "Forethought", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "30% increased maximum Mana", + "10% increased Mana Cost of Skills" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63559" + }, + ["in"]= { + "25714" + } + }, + [45680]= { + ["skill"]= 45680, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25237", + "25714", + "10490" + }, + ["in"]= {} + }, + [25237]= { + ["skill"]= 25237, + ["name"]= "Mana Regeneration and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaCostNode.png", + ["stats"]= { + "10% increased Mana Regeneration Rate", + "8% increased Mana Cost Efficiency" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "10835" + }, + ["in"]= { + "45680" + } + }, + [10835]= { + ["skill"]= 10835, + ["name"]= "Dreamer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Dreamer.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "30% increased Mana Regeneration Rate", + "15% increased Mana Cost Efficiency" + }, + ["group"]= 383, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63559" + }, + ["in"]= { + "25237" + } + }, + [63559]= { + ["skill"]= 63559, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 383, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26960", + "10835" + } + }, + [47312]= { + ["skill"]= 47312, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 384, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "55866", + "33479" + }, + ["in"]= {} + }, + [55866]= { + ["skill"]= 55866, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 384, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "47312", + "45317" + } + }, + [45317]= { + ["skill"]= 45317, + ["name"]= "Ash, Frost and Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/ashfrostandstorm.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Elemental Damage", + "10% chance to Freeze, Shock and Ignite", + "30% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 384, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "5348", + "55866" + }, + ["in"]= {} + }, + [5348]= { + ["skill"]= 5348, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 384, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45317" + } + }, + [61262]= { + ["skill"]= 61262, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 385, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "24083", + "37800", + "55420", + "17429", + "58541" + }, + ["in"]= { + "24914", + "45503" + } + }, + [13714]= { + ["skill"]= 13714, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "65167", + "55485", + "46578" + } + }, + [19939]= { + ["skill"]= 19939, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "65167", + "12702" + }, + ["in"]= {} + }, + [62021]= { + ["skill"]= 62021, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "65034", + "15073" + } + }, + [65034]= { + ["skill"]= 65034, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "62021" + }, + ["in"]= { + "46910", + "55485" + } + }, + [65167]= { + ["skill"]= 65167, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "13714" + }, + ["in"]= { + "19939" + } + }, + [15073]= { + ["skill"]= 15073, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "62021", + "12702" + }, + ["in"]= {} + }, + [55485]= { + ["skill"]= 55485, + ["name"]= "Constitution", + ["icon"]= "Art/2DArt/SkillIcons/passives/Constitution.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "+20 to maximum Life", + "10% increased maximum Life" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "13714", + "65034", + "12382" + }, + ["in"]= {} + }, + [12382]= { + ["skill"]= 12382, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 386, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55485", + "12702" + } + }, + [12702]= { + ["skill"]= 12702, + ["name"]= "Path of the Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warrior.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "AmberOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "+50 to Armour", + "+20 to Strength", + "16% increased Physical Damage" + }, + ["group"]= 386, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "12382" + }, + ["in"]= { + "19939", + "15073", + "13782" + } + }, + [4397]= { + ["skill"]= 4397, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 387, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36542", + "11420", + "7938" + }, + ["in"]= { + "31875" + } + }, + [29292]= { + ["skill"]= 29292, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed2h.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 388, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "27718", + "46578" + }, + ["in"]= {} + }, + [27718]= { + ["skill"]= 27718, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed2h.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 388, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "29292", + "12809" + } + }, + [12809]= { + ["skill"]= 12809, + ["name"]= "Berserking", + ["icon"]= "Art/2DArt/SkillIcons/passives/berserking.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "OpalescentOil" + }, + ["stats"]= { + "6% increased Attack Speed", + "+5 to Maximum Rage" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)" + }, + ["group"]= 388, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "27718", + "8629" + }, + ["in"]= {} + }, + [8629]= { + ["skill"]= 8629, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 388, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12809" + } + }, + [63976]= { + ["skill"]= 63976, + ["name"]= "Shaper", + ["icon"]= "Art/2DArt/SkillIcons/passives/Shaper.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "40% increased Mana Regeneration Rate", + "Regenerate 1% of Life per second" + }, + ["group"]= 389, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "33479", + "16775" + }, + ["in"]= { + "26740", + "6204" + } + }, + [21958]= { + ["skill"]= 21958, + ["name"]= "Cruel Preparation", + ["icon"]= "Art/2DArt/SkillIcons/passives/thickskin.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "+5% to all Elemental Resistances" + }, + ["group"]= 390, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "14936", + "12125" + }, + ["in"]= { + "33755" + } + }, + [33755]= { + ["skill"]= 33755, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 390, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "1031", + "21958" + }, + ["in"]= {} + }, + [14936]= { + ["skill"]= 14936, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 390, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "44184" + }, + ["in"]= { + "21958" + } + }, + [12125]= { + ["skill"]= 12125, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 390, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21958" + } + }, + [26154]= { + ["skill"]= 26154, + ["name"]= "Warcry Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWarcryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14206, + ["stats"]= { + "Warcries cannot Exert Travel Skills" + } + }, + { + ["effect"]= 23021, + ["stats"]= { + "Recover 15% of Life when you use a Warcry" + } + }, + { + ["effect"]= 60034, + ["stats"]= { + "Warcries have a minimum of 10 Power" + } + }, + { + ["effect"]= 12916, + ["stats"]= { + "Warcries Debilitate Enemies for 1 second" + }, + ["reminderText"]= { + "(Enemies that are Debilitated have 20% less Movement Speed and deal 10% less damage)" + } + }, + { + ["effect"]= 63994, + ["stats"]= { + "Remove all Damaging Ailments when you Warcry" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 14032, + ["stats"]= { + "Warcries have 10% chance to Exert 3 additional Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 391, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64226" + } + }, + [8904]= { + ["skill"]= 8904, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "12% increased Warcry Duration" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "49167", + "35756" + }, + ["in"]= { + "24865" + } + }, + [49167]= { + ["skill"]= 49167, + ["name"]= "Warcry Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode2.png", + ["stats"]= { + "15% increased Warcry Duration" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "64226" + }, + ["in"]= { + "8904" + } + }, + [35756]= { + ["skill"]= 35756, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "23834" + }, + ["in"]= { + "8904" + } + }, + [23834]= { + ["skill"]= 23834, + ["name"]= "Warcry Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GenericWarcryNode3.png", + ["stats"]= { + "10% increased Warcry Buff Effect" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "64226" + }, + ["in"]= { + "35756" + } + }, + [64226]= { + ["skill"]= 64226, + ["name"]= "Roaring Challenge", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryGainDamageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "VerdantOil" + }, + ["stats"]= { + "25% increased total Power counted by Warcries" + }, + ["group"]= 391, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "26154" + }, + ["in"]= { + "49167", + "23834" + } + }, + [50679]= { + ["skill"]= 50679, + ["name"]= "Versatile Combatant", + ["icon"]= "Art/2DArt/SkillIcons/passives/VersatileCombatant.png", + ["isKeystone"]= true, + ["stats"]= { + "-10% to maximum Chance to Block Attack Damage\n-10% to maximum Chance to Block Spell Damage\n+2% Chance to Block Spell Damage for each 1% Overcapped Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Overcapped Chance to Block is the amount by which Uncapped Chance to Block is higher than Maximum Chance to Block)", + "(Uncapped Chance to Block is the value Chance to Block would have if ignoring Maximum Chance to Block)" + }, + ["flavourText"]= { + "To master the arena, you must be prepared for anything." + }, + ["group"]= 392, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "24083" + }, + ["in"]= {} + }, + [25959]= { + ["skill"]= 25959, + ["name"]= "Hex Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png", + ["stats"]= { + "15% increased Area of Effect of Hex Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "2081", + "16775" + }, + ["in"]= { + "25431" + } + }, + [15400]= { + ["skill"]= 15400, + ["name"]= "Skittering Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaOfEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "50% increased Area of Effect of Hex Skills", + "20% increased Mana Cost Efficiency of Curse Skills", + "20% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "62480", + "22959" + }, + ["in"]= { + "35190" + } + }, + [62480]= { + ["skill"]= 62480, + ["name"]= "Curse Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaCost.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Curse Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "25431" + }, + ["in"]= { + "15400" + } + }, + [25431]= { + ["skill"]= 25431, + ["name"]= "Curse Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaCost.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Curse Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "25959" + }, + ["in"]= { + "62480" + } + }, + [35190]= { + ["skill"]= 35190, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "15400" + }, + ["in"]= { + "2081" + } + }, + [2081]= { + ["skill"]= 2081, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 393, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "35190" + }, + ["in"]= { + "25959" + } + }, + [22959]= { + ["skill"]= 22959, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 393, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15400" + } + }, + [63903]= { + ["skill"]= 63903, + ["name"]= "Voracious Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/FirePureElementalCasterKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "You can inflict an additional Ignite on each Enemy\nBase Ignite Duration is 1 second\n25% less Damage with Ignite\nCannot deal non-Fire Damage" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["flavourText"]= { + "Sacrifice your foes upon the pyre of your supremacy." + }, + ["group"]= 394, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44184" + } + }, + [476]= { + ["skill"]= 476, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 395, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "24865" + }, + ["in"]= { + "30691", + "34009", + "40867" + } + }, + [44184]= { + ["skill"]= 44184, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 396, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "29781", + "58210", + "63903" + }, + ["in"]= { + "63447", + "14936", + "61804", + "4367" + } + }, + [38148]= { + ["skill"]= 38148, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "44955", + "12852" + }, + ["in"]= {} + }, + [12852]= { + ["skill"]= 12852, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "44983", + "1031" + }, + ["in"]= { + "38148", + "58604" + } + }, + [4184]= { + ["skill"]= 4184, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "34661", + "11420" + }, + ["in"]= { + "44955", + "30225" + } + }, + [44983]= { + ["skill"]= 44983, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "34661" + }, + ["in"]= { + "12852" + } + }, + [34661]= { + ["skill"]= 34661, + ["name"]= "Fire Walker", + ["icon"]= "Art/2DArt/SkillIcons/passives/flameborn.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Fire Damage", + "5% increased Cast Speed with Fire Skills", + "+15% to Fire Resistance" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "4184", + "44983" + } + }, + [44955]= { + ["skill"]= 44955, + ["name"]= "Frost Walker", + ["icon"]= "Art/2DArt/SkillIcons/passives/frostborn.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "25% increased Cold Damage", + "5% increased Cast Speed with Cold Skills", + "+15% to Cold Resistance" + }, + ["group"]= 397, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "4184" + }, + ["in"]= { + "38148" + } + }, + [58604]= { + ["skill"]= 58604, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 397, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12852" + }, + ["in"]= { + "30225" + } + }, + [30225]= { + ["skill"]= 30225, + ["name"]= "Lightning Walker", + ["icon"]= "Art/2DArt/SkillIcons/passives/stormborn.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Lightning Damage", + "5% increased Cast Speed with Lightning Skills", + "+15% to Lightning Resistance" + }, + ["group"]= 397, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "58604", + "4184" + }, + ["in"]= {} + }, + [1031]= { + ["skill"]= 1031, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 398, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "19635" + }, + ["in"]= { + "7938", + "33755", + "12852", + "60388" + } + }, + [1325]= { + ["skill"]= 1325, + ["name"]= "Golem's Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/golemsblood.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "10% increased maximum Life", + "Regenerate 1.6% of Life per second" + }, + ["group"]= 399, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "31471", + "62588" + }, + ["in"]= { + "29933" + } + }, + [29933]= { + ["skill"]= 29933, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 399, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "1325", + "34031" + }, + ["in"]= {} + }, + [31471]= { + ["skill"]= 31471, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 399, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "24083" + }, + ["in"]= { + "1325" + } + }, + [62588]= { + ["skill"]= 62588, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 399, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1325" + } + }, + [5574]= { + ["skill"]= 5574, + ["name"]= "Force of Darkness", + ["icon"]= "Art/2DArt/SkillIcons/passives/OccultistAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "Damage Penetrates 15% Chaos Resistance" + }, + ["group"]= 400, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [12926]= { + ["skill"]= 12926, + ["name"]= "Iron Grip", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneIronGrip.png", + ["isKeystone"]= true, + ["stats"]= { + "Strength's Damage bonus applies to Projectile Attack Damage as well as Melee Damage" + }, + ["flavourText"]= { + "Legend tells of bows so powerful that only giants could draw them back." + }, + ["group"]= 401, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46578" + } + }, + [24083]= { + ["skill"]= 24083, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 402, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49343" + }, + ["in"]= { + "61262", + "50679", + "31471", + "17566", + "10073", + "16544" + } + }, + [22970]= { + ["skill"]= 22970, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 403, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21973" + } + }, + [18359]= { + ["skill"]= 18359, + ["name"]= "Minion Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionblockchance.png", + ["stats"]= { + "Minions have +12% Chance to Block Attack Damage" + }, + ["group"]= 403, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "10490", + "34306" + } + }, + [21973]= { + ["skill"]= 21973, + ["name"]= "Decay Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionblockchance.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "TealOil" + }, + ["stats"]= { + "Minions have +18% Chance to Block Attack Damage", + "Minions have +18% Chance to Block Spell Damage", + "Minions Recover 2% of their Life when they Block" + }, + ["group"]= 403, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "34306", + "22970" + }, + ["in"]= {} + }, + [34306]= { + ["skill"]= 34306, + ["name"]= "Minion Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionblockchance.png", + ["stats"]= { + "Minions have +12% Chance to Block Spell Damage" + }, + ["group"]= 403, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18359" + }, + ["in"]= { + "21973" + } + }, + [45175]= { + ["skill"]= 45175, + ["name"]= "Necromantic Aegis", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneNecromanticAegis.png", + ["isKeystone"]= true, + ["stats"]= { + "All bonuses from an Equipped Shield apply to your Minions instead of you" + }, + ["flavourText"]= { + "I give you everything, my pets. My trust, my strength, my safety. Do not disappoint me." + }, + ["group"]= 404, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10490" + } + }, + [24362]= { + ["skill"]= 24362, + ["name"]= "Deep Thoughts", + ["icon"]= "Art/2DArt/SkillIcons/passives/deepthoughts.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "VioletOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "20% increased maximum Mana", + "20% increased Mana Regeneration Rate", + "+20 to Intelligence" + }, + ["group"]= 405, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "60388", + "29781", + "53188" + }, + ["in"]= {} + }, + [29781]= { + ["skill"]= 29781, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 405, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44184", + "24362" + } + }, + [60388]= { + ["skill"]= 60388, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 405, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "1031" + }, + ["in"]= { + "24362" + } + }, + [53188]= { + ["skill"]= 53188, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 405, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24362" + } + }, + [38450]= { + ["skill"]= 38450, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "12% increased Area of Effect" + }, + ["group"]= 406, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51291" + } + }, + [5560]= { + ["skill"]= 5560, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "12% increased Area of Effect" + }, + ["group"]= 406, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "51291" + }, + ["in"]= { + "2151" + } + }, + [51291]= { + ["skill"]= 51291, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "12% increased Area of Effect" + }, + ["group"]= 406, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "38450" + }, + ["in"]= { + "5560" + } + }, + [6230]= { + ["skill"]= 6230, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 406, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "48423" + }, + ["in"]= { + "55906" + } + }, + [26740]= { + ["skill"]= 26740, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.3% of Life per second" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "63976" + }, + ["in"]= { + "55906" + } + }, + [38048]= { + ["skill"]= 38048, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.3% of Life per second" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "55906" + }, + ["in"]= { + "55373" + } + }, + [55906]= { + ["skill"]= 55906, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.4% of Life per second" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "26740", + "6230" + }, + ["in"]= { + "38048" + } + }, + [37690]= { + ["skill"]= 37690, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "48423" + }, + ["in"]= { + "2151" + } + }, + [48423]= { + ["skill"]= 48423, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "6204" + }, + ["in"]= { + "6230", + "37690" + } + }, + [6204]= { + ["skill"]= 6204, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 406, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63976" + }, + ["in"]= { + "48423" + } + }, + [41522]= { + ["skill"]= 41522, + ["name"]= "Duration Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryDuration.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 17852, + ["stats"]= { + "10% more Skill Effect Duration" + } + }, + { + ["effect"]= 21730, + ["stats"]= { + "10% less Skill Effect Duration" + } + }, + { + ["effect"]= 24352, + ["stats"]= { + "Debuffs on you expire 15% faster" + } + }, + { + ["effect"]= 14881, + ["stats"]= { + "20% reduced Elemental Ailment Duration on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 407, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1006" + } + }, + [13191]= { + ["skill"]= 13191, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 407, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "7614" + }, + ["in"]= { + "1006" + } + }, + [7614]= { + ["skill"]= 7614, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 407, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "33479", + "13191" + } + }, + [1006]= { + ["skill"]= 1006, + ["name"]= "Potency of Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/potencyofwill.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "OpalescentOil" + }, + ["stats"]= { + "25% increased Skill Effect Duration" + }, + ["group"]= 407, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13191", + "41522" + }, + ["in"]= {} + }, + [38789]= { + ["skill"]= 38789, + ["name"]= "Ignite Chance and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% increased Ignite Duration on Enemies", + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "11924" + }, + ["in"]= { + "8624" + } + }, + [61804]= { + ["skill"]= 61804, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "12% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "44184", + "14040" + }, + ["in"]= { + "13559" + } + }, + [14040]= { + ["skill"]= 14040, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "18715" + }, + ["in"]= { + "61804" + } + }, + [18715]= { + ["skill"]= 18715, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "10893" + }, + ["in"]= { + "14040" + } + }, + [31462]= { + ["skill"]= 31462, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "+5% to Fire Damage over Time Multiplier" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "11924" + }, + ["in"]= { + "13559" + } + }, + [10893]= { + ["skill"]= 10893, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "18715", + "60501" + } + }, + [13559]= { + ["skill"]= 13559, + ["name"]= "Burning Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+5% to Fire Damage over Time Multiplier" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "61804", + "31462" + }, + ["in"]= { + "8624" + } + }, + [8624]= { + ["skill"]= 8624, + ["name"]= "Ignite Chance and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% increased Ignite Duration on Enemies", + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13559", + "38789" + }, + ["in"]= {} + }, + [11924]= { + ["skill"]= 11924, + ["name"]= "Breath of Flames", + ["icon"]= "Art/2DArt/SkillIcons/passives/BreathofFlames2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "+10% to Fire Damage over Time Multiplier", + "30% increased Fire Damage" + }, + ["group"]= 408, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34927" + }, + ["in"]= { + "38789", + "31462" + } + }, + [60501]= { + ["skill"]= 60501, + ["name"]= "Heart of Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/hellfire.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Fire Damage", + "Damage Penetrates 6% Fire Resistance" + }, + ["group"]= 408, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "10893", + "34927" + }, + ["in"]= {} + }, + [34927]= { + ["skill"]= 34927, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 408, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "11924", + "60501" + } + }, + [34666]= { + ["skill"]= 34666, + ["name"]= "Destroyer", + ["icon"]= "Art/2DArt/SkillIcons/passives/executioner.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "OpalescentOil" + }, + ["stats"]= { + "25% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments", + "5% increased Attack Speed with Two Handed Melee Weapons", + "25% increased Stun Duration with Two Handed Melee Weapons on Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "36972" + }, + ["in"]= { + "43412" + } + }, + [43303]= { + ["skill"]= 43303, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "30842", + "34031" + }, + ["in"]= { + "36972" + } + }, + [30842]= { + ["skill"]= 30842, + ["name"]= "Two Handed Melee Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy2h.png", + ["stats"]= { + "12% increased Accuracy Rating with Two Handed Melee Weapons" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "43412" + }, + ["in"]= { + "43303" + } + }, + [36972]= { + ["skill"]= 36972, + ["name"]= "Two Handed Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handedspeed.png", + ["stats"]= { + "4% increased Attack Speed with Two Handed Melee Weapons" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "43303" + }, + ["in"]= { + "34666" + } + }, + [43412]= { + ["skill"]= 43412, + ["name"]= "Two Handed Melee Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/2handeddamage.png", + ["stats"]= { + "12% increased Physical Damage with Two Handed Melee Weapons", + "Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 409, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34666", + "34009" + }, + ["in"]= { + "30842" + } + }, + [20605]= { + ["skill"]= 20605, + ["name"]= "No Forgiveness", + ["icon"]= "Art/2DArt/SkillIcons/passives/GladiatorAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "20% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use" + }, + ["reminderText"]= { + "(They will also not be put on cooldown if they remain Usable)" + }, + ["group"]= 410, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [49343]= { + ["skill"]= 49343, + ["name"]= "Block Chance and Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while holding a Shield", + "Attack Skills deal 8% increased Damage while holding a Shield" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "24083", + "1159", + "43413" + } + }, + [36761]= { + ["skill"]= 36761, + ["name"]= "Attack Damage and Attack Speed with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while holding a Shield", + "3% increased Attack Speed while holding a Shield" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "1159" + }, + ["in"]= { + "12878" + } + }, + [1159]= { + ["skill"]= 1159, + ["name"]= "Attack Damage and Attack Speed with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while holding a Shield", + "3% increased Attack Speed while holding a Shield" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "49343" + }, + ["in"]= { + "36761" + } + }, + [37795]= { + ["skill"]= 37795, + ["name"]= "Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 45263, + ["stats"]= { + "30% chance to Avoid being Stunned while holding a Shield" + } + }, + { + ["effect"]= 30612, + ["stats"]= { + "+1% Chance to Block Attack Damage per 5% Chance to Block on Equipped Shield" + } + }, + { + ["effect"]= 10059, + ["stats"]= { + "Intimidate Enemies for 4 seconds on Block while holding a Shield" + } + }, + { + ["effect"]= 50228, + ["stats"]= { + "20% chance to Avoid Elemental Ailments while holding a Shield" + } + }, + { + ["effect"]= 35302, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield" + } + }, + { + ["effect"]= 45307, + ["stats"]= { + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + } + }, + ["stats"]= {}, + ["group"]= 411, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12878", + "44207" + } + }, + [43413]= { + ["skill"]= 43413, + ["name"]= "Shield Block and Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "30% increased Block Recovery" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "3319", + "49343" + }, + ["in"]= {} + }, + [3319]= { + ["skill"]= 3319, + ["name"]= "Shield Block and Block Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "30% increased Block Recovery" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "44207" + }, + ["in"]= { + "43413" + } + }, + [12878]= { + ["skill"]= 12878, + ["name"]= "Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/Retaliation.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "Attack Skills deal 20% increased Damage while holding a Shield", + "8% increased Attack Speed while holding a Shield", + "60% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "36761", + "37795" + }, + ["in"]= {} + }, + [44207]= { + ["skill"]= 44207, + ["name"]= "Testudo", + ["icon"]= "Art/2DArt/SkillIcons/passives/barricade.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "BlackOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while holding a Shield", + "60% increased Block Recovery", + "Recover 30 Life when you Block" + }, + ["group"]= 411, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "37795" + }, + ["in"]= { + "3319" + } + }, + [57061]= { + ["skill"]= 57061, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 412, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "22061", + "46578" + }, + ["in"]= { + "5289" + } + }, + [22061]= { + ["skill"]= 22061, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "+25 to maximum Mana", + "10% increased maximum Mana" + }, + ["group"]= 412, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "57061", + "5289" + } + }, + [5289]= { + ["skill"]= 5289, + ["name"]= "Battle Rouse", + ["icon"]= "Art/2DArt/SkillIcons/passives/BattleRouse.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "AzureOil" + }, + ["stats"]= { + "15% increased maximum Mana", + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 412, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "57061", + "22061", + "25186" + }, + ["in"]= {} + }, + [25186]= { + ["skill"]= 25186, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 412, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5289" + } + }, + [34009]= { + ["skill"]= 34009, + ["name"]= "Master of the Arena", + ["icon"]= "Art/2DArt/SkillIcons/passives/Meleerange.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "OpalescentOil", + "SilverOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "Regenerate 1% of Life per second", + "10% increased Melee Physical Damage", + "+0.3 metres to Melee Strike Range", + "+20 to Strength" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 413, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "51856", + "50360", + "18302", + "476" + }, + ["in"]= { + "43412", + "12236" + } + }, + [34031]= { + ["skill"]= 34031, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 414, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49109" + }, + ["in"]= { + "24865", + "29933", + "43303", + "25324", + "56001" + } + }, + [62662]= { + ["skill"]= 62662, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "8% increased Physical Damage" + }, + ["group"]= 415, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "13782" + }, + ["in"]= { + "48828" + } + }, + [17674]= { + ["skill"]= 17674, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "8% increased Physical Damage" + }, + ["group"]= 415, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "13782" + }, + ["in"]= { + "55373" + } + }, + [13782]= { + ["skill"]= 13782, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["stats"]= { + "8% increased Physical Damage" + }, + ["group"]= 415, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "12702" + }, + ["in"]= { + "62662", + "17674" + } + }, + [40867]= { + ["skill"]= 40867, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 416, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "476" + }, + ["in"]= { + "42911" + } + }, + [42911]= { + ["skill"]= 42911, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 416, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "40867" + }, + ["in"]= { + "47389" + } + }, + [65154]= { + ["skill"]= 65154, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 417, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63933" + } + }, + [1696]= { + ["skill"]= 1696, + ["name"]= "Totem Placement Speed and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + ["stats"]= { + "30% increased Totem Duration", + "15% increased Totem Placement speed" + }, + ["group"]= 417, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "25732", + "63933" + }, + ["in"]= {} + }, + [25732]= { + ["skill"]= 25732, + ["name"]= "Totem Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemattackspeed.png", + ["stats"]= { + "Spells Cast by Totems have 4% increased Cast Speed", + "Attacks used by Totems have 5% increased Attack Speed" + }, + ["group"]= 417, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "1696", + "28330" + } + }, + [63933]= { + ["skill"]= 63933, + ["name"]= "Totemic Zeal", + ["icon"]= "Art/2DArt/SkillIcons/passives/totemiczeal.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Totem Placement speed", + "Spells Cast by Totems have 8% increased Cast Speed", + "Attacks used by Totems have 10% increased Attack Speed" + }, + ["group"]= 417, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "65154" + }, + ["in"]= { + "1696" + } + }, + [46578]= { + ["skill"]= 46578, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 418, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "28330", + "13714", + "30733", + "12926" + }, + ["in"]= { + "29292", + "57061" + } + }, + [28330]= { + ["skill"]= 28330, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 418, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "19144", + "25732" + }, + ["in"]= { + "46578" + } + }, + [49109]= { + ["skill"]= 49109, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "12% increased Evasion Rating and Armour", + "+4% to all Elemental Resistances" + }, + ["group"]= 419, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "34031", + "21435" + } + }, + [17566]= { + ["skill"]= 17566, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "12% increased Evasion Rating and Armour", + "+4% to all Elemental Resistances" + }, + ["group"]= 419, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "24083" + }, + ["in"]= { + "21435" + } + }, + [21435]= { + ["skill"]= 21435, + ["name"]= "Cloth and Chain", + ["icon"]= "Art/2DArt/SkillIcons/passives/newevadepercentage.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "AzureOil" + }, + ["stats"]= { + "24% increased Evasion Rating and Armour", + "+12% to all Elemental Resistances" + }, + ["group"]= 419, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "49109", + "17566", + "19750" + }, + ["in"]= {} + }, + [19750]= { + ["skill"]= 19750, + ["name"]= "Armour and Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 49522, + ["stats"]= { + "Defend with 120% of Armour against Projectile Attacks", + "5% more chance to Evade Melee Attacks" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 62285, + ["stats"]= { + "8% increased Evasion Rating per Frenzy Charge", + "8% increased Armour per Endurance Charge" + } + }, + { + ["effect"]= 5108, + ["stats"]= { + "80% increased Stun and Block Recovery" + } + }, + { + ["effect"]= 23955, + ["stats"]= { + "Every 4 seconds, Regenerate Life equal to 1% of Armour and Evasion Rating over 1 second" + } + }, + { + ["effect"]= 58876, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently", + "40% increased Armour if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 43258, + ["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" + } + } + }, + ["stats"]= {}, + ["group"]= 419, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21435" + } + }, + [10073]= { + ["skill"]= 10073, + ["name"]= "Armour and Guard Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "12% increased Armour", + "Guard Skills have 20% increased Cooldown Recovery Rate" + }, + ["group"]= 420, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49147", + "24083" + }, + ["in"]= {} + }, + [49147]= { + ["skill"]= 49147, + ["name"]= "Armour and Guard Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/dmgreduction.png", + ["stats"]= { + "12% increased Armour", + "Guard Skills have 20% increased Cooldown Recovery Rate" + }, + ["group"]= 420, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49416" + }, + ["in"]= { + "10073" + } + }, + [49416]= { + ["skill"]= 49416, + ["name"]= "Adamant", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourGuardsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Armour", + "Remove Bleeding when you use a Guard Skill", + "Remove Corrupted Blood when you use a Guard Skill", + "Guard Skills have 25% increased Duration" + }, + ["group"]= 420, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "45358" + }, + ["in"]= { + "49147" + } + }, + [45358]= { + ["skill"]= 45358, + ["name"]= "Armour Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupArmour.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 46180, + ["stats"]= { + "+1 Armour per 2 Strength" + } + }, + { + ["effect"]= 48720, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 59754, + ["stats"]= { + "20% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 7137, + ["stats"]= { + "+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 59936, + ["stats"]= { + "20% increased Armour per second you've been stationary, up to a maximum of 100%" + } + }, + { + ["effect"]= 10680, + ["stats"]= { + "100% increased Armour from Equipped Boots and Gloves" + } + } + }, + ["stats"]= {}, + ["group"]= 420, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49416" + } + }, + [36542]= { + ["skill"]= 36542, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 421, + ["orbit"]= 6, + ["orbitIndex"]= 50, + ["out"]= {}, + ["in"]= { + "4397", + "37569" + } + }, + [37569]= { + ["skill"]= 37569, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 421, + ["orbit"]= 6, + ["orbitIndex"]= 42, + ["out"]= { + "36542", + "57264" + }, + ["in"]= {} + }, + [39211]= { + ["skill"]= 39211, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "16% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "48513", + "5612" + } + }, + [51856]= { + ["skill"]= 51856, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "12% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "59718", + "48513" + }, + ["in"]= { + "34009" + } + }, + [48513]= { + ["skill"]= 48513, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "16% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "39211" + }, + ["in"]= { + "51856" + } + }, + [5612]= { + ["skill"]= 5612, + ["name"]= "Physical Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "12% increased Attack Physical Damage" + }, + ["group"]= 422, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "39211", + "35568" + }, + ["in"]= { + "47389" + } + }, + [37403]= { + ["skill"]= 37403, + ["name"]= "Infused Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/InfusedFlesh.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "18% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 423, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "27193" + }, + ["in"]= { + "2474" + } + }, + [27193]= { + ["skill"]= 27193, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 423, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37403" + } + }, + [2474]= { + ["skill"]= 2474, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 423, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "37403" + }, + ["in"]= { + "55804" + } + }, + [55804]= { + ["skill"]= 55804, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 423, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "2474" + }, + ["in"]= { + "4367" + } + }, + [32509]= { + ["skill"]= 32509, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 424, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7918" + } + }, + [40075]= { + ["skill"]= 40075, + ["name"]= "Staff Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeOffensive.png", + ["stats"]= { + "12% increased Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "49534", + "42485" + }, + ["in"]= { + "19635" + } + }, + [49534]= { + ["skill"]= 49534, + ["name"]= "Staff Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "10% increased Spell Damage while wielding a Staff", + "+3% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7918" + }, + ["in"]= { + "40075" + } + }, + [42485]= { + ["skill"]= 42485, + ["name"]= "Staff Spell Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNodeDefensive.png", + ["stats"]= { + "10% increased Spell Damage while wielding a Staff", + "+3% Chance to Block Attack Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "7918" + }, + ["in"]= { + "40075" + } + }, + [7918]= { + ["skill"]= 7918, + ["name"]= "Enigmatic Defence", + ["icon"]= "Art/2DArt/SkillIcons/passives/StaffNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "20% increased Spell Damage while wielding a Staff", + "+8% Chance to Block Attack Damage while wielding a Staff", + "+8% Chance to Block Spell Damage while wielding a Staff" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + }, + ["group"]= 424, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "32509" + }, + ["in"]= { + "49534", + "42485" + } + }, + [19782]= { + ["skill"]= 19782, + ["name"]= "Defences with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "40% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "49538" + }, + ["in"]= { + "25324" + } + }, + [12236]= { + ["skill"]= 12236, + ["name"]= "Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while holding a Shield" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "46730", + "34009" + }, + ["in"]= { + "49538" + } + }, + [46730]= { + ["skill"]= 46730, + ["name"]= "Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while holding a Shield" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "25324" + }, + ["in"]= { + "12236" + } + }, + [25324]= { + ["skill"]= 25324, + ["name"]= "Attack Damage with Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/ShieldAttackDamage.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while holding a Shield" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "19782", + "34031" + }, + ["in"]= { + "46730" + } + }, + [49538]= { + ["skill"]= 49538, + ["name"]= "Defiance", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldwall.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "BlackOil" + }, + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "Attack Skills deal 24% increased Damage while holding a Shield", + "60% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 425, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "12236" + }, + ["in"]= { + "19782" + } + }, + [61259]= { + ["skill"]= 61259, + ["name"]= "Mastermind of Discord", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/PrimevalForce.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Exposure you inflict applies an extra -15% to the affected Resistance" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "19595" + }, + ["in"]= { + "37114" + } + }, + [57197]= { + ["skill"]= 57197, + ["name"]= "Heart of Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/PendulumOfDestruction.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= {}, + ["in"]= { + "19595" + } + }, + [4917]= { + ["skill"]= 4917, + ["name"]= "Bastion of Elements", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/IridescentFlesh.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Triggers Level 20 Primal Aegis when Allocated\nPrimal Aegis can take 75 Elemental Damage per Allocated Notable Passive Skill", + "Other Aegis Skills are Disabled" + }, + ["reminderText"]= { + "(Primal Aegis calls forth a protective aegis which takes elemental damage from hits for you until depleted. The aegis will be restored to its full value after a short delay if you stop taking elemental damage from hits, or if depleted)" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "6052" + } + }, + [47873]= { + ["skill"]= 47873, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "258" + }, + ["in"]= { + "16023" + } + }, + [258]= { + ["skill"]= 258, + ["name"]= "Bringer of Ruin", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElemancerIcon.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "33% increased Effect of Herald Buffs on you", + "33% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "47873" + } + }, + [12738]= { + ["skill"]= 12738, + ["name"]= "Elemental Damage, Fire Damage over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+4% to Fire Damage over Time Multiplier", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "53123" + }, + ["in"]= { + "16023" + } + }, + [58998]= { + ["skill"]= 58998, + ["name"]= "Elemental Damage, Lightning Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "10% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "27038" + }, + ["in"]= { + "16023" + } + }, + [12475]= { + ["skill"]= 12475, + ["name"]= "Elemental Damage, Cold Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageFreezeShockIgnite.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "10% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "40810" + }, + ["in"]= { + "16023" + } + }, + [53123]= { + ["skill"]= 53123, + ["name"]= "Shaper of Flames", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/IgniteSpecialisation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "All Damage can Ignite", + "Enemies Ignited by you have 30% of Physical Damage they deal converted to Fire" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "12738" + } + }, + [27038]= { + ["skill"]= 27038, + ["name"]= "Shaper of Storms", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ShockSpecialisation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Shocks from your Hits always increase Damage taken by at least 10%", + "All Damage can Shock" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 17, + ["out"]= {}, + ["in"]= { + "58998" + } + }, + [40810]= { + ["skill"]= 40810, + ["name"]= "Shaper of Winter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ChillSpecialisation.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "All Damage with Hits can Chill", + "Chills from your Hits always reduce Action Speed by at least 10%" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by up to 30%, depending on the amount of Cold Damage in the hit, for 2 seconds)" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "12475" + } + }, + [37114]= { + ["skill"]= 37114, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 426, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "61259" + }, + ["in"]= { + "16023" + } + }, + [19595]= { + ["skill"]= 19595, + ["name"]= "Elemental Damage, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageAttackCasteSpeed.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "10% increased Elemental Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 426, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "57197" + }, + ["in"]= { + "61259" + } + }, + [6052]= { + ["skill"]= 6052, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "4917" + }, + ["in"]= { + "16023" + } + }, + [54279]= { + ["skill"]= 54279, + ["name"]= "Elemental Damage and Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/ElementalDamageElementalResistances.png", + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "+6% to all Elemental Resistances", + "10% increased Elemental Damage" + }, + ["group"]= 426, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "56461", + "16023" + } + }, + [56461]= { + ["skill"]= 56461, + ["name"]= "Liege of the Primordial", + ["icon"]= "Art/2DArt/SkillIcons/passives/Elementalist/LiegeOfThePrimordial.png", + ["isNotable"]= true, + ["ascendancyName"]= "Elementalist", + ["stats"]= { + "Summoned Golems are Resummoned 4 seconds after being Killed", + "+1 to maximum number of Summoned Golems" + }, + ["group"]= 426, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "54279" + }, + ["in"]= {} + }, + [16023]= { + ["skill"]= 16023, + ["name"]= "Elementalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Elementalist", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 426, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37114", + "54279", + "6052", + "58998", + "12475", + "12738", + "47873" + }, + ["in"]= { + "54447" + } + }, + [6982]= { + ["skill"]= 6982, + ["name"]= "Armour and Evasion, Taunt Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnETaunt.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "20% increased Taunt Duration" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "56967" + }, + ["in"]= { + "24984" + } + }, + [56967]= { + ["skill"]= 56967, + ["name"]= "Worthy Foe", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/WorthyFoe.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Taunt on Hit", + "Enemies Taunted by you take 8% increased Damage", + "Enemies Taunted by you cannot Evade Attacks" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "6982" + } + }, + [11412]= { + ["skill"]= 11412, + ["name"]= "Inspirational", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/Inpirational.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "You and Allies near your Banner Regenerate 0.1% of Life per second for each Valour consumed for that Banner", + "When you leave your Banner's Area, recover 30% of the Valour consumed for that Banner" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "61478" + }, + ["in"]= { + "25111" + } + }, + [27604]= { + ["skill"]= 27604, + ["name"]= "First to Strike, Last to Fall", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/FirstStrikeLastFall.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Gain Adrenaline for 10 seconds when you reach Low Life", + "Recover 25% of Life when you gain Adrenaline", + "Remove all Ailments and Burning when you gain Adrenaline" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)", + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= {}, + ["in"]= { + "43725" + } + }, + [41433]= { + ["skill"]= 41433, + ["name"]= "Armour and Evasion, Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/ImpalePassive.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "13374" + }, + ["in"]= { + "24984" + } + }, + [13374]= { + ["skill"]= 13374, + ["name"]= "Master of Metal", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/ImpalePassiveNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction", + "Impales you inflict last 1 additional Hit" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "41433" + } + }, + [61478]= { + ["skill"]= 61478, + ["name"]= "Armour and Evasion, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "35750" + }, + ["in"]= { + "11412" + } + }, + [60508]= { + ["skill"]= 60508, + ["name"]= "Armour and Evasion, Attack Damage while Fortified", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "10% increased Damage with Attack Skills while Fortified" + }, + ["group"]= 427, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "31700" + }, + ["in"]= { + "24984" + } + }, + [35185]= { + ["skill"]= 35185, + ["name"]= "Armour and Evasion, Attack Damage while Fortified", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEFortify.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "10% increased Damage with Attack Skills while Fortified" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "33940" + }, + ["in"]= { + "31700" + } + }, + [25111]= { + ["skill"]= 25111, + ["name"]= "Armour and Evasion, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEAura.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "15% increased Evasion Rating and Armour", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "11412" + }, + ["in"]= { + "24984" + } + }, + [43725]= { + ["skill"]= 43725, + ["name"]= "Armour and Evasion, Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/AnEAttDamage.png", + ["ascendancyName"]= "Champion", + ["stats"]= { + "10% increased Attack Damage", + "15% increased Evasion Rating and Armour" + }, + ["group"]= 427, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "27604" + }, + ["in"]= { + "24984" + } + }, + [31700]= { + ["skill"]= 31700, + ["name"]= "Fortitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/Fortitude.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Nearby Allies count as having Fortification equal to yours", + "You have 15 Fortification" + }, + ["reminderText"]= { + "(Take 1% less Damage from Hits per Fortification. Maximum 20 Fortification)" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "35185" + }, + ["in"]= { + "60508" + } + }, + [33940]= { + ["skill"]= 33940, + ["name"]= "Unstoppable Hero", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/Unstopable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "3% more Armour and Evasion Rating per Fortification above 20", + "3% increased Attack Speed per Fortification above 20" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= {}, + ["in"]= { + "35185" + } + }, + [35750]= { + ["skill"]= 35750, + ["name"]= "Worthy Causes", + ["icon"]= "Art/2DArt/SkillIcons/passives/Champion/WorthyCauses.png", + ["isNotable"]= true, + ["ascendancyName"]= "Champion", + ["stats"]= { + "Having a placed Banner does not prevent you gaining Valour" + }, + ["group"]= 427, + ["orbit"]= 4, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "61478" + } + }, + [24984]= { + ["skill"]= 24984, + ["name"]= "Champion", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Champion", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 427, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "25111", + "60508", + "6982", + "43725", + "41433" + }, + ["in"]= { + "50986" + } + }, + [32431]= { + ["skill"]= 32431, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "12% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "4367" + }, + ["in"]= { + "49588", + "36121" + } + }, + [49588]= { + ["skill"]= 49588, + ["name"]= "Lightning Damage and Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "10% increased Lightning Damage", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "32431" + }, + ["in"]= { + "61264" + } + }, + [36121]= { + ["skill"]= 36121, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "32431", + "57362" + }, + ["in"]= {} + }, + [55647]= { + ["skill"]= 55647, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "56716" + }, + ["in"]= { + "57362" + } + }, + [57362]= { + ["skill"]= 57362, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "16% increased Lightning Damage" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "55647" + }, + ["in"]= { + "36121" + } + }, + [58816]= { + ["skill"]= 58816, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 428, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "11645", + "56716" + } + }, + [61264]= { + ["skill"]= 61264, + ["name"]= "Lightning Damage and Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "10% increased Lightning Damage", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "49588" + }, + ["in"]= { + "46469" + } + }, + [46469]= { + ["skill"]= 46469, + ["name"]= "Lightning Damage and Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "10% increased Lightning Damage", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "61264", + "11645" + }, + ["in"]= {} + }, + [11645]= { + ["skill"]= 11645, + ["name"]= "Breath of Lightning", + ["icon"]= "Art/2DArt/SkillIcons/passives/BreathofLightening2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Lightning Damage", + "50% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "58816" + }, + ["in"]= { + "46469" + } + }, + [56716]= { + ["skill"]= 56716, + ["name"]= "Heart of Thunder", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Lightning Damage", + "Damage Penetrates 6% Lightning Resistance" + }, + ["group"]= 428, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "58816" + }, + ["in"]= { + "55647" + } + }, + [15117]= { + ["skill"]= 15117, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "4367", + "61419" + }, + ["in"]= {} + }, + [53279]= { + ["skill"]= 53279, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "19635" + }, + ["in"]= { + "61419" + } + }, + [61419]= { + ["skill"]= 61419, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "53279" + }, + ["in"]= { + "15117" + } + }, + [20528]= { + ["skill"]= 20528, + ["name"]= "Instability", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Power Charges" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "56158" + }, + ["in"]= { + "8302" + } + }, + [8302]= { + ["skill"]= 8302, + ["name"]= "Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "20% increased Power Charge Duration" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20528" + }, + ["in"]= { + "19635" + } + }, + [56158]= { + ["skill"]= 56158, + ["name"]= "Spell Damage per Power Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "4% increased Spell Damage per Power Charge" + }, + ["group"]= 429, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "20528", + "4367" + } + }, + [16246]= { + ["skill"]= 16246, + ["name"]= "Tranquility", + ["icon"]= "Art/2DArt/SkillIcons/passives/SoulPact.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "5% increased maximum Energy Shield", + "Transfiguration of Soul" + }, + ["reminderText"]= { + "(Increases and Reductions to Maximum Energy Shield", + "also apply to Spell Damage at 30% of their value)" + }, + ["group"]= 430, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [4367]= { + ["skill"]= 4367, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 431, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "19501", + "44184", + "56158", + "55804", + "40351" + }, + ["in"]= { + "32431", + "15117", + "60989" + } + }, + [19635]= { + ["skill"]= 19635, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 432, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "11551", + "8302", + "40075", + "50826" + }, + ["in"]= { + "1031", + "53279", + "38805", + "27611", + "44723" + } + }, + [38900]= { + ["skill"]= 38900, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 8, + ["out"]= { + "38805" + }, + ["in"]= { + "21075", + "27929" + } + }, + [38805]= { + ["skill"]= 38805, + ["name"]= "Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "10% increased Area of Effect" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 5, + ["out"]= { + "19635" + }, + ["in"]= { + "38900", + "21075" + } + }, + [21075]= { + ["skill"]= 21075, + ["name"]= "Area of Effect Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/areaofeffect.png", + ["stats"]= { + "10% increased Area Damage" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 7, + ["out"]= { + "38805", + "38900" + }, + ["in"]= { + "15711" + } + }, + [15711]= { + ["skill"]= 15711, + ["name"]= "Blast Radius", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "OpalescentOil" + }, + ["stats"]= { + "10% increased Area of Effect", + "20% increased Area Damage" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 12, + ["out"]= { + "21075" + }, + ["in"]= {} + }, + [1957]= { + ["skill"]= 1957, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 45, + ["out"]= { + "739" + }, + ["in"]= { + "33296" + } + }, + [739]= { + ["skill"]= 739, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 48, + ["out"]= { + "18866" + }, + ["in"]= { + "1957" + } + }, + [18866]= { + ["skill"]= 18866, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 51, + ["out"]= { + "11420" + }, + ["in"]= { + "739" + } + }, + [53493]= { + ["skill"]= 53493, + ["name"]= "Annihilation", + ["icon"]= "Art/2DArt/SkillIcons/passives/Annihilation.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "BlackOil" + }, + ["stats"]= { + "50% increased Spell Critical Strike Chance", + "+15% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 60, + ["out"]= { + "16790" + }, + ["in"]= {} + }, + [27929]= { + ["skill"]= 27929, + ["name"]= "Deep Wisdom", + ["icon"]= "Art/2DArt/SkillIcons/passives/deepwisdom.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "TealOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "+20 to maximum Energy Shield", + "+20 to maximum Mana", + "+20 to Intelligence" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 18, + ["out"]= { + "40637", + "55643", + "38900", + "2292", + "8948", + "7503" + }, + ["in"]= { + "32024", + "11659" + } + }, + [59650]= { + ["skill"]= 59650, + ["name"]= "Energy Shield and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+16 to maximum Energy Shield", + "25% increased Mana Regeneration Rate" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 30, + ["out"]= { + "9650", + "19374", + "57226" + }, + ["in"]= {} + }, + [6949]= { + ["skill"]= 6949, + ["name"]= "Energy Shield and Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 24, + ["out"]= { + "55643" + }, + ["in"]= { + "19374" + } + }, + [19374]= { + ["skill"]= 19374, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+10 to maximum Energy Shield", + "4% increased maximum Energy Shield" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 27, + ["out"]= { + "6949" + }, + ["in"]= { + "59650" + } + }, + [55643]= { + ["skill"]= 55643, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+10 to maximum Energy Shield", + "4% increased maximum Energy Shield" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 21, + ["out"]= {}, + ["in"]= { + "27929", + "6949" + } + }, + [2292]= { + ["skill"]= 2292, + ["name"]= "Mana and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "5% increased maximum Life", + "8% increased maximum Mana" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "27203" + }, + ["in"]= { + "27929" + } + }, + [48362]= { + ["skill"]= 48362, + ["name"]= "Mana and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "5% increased maximum Life", + "8% increased maximum Mana" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27203" + }, + ["in"]= { + "11420" + } + }, + [27203]= { + ["skill"]= 27203, + ["name"]= "Heart and Soul", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeartandSoul.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Life", + "12% increased maximum Mana" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2292", + "48362" + } + }, + [27611]= { + ["skill"]= 27611, + ["name"]= "Lord of the Dead", + ["icon"]= "Art/2DArt/SkillIcons/passives/lordofthedead.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Minions have 15% increased maximum Life", + "Minions deal 20% increased Damage", + "+1 to Maximum number of Raised Zombies", + "+1 to Maximum number of Skeletons" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "32024", + "60554", + "19635" + }, + ["in"]= {} + }, + [40637]= { + ["skill"]= 40637, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions have 5% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 21, + ["out"]= {}, + ["in"]= { + "27929", + "25222" + } + }, + [9650]= { + ["skill"]= 9650, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions have 5% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 27, + ["out"]= { + "25222" + }, + ["in"]= { + "59650" + } + }, + [60554]= { + ["skill"]= 60554, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/miniondamageBlue.png", + ["stats"]= { + "Minions deal 15% increased Damage" + }, + ["group"]= 433, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= { + "32024", + "11420" + }, + ["in"]= { + "27611" + } + }, + [32024]= { + ["skill"]= 32024, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 10% increased maximum Life" + }, + ["group"]= 433, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= { + "27929" + }, + ["in"]= { + "27611", + "60554" + } + }, + [25222]= { + ["skill"]= 25222, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 24, + ["out"]= { + "40637" + }, + ["in"]= { + "9650" + } + }, + [11420]= { + ["skill"]= 11420, + ["name"]= "Arcanist's Dominion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalDominion2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "BlackOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "20% increased Spell Damage", + "5% increased Cast Speed", + "+20 to Intelligence" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 54, + ["out"]= { + "48362" + }, + ["in"]= { + "4397", + "4184", + "18866", + "60554", + "1346", + "21934", + "11128" + } + }, + [44723]= { + ["skill"]= 44723, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 67, + ["out"]= { + "19635" + }, + ["in"]= { + "1346", + "16790" + } + }, + [1346]= { + ["skill"]= 1346, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 64, + ["out"]= { + "11420", + "44723" + }, + ["in"]= { + "16790" + } + }, + [16790]= { + ["skill"]= 16790, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "25% increased Spell Critical Strike Chance" + }, + ["group"]= 433, + ["orbit"]= 5, + ["orbitIndex"]= 65, + ["out"]= { + "44723", + "1346" + }, + ["in"]= { + "53493" + } + }, + [21934]= { + ["skill"]= 21934, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 51, + ["out"]= { + "11420" + }, + ["in"]= { + "17579" + } + }, + [36774]= { + ["skill"]= 36774, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 45, + ["out"]= { + "17579" + }, + ["in"]= { + "33296" + } + }, + [17579]= { + ["skill"]= 17579, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "10% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 48, + ["out"]= { + "21934" + }, + ["in"]= { + "36774" + } + }, + [33296]= { + ["skill"]= 33296, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "12% increased Spell Damage" + }, + ["group"]= 433, + ["orbit"]= 6, + ["orbitIndex"]= 42, + ["out"]= { + "1957", + "36774" + }, + ["in"]= { + "57264" + } + }, + [11659]= { + ["skill"]= 11659, + ["name"]= "Avoid Interruption while Casting and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "27929", + "8135" + }, + ["in"]= {} + }, + [11128]= { + ["skill"]= 11128, + ["name"]= "Avoid Interruption while Casting and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "+3% to all Elemental Resistances", + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11420" + }, + ["in"]= { + "8135" + } + }, + [8135]= { + ["skill"]= 8135, + ["name"]= "Practical Application", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "VioletOil" + }, + ["grantedStrength"]= 20, + ["grantedDexterity"]= 20, + ["stats"]= { + "+10% to all Elemental Resistances", + "25% chance to Ignore Stuns while Casting", + "+20 to Strength and Dexterity" + }, + ["group"]= 433, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "11128" + }, + ["in"]= { + "11659" + } + }, + [57226]= { + ["skill"]= 57226, + ["name"]= "Energy Shield and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+14 to maximum Energy Shield", + "+16 to maximum Mana" + }, + ["group"]= 434, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "21678", + "54447" + }, + ["in"]= { + "56722", + "59650" + } + }, + [57264]= { + ["skill"]= 57264, + ["name"]= "Spell Damage and Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "16% increased Spell Damage", + "+16 to maximum Mana" + }, + ["group"]= 434, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "33296" + }, + ["in"]= { + "56722", + "37569", + "54447" + } + }, + [54447]= { + ["skill"]= 54447, + ["name"]= "WITCH", + ["icon"]= "Art/2DArt/SkillIcons/passives/blankInt.png", + ["stats"]= {}, + ["classStartIndex"]= 3, + ["group"]= 434, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "57264", + "60791", + "16023", + "18378" + }, + ["in"]= { + "57226" + } + }, + [62596]= { + ["skill"]= 62596, + ["name"]= "Mystic Talents", + ["icon"]= "Art/2DArt/SkillIcons/passives/EyesOfTheSavant.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "OpalescentOil" + }, + ["grantedIntelligence"]= 30, + ["stats"]= { + "16% increased Spell Damage", + "+14 to maximum Energy Shield", + "25% increased Mana Regeneration Rate", + "+30 to Intelligence" + }, + ["group"]= 435, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [33722]= { + ["skill"]= 33722, + ["name"]= "Hollow Effigy", + ["icon"]= "Art/2DArt/SkillIcons/passives/NecromancerAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Your Offering Skills do not require a Corpse" + }, + ["group"]= 436, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [27781]= { + ["skill"]= 27781, + ["name"]= "Worship the Blightheart", + ["icon"]= "Art/2DArt/SkillIcons/passives/AnointOnlyKeystone.png", + ["isKeystone"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "PrismaticOil", + "PrismaticOil" + }, + ["stats"]= { + "Create Fungal Ground instead of Consecrated Ground" + }, + ["reminderText"]= { + "(Allies on your Consecrated Ground Regenerate a percentage of their Maximum Life per second, and Curses have 50% reduced effect on them)", + "(Allies on your Fungal Ground have +25% to Chaos Resistance. Enemies on your Fungal Ground have -10% to all Resistances.)" + }, + ["flavourText"]= { + "You can feel the fungus growing in your skull,", + "bringing not pain, but religious ecstasy." + }, + ["group"]= 437, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [18302]= { + ["skill"]= 18302, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "34009", + "48438" + } + }, + [25933]= { + ["skill"]= 25933, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "48438", + "48807" + } + }, + [48438]= { + ["skill"]= 48438, + ["name"]= "Bravery", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeArmourAndEvasion.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "24% increased Evasion Rating and Armour", + "8% increased maximum Life" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "25933", + "18302" + }, + ["in"]= {} + }, + [50360]= { + ["skill"]= 50360, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "34009", + "54776" + } + }, + [28265]= { + ["skill"]= 28265, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "48807", + "54776" + }, + ["in"]= {} + }, + [54776]= { + ["skill"]= 54776, + ["name"]= "Mana Flows", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaconduit.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "OpalescentOil", + "GoldenOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "16% increased maximum Mana", + "30% increased Mana Regeneration Rate", + "+20 to Intelligence" + }, + ["group"]= 438, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50360" + }, + ["in"]= { + "28265" + } + }, + [39725]= { + ["skill"]= 39725, + ["name"]= "Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "6% increased Attack Speed", + "+25 to Accuracy Rating" + }, + ["group"]= 439, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "63649", + "24377" + }, + ["in"]= { + "63357", + "50986" + } + }, + [50986]= { + ["skill"]= 50986, + ["name"]= "DUELIST", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwield.png", + ["stats"]= {}, + ["classStartIndex"]= 4, + ["group"]= 439, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39725", + "32730", + "24984", + "33795" + }, + ["in"]= { + "47389" + } + }, + [47389]= { + ["skill"]= 47389, + ["name"]= "Physical Attack Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["stats"]= { + "14% increased Attack Physical Damage", + "+14 to maximum Life" + }, + ["group"]= 439, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "50986", + "42911", + "5612" + }, + ["in"]= { + "63357" + } + }, + [35568]= { + ["skill"]= 35568, + ["name"]= "Armour, Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + }, + ["group"]= 440, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "59718" + }, + ["in"]= { + "5612", + "50306", + "24377" + } + }, + [59718]= { + ["skill"]= 59718, + ["name"]= "Armour, Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + }, + ["group"]= 440, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "51856", + "35568" + } + }, + [50306]= { + ["skill"]= 50306, + ["name"]= "Armour, Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "6% increased Evasion Rating and Armour", + "4% increased maximum Life" + }, + ["group"]= 440, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "35568" + }, + ["in"]= { + "45227" + } + }, + [56001]= { + ["skill"]= 56001, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 441, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "17201", + "34031" + }, + ["in"]= { + "11859" + } + }, + [16544]= { + ["skill"]= 16544, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 442, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "8544", + "24083", + "65485", + "57449" + }, + ["in"]= { + "18103" + } + }, + [60090]= { + ["skill"]= 60090, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "13322", + "46092" + }, + ["in"]= { + "3452" + } + }, + [14211]= { + ["skill"]= 14211, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "42731" + }, + ["in"]= { + "22473" + } + }, + [42731]= { + ["skill"]= 42731, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "14211", + "37078" + } + }, + [22473]= { + ["skill"]= 22473, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "10490", + "14211" + }, + ["in"]= { + "3452" + } + }, + [14182]= { + ["skill"]= 14182, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "13322", + "37078" + } + }, + [13322]= { + ["skill"]= 13322, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "14182" + }, + ["in"]= { + "60090" + } + }, + [3452]= { + ["skill"]= 3452, + ["name"]= "Foresight", + ["icon"]= "Art/2DArt/SkillIcons/passives/foresight.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "+20 to maximum Energy Shield", + "14% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "60090", + "22473", + "18240" + }, + ["in"]= {} + }, + [18240]= { + ["skill"]= 18240, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 443, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3452", + "37078" + } + }, + [37078]= { + ["skill"]= 37078, + ["name"]= "Path of the Savant", + ["icon"]= "Art/2DArt/SkillIcons/passives/SavantPath.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "VerdantOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "16% increased Spell Damage", + "+20 to maximum Mana", + "+20 to Intelligence" + }, + ["group"]= 443, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "18240", + "42731", + "14182" + }, + ["in"]= { + "8643" + } + }, + [22497]= { + ["skill"]= 22497, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed" + }, + ["group"]= 444, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "2151", + "8643" + }, + ["in"]= {} + }, + [8643]= { + ["skill"]= 8643, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed" + }, + ["group"]= 444, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "37078", + "63845" + }, + ["in"]= { + "22497" + } + }, + [63845]= { + ["skill"]= 63845, + ["name"]= "Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed" + }, + ["group"]= 444, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "8643", + "47062" + } + }, + [15144]= { + ["skill"]= 15144, + ["name"]= "Attack Speed and Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["grantedDexterity"]= 5, + ["stats"]= { + "4% increased Attack Speed", + "+5 to Dexterity" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "58833", + "3992" + }, + ["in"]= { + "35179", + "918" + } + }, + [55373]= { + ["skill"]= 55373, + ["name"]= "Life and Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["grantedStrength"]= 5, + ["stats"]= { + "+12 to maximum Life", + "+5 to Strength" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "58833", + "38048", + "17674" + }, + ["in"]= {} + }, + [2151]= { + ["skill"]= 2151, + ["name"]= "Mana Regeneration and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["grantedIntelligence"]= 5, + ["stats"]= { + "20% increased Mana Regeneration Rate", + "+5 to Intelligence" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "58833", + "37690", + "5560" + }, + ["in"]= { + "22497" + } + }, + [48828]= { + ["skill"]= 48828, + ["name"]= "Physical Damage and Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNode.png", + ["grantedStrength"]= 5, + ["stats"]= { + "+5 to Strength", + "10% increased Physical Damage" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "58833", + "62662", + "45887", + "33508" + }, + ["in"]= {} + }, + [62103]= { + ["skill"]= 62103, + ["name"]= "Projectile Damage and Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["grantedDexterity"]= 5, + ["stats"]= { + "10% increased Projectile Damage", + "+5 to Dexterity" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "58833", + "39773", + "60532" + }, + ["in"]= {} + }, + [58833]= { + ["skill"]= 58833, + ["name"]= "Seven", + ["icon"]= "Art/2DArt/SkillIcons/passives/tempdex.png", + ["stats"]= {}, + ["classStartIndex"]= 0, + ["group"]= 445, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35754", + "15726" + }, + ["in"]= { + "10108", + "15144", + "55373", + "2151", + "48828", + "62103", + "47062" + } + }, + [47062]= { + ["skill"]= 47062, + ["name"]= "Spell Damage and Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["grantedIntelligence"]= 5, + ["stats"]= { + "10% increased Spell Damage", + "+5 to Intelligence" + }, + ["group"]= 445, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "58833", + "56153", + "63845" + }, + ["in"]= {} + }, + [7903]= { + ["skill"]= 7903, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 446, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "20310" + } + }, + [20310]= { + ["skill"]= 20310, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 446, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "7903" + }, + ["in"]= { + "45887" + } + }, + [45887]= { + ["skill"]= 45887, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/shieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 446, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "20310" + }, + ["in"]= { + "48828" + } + }, + [36881]= { + ["skill"]= 36881, + ["name"]= "Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/coldresist.png", + ["stats"]= { + "+18% to Cold Resistance" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35503", + "31683" + }, + ["in"]= { + "33508" + } + }, + [33508]= { + ["skill"]= 33508, + ["name"]= "Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/fireresist.png", + ["stats"]= { + "+18% to Fire Resistance" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "36881" + }, + ["in"]= { + "48828" + } + }, + [31683]= { + ["skill"]= 31683, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 446, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "43162" + }, + ["in"]= { + "36881" + } + }, + [35503]= { + ["skill"]= 35503, + ["name"]= "Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningstr.png", + ["stats"]= { + "+18% to Lightning Resistance" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "19144" + }, + ["in"]= { + "36881" + } + }, + [43162]= { + ["skill"]= 43162, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "8% increased Projectile Damage" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "23122" + }, + ["in"]= { + "31683", + "39773" + } + }, + [39773]= { + ["skill"]= 39773, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "8% increased Projectile Damage" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "43162" + }, + ["in"]= { + "62103" + } + }, + [23122]= { + ["skill"]= 23122, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "8% increased Projectile Damage" + }, + ["group"]= 446, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "43162", + "19144" + } + }, + [19144]= { + ["skill"]= 19144, + ["name"]= "Sentinel", + ["icon"]= "Art/2DArt/SkillIcons/passives/Sentinel.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "24% increased Evasion Rating and Armour", + "+10% to all Elemental Resistances" + }, + ["group"]= 447, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "16167", + "23122" + }, + ["in"]= { + "28330", + "35503" + } + }, + [41169]= { + ["skill"]= 41169, + ["name"]= "Jagged Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/SlayerAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Maximum total Life Recovery per second from\nLeech if you've dealt a Critical Strike recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 448, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [57011]= { + ["skill"]= 57011, + ["name"]= "Stun Duration per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "5% increased Stun Duration on Enemies per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "32690" + }, + ["in"]= { + "65485" + } + }, + [65485]= { + ["skill"]= 65485, + ["name"]= "Armour per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "5% increased Armour per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "57011" + }, + ["in"]= { + "16544" + } + }, + [32690]= { + ["skill"]= 32690, + ["name"]= "Area of Effect per Endurance Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "3% increased Area of Effect per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "64882" + }, + ["in"]= { + "57011" + } + }, + [64882]= { + ["skill"]= 64882, + ["name"]= "Disciple of the Unyielding", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+1 to Minimum Endurance Charges", + "8% chance to gain an Endurance Charge on Kill", + "8% increased Damage per Endurance Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "4707" + }, + ["in"]= { + "32690" + } + }, + [23951]= { + ["skill"]= 23951, + ["name"]= "Movement Speed per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "2% increased Movement Speed per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "16213" + }, + ["in"]= { + "57449" + } + }, + [57449]= { + ["skill"]= 57449, + ["name"]= "Evasion per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "5% increased Evasion Rating per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "23951" + }, + ["in"]= { + "16544" + } + }, + [16213]= { + ["skill"]= 16213, + ["name"]= "Attack Speed per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "2% increased Attack Speed per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "58921" + }, + ["in"]= { + "23951" + } + }, + [58921]= { + ["skill"]= 58921, + ["name"]= "Disciple of the Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/FrenzyChargeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "+1 to Minimum Frenzy Charges", + "8% chance to gain a Frenzy Charge on Kill", + "8% increased Damage per Frenzy Charge" + }, + ["group"]= 449, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "4707" + }, + ["in"]= { + "16213" + } + }, + [4707]= { + ["skill"]= 4707, + ["name"]= "Charge Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28720, + ["stats"]= { + "Cannot be Ignited while at maximum Endurance Charges" + } + }, + { + ["effect"]= 48661, + ["stats"]= { + "Cannot be Chilled while at maximum Frenzy Charges" + } + }, + { + ["effect"]= 14100, + ["stats"]= { + "Cannot be Shocked while at maximum Power Charges" + } + }, + { + ["effect"]= 29652, + ["stats"]= { + "100% increased Charge Duration" + } + }, + { + ["effect"]= 40307, + ["stats"]= { + "3% increased Damage per Endurance, Frenzy or Power Charge" + } + }, + { + ["effect"]= 19142, + ["stats"]= { + "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" + } + } + }, + ["stats"]= {}, + ["group"]= 449, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "64882", + "58921" + } + }, + [18103]= { + ["skill"]= 18103, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "16544", + "54127", + "37584" + }, + ["in"]= { + "23066" + } + }, + [37584]= { + ["skill"]= 37584, + ["name"]= "Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["stats"]= { + "20% increased Endurance Charge Duration" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "18103", + "4833" + } + }, + [49971]= { + ["skill"]= 49971, + ["name"]= "Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "20% increased Frenzy Charge Duration" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "23066" + }, + ["in"]= { + "11859" + } + }, + [54127]= { + ["skill"]= 54127, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 450, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11859" + }, + ["in"]= { + "18103" + } + }, + [4833]= { + ["skill"]= 4833, + ["name"]= "Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargestr.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "+1 to Maximum Endurance Charges" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "37584", + "11859" + }, + ["in"]= {} + }, + [23066]= { + ["skill"]= 23066, + ["name"]= "Savagery", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "18103" + }, + ["in"]= { + "49971" + } + }, + [11859]= { + ["skill"]= 11859, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 450, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "56001", + "49971" + }, + ["in"]= { + "54127", + "4833" + } + }, + [25456]= { + ["skill"]= 25456, + ["name"]= "Dervish", + ["icon"]= "Art/2DArt/SkillIcons/passives/bladebarrier.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 24% increased Damage while Dual Wielding", + "6% increased Attack Speed while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "4565" + }, + ["in"]= { + "24641" + } + }, + [3009]= { + ["skill"]= 3009, + ["name"]= "Dual Wield Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldaccuracy.png", + ["stats"]= { + "12% increased Accuracy Rating while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "24641" + }, + ["in"]= { + "22423" + } + }, + [24641]= { + ["skill"]= 24641, + ["name"]= "Dual Wield Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25456", + "48807" + }, + ["in"]= { + "3009" + } + }, + [22423]= { + ["skill"]= 22423, + ["name"]= "Dual Wield Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 12% increased Damage while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "3009", + "17201" + }, + ["in"]= { + "4565" + } + }, + [4565]= { + ["skill"]= 4565, + ["name"]= "Dual Wield Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddual.png", + ["stats"]= { + "4% increased Attack Speed while Dual Wielding" + }, + ["group"]= 451, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "22423" + }, + ["in"]= { + "25456" + } + }, + [40351]= { + ["skill"]= 40351, + ["name"]= "Roiling Tempest", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningPureElementalCasterKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "25% more Maximum Lightning Damage\n50% less Minimum Lightning Damage\nCannot deal non-Lightning Damage" + }, + ["flavourText"]= { + "Where you step, the sky darkens." + }, + ["group"]= 452, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4367" + } + }, + [32210]= { + ["skill"]= 32210, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 453, + ["orbit"]= 6, + ["orbitIndex"]= 22, + ["out"]= { + "8948" + }, + ["in"]= { + "21678" + } + }, + [21678]= { + ["skill"]= 21678, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 453, + ["orbit"]= 6, + ["orbitIndex"]= 30, + ["out"]= { + "32210" + }, + ["in"]= { + "57226" + } + }, + [62694]= { + ["skill"]= 62694, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "5% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "45227" + }, + ["in"]= { + "56803" + } + }, + [45227]= { + ["skill"]= 45227, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "50306" + }, + ["in"]= { + "62694", + "48807" + } + }, + [24377]= { + ["skill"]= 24377, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "35568", + "56803" + }, + ["in"]= { + "39725" + } + }, + [56803]= { + ["skill"]= 56803, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "5% increased Attack Speed" + }, + ["group"]= 454, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62694" + }, + ["in"]= { + "24377" + } + }, + [57949]= { + ["skill"]= 57949, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 455, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59766" + } + }, + [11364]= { + ["skill"]= 11364, + ["name"]= "Faster Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "Damaging Ailments deal damage 5% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 455, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "8544" + }, + ["in"]= { + "43684" + } + }, + [43684]= { + ["skill"]= 43684, + ["name"]= "Faster Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "Damaging Ailments deal damage 5% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 455, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "11364" + }, + ["in"]= { + "59766" + } + }, + [59766]= { + ["skill"]= 59766, + ["name"]= "Dirty Techniques", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedPoison.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "Damaging Ailments deal damage 15% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 455, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "43684", + "57949" + }, + ["in"]= {} + }, + [38246]= { + ["skill"]= 38246, + ["name"]= "Presage", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldReservation.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "Herald Skills have 25% increased Area of Effect", + "20% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "39836" + }, + ["in"]= { + "51213" + } + }, + [60989]= { + ["skill"]= 60989, + ["name"]= "Herald Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldReservationNode.png", + ["stats"]= { + "10% increased Effect of Herald Buffs on you" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "63039", + "4367", + "36107" + }, + ["in"]= {} + }, + [63039]= { + ["skill"]= 63039, + ["name"]= "Herald Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldReservationNode.png", + ["stats"]= { + "10% increased Effect of Herald Buffs on you" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35233" + }, + ["in"]= { + "60989" + } + }, + [35233]= { + ["skill"]= 35233, + ["name"]= "Discord Artisan", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldDamageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "AzureOil" + }, + ["stats"]= { + "15% increased Damage for each Herald affecting you", + "20% increased Effect of Herald Buffs on you" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "39836" + }, + ["in"]= { + "63039" + } + }, + [51213]= { + ["skill"]= 51213, + ["name"]= "Reservation Efficiency of Heralds", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38246" + }, + ["in"]= { + "36107" + } + }, + [36107]= { + ["skill"]= 36107, + ["name"]= "Reservation Efficiency of Heralds", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Herald Skills" + }, + ["group"]= 456, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "51213", + "19501" + }, + ["in"]= { + "60989" + } + }, + [39836]= { + ["skill"]= 39836, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 456, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38246", + "35233" + } + }, + [50826]= { + ["skill"]= 50826, + ["name"]= "Mana and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "2% Chance to Block Spell Damage", + "5% increased maximum Mana" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "12913", + "18174" + }, + ["in"]= { + "19635" + } + }, + [18174]= { + ["skill"]= 18174, + ["name"]= "Mystic Bulwark", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandSpellBlock.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "6% Chance to Block Spell Damage", + "1% increased Mana Regeneration Rate per 1% Chance to Block Spell Damage" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "13862" + }, + ["in"]= { + "50826" + } + }, + [43000]= { + ["skill"]= 43000, + ["name"]= "Mana and Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "10% increased Spell Damage", + "5% increased maximum Mana" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "10115" + }, + ["in"]= { + "12913", + "11551" + } + }, + [12913]= { + ["skill"]= 12913, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "+20 to maximum Mana", + "10% increased maximum Mana" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "43000" + }, + ["in"]= { + "50826" + } + }, + [10115]= { + ["skill"]= 10115, + ["name"]= "Prodigal Perfection", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaandSpellDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "20% increased maximum Mana", + "2% increased Spell Damage per 100 Maximum Mana, up to 40%" + }, + ["group"]= 457, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "13862" + }, + ["in"]= { + "43000" + } + }, + [13862]= { + ["skill"]= 13862, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 457, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18174", + "10115" + } + }, + [49806]= { + ["skill"]= 49806, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 458, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "6580" + }, + ["in"]= { + "63649" + } + }, + [63649]= { + ["skill"]= 63649, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 458, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "49806" + }, + ["in"]= { + "39725" + } + }, + [17383]= { + ["skill"]= 17383, + ["name"]= "Mana and Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Area of Effect of Aura Skills" + }, + ["group"]= 459, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "14813" + }, + ["in"]= { + "17201" + } + }, + [58545]= { + ["skill"]= 58545, + ["name"]= "Mana and Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Area of Effect of Aura Skills" + }, + ["group"]= 459, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "8544" + }, + ["in"]= { + "14813" + } + }, + [14813]= { + ["skill"]= 14813, + ["name"]= "Revelry", + ["icon"]= "Art/2DArt/SkillIcons/passives/Revelry.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "+25 to maximum Mana", + "15% increased maximum Mana", + "10% increased Effect of Non-Curse Auras from your Skills on Enemies" + }, + ["group"]= 459, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58545", + "48859" + }, + ["in"]= { + "17383" + } + }, + [48859]= { + ["skill"]= 48859, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 459, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14813" + } + }, + [15085]= { + ["skill"]= 15085, + ["name"]= "Ambidexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ambidexterity.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "60% increased Attack Damage with Main Hand while Dual Wielding", + "30% increased Attack Speed with Off Hand while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "13807", + "51761" + }, + ["in"]= {} + }, + [54268]= { + ["skill"]= 54268, + ["name"]= "Blade Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/BladeBarrierNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while Dual Wielding", + "50% increased Block Recovery", + "Attack Skills deal 25% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "51761" + }, + ["in"]= { + "2392" + } + }, + [56231]= { + ["skill"]= 56231, + ["name"]= "Dual Wield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "2392" + }, + ["in"]= { + "49547" + } + }, + [2392]= { + ["skill"]= 2392, + ["name"]= "Dual Wield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 10% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "54268" + }, + ["in"]= { + "56231" + } + }, + [13807]= { + ["skill"]= 13807, + ["name"]= "Dual Wield Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "33089" + }, + ["in"]= { + "15085" + } + }, + [33089]= { + ["skill"]= 33089, + ["name"]= "Dual Wield Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwieldgreen.png", + ["stats"]= { + "Attack Skills deal 10% increased Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding", + "Attack Skills deal 10% increased Damage with Ailments while Dual Wielding" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "13807", + "49547" + } + }, + [49547]= { + ["skill"]= 49547, + ["name"]= "Dual Wield Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagedualwield.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 8% increased Damage while Dual Wielding" + }, + ["group"]= 460, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "33089", + "56231" + }, + ["in"]= { + "8544" + } + }, + [51761]= { + ["skill"]= 51761, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 460, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15085", + "54268" + } + }, + [29993]= { + ["skill"]= 29993, + ["name"]= "Duration Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryDuration.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDurationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 17852, + ["stats"]= { + "10% more Skill Effect Duration" + } + }, + { + ["effect"]= 21730, + ["stats"]= { + "10% less Skill Effect Duration" + } + }, + { + ["effect"]= 24352, + ["stats"]= { + "Debuffs on you expire 15% faster" + } + }, + { + ["effect"]= 14881, + ["stats"]= { + "20% reduced Elemental Ailment Duration on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 461, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4207", + "53042" + } + }, + [52099]= { + ["skill"]= 52099, + ["name"]= "Reduced Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + ["stats"]= { + "5% reduced Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "4207" + }, + ["in"]= { + "14090" + } + }, + [14090]= { + ["skill"]= 14090, + ["name"]= "Reduced Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.png", + ["stats"]= { + "5% reduced Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52099" + }, + ["in"]= { + "16167" + } + }, + [4207]= { + ["skill"]= 4207, + ["name"]= "Window of Opportunity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "15% reduced Skill Effect Duration", + "Debuffs on you expire 15% faster" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "29993" + }, + ["in"]= { + "52099" + } + }, + [22893]= { + ["skill"]= 22893, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "53042" + }, + ["in"]= { + "24472" + } + }, + [24472]= { + ["skill"]= 24472, + ["name"]= "Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/skillduration.png", + ["stats"]= { + "10% increased Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "22893" + }, + ["in"]= { + "16167" + } + }, + [53042]= { + ["skill"]= 53042, + ["name"]= "Exceptional Performance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ExceptionalPerformance.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "BlackOil" + }, + ["stats"]= { + "25% increased Skill Effect Duration" + }, + ["group"]= 461, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "29993" + }, + ["in"]= { + "22893" + } + }, + [16167]= { + ["skill"]= 16167, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 462, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "10829", + "14090", + "24472" + }, + ["in"]= { + "19144" + } + }, + [10829]= { + ["skill"]= 10829, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 462, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "32091", + "18402", + "41967" + }, + ["in"]= { + "16167", + "56116", + "238" + } + }, + [35179]= { + ["skill"]= 35179, + ["name"]= "Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + ["stats"]= { + "3% increased Movement Speed" + }, + ["group"]= 463, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "15144", + "9009" + }, + ["in"]= {} + }, + [60532]= { + ["skill"]= 60532, + ["name"]= "Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + ["stats"]= { + "3% increased Movement Speed" + }, + ["group"]= 463, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "62103", + "9009" + } + }, + [9009]= { + ["skill"]= 9009, + ["name"]= "Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/increasedrunspeeddex.png", + ["stats"]= { + "3% increased Movement Speed" + }, + ["group"]= 463, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "19506", + "60532" + }, + ["in"]= { + "35179" + } + }, + [17201]= { + ["skill"]= 17201, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 464, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "17383" + }, + ["in"]= { + "56001", + "22423", + "36222", + "29185", + "19711" + } + }, + [48807]= { + ["skill"]= 48807, + ["name"]= "Art of the Gladiator", + ["icon"]= "Art/2DArt/SkillIcons/passives/newnewattackspeed.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "OpalescentOil", + "GoldenOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "10% increased Attack Speed", + "Ignore all Movement Penalties from Armour", + "+20 to Dexterity", + "10% increased Accuracy Rating" + }, + ["group"]= 465, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "45227", + "25933", + "6580" + }, + ["in"]= { + "28265", + "24641", + "30155" + } + }, + [56146]= { + ["skill"]= 56146, + ["name"]= "Deliberate Brutality", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChampionAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "Impales you inflict gain 50% increased Effect once 1 second of Duration has expired" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 466, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [41967]= { + ["skill"]= 41967, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 467, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "21634" + }, + ["in"]= { + "10829", + "17546" + } + }, + [17546]= { + ["skill"]= 17546, + ["name"]= "Mana and Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "10% increased maximum Mana", + "15% increased Mana Recovery from Flasks" + }, + ["group"]= 467, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "41967", + "21634" + }, + ["in"]= {} + }, + [21634]= { + ["skill"]= 21634, + ["name"]= "Arcane Chemistry", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArcaneChemistry.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "15% increased maximum Mana", + "30% increased Mana Recovery from Flasks", + "Mana Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 467, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45019" + }, + ["in"]= { + "41967", + "17546" + } + }, + [45019]= { + ["skill"]= 45019, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 467, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21634" + } + }, + [40705]= { + ["skill"]= 40705, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+5% to Cold Damage over Time Multiplier" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "53732" + }, + ["in"]= { + "36226" + } + }, + [36226]= { + ["skill"]= 36226, + ["name"]= "Cold Damage and Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "10% increased Cold Damage", + "10% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40705", + "12439" + }, + ["in"]= { + "5972" + } + }, + [40609]= { + ["skill"]= 40609, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "22090" + }, + ["in"]= { + "8833" + } + }, + [12439]= { + ["skill"]= 12439, + ["name"]= "Cold Damage and Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "10% increased Cold Damage", + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "21460" + }, + ["in"]= { + "36226" + } + }, + [22090]= { + ["skill"]= 22090, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "36412" + }, + ["in"]= { + "40609" + } + }, + [5972]= { + ["skill"]= 5972, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "19501", + "36226" + }, + ["in"]= { + "36412" + } + }, + [36412]= { + ["skill"]= 36412, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "5972" + }, + ["in"]= { + "22090" + } + }, + [53732]= { + ["skill"]= 53732, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+5% to Cold Damage over Time Multiplier" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "21460" + }, + ["in"]= { + "40705" + } + }, + [21460]= { + ["skill"]= 21460, + ["name"]= "Breath of Rime", + ["icon"]= "Art/2DArt/SkillIcons/passives/BreathofRime2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Cold Damage", + "50% increased Duration of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 468, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "60170" + }, + ["in"]= { + "12439", + "53732" + } + }, + [8833]= { + ["skill"]= 8833, + ["name"]= "Heart of Ice", + ["icon"]= "Art/2DArt/SkillIcons/passives/iceheart.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Cold Damage", + "Damage Penetrates 6% Cold Resistance" + }, + ["group"]= 468, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "40609", + "60170" + }, + ["in"]= {} + }, + [60170]= { + ["skill"]= 60170, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 468, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21460", + "8833" + } + }, + [24334]= { + ["skill"]= 24334, + ["name"]= "Link Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLinkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59815, + ["stats"]= { + "Enemies in your Link Beams cannot apply Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 26985, + ["stats"]= { + "Enemies near your Linked targets have Fire, Cold and Lightning Exposure" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance)" + } + }, + { + ["effect"]= 18365, + ["stats"]= { + "Links take twice as long to break" + } + }, + { + ["effect"]= 46059, + ["stats"]= { + "Link Skills Link to 1 additional random target" + } + }, + { + ["effect"]= 64655, + ["stats"]= { + "Linked targets share Endurance, Frenzy and Power Charges with you" + } + }, + { + ["effect"]= 18435, + ["stats"]= { + "Your Movement Speed is equal to the highest Movement Speed among Linked Players" + } + } + }, + ["stats"]= {}, + ["group"]= 469, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44788" + } + }, + [57565]= { + ["skill"]= 57565, + ["name"]= "Link Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Link Skills" + }, + ["group"]= 469, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2348", + "18033" + }, + ["in"]= {} + }, + [2348]= { + ["skill"]= 2348, + ["name"]= "Link Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLinknode1.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Link Skills" + }, + ["group"]= 469, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "44788" + }, + ["in"]= { + "57565" + } + }, + [44788]= { + ["skill"]= 44788, + ["name"]= "Potent Connections", + ["icon"]= "Art/2DArt/SkillIcons/passives/clustersLink2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "VioletOil" + }, + ["stats"]= { + "25% increased Defences while you have at least four Linked targets", + "10% increased Movement Speed while you have at least two Linked targets" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + }, + ["group"]= 469, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "24334" + }, + ["in"]= { + "2348" + } + }, + [60002]= { + ["skill"]= 60002, + ["name"]= "Fury Bolts", + ["icon"]= "Art/2DArt/SkillIcons/passives/furybolts.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "TealOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "20% increased Projectile Speed", + "20% increased Projectile Damage", + "+20 to Strength" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "52632" + }, + ["in"]= { + "30155" + } + }, + [52632]= { + ["skill"]= 52632, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "36222" + }, + ["in"]= { + "60002" + } + }, + [36222]= { + ["skill"]= 36222, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "47030", + "17201" + }, + ["in"]= { + "52632" + } + }, + [47030]= { + ["skill"]= 47030, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "30155" + }, + ["in"]= { + "36222" + } + }, + [30155]= { + ["skill"]= 30155, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 470, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "60002", + "48807" + }, + ["in"]= { + "47030" + } + }, + [34907]= { + ["skill"]= 34907, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 471, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "45067", + "46092" + }, + ["in"]= { + "28424" + } + }, + [28424]= { + ["skill"]= 28424, + ["name"]= "Mana and Mana on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "10% increased maximum Mana", + "Gain 15 Mana per Enemy Killed" + }, + ["group"]= 471, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "34907" + }, + ["in"]= { + "45067" + } + }, + [45067]= { + ["skill"]= 45067, + ["name"]= "Thrill Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/ThrillKiller.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "TealOil" + }, + ["stats"]= { + "16% increased maximum Mana", + "Recover 2% of Mana on Kill" + }, + ["group"]= 471, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "28424", + "48007" + }, + ["in"]= { + "34907" + } + }, + [48007]= { + ["skill"]= 48007, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 471, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45067" + } + }, + [60247]= { + ["skill"]= 60247, + ["name"]= "Solipsism", + ["icon"]= "Art/2DArt/SkillIcons/passives/Resilience.png", + ["isKeystone"]= true, + ["stats"]= { + "Intelligence provides no inherent bonus to Energy Shield\n2% reduced Duration of Elemental Ailments on you per 15 Intelligence" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["flavourText"]= { + "To know yourself is to understand existence - and understanding brings control." + }, + ["group"]= 472, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46092" + } + }, + [3992]= { + ["skill"]= 3992, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 473, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "49807" + }, + ["in"]= { + "15144" + } + }, + [49807]= { + ["skill"]= 49807, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 473, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "37575" + }, + ["in"]= { + "3992" + } + }, + [37575]= { + ["skill"]= 37575, + ["name"]= "Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "12% increased Accuracy Rating" + }, + ["group"]= 473, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "49807" + } + }, + [918]= { + ["skill"]= 918, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "28221", + "15144" + }, + ["in"]= {} + }, + [28221]= { + ["skill"]= 28221, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "24643" + }, + ["in"]= { + "918", + "48768" + } + }, + [24643]= { + ["skill"]= 24643, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "3% increased Attack Speed" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33545" + }, + ["in"]= { + "28221" + } + }, + [48768]= { + ["skill"]= 48768, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 473, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "28221" + }, + ["in"]= { + "11688" + } + }, + [45456]= { + ["skill"]= 45456, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "8% increased Spell Damage" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "33545" + }, + ["in"]= { + "11688" + } + }, + [56153]= { + ["skill"]= 56153, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "8% increased Spell Damage" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "11688" + }, + ["in"]= { + "47062" + } + }, + [11688]= { + ["skill"]= 11688, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "8% increased Spell Damage" + }, + ["group"]= 473, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "45456", + "48768" + }, + ["in"]= { + "56153" + } + }, + [8544]= { + ["skill"]= 8544, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 474, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "29937", + "38772", + "49547" + }, + ["in"]= { + "16544", + "11364", + "58545", + "10661" + } + }, + [56116]= { + ["skill"]= 56116, + ["name"]= "Magebane", + ["icon"]= "Art/2DArt/SkillIcons/passives/Deaden.png", + ["isKeystone"]= true, + ["stats"]= { + "Dexterity provides no inherent bonus to Evasion Rating\n+1% Chance to Suppress Spell Damage per 15 Dexterity" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["flavourText"]= { + "To avert a mystical assault, you must be absolutely still." + }, + ["group"]= 475, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10829" + }, + ["in"]= {} + }, + [39338]= { + ["skill"]= 39338, + ["name"]= "Two Hand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTwoHandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 35582, + ["stats"]= { + "3% chance to deal Triple Damage" + } + }, + { + ["effect"]= 27095, + ["stats"]= { + "40% increased Damage with Hits against Rare and Unique Enemies" + } + }, + { + ["effect"]= 31564, + ["stats"]= { + "30% increased Armour and Evasion Rating if your Main Hand Weapon\nhas a Red and Green Socket" + } + }, + { + ["effect"]= 31038, + ["stats"]= { + "15% more Stun Duration with Two Handed Weapons" + } + }, + { + ["effect"]= 1626, + ["stats"]= { + "Attacks with Two Handed Weapons deal 60% increased Damage with Hits and Ailments", + "10% reduced Attack Speed" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 60246, + ["stats"]= { + "Ruthless Hits Intimidate Enemies for 4 seconds" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + } + }, + ["stats"]= {}, + ["group"]= 476, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32059" + } + }, + [29185]= { + ["skill"]= 29185, + ["name"]= "Two Handed Melee Critical Strike Chance and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + ["stats"]= { + "8% increased Accuracy Rating with Two Handed Melee Weapons", + "20% increased Critical Strike Chance with Two Handed Melee Weapons" + }, + ["group"]= 476, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "58803", + "17201" + }, + ["in"]= {} + }, + [58803]= { + ["skill"]= 58803, + ["name"]= "Two Handed Melee Critical Strike Chance and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + ["stats"]= { + "8% increased Accuracy Rating with Two Handed Melee Weapons", + "20% increased Critical Strike Chance with Two Handed Melee Weapons" + }, + ["group"]= 476, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "32059" + }, + ["in"]= { + "29185" + } + }, + [32059]= { + ["skill"]= 32059, + ["name"]= "Titanic Impacts", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "OpalescentOil" + }, + ["stats"]= { + "+45% to Critical Strike Multiplier with Two Handed Melee Weapons" + }, + ["group"]= 476, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "39338" + }, + ["in"]= { + "58803" + } + }, + [56274]= { + ["skill"]= 56274, + ["name"]= "Lasting Tempest", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalistAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 477, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [19501]= { + ["skill"]= 19501, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 478, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12128" + }, + ["in"]= { + "4367", + "36107", + "5972", + "35730", + "15167", + "5296" + } + }, + [46111]= { + ["skill"]= 46111, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "34225" + }, + ["in"]= { + "34591" + } + }, + [34591]= { + ["skill"]= 34591, + ["name"]= "Malicious Intent", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "+2 to Level of all Curse Skill Gems" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "23796", + "51382", + "46111" + }, + ["in"]= {} + }, + [35730]= { + ["skill"]= 35730, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "19501", + "51382" + }, + ["in"]= { + "34225" + } + }, + [51382]= { + ["skill"]= 51382, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "34591", + "35730" + } + }, + [34225]= { + ["skill"]= 34225, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 479, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "35730" + }, + ["in"]= { + "46111" + } + }, + [23796]= { + ["skill"]= 23796, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 479, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34591" + } + }, + [11551]= { + ["skill"]= 11551, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 480, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "43000" + }, + ["in"]= { + "19635", + "22315", + "50472", + "38176" + } + }, + [42795]= { + ["skill"]= 42795, + ["name"]= "Arcane Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcane focus.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "CrimsonOil" + }, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased maximum Energy Shield", + "10% faster start of Energy Shield Recharge", + "+10 to Intelligence" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "13753", + "4432" + } + }, + [13753]= { + ["skill"]= 13753, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "42795", + "22315" + }, + ["in"]= {} + }, + [7503]= { + ["skill"]= 7503, + ["name"]= "Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "15% increased Energy Shield Recharge Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "65203", + "4432" + }, + ["in"]= { + "27929" + } + }, + [4432]= { + ["skill"]= 4432, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "6% increased maximum Energy Shield" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "42795" + }, + ["in"]= { + "7503" + } + }, + [65203]= { + ["skill"]= 65203, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "27163" + }, + ["in"]= { + "7503" + } + }, + [48514]= { + ["skill"]= 48514, + ["name"]= "Mana and Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Mana Regeneration Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "22315" + }, + ["in"]= { + "27163" + } + }, + [27163]= { + ["skill"]= 27163, + ["name"]= "Arcane Will", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaDamageKeystone.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "SilverOil" + }, + ["grantedIntelligence"]= 10, + ["stats"]= { + "30% increased maximum Mana", + "Regenerate 5 Mana per second", + "+10 to Intelligence" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "48514" + }, + ["in"]= { + "65203" + } + }, + [22315]= { + ["skill"]= 22315, + ["name"]= "Mana Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/manaregeneration.png", + ["stats"]= { + "20% increased Mana Regeneration Rate" + }, + ["group"]= 481, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "11551" + }, + ["in"]= { + "13753", + "48514" + } + }, + [28863]= { + ["skill"]= 28863, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 482, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19730" + } + }, + [38772]= { + ["skill"]= 38772, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StancesNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 482, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "32053" + }, + ["in"]= { + "8544" + } + }, + [32053]= { + ["skill"]= 32053, + ["name"]= "Melee Damage and Strike Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/StancesNode.png", + ["stats"]= { + "10% increased Melee Damage", + "+0.1 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 482, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "19730" + }, + ["in"]= { + "38772" + } + }, + [19730]= { + ["skill"]= 19730, + ["name"]= "Assured Strike", + ["icon"]= "Art/2DArt/SkillIcons/passives/MeleeRange2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "24% increased Melee Damage", + "+0.4 metres to Melee Strike Range while at least 5 Enemies are Nearby" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 482, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "28863" + }, + ["in"]= { + "32053" + } + }, + [56128]= { + ["skill"]= 56128, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 483, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22972" + } + }, + [63067]= { + ["skill"]= 63067, + ["name"]= "Wand Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "10% increased Damage while wielding a Wand", + "4% increased Attack Speed with Wands" + }, + ["group"]= 483, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "22972" + }, + ["in"]= { + "50472" + } + }, + [50472]= { + ["skill"]= 50472, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "14% increased Damage while wielding a Wand" + }, + ["group"]= 483, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63067", + "11551" + }, + ["in"]= {} + }, + [22972]= { + ["skill"]= 22972, + ["name"]= "Wandslinger", + ["icon"]= "Art/2DArt/SkillIcons/passives/wandslingersprowess.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Damage while wielding a Wand", + "10% increased Attack Speed with Wands" + }, + ["group"]= 483, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "56128" + }, + ["in"]= { + "63067" + } + }, + [6580]= { + ["skill"]= 6580, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 484, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "19711" + }, + ["in"]= { + "49806", + "48807", + "11651" + } + }, + [34191]= { + ["skill"]= 34191, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 485, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "33582" + }, + ["in"]= { + "60529" + } + }, + [60529]= { + ["skill"]= 60529, + ["name"]= "Impale Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNode2.png", + ["stats"]= { + "10% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 485, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "34191" + }, + ["in"]= { + "19711" + } + }, + [33582]= { + ["skill"]= 33582, + ["name"]= "Forceful Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "15% chance to Impale Enemies on Hit with Attacks", + "10% increased Impale Effect" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + }, + ["group"]= 485, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "47059" + }, + ["in"]= { + "34191" + } + }, + [47059]= { + ["skill"]= 47059, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 485, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33582" + } + }, + [10661]= { + ["skill"]= 10661, + ["name"]= "Iron Reflexes", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.png", + ["isKeystone"]= true, + ["stats"]= { + "Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating" + }, + ["flavourText"]= { + "Why should I dodge blows that I do not fear?" + }, + ["group"]= 486, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "8544" + }, + ["in"]= {} + }, + [12128]= { + ["skill"]= 12128, + ["name"]= "Bitter Frost", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdPureElementalCasterKeystone.png", + ["isKeystone"]= true, + ["stats"]= { + "Enemies Chilled by your Hits have Cold Damage taken increased by Chill Effect\nEnemies in your Chilling Areas have Cold Damage taken increased by Chill Effect\nCannot deal non-Cold Damage" + }, + ["flavourText"]= { + "Chill them to the bone, that they might never know warmth again." + }, + ["group"]= 487, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19501" + } + }, + [19287]= { + ["skill"]= 19287, + ["name"]= "Life and Life on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "Gain 10 Life per Enemy Killed" + }, + ["group"]= 488, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "49379" + }, + ["in"]= { + "61875" + } + }, + [61875]= { + ["skill"]= 61875, + ["name"]= "Life and Life on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "Gain 10 Life per Enemy Killed" + }, + ["group"]= 488, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "19287" + }, + ["in"]= { + "28574" + } + }, + [49379]= { + ["skill"]= 49379, + ["name"]= "Hired Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/HiredKiller2.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "7% increased maximum Life", + "Recover 2% of Life on Kill" + }, + ["group"]= 488, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "38235" + }, + ["in"]= { + "19287" + } + }, + [38235]= { + ["skill"]= 38235, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 488, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49379" + } + }, + [33545]= { + ["skill"]= 33545, + ["name"]= "Harrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Harrier.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "8% increased Attack Speed", + "6% increased Cast Speed", + "5% increased Movement Speed" + }, + ["group"]= 489, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18033", + "28574" + }, + ["in"]= { + "24643", + "45456" + } + }, + [8948]= { + ["skill"]= 8948, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 490, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "27659", + "38176" + }, + ["in"]= { + "27929", + "32210" + } + }, + [8930]= { + ["skill"]= 8930, + ["name"]= "Life and Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Life Recovery from Flasks" + }, + ["group"]= 491, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42041" + }, + ["in"]= { + "18402" + } + }, + [18402]= { + ["skill"]= 18402, + ["name"]= "Life and Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "4% increased maximum Life", + "10% increased Life Recovery from Flasks" + }, + ["group"]= 491, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "8930" + }, + ["in"]= { + "10829" + } + }, + [42041]= { + ["skill"]= 42041, + ["name"]= "Profane Chemistry", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProfaneChemistry.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "7% increased maximum Life", + "30% increased Life Recovery from Flasks", + "Life Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 491, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "46665" + }, + ["in"]= { + "8930" + } + }, + [46665]= { + ["skill"]= 46665, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 491, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42041" + } + }, + [60204]= { + ["skill"]= 60204, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "19506" + }, + ["in"]= { + "17814" + } + }, + [17814]= { + ["skill"]= 17814, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "60204", + "32091" + }, + ["in"]= {} + }, + [8348]= { + ["skill"]= 8348, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "6534" + }, + ["in"]= { + "19506" + } + }, + [6534]= { + ["skill"]= 6534, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "20812" + }, + ["in"]= { + "8348" + } + }, + [20812]= { + ["skill"]= 20812, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "44103" + }, + ["in"]= { + "6534", + "51786" + } + }, + [50757]= { + ["skill"]= 50757, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 492, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19506", + "44103" + } + }, + [19506]= { + ["skill"]= 19506, + ["name"]= "Path of the Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Hunter.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "VerdantOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "+100 to Accuracy Rating", + "16% increased Projectile Damage", + "+20 to Dexterity" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "8348", + "50757" + }, + ["in"]= { + "9009", + "60204" + } + }, + [44103]= { + ["skill"]= 44103, + ["name"]= "Reflexes", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "+100 to Evasion Rating", + "30% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "50757" + }, + ["in"]= { + "20812", + "32091" + } + }, + [32091]= { + ["skill"]= 32091, + ["name"]= "Evasion and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage", + "12% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 492, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "44103" + }, + ["in"]= { + "10829", + "17814" + } + }, + [57736]= { + ["skill"]= 57736, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 493, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "7594", + "18033" + }, + ["in"]= {} + }, + [65097]= { + ["skill"]= 65097, + ["name"]= "Leadership", + ["icon"]= "Art/2DArt/SkillIcons/passives/leadership.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Area of Effect of Aura Skills", + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 493, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6507" + }, + ["in"]= { + "7594" + } + }, + [6507]= { + ["skill"]= 6507, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 493, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65097" + } + }, + [7594]= { + ["skill"]= 7594, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 493, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "65097" + }, + ["in"]= { + "57736" + } + }, + [59926]= { + ["skill"]= 59926, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 494, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "21602" + } + }, + [17849]= { + ["skill"]= 17849, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Mine Damage" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "33911" + }, + ["in"]= { + "57615", + "46092" + } + }, + [21602]= { + ["skill"]= 21602, + ["name"]= "Destructive Apparatus", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineTrap.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "SilverOil" + }, + ["stats"]= { + "60% increased Mine Duration", + "12% increased Mine Throwing Speed" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59926" + }, + ["in"]= { + "33911", + "57615" + } + }, + [33911]= { + ["skill"]= 33911, + ["name"]= "Mine Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "30% increased Mine Duration" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "21602" + }, + ["in"]= { + "17849" + } + }, + [57615]= { + ["skill"]= 57615, + ["name"]= "Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "5% increased Mine Throwing Speed" + }, + ["group"]= 494, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "17849", + "21602" + }, + ["in"]= {} + }, + [19711]= { + ["skill"]= 19711, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 495, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20010", + "17201", + "60529", + "8410" + }, + ["in"]= { + "6580", + "50041" + } + }, + [15167]= { + ["skill"]= 15167, + ["name"]= "Golem Life and Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GolemsNode.png", + ["stats"]= { + "20% increased Effect of Buffs granted by your Golems", + "Golems have 15% increased Maximum Life" + }, + ["group"]= 496, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "19501" + }, + ["in"]= { + "24872" + } + }, + [24872]= { + ["skill"]= 24872, + ["name"]= "Golem Life and Buff Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/GolemsNode.png", + ["stats"]= { + "20% increased Effect of Buffs granted by your Golems", + "Golems have 15% increased Maximum Life" + }, + ["group"]= 496, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15167", + "34506" + }, + ["in"]= {} + }, + [34506]= { + ["skill"]= 34506, + ["name"]= "Golem Commander", + ["icon"]= "Art/2DArt/SkillIcons/passives/GolemsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "40% increased Effect of Buffs granted by your Golems", + "+1 to maximum number of Summoned Golems" + }, + ["group"]= 496, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "26393" + }, + ["in"]= { + "24872" + } + }, + [26393]= { + ["skill"]= 26393, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 496, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34506" + } + }, + [46092]= { + ["skill"]= 46092, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 497, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "51923", + "17849", + "60247" + }, + ["in"]= { + "60090", + "34907", + "18033" + } + }, + [18033]= { + ["skill"]= 18033, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 497, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "46092" + }, + ["in"]= { + "57565", + "33545", + "57736" + } + }, + [18663]= { + ["skill"]= 18663, + ["name"]= "Minion Instability", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneMinionInstability.png", + ["isKeystone"]= true, + ["stats"]= { + "Minions Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies" + }, + ["flavourText"]= { + "Even in death, they have their uses. They just need a little encouragement." + }, + ["group"]= 498, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38176" + }, + ["in"]= {} + }, + [55646]= { + ["skill"]= 55646, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "54159", + "14603" + }, + ["in"]= {} + }, + [48719]= { + ["skill"]= 48719, + ["name"]= "Mistress of Sacrifice", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/GiftsOfTheDamned.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Your Offering Skills also affect you", + "Your Offerings have 50% reduced Effect on you" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "18309" + } + }, + [3554]= { + ["skill"]= 3554, + ["name"]= "Essence Glutton", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/EssenceGlutton.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse", + "Regenerate 4% of Mana over 2 seconds when you Consume a corpse" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 25, + ["out"]= {}, + ["in"]= { + "18574" + } + }, + [36017]= { + ["skill"]= 36017, + ["name"]= "Commander of Darkness", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CommandingTheDarkness.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Auras from your Skills grant 3% increased Attack and Cast\nSpeed to you and Allies", + "You and nearby Allies have +20% to Elemental Resistances" + }, + ["reminderText"]= { + "(Auras can only grant bonuses to things they affect)" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= {}, + ["in"]= { + "5415" + } + }, + [26298]= { + ["skill"]= 26298, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "54159" + }, + ["in"]= { + "60791" + } + }, + [11490]= { + ["skill"]= 11490, + ["name"]= "Plaguebringer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/PlagueBringer.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "For each nearby corpse, you and nearby Allies deal 1% more Damage, up to a maximum of 10%" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "23509" + }, + ["in"]= { + "60547" + } + }, + [23509]= { + ["skill"]= 23509, + ["name"]= "Minion Damage, Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "4% increased Cast Speed", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 15, + ["out"]= { + "23572" + }, + ["in"]= { + "11490" + } + }, + [23572]= { + ["skill"]= 23572, + ["name"]= "Corpse Pact", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNotable2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Nearby Enemies are Chilled and Shocked while you are near a corpse" + }, + ["reminderText"]= { + "(Shock increases Damage taken by 15%)", + "(Chill reduces Enemy Action Speed by 10%)" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "23509" + } + }, + [18309]= { + ["skill"]= 18309, + ["name"]= "Minion Damage, Skill Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "10% increased Skill Effect Duration", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "48719" + }, + ["in"]= { + "60791" + } + }, + [60547]= { + ["skill"]= 60547, + ["name"]= "Minion Damage, Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/CorpseConsumptionNode.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "4% increased Cast Speed", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "11490" + }, + ["in"]= { + "60791" + } + }, + [39818]= { + ["skill"]= 39818, + ["name"]= "Minion Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedMinionLife.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "65153" + }, + ["in"]= { + "54159" + } + }, + [18574]= { + ["skill"]= 18574, + ["name"]= "Minion Damage, Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/ManaNode.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "8% increased maximum Mana", + "Minions deal 10% increased Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "3554" + }, + ["in"]= { + "60791" + } + }, + [5415]= { + ["skill"]= 5415, + ["name"]= "Minion Damage, Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/IncreasedMinionDamageIncreasedSkillDuration.png", + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions deal 10% increased Damage", + "5% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "36017" + }, + ["in"]= { + "60791" + } + }, + [54159]= { + ["skill"]= 54159, + ["name"]= "Mindless Aggression", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/GenericMinionNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have 10% more Maximum Life", + "Minions deal 8% more Damage" + }, + ["group"]= 499, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "39818" + }, + ["in"]= { + "55646", + "26298" + } + }, + [65153]= { + ["skill"]= 65153, + ["name"]= "Unnatural Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/OffensiveMinionNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "Minions have Unholy Might" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= {}, + ["in"]= { + "39818" + } + }, + [14603]= { + ["skill"]= 14603, + ["name"]= "Bone Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Necromancer/DefensiveMinionNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Necromancer", + ["stats"]= { + "1% of Damage Dealt by your Minions is Leeched to you as Life", + "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield" + }, + ["group"]= 499, + ["orbit"]= 4, + ["orbitIndex"]= 18, + ["out"]= {}, + ["in"]= { + "55646" + } + }, + [60791]= { + ["skill"]= 60791, + ["name"]= "Necromancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Necromancer", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 499, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "26298", + "60547", + "18309", + "18574", + "5415" + }, + ["in"]= { + "54447" + } + }, + [58214]= { + ["skill"]= 58214, + ["name"]= "Dual Wield Attack Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "51976" + }, + ["in"]= { + "11651" + } + }, + [51976]= { + ["skill"]= 51976, + ["name"]= "Dual Wield Attack Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "12095" + }, + ["in"]= { + "58214" + } + }, + [12095]= { + ["skill"]= 12095, + ["name"]= "Dual Wield Attack Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "3% increased Attack Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "18357" + }, + ["in"]= { + "51976" + } + }, + [18357]= { + ["skill"]= 18357, + ["name"]= "Feline Swiftness", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingBlockNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "TealOil" + }, + ["stats"]= { + "+10% Chance to Block Attack Damage while Dual Wielding", + "8% increased Movement Speed while Dual Wielding" + }, + ["group"]= 500, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52018" + }, + ["in"]= { + "12095" + } + }, + [52018]= { + ["skill"]= 52018, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 500, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18357" + } + }, + [48823]= { + ["skill"]= 48823, + ["name"]= "Deadly Draw", + ["icon"]= "Art/2DArt/SkillIcons/passives/deadlydraw.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Damage Over Time with Bow Skills", + "Damaging Ailments deal damage 10% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 501, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "34510", + "24552" + }, + ["in"]= { + "41047" + } + }, + [41047]= { + ["skill"]= 41047, + ["name"]= "Bow Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "12% increased Area of Effect while wielding a Bow" + }, + ["group"]= 501, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "48823" + }, + ["in"]= { + "42720" + } + }, + [8566]= { + ["skill"]= 8566, + ["name"]= "Physical Bow Damage and Stun Threshold", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "10% increased Physical Damage with Bows", + "10% reduced Enemy Stun Threshold with Bows", + "10% increased Damage Over Time with Bow Skills" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + }, + ["group"]= 501, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "50041" + }, + ["in"]= { + "42720" + } + }, + [34510]= { + ["skill"]= 34510, + ["name"]= "Bow Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "20% increased Damage Over Time with Bow Skills" + }, + ["group"]= 501, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "48823", + "50041" + } + }, + [50041]= { + ["skill"]= 50041, + ["name"]= "Physical Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "14% increased Physical Damage with Bows", + "14% increased Damage Over Time with Bow Skills" + }, + ["group"]= 501, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "34510", + "19711" + }, + ["in"]= { + "8566" + } + }, + [42720]= { + ["skill"]= 42720, + ["name"]= "Heavy Draw", + ["icon"]= "Art/2DArt/SkillIcons/passives/heavydraw.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Physical Damage with Bows", + "50% increased Stun Duration with Bows on Enemies", + "30% increased Damage Over Time with Bow Skills" + }, + ["group"]= 501, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "8566", + "24552", + "41047" + }, + ["in"]= {} + }, + [24552]= { + ["skill"]= 24552, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 501, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48823", + "42720" + } + }, + [45372]= { + ["skill"]= 45372, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 502, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34284" + } + }, + [25355]= { + ["skill"]= 25355, + ["name"]= "Stance Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Stance Skills" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34284" + }, + ["in"]= { + "8410" + } + }, + [17020]= { + ["skill"]= 17020, + ["name"]= "Attack Damage in Blood Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "20% increased Attack Damage while in Blood Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "34284" + }, + ["in"]= { + "8410" + } + }, + [8410]= { + ["skill"]= 8410, + ["name"]= "Attack Speed in Sand Stance", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "6% increased Attack Speed while in Sand Stance" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "17020", + "25355" + }, + ["in"]= { + "19711" + } + }, + [34284]= { + ["skill"]= 34284, + ["name"]= "Seasoned Swordplay", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceNotableReservation.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Mana Reservation Efficiency of Stance Skills" + }, + ["group"]= 502, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "45372" + }, + ["in"]= { + "25355", + "17020" + } + }, + [56207]= { + ["skill"]= 56207, + ["name"]= "Hardened Scars", + ["icon"]= "Art/2DArt/SkillIcons/passives/DarkestHour.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "15% increased Life Recovery from Flasks", + "25% less Damage over Time taken during Effect of any Life Flask" + }, + ["group"]= 503, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [11651]= { + ["skill"]= 11651, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 504, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5408", + "6580", + "58214" + }, + ["in"]= {} + }, + [27659]= { + ["skill"]= 27659, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 505, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "37671" + }, + ["in"]= { + "8948", + "51517", + "127" + } + }, + [23540]= { + ["skill"]= 23540, + ["name"]= "Conduit", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneConduit.png", + ["isKeystone"]= true, + ["stats"]= { + "Share Endurance, Frenzy and Power Charges with nearby party members" + }, + ["flavourText"]= { + "To me, brave companions! Feel my radiance flow through you!" + }, + ["group"]= 506, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "51786" + }, + ["in"]= {} + }, + [61982]= { + ["skill"]= 61982, + ["name"]= "Grave Intentions", + ["icon"]= "Art/2DArt/SkillIcons/passives/graveintentions.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "Minions have +27% to Chaos Resistance", + "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield" + }, + ["group"]= 507, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9083" + }, + ["in"]= { + "49047" + } + }, + [9083]= { + ["skill"]= 9083, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 507, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61982" + } + }, + [49047]= { + ["skill"]= 49047, + ["name"]= "Minion Life and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have +13% to Chaos Resistance" + }, + ["group"]= 507, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "61982" + }, + ["in"]= { + "51517" + } + }, + [51517]= { + ["skill"]= 51517, + ["name"]= "Minion Life and Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have +13% to Chaos Resistance" + }, + ["group"]= 507, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "49047", + "27659" + }, + ["in"]= {} + }, + [11784]= { + ["skill"]= 11784, + ["name"]= "Vampirism", + ["icon"]= "Art/2DArt/SkillIcons/passives/Vampirism.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "Recover 3% of Life on Kill", + "12% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 508, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "24481", + "4105" + } + }, + [24481]= { + ["skill"]= 24481, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 508, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11784" + }, + ["in"]= {} + }, + [4105]= { + ["skill"]= 4105, + ["name"]= "Life on Kill and Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "4% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 508, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "11784" + }, + ["in"]= { + "127" + } + }, + [127]= { + ["skill"]= 127, + ["name"]= "Life on Kill and Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "4% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 508, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "4105", + "27659" + }, + ["in"]= {} + }, + [56807]= { + ["skill"]= 56807, + ["name"]= "Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/blockstr.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding or holding a Shield" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "59016", + "15021" + }, + ["in"]= { + "29937" + } + }, + [59016]= { + ["skill"]= 59016, + ["name"]= "Dual Wield Block and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "4% increased Attack Speed while Dual Wielding" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "56807", + "33725" + } + }, + [21324]= { + ["skill"]= 21324, + ["name"]= "Block Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlockActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 55013, + ["stats"]= { + "+2% to maximum Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Attack Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 44840, + ["stats"]= { + "+2% to maximum Chance to Block Spell Damage" + }, + ["reminderText"]= { + "(Maximum Chance to Block Spell Damage cannot be raised above 90%)" + } + }, + { + ["effect"]= 23442, + ["stats"]= { + "20 Life gained when you Block", + "20 Mana gained when you Block" + } + }, + { + ["effect"]= 4500, + ["stats"]= { + "+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 509, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15437", + "33725" + } + }, + [15021]= { + ["skill"]= 15021, + ["name"]= "Shield Block and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalResistance2.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while holding a Shield", + "+4% Elemental Resistances while holding a Shield" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15437" + }, + ["in"]= { + "56807" + } + }, + [15437]= { + ["skill"]= 15437, + ["name"]= "Deflection", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while holding a Shield", + "25% chance to gain an Endurance Charge when you Block" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "21324" + }, + ["in"]= { + "15021" + } + }, + [33725]= { + ["skill"]= 33725, + ["name"]= "Swagger", + ["icon"]= "Art/2DArt/SkillIcons/passives/swagger.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "+8% Chance to Block Attack Damage while Dual Wielding", + "25% chance to gain a Frenzy Charge when you Block" + }, + ["group"]= 509, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "59016", + "21324" + }, + ["in"]= {} + }, + [29937]= { + ["skill"]= 29937, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 510, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6363", + "56807", + "35406" + }, + ["in"]= { + "8544" + } + }, + [33566]= { + ["skill"]= 33566, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "58336" + }, + ["in"]= { + "63033" + } + }, + [58336]= { + ["skill"]= 58336, + ["name"]= "Banner Valour Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.png", + ["stats"]= { + "20% increased Valour gained" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "58382" + }, + ["in"]= { + "33566" + } + }, + [7728]= { + ["skill"]= 7728, + ["name"]= "Banner Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 15% increased Duration" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "63033" + }, + ["in"]= { + "30038" + } + }, + [30038]= { + ["skill"]= 30038, + ["name"]= "Banner Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 15% increased Duration" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "7728" + }, + ["in"]= { + "35406" + } + }, + [35406]= { + ["skill"]= 35406, + ["name"]= "Banner Maximum Valour and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerDurationNode.png", + ["stats"]= { + "Banner Skills have 8% increased Duration", + "+5 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "30038" + }, + ["in"]= { + "29937", + "35237" + } + }, + [22908]= { + ["skill"]= 22908, + ["name"]= "Banner Maximum Valour", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerEffectNode.png", + ["stats"]= { + "+10 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "35237" + }, + ["in"]= { + "58382" + } + }, + [35237]= { + ["skill"]= 35237, + ["name"]= "Banner Maximum Valour", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerEffectNode.png", + ["stats"]= { + "+10 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "35406" + }, + ["in"]= { + "22908" + } + }, + [63033]= { + ["skill"]= 63033, + ["name"]= "Bannerman", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannersNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "Your Banner Buffs Linger on you for 3 seconds after you leave the Area", + "Banner Skills have 20% increased Duration" + }, + ["reminderText"]= { + "(The buff still applies to you after you leave the Banner's area)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "33566", + "55281" + }, + ["in"]= { + "7728" + } + }, + [58382]= { + ["skill"]= 58382, + ["name"]= "Renowned Deeds", + ["icon"]= "Art/2DArt/SkillIcons/passives/BannerResourceAreaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "+30 to maximum Valour" + }, + ["reminderText"]= { + "(Valour is gained while you have a Banner skill and augments the power of those skills)", + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + }, + ["group"]= 511, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "22908", + "55281" + }, + ["in"]= { + "58336" + } + }, + [55281]= { + ["skill"]= 55281, + ["name"]= "Banner Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBannerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40037, + ["stats"]= { + "Enemies near your Banner are Maimed" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + { + ["effect"]= 16991, + ["stats"]= { + "Gain 5 Valour when you Warcry, if able" + }, + ["reminderText"]= { + "(By default you gain 1 Valour on Melee Kill, or on Melee Hit against Rare or Unique enemies, no more than once every 0.5 seconds, up to a maximum of 50)" + } + }, + { + ["effect"]= 36934, + ["stats"]= { + "Remove a random Ailment on you when you consume at least 10 Valour to place a Banner" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 10268, + ["stats"]= { + "Recover 3% of Life per 5 Valour consumed to place a Banner" + } + }, + { + ["effect"]= 38114, + ["stats"]= { + "Enemies near your Banner take 8% increased Damage" + } + } + }, + ["stats"]= {}, + ["group"]= 511, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63033", + "58382" + } + }, + [30471]= { + ["skill"]= 30471, + ["name"]= "True Strike", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrueStriker.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "+15% to Critical Strike Multiplier", + "45% increased Critical Strike Chance" + }, + ["group"]= 512, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "34579", + "35085" + }, + ["in"]= {} + }, + [34579]= { + ["skill"]= 34579, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 512, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40100" + }, + ["in"]= { + "30471" + } + }, + [40100]= { + ["skill"]= 40100, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 512, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "34579", + "28574" + } + }, + [35085]= { + ["skill"]= 35085, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 512, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30471" + } + }, + [60512]= { + ["skill"]= 60512, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 513, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60085" + } + }, + [12032]= { + ["skill"]= 12032, + ["name"]= "Cast Speed and Spell Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Mana Cost Efficiency of Spells" + }, + ["group"]= 513, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "47504" + }, + ["in"]= { + "49651" + } + }, + [47504]= { + ["skill"]= 47504, + ["name"]= "Cast Speed and Spell Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Mana Cost Efficiency of Spells" + }, + ["group"]= 513, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "60085" + }, + ["in"]= { + "12032" + } + }, + [60085]= { + ["skill"]= 60085, + ["name"]= "Arcane Conservation", + ["icon"]= "Art/2DArt/SkillIcons/passives/CombatFocusNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "10% increased Cast Speed", + "20% increased Mana Cost Efficiency of Spells", + "3% increased Intelligence" + }, + ["group"]= 513, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "60512" + }, + ["in"]= { + "47504" + } + }, + [238]= { + ["skill"]= 238, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 514, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "10829", + "11497" + }, + ["in"]= {} + }, + [11497]= { + ["skill"]= 11497, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 514, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "34483" + }, + ["in"]= { + "238", + "5408" + } + }, + [34483]= { + ["skill"]= 34483, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 514, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "11497" + } + }, + [41273]= { + ["skill"]= 41273, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 515, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27623" + } + }, + [15452]= { + ["skill"]= 15452, + ["name"]= "Spell Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "+4% to Damage Over Time Multiplier with Spell Skills" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50082", + "47085" + }, + ["in"]= { + "38176" + } + }, + [50082]= { + ["skill"]= 50082, + ["name"]= "Spell Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "+6% to Damage Over Time Multiplier with Spell Skills" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "27623" + }, + ["in"]= { + "15452" + } + }, + [47085]= { + ["skill"]= 47085, + ["name"]= "Spell Damage Over Time Multiplier and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagespells.png", + ["stats"]= { + "+4% to Damage Over Time Multiplier with Spell Skills", + "6% increased Skill Effect Duration" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "27623" + }, + ["in"]= { + "15452" + } + }, + [27623]= { + ["skill"]= 27623, + ["name"]= "Harsh Lessons", + ["icon"]= "Art/2DArt/SkillIcons/passives/CombatFocusNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "+12% to Damage Over Time Multiplier with Spell Skills", + "20% reduced Duration of Ailments on You" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["group"]= 515, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "41273" + }, + ["in"]= { + "50082", + "47085" + } + }, + [51786]= { + ["skill"]= 51786, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 516, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "28574", + "20812", + "36877" + }, + ["in"]= { + "23540", + "35737", + "24496" + } + }, + [28574]= { + ["skill"]= 28574, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 516, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "61875", + "40100" + }, + ["in"]= { + "33545", + "51786" + } + }, + [61393]= { + ["skill"]= 61393, + ["name"]= "Attack Damage, Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgCritStrikeMultiplier.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "15% increased Critical Strike Chance" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "17315" + }, + ["in"]= { + "33795" + } + }, + [34484]= { + ["skill"]= 34484, + ["name"]= "Endless Hunger", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/EndlessHunger.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "20% of Overkill Damage is Leeched as Life", + "You are Unaffected by Bleeding while Leeching" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Overkill Damage is any Damage from a Hit in excess of the Enemy's remaining Life)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "34215" + } + }, + [10143]= { + ["skill"]= 10143, + ["name"]= "Brutal Fervour", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/BrutalFervor.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Life Leech effects are not removed when Unreserved Life is Filled" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 7, + ["out"]= { + "34215" + }, + ["in"]= { + "45696" + } + }, + [38180]= { + ["skill"]= 38180, + ["name"]= "Impact", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/Impact.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Deal up to 15% more Melee Damage to Enemies, based on proximity" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "20954" + } + }, + [50845]= { + ["skill"]= 50845, + ["name"]= "Attack Damage, Frenzy and Endurance Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgFrenzyEnduranceCharge.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "15% increased Endurance Charge Duration", + "15% increased Frenzy Charge Duration" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "16306" + }, + ["in"]= { + "33795" + } + }, + [16306]= { + ["skill"]= 16306, + ["name"]= "Masterful Form", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/Charges.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "50845" + } + }, + [15286]= { + ["skill"]= 15286, + ["name"]= "Attack Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "5% increased Attack Speed" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 36, + ["out"]= { + "3184" + }, + ["in"]= { + "62817" + } + }, + [42293]= { + ["skill"]= 42293, + ["name"]= "Attack Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgSpeed.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "5% increased Attack Speed" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "62817" + }, + ["in"]= { + "33795" + } + }, + [34215]= { + ["skill"]= 34215, + ["name"]= "Attack Damage, Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "0.4% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= { + "34484" + }, + ["in"]= { + "10143" + } + }, + [45696]= { + ["skill"]= 45696, + ["name"]= "Attack Damage, Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgLeech.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "0.4% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "10143" + }, + ["in"]= { + "33795" + } + }, + [20954]= { + ["skill"]= 20954, + ["name"]= "Attack Damage, Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/2HdmgAOE.png", + ["ascendancyName"]= "Slayer", + ["stats"]= { + "10% increased Attack Damage", + "10% increased Area of Effect" + }, + ["group"]= 517, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "38180" + }, + ["in"]= { + "33795" + } + }, + [3184]= { + ["skill"]= 3184, + ["name"]= "Headsman", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/BaneOfLegends.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Kill Enemies that have 20% or lower Life when Hit by your Skills" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= {}, + ["in"]= { + "15286" + } + }, + [17315]= { + ["skill"]= 17315, + ["name"]= "Overwhelm", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/CriticalAttacks.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "Base Critical Strike Chance for Attacks with Weapons is 8%" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "61393" + } + }, + [62817]= { + ["skill"]= 62817, + ["name"]= "Bane of Legends", + ["icon"]= "Art/2DArt/SkillIcons/passives/Slayer/Headman.png", + ["isNotable"]= true, + ["ascendancyName"]= "Slayer", + ["stats"]= { + "20% more Damage with Hits and Ailments against Unique Enemies" + }, + ["group"]= 517, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "15286" + }, + ["in"]= { + "42293" + } + }, + [33795]= { + ["skill"]= 33795, + ["name"]= "Slayer", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Slayer", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 517, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42293", + "45696", + "20954", + "61393", + "50845" + }, + ["in"]= { + "50986" + } + }, + [63482]= { + ["skill"]= 63482, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 518, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26557" + } + }, + [13961]= { + ["skill"]= 13961, + ["name"]= "Lightning Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "20% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 518, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26557" + }, + ["in"]= { + "62697" + } + }, + [62697]= { + ["skill"]= 62697, + ["name"]= "Shock Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "15% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 518, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "13961" + }, + ["in"]= { + "5296" + } + }, + [26557]= { + ["skill"]= 26557, + ["name"]= "Static Blows", + ["icon"]= "Art/2DArt/SkillIcons/passives/staticshield.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "30% increased Damage if you have Shocked an Enemy Recently", + "50% increased Duration of Lightning Ailments", + "30% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Lightning Ailments are Shocked and Sapped)" + }, + ["group"]= 518, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "63482" + }, + ["in"]= { + "13961" + } + }, + [55348]= { + ["skill"]= 55348, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 519, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63727" + } + }, + [37887]= { + ["skill"]= 37887, + ["name"]= "Attack Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png", + ["stats"]= { + "12% increased Attack Damage", + "60% increased total Recovery per second from Life Leech", + "12% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "29359" + }, + ["in"]= { + "63727" + } + }, + [17934]= { + ["skill"]= 17934, + ["name"]= "Attack Damage and Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png", + ["stats"]= { + "12% increased Attack Damage", + "3% increased Attack Speed", + "12% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "63727" + }, + ["in"]= { + "29359" + } + }, + [29359]= { + ["skill"]= 29359, + ["name"]= "Attack Damage and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNode.png", + ["stats"]= { + "12% increased Attack Damage", + "0.4% of Physical Attack Damage Leeched as Life", + "12% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "17934", + "5408" + }, + ["in"]= { + "37887" + } + }, + [63727]= { + ["skill"]= 63727, + ["name"]= "Gladiator's Perseverance", + ["icon"]= "Art/2DArt/SkillIcons/passives/OneHandedPhysicalAndLeechNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "10% increased Attack Speed when on Full Life", + "1% of Physical Attack Damage Leeched as Life", + "40% increased Attack Damage while Leeching" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 519, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "37887", + "55348" + }, + ["in"]= { + "17934" + } + }, + [47242]= { + ["skill"]= 47242, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 520, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29381" + } + }, + [9370]= { + ["skill"]= 9370, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "44360" + }, + ["in"]= { + "5296" + } + }, + [44360]= { + ["skill"]= 44360, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6685" + }, + ["in"]= { + "9370" + } + }, + [6685]= { + ["skill"]= 6685, + ["name"]= "Minion Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionattackspeed.png", + ["stats"]= { + "Minions have 4% increased Attack Speed", + "Minions have 4% increased Cast Speed" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "29381" + }, + ["in"]= { + "44360" + } + }, + [29381]= { + ["skill"]= 29381, + ["name"]= "Ravenous Horde", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageofMinionsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Minions have 30% increased Movement Speed", + "Minions have 30% chance to gain Onslaught for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + }, + ["group"]= 520, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "47242" + }, + ["in"]= { + "6685" + } + }, + [48778]= { + ["skill"]= 48778, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 521, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "37671", + "41263" + }, + ["in"]= { + "51923" + } + }, + [51923]= { + ["skill"]= 51923, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 521, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48778" + }, + ["in"]= { + "46092" + } + }, + [41263]= { + ["skill"]= 41263, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 521, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "48778" + } + }, + [10808]= { + ["skill"]= 10808, + ["name"]= "Vaal Pact", + ["icon"]= "Art/2DArt/SkillIcons/passives/vaalpact.png", + ["isKeystone"]= true, + ["stats"]= { + "Life Leech from Melee Damage is Instant\nCannot Recover Life other than from Leech" + }, + ["flavourText"]= { + "My ancestral pact was sealed. Forevermore, I would gain sustenance", + "only from the ravaged flesh of my enemies." + }, + ["group"]= 522, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "20010" + } + }, + [41225]= { + ["skill"]= 41225, + ["name"]= "Minion Defence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionDefenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 61283, + ["stats"]= { + "Minions have +8% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 20153, + ["stats"]= { + "Link Skills can target Damageable Minions" + } + }, + { + ["effect"]= 15574, + ["stats"]= { + "Minions Leech 1% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 58106, + ["stats"]= { + "Convocation has 40% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 43400, + ["stats"]= { + "Minions have 15% reduced Life Recovery rate", + "Minions have 30% increased maximum Life" + } + }, + { + ["effect"]= 46636, + ["stats"]= { + "Minions Recover 5% of Life on Minion Death" + } + } + }, + ["stats"]= {}, + ["group"]= 523, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25409" + } + }, + [29171]= { + ["skill"]= 29171, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "30658", + "31103", + "38176" + }, + ["in"]= {} + }, + [30658]= { + ["skill"]= 30658, + ["name"]= "Minion Life and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have +8% to all Elemental Resistances" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "25409" + }, + ["in"]= { + "29171" + } + }, + [31103]= { + ["skill"]= 31103, + ["name"]= "Minion Life and Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/minionlife.png", + ["stats"]= { + "Minions have 8% increased maximum Life", + "Minions have 8% additional Physical Damage Reduction" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "25409" + }, + ["in"]= { + "29171" + } + }, + [25409]= { + ["skill"]= 25409, + ["name"]= "Indomitable Army", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandResistancesofMinions.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Minions have 15% additional Physical Damage Reduction", + "Minions have +15% to all Elemental Resistances", + "Moving while Bleeding doesn't cause Minions to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 523, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41225" + }, + ["in"]= { + "30658", + "31103" + } + }, + [5408]= { + ["skill"]= 5408, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 524, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "63139", + "56589", + "11497" + }, + ["in"]= { + "11651", + "29359", + "930", + "39085" + } + }, + [17236]= { + ["skill"]= 17236, + ["name"]= "Energy Shield and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+15 to maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 525, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "7641", + "62577" + } + }, + [7641]= { + ["skill"]= 7641, + ["name"]= "Energy Shield and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/energyshield.png", + ["stats"]= { + "+15 to maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 525, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "17236" + }, + ["in"]= { + "49651" + } + }, + [62577]= { + ["skill"]= 62577, + ["name"]= "Essence Surge", + ["icon"]= "Art/2DArt/SkillIcons/passives/EssenceSurge.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "+30 to maximum Energy Shield", + "20% faster start of Energy Shield Recharge" + }, + ["group"]= 525, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "17236", + "6338" + }, + ["in"]= {} + }, + [6338]= { + ["skill"]= 6338, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 525, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62577" + } + }, + [12189]= { + ["skill"]= 12189, + ["name"]= "Cast Speed and Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Spell Critical Strike Chance" + }, + ["group"]= 526, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "5875", + "37671" + }, + ["in"]= {} + }, + [5875]= { + ["skill"]= 5875, + ["name"]= "Cast Speed and Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "10% increased Spell Critical Strike Chance" + }, + ["group"]= 526, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "9788" + }, + ["in"]= { + "12189" + } + }, + [40196]= { + ["skill"]= 40196, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 526, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9788" + } + }, + [9788]= { + ["skill"]= 9788, + ["name"]= "Nimbleness", + ["icon"]= "Art/2DArt/SkillIcons/passives/nimbleness.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "8% increased Cast Speed", + "+15% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 526, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "40196" + }, + ["in"]= { + "5875" + } + }, + [42161]= { + ["skill"]= 42161, + ["name"]= "Attack Ignite Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "3% increased Attack Speed", + "Attacks have 10% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "12415" + }, + ["in"]= { + "26365" + } + }, + [26365]= { + ["skill"]= 26365, + ["name"]= "Attack Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "Attacks have 15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "7187", + "42161" + }, + ["in"]= { + "56589" + } + }, + [12415]= { + ["skill"]= 12415, + ["name"]= "Attack Ignite Chance and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "3% increased Attack Speed", + "Attacks have 10% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "36736" + }, + ["in"]= { + "42161" + } + }, + [7187]= { + ["skill"]= 7187, + ["name"]= "Burning Damage Multiplier with Attacks", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamagestr.png", + ["stats"]= { + "+6% to Fire Damage over Time Multiplier with Attack Skills" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "36736" + }, + ["in"]= { + "26365" + } + }, + [36736]= { + ["skill"]= 36736, + ["name"]= "Burning Brutality", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireAilment.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier with Attack Skills", + "6% increased Attack Speed" + }, + ["group"]= 527, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "19749" + }, + ["in"]= { + "12415", + "7187" + } + }, + [19749]= { + ["skill"]= 19749, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 527, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36736" + } + }, + [17906]= { + ["skill"]= 17906, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 528, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7136" + } + }, + [36877]= { + ["skill"]= 36877, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Trap Damage" + }, + ["group"]= 528, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "22488" + }, + ["in"]= { + "51786" + } + }, + [7136]= { + ["skill"]= 7136, + ["name"]= "Master Sapper", + ["icon"]= "Art/2DArt/SkillIcons/passives/mastersapper.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Trap Damage", + "Can have up to 2 additional Traps placed at a time", + "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy" + }, + ["group"]= 528, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "22488", + "17906" + }, + ["in"]= {} + }, + [22488]= { + ["skill"]= 22488, + ["name"]= "Trap Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "5% increased Trap Throwing Speed" + }, + ["group"]= 528, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "36877", + "7136" + } + }, + [31137]= { + ["skill"]= 31137, + ["name"]= "Charge on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/innerforce.png", + ["stats"]= { + "2% chance to gain a Power, Frenzy or Endurance Charge on Kill" + }, + ["group"]= 529, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "47471" + }, + ["in"]= { + "35737" + } + }, + [35737]= { + ["skill"]= 35737, + ["name"]= "Charge on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/innerforce.png", + ["stats"]= { + "2% chance to gain a Power, Frenzy or Endurance Charge on Kill" + }, + ["group"]= 529, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "31137", + "51786" + }, + ["in"]= {} + }, + [47471]= { + ["skill"]= 47471, + ["name"]= "Overcharged", + ["icon"]= "Art/2DArt/SkillIcons/passives/innerforce.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "8% chance to gain a Power, Frenzy or Endurance Charge on Kill" + }, + ["group"]= 529, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33678" + }, + ["in"]= { + "31137" + } + }, + [33678]= { + ["skill"]= 33678, + ["name"]= "Charge Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChargesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28720, + ["stats"]= { + "Cannot be Ignited while at maximum Endurance Charges" + } + }, + { + ["effect"]= 48661, + ["stats"]= { + "Cannot be Chilled while at maximum Frenzy Charges" + } + }, + { + ["effect"]= 14100, + ["stats"]= { + "Cannot be Shocked while at maximum Power Charges" + } + }, + { + ["effect"]= 29652, + ["stats"]= { + "100% increased Charge Duration" + } + }, + { + ["effect"]= 40307, + ["stats"]= { + "3% increased Damage per Endurance, Frenzy or Power Charge" + } + }, + { + ["effect"]= 19142, + ["stats"]= { + "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges" + } + } + }, + ["stats"]= {}, + ["group"]= 529, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47471" + } + }, + [9171]= { + ["skill"]= 9171, + ["name"]= "Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "60% increased total Recovery per second from Life Leech" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "39530" + }, + ["in"]= { + "36704" + } + }, + [39530]= { + ["skill"]= 39530, + ["name"]= "Vitality Void", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Life", + "40% increased Maximum total Life Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25446" + }, + ["in"]= { + "9171" + } + }, + [36704]= { + ["skill"]= 36704, + ["name"]= "Life and Mana Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "0.4% of Attack Damage Leeched as Life", + "0.4% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "20010", + "9171", + "54872" + }, + ["in"]= {} + }, + [54872]= { + ["skill"]= 54872, + ["name"]= "Mana Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + ["stats"]= { + "60% increased total Recovery per second from Mana Leech" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "1382" + }, + ["in"]= { + "36704" + } + }, + [1382]= { + ["skill"]= 1382, + ["name"]= "Spirit Void", + ["icon"]= "Art/2DArt/SkillIcons/passives/minddrinker.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "VerdantOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Mana", + "40% increased Maximum total Mana Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 530, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "25446" + }, + ["in"]= { + "54872" + } + }, + [25446]= { + ["skill"]= 25446, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 530, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39530", + "1382" + } + }, + [20010]= { + ["skill"]= 20010, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 531, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471", + "10808" + }, + ["in"]= { + "19711", + "36704", + "55392" + } + }, + [56659]= { + ["skill"]= 56659, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 532, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53667" + }, + ["in"]= { + "6363" + } + }, + [53667]= { + ["skill"]= 53667, + ["name"]= "Impale Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImapleNode.png", + ["stats"]= { + "6% increased Impale Effect" + }, + ["group"]= 532, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "6783" + }, + ["in"]= { + "56659" + } + }, + [6783]= { + ["skill"]= 6783, + ["name"]= "Savage Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "IndigoOil" + }, + ["stats"]= { + "15% increased Impale Effect" + }, + ["group"]= 532, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49677" + }, + ["in"]= { + "53667" + } + }, + [49677]= { + ["skill"]= 49677, + ["name"]= "Impale Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryImpaleActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43295, + ["stats"]= { + "10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" + } + }, + { + ["effect"]= 56133, + ["stats"]= { + "Impale Damage dealt to Enemies Impaled by you ignores Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 29209, + ["stats"]= { + "Call of Steel deals Reflected Damage with 40% increased Area of Effect", + "Call of Steel has 40% increased Use Speed" + } + }, + { + ["effect"]= 43308, + ["stats"]= { + "Call of Steel has +4 to maximum Steel Shards", + "Call of Steel causes 10% increased Reflected Damage" + } + }, + { + ["effect"]= 20273, + ["stats"]= { + "20% increased Effect of Impales you inflict on non-Impaled Enemies" + } + }, + { + ["effect"]= 36787, + ["stats"]= { + "20% chance on Hit to remove all Impales from Enemy\nImpales removed this way multiply their Reflected Damage for this Hit by the number of Hits they have left" + } + } + }, + ["stats"]= {}, + ["group"]= 532, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6783" + } + }, + [37671]= { + ["skill"]= 37671, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 533, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "61320", + "21301", + "31703", + "27415" + }, + ["in"]= { + "27659", + "48778", + "12189" + } + }, + [40126]= { + ["skill"]= 40126, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 534, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "53652" + }, + ["in"]= { + "6109" + } + }, + [6109]= { + ["skill"]= 6109, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 534, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "40126", + "27415" + }, + ["in"]= {} + }, + [53652]= { + ["skill"]= 53652, + ["name"]= "Steeped in the Profane", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "GoldenOil" + }, + ["stats"]= { + "15% reduced Effect of Curses on you", + "10% increased Effect of your Curses" + }, + ["group"]= 534, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "62506" + }, + ["in"]= { + "40126" + } + }, + [62506]= { + ["skill"]= 62506, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 534, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53652" + } + }, + [46344]= { + ["skill"]= 46344, + ["name"]= "Bow Damage and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "15% increased Evasion Rating", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "36687" + }, + ["in"]= { + "29089" + } + }, + [29089]= { + ["skill"]= 29089, + ["name"]= "Bow Damage and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "15% increased Evasion Rating", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "46344" + }, + ["in"]= { + "930" + } + }, + [36687]= { + ["skill"]= 36687, + ["name"]= "Avatar of the Hunt", + ["icon"]= "Art/2DArt/SkillIcons/passives/AvataroftheHunt2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Damage with Bows", + "+200 to Evasion Rating", + "6% increased Movement Speed", + "30% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25349" + }, + ["in"]= { + "46344", + "56855" + } + }, + [930]= { + ["skill"]= 930, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "5408", + "29089", + "13231" + }, + ["in"]= {} + }, + [56855]= { + ["skill"]= 56855, + ["name"]= "Bow Attack Speed and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "36687" + }, + ["in"]= { + "13231" + } + }, + [13231]= { + ["skill"]= 13231, + ["name"]= "Bow Attack Speed and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 535, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "56855" + }, + ["in"]= { + "930" + } + }, + [25349]= { + ["skill"]= 25349, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 535, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36687" + } + }, + [42637]= { + ["skill"]= 42637, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "Axe Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "26096", + "29543" + }, + ["in"]= {} + }, + [30030]= { + ["skill"]= 30030, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "Axe Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "6363" + }, + ["in"]= { + "29543" + } + }, + [29543]= { + ["skill"]= 29543, + ["name"]= "Axe Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedaxe.png", + ["stats"]= { + "Axe Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Axes" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "30030" + }, + ["in"]= { + "42637" + } + }, + [26096]= { + ["skill"]= 26096, + ["name"]= "Hatchet Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxesandAttackSpeed.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "CrimsonOil" + }, + ["stats"]= { + "Axe Attacks deal 24% increased Damage with Hits and Ailments", + "10% increased Attack Speed with Axes", + "20% chance to gain Onslaught for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Onslaught grants 20% increased Attack and Cast Speed)" + }, + ["group"]= 536, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "28039" + }, + ["in"]= { + "42637" + } + }, + [28039]= { + ["skill"]= 28039, + ["name"]= "Axe Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAxe.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAxeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28354, + ["stats"]= { + "Enemies Killed by your Hits are destroyed" + } + }, + { + ["effect"]= 11049, + ["stats"]= { + "Bleeding you inflict deals Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 9088, + ["stats"]= { + "40% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + } + }, + { + ["effect"]= 50175, + ["stats"]= { + "30% increased Damage while in Blood Stance", + "15% increased Area of Effect while in Sand Stance" + }, + ["reminderText"]= { + "(You are in Blood Stance by default)" + } + }, + { + ["effect"]= 64228, + ["stats"]= { + "10% more Damage with Hits and Ailments against Enemies that are on Low Life" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)" + } + }, + { + ["effect"]= 233, + ["stats"]= { + "Gain 2 Rage on Hit with Axes" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + } + }, + ["stats"]= {}, + ["group"]= 536, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26096" + } + }, + [23950]= { + ["skill"]= 23950, + ["name"]= "Wicked Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/Occultist/EldrichBarrier.png", + ["isKeystone"]= true, + ["stats"]= { + "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently\n40% less Energy Shield Recharge Rate" + }, + ["flavourText"]= { + "Embrace the forbidden. Let dark energies envelop you." + }, + ["group"]= 537, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49651" + } + }, + [58198]= { + ["skill"]= 58198, + ["name"]= "Fingers of Frost", + ["icon"]= "Art/2DArt/SkillIcons/passives/breathofrime.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "Enemies Become Chilled as they Unfreeze, causing 30% reduced Action Speed", + "30% chance to Freeze Enemies which are Chilled" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed for 2 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "17380" + }, + ["in"]= { + "21170", + "58603" + } + }, + [14209]= { + ["skill"]= 14209, + ["name"]= "Cold Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Duration of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "58603", + "21170" + }, + ["in"]= { + "27415" + } + }, + [21170]= { + ["skill"]= 21170, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "58198" + }, + ["in"]= { + "14209" + } + }, + [58603]= { + ["skill"]= 58603, + ["name"]= "Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 538, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "58198" + }, + ["in"]= { + "14209" + } + }, + [17380]= { + ["skill"]= 17380, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 538, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58198" + } + }, + [32710]= { + ["skill"]= 32710, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 16, + ["out"]= { + "10153", + "32345", + "4502", + "51801", + "48275" + }, + ["in"]= { + "41635", + "27415", + "49605" + } + }, + [38176]= { + ["skill"]= 38176, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 60, + ["out"]= { + "11551", + "49651", + "15452" + }, + ["in"]= { + "8948", + "18663", + "29171" + } + }, + [49651]= { + ["skill"]= 49651, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "41635", + "23950", + "7641", + "5296", + "12032" + }, + ["in"]= { + "38176", + "27709" + } + }, + [41635]= { + ["skill"]= 41635, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 539, + ["orbit"]= 6, + ["orbitIndex"]= 9, + ["out"]= { + "32710", + "4036" + }, + ["in"]= { + "49651", + "64239" + } + }, + [4492]= { + ["skill"]= 4492, + ["name"]= "Attributes Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 5356, + ["stats"]= { + "5% increased Attributes" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 41483, + ["stats"]= { + "1% increased Damage per 5 of your lowest Attribute" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 26621, + ["stats"]= { + "+5 to Strength per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 52604, + ["stats"]= { + "+5 to Intelligence per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 15826, + ["stats"]= { + "+5 to Dexterity per Allocated Mastery Passive Skill" + } + } + }, + ["stats"]= {}, + ["group"]= 540, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55114" + } + }, + [27592]= { + ["skill"]= 27592, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 15, + ["stats"]= { + "+15 to Intelligence" + }, + ["group"]= 540, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44924" + }, + ["in"]= { + "5296" + } + }, + [44924]= { + ["skill"]= 44924, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 15, + ["stats"]= { + "+15 to Intelligence" + }, + ["group"]= 540, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55114" + }, + ["in"]= { + "27592" + } + }, + [55114]= { + ["skill"]= 55114, + ["name"]= "Utmost Intellect", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "CrimsonOil" + }, + ["grantedIntelligence"]= 40, + ["stats"]= { + "+40 to Intelligence", + "8% increased Intelligence" + }, + ["group"]= 540, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "4492" + }, + ["in"]= { + "44924" + } + }, + [39085]= { + ["skill"]= 39085, + ["name"]= "Elemental Equilibrium", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.png", + ["isKeystone"]= true, + ["stats"]= { + "Hits that deal Elemental Damage remove Exposure to those Elements and inflict Exposure to other Elements\nExposure inflicted this way applies -25% to Resistances" + }, + ["flavourText"]= { + "Balance is good in all things, but especially in the realm of magic." + }, + ["group"]= 541, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5408" + }, + ["in"]= {} + }, + [49969]= { + ["skill"]= 49969, + ["name"]= "Courage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourandEvasion2.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Armour if you have been Hit Recently", + "30% increased Evasion Rating if you haven't been Hit Recently", + "+15% chance to Suppress Spell Damage if you've Hit an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "62235" + }, + ["in"]= { + "55085" + } + }, + [62235]= { + ["skill"]= 62235, + ["name"]= "Armour and Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryArmourAndEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 49522, + ["stats"]= { + "Defend with 120% of Armour against Projectile Attacks", + "5% more chance to Evade Melee Attacks" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + { + ["effect"]= 62285, + ["stats"]= { + "8% increased Evasion Rating per Frenzy Charge", + "8% increased Armour per Endurance Charge" + } + }, + { + ["effect"]= 5108, + ["stats"]= { + "80% increased Stun and Block Recovery" + } + }, + { + ["effect"]= 23955, + ["stats"]= { + "Every 4 seconds, Regenerate Life equal to 1% of Armour and Evasion Rating over 1 second" + } + }, + { + ["effect"]= 58876, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently", + "40% increased Armour if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 43258, + ["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" + } + } + }, + ["stats"]= {}, + ["group"]= 542, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49969", + "18703" + } + }, + [55392]= { + ["skill"]= 55392, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "14% increased Evasion Rating and Armour" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55085", + "20010" + }, + ["in"]= { + "53002" + } + }, + [53002]= { + ["skill"]= 53002, + ["name"]= "Armour, Evasion and Onslaught Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png", + ["stats"]= { + "10% increased Evasion Rating and Armour", + "15% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "4944", + "55392", + "23471" + }, + ["in"]= {} + }, + [4944]= { + ["skill"]= 4944, + ["name"]= "Armour, Evasion and Onslaught Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableNode.png", + ["stats"]= { + "10% increased Evasion Rating and Armour", + "15% increased Effect of Onslaught on you" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "18703" + }, + ["in"]= { + "53002" + } + }, + [55085]= { + ["skill"]= 55085, + ["name"]= "Armour and Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.png", + ["stats"]= { + "14% increased Evasion Rating and Armour" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49969" + }, + ["in"]= { + "55392" + } + }, + [18703]= { + ["skill"]= 18703, + ["name"]= "Graceful Assault", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackDamangeAndEvasionNotableIcon.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Effect of Onslaught on you", + "10% chance to gain Onslaught for 4 seconds on Kill", + "30% increased Armour and Evasion Rating during Onslaught" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + }, + ["group"]= 542, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "62235" + }, + ["in"]= { + "4944" + } + }, + [55247]= { + ["skill"]= 55247, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "3% increased maximum Life" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63799" + }, + ["in"]= { + "18865" + } + }, + [63799]= { + ["skill"]= 63799, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "3% increased maximum Life" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "61320" + }, + ["in"]= { + "55247" + } + }, + [61320]= { + ["skill"]= 61320, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "3% increased maximum Life" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "37671", + "63799" + } + }, + [18865]= { + ["skill"]= 18865, + ["name"]= "Melding", + ["icon"]= "Art/2DArt/SkillIcons/passives/melding.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "7% increased maximum Life", + "Gain 3% of Maximum Life as Extra Maximum Energy Shield" + }, + ["group"]= 543, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "55247", + "25281" + }, + ["in"]= {} + }, + [25281]= { + ["skill"]= 25281, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 543, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18865" + } + }, + [31703]= { + ["skill"]= 31703, + ["name"]= "Pain Attunement", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystonePainAttunement.png", + ["isKeystone"]= true, + ["stats"]= { + "30% more Spell Damage when on Low Life" + }, + ["flavourText"]= { + "Embrace the pain, drink it in.", + "Your enemies will know your agony tenfold." + }, + ["group"]= 544, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37671" + } + }, + [56589]= { + ["skill"]= 56589, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 545, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "43787", + "26365", + "13019" + }, + ["in"]= { + "5408", + "23471" + } + }, + [13019]= { + ["skill"]= 13019, + ["name"]= "Bloodsoaked Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureKeystone1.png", + ["isKeystone"]= true, + ["stats"]= { + "Tinctures inflict Weeping Wounds instead of Mana Burn\nEffects that interact with Mana Burn interact with Weeping Wounds instead" + }, + ["reminderText"]= { + "(Weeping Wounds cause you to lose 1% of your maximum Life per second per stack. Tinctures deactivate when you have 1 life remaining)" + }, + ["flavourText"]= { + "Tainted blood is a gift that must be shared." + }, + ["group"]= 546, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56589" + } + }, + [6363]= { + ["skill"]= 6363, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 547, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "55021", + "46291", + "56659" + }, + ["in"]= { + "29937", + "30030", + "5237" + } + }, + [44683]= { + ["skill"]= 44683, + ["name"]= "SIX", + ["icon"]= "Art/2DArt/SkillIcons/passives/tempint.png", + ["stats"]= {}, + ["classStartIndex"]= 6, + ["group"]= 548, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "45272", + "58229", + "55236", + "18635" + }, + ["in"]= { + "38129" + } + }, + [45035]= { + ["skill"]= 45035, + ["name"]= "Projectile Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "+30 to Accuracy Rating", + "16% increased Projectile Damage" + }, + ["group"]= 549, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "59370", + "465" + }, + ["in"]= { + "7618", + "50459" + } + }, + [39821]= { + ["skill"]= 39821, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "+20 to Evasion Rating", + "+14 to maximum Life" + }, + ["group"]= 549, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "52904", + "2094" + }, + ["in"]= { + "7618", + "50459" + } + }, + [50459]= { + ["skill"]= 50459, + ["name"]= "RANGER", + ["icon"]= "Art/2DArt/SkillIcons/passives/blankDex.png", + ["stats"]= {}, + ["classStartIndex"]= 2, + ["group"]= 549, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39821", + "45035", + "58427", + "64111", + "56856" + }, + ["in"]= {} + }, + [27709]= { + ["skill"]= 27709, + ["name"]= "Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "28887", + "49651", + "22647" + }, + ["in"]= {} + }, + [28887]= { + ["skill"]= 28887, + ["name"]= "Faster Ignite", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "Ignites you inflict deal Damage 5% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "38849" + }, + ["in"]= { + "27709" + } + }, + [38849]= { + ["skill"]= 38849, + ["name"]= "Searing Heat", + ["icon"]= "Art/2DArt/SkillIcons/passives/SearingHeat.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "Ignites you inflict deal Damage 15% faster" + }, + ["reminderText"]= { + "(They will deal the same total damage over a shorter duration)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "40271" + }, + ["in"]= { + "28887", + "22647" + } + }, + [22647]= { + ["skill"]= 22647, + ["name"]= "Ignite Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamageint.png", + ["stats"]= { + "15% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 550, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "38849" + }, + ["in"]= { + "27709" + } + }, + [40271]= { + ["skill"]= 40271, + ["name"]= "Fire Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupFire.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFireActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 24180, + ["stats"]= { + "Fire Exposure you inflict applies an extra -5% to Fire Resistance" + } + }, + { + ["effect"]= 65020, + ["stats"]= { + "40% of Physical Damage Converted to Fire Damage" + } + }, + { + ["effect"]= 37, + ["stats"]= { + "Burning Enemies you kill have a 3% chance to Explode, dealing a tenth of their maximum Life as Fire Damage" + } + }, + { + ["effect"]= 36313, + ["stats"]= { + "+12% to Fire Damage over Time Multiplier", + "50% increased Ignite Duration on you" + } + }, + { + ["effect"]= 55308, + ["stats"]= { + "Regenerate 1 Life per second for each 1% Uncapped Fire Resistance" + }, + ["reminderText"]= { + "(Uncapped Resistance is the value Resistance would have if ignoring Maximum Resistance)" + } + }, + { + ["effect"]= 6216, + ["stats"]= { + "Critical Strikes do not inherently Ignite", + "100% increased Damage with Hits against Ignited Enemies" + } + } + }, + ["stats"]= {}, + ["group"]= 550, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "38849" + } + }, + [51219]= { + ["skill"]= 51219, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "0.3% of Spell Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 551, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "13232" + }, + ["in"]= { + "33310" + } + }, + [13232]= { + ["skill"]= 13232, + ["name"]= "Increased Energy Shield Leeched", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "30% increased total Recovery per second from Energy Shield Leech" + }, + ["group"]= 551, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "9567" + }, + ["in"]= { + "51219" + } + }, + [9567]= { + ["skill"]= 9567, + ["name"]= "Light Eater", + ["icon"]= "Art/2DArt/SkillIcons/passives/SoulSiphoning.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "0.8% of Spell Damage Leeched as Energy Shield", + "30% increased Maximum total Energy Shield Recovery per second from Leech", + "24% increased Damage while on Full Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 551, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "55230" + }, + ["in"]= { + "13232" + } + }, + [55230]= { + ["skill"]= 55230, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 551, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9567" + } + }, + [48411]= { + ["skill"]= 48411, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 552, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63207" + } + }, + [64612]= { + ["skill"]= 64612, + ["name"]= "Wand Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Gain 5% of Wand Physical Damage as Extra Lightning Damage" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19098" + }, + ["in"]= { + "64239" + } + }, + [32942]= { + ["skill"]= 32942, + ["name"]= "Wand Physical Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Physical Damage with Wands", + "Wand Attacks deal 12% increased Damage with Ailments", + "4% increased Attack Speed with Wands" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "63207" + }, + ["in"]= { + "22407" + } + }, + [64239]= { + ["skill"]= 64239, + ["name"]= "Wand Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Physical Damage with Wands", + "Wand Attacks deal 12% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "22407", + "64612", + "41635" + }, + ["in"]= {} + }, + [22407]= { + ["skill"]= 22407, + ["name"]= "Wand Physical Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "12% increased Physical Damage with Wands", + "Wand Attacks deal 12% increased Damage with Ailments", + "4% increased Attack Speed with Wands" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "32942" + }, + ["in"]= { + "64239" + } + }, + [63207]= { + ["skill"]= 63207, + ["name"]= "Tempest Blast", + ["icon"]= "Art/2DArt/SkillIcons/passives/TempestBlast.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "Gain 20% of Wand Physical Damage as Extra Lightning Damage" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "48411" + }, + ["in"]= { + "32942", + "19098" + } + }, + [19098]= { + ["skill"]= 19098, + ["name"]= "Wand Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Gain 5% of Wand Physical Damage as Extra Lightning Damage" + }, + ["group"]= 552, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "63207" + }, + ["in"]= { + "64612" + } + }, + [5296]= { + ["skill"]= 5296, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 553, + ["orbit"]= 6, + ["orbitIndex"]= 66, + ["out"]= { + "33310", + "19501", + "62697", + "27592", + "9370" + }, + ["in"]= { + "49651" + } + }, + [33310]= { + ["skill"]= 33310, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 553, + ["orbit"]= 6, + ["orbitIndex"]= 6, + ["out"]= { + "56075", + "51219", + "12831", + "53290" + }, + ["in"]= { + "5296", + "39521", + "49605" + } + }, + [43988]= { + ["skill"]= 43988, + ["name"]= "Hex Master", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneHexMaster.png", + ["isKeystone"]= true, + ["stats"]= { + "Your Hexes have infinite Duration\n20% less Effect of your Curses" + }, + ["flavourText"]= { + "Hear these words but once and they will echo in your nightmares forever." + }, + ["group"]= 554, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27415" + } + }, + [27415]= { + ["skill"]= 27415, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 555, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32710", + "14209", + "57457", + "43988" + }, + ["in"]= { + "37671", + "6109", + "37175" + } + }, + [54144]= { + ["skill"]= 54144, + ["name"]= "Dual Wield Attack and Cast Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "13573" + }, + ["in"]= { + "39743" + } + }, + [57457]= { + ["skill"]= 57457, + ["name"]= "Dual Wield Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "13573" + }, + ["in"]= { + "27415", + "31619" + } + }, + [13573]= { + ["skill"]= 13573, + ["name"]= "Dual Wield Attack and Cast Speed and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "+3% Chance to Block Attack Damage while Dual Wielding", + "4% increased Attack Speed while Dual Wielding", + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "54144", + "57457" + } + }, + [31619]= { + ["skill"]= 31619, + ["name"]= "Dual Wield Spell Damage and Spell Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeDefensive.png", + ["stats"]= { + "+3% Chance to Block Spell Damage while Dual Wielding", + "10% increased Spell Damage while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "57457" + }, + ["in"]= { + "39743" + } + }, + [39743]= { + ["skill"]= 39743, + ["name"]= "Dark Arts", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "+8% Chance to Block Spell Damage while Dual Wielding", + "+8% Chance to Block Attack Damage while Dual Wielding", + "10% increased Attack Speed while Dual Wielding", + "10% increased Cast Speed while Dual Wielding" + }, + ["group"]= 556, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54144", + "31619", + "50071" + }, + ["in"]= {} + }, + [50071]= { + ["skill"]= 50071, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 556, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "39743" + } + }, + [38129]= { + ["skill"]= 38129, + ["name"]= "Damage and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "14% increased Damage", + "+12 to maximum Energy Shield" + }, + ["group"]= 557, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "44683", + "11334", + "63639" + }, + ["in"]= { + "53992" + } + }, + [36874]= { + ["skill"]= 36874, + ["name"]= "Wisdom of the Glade", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 558, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471" + }, + ["in"]= {} + }, + [33037]= { + ["skill"]= 33037, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 559, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "29522" + } + }, + [64284]= { + ["skill"]= 64284, + ["name"]= "Stance Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for Stance Skills" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "29522" + }, + ["in"]= { + "11456" + } + }, + [11456]= { + ["skill"]= 11456, + ["name"]= "Stance Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for Stance Skills" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "64284" + }, + ["in"]= { + "55021" + } + }, + [55021]= { + ["skill"]= 55021, + ["name"]= "Stance Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceSmallPassive.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for Stance Skills" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "11456" + }, + ["in"]= { + "6363" + } + }, + [29522]= { + ["skill"]= 29522, + ["name"]= "Dance of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/StanceNotableSwitching.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "You have Onslaught if you've changed Stance Recently" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)", + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 559, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "33037" + }, + ["in"]= { + "64284" + } + }, + [55152]= { + ["skill"]= 55152, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 560, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "544" + } + }, + [7786]= { + ["skill"]= 7786, + ["name"]= "Totem Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "544" + }, + ["in"]= { + "55648" + } + }, + [55648]= { + ["skill"]= 55648, + ["name"]= "Totem Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7786" + }, + ["in"]= { + "46291" + } + }, + [46291]= { + ["skill"]= 46291, + ["name"]= "Totem Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "Attacks used by Totems have 6% increased Attack Speed" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "55648" + }, + ["in"]= { + "6363" + } + }, + [544]= { + ["skill"]= 544, + ["name"]= "Surveillance", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemCriticalStrikes.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Attacks used by Totems have 8% increased Attack Speed", + "Attack Skills have +1 to maximum number of Summoned Ballista Totems", + "Each Totem applies 1% increased Damage taken to Enemies near it" + }, + ["group"]= 560, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "55152" + }, + ["in"]= { + "7786" + } + }, + [203]= { + ["skill"]= 203, + ["name"]= "Vinespike Cordial", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathfinderAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "Inflict a Grasping Vine on Hit against Enemies with fewer than\n8 Grasping Vines during Effect of any Life Flask" + }, + ["reminderText"]= { + "(Up to 10 Vines can grasp you, inflicting 8% less Movement Speed per Vine. Broken by moving)" + }, + ["group"]= 561, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [44330]= { + ["skill"]= 44330, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 562, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2275" + } + }, + [53882]= { + ["skill"]= 53882, + ["name"]= "Flask and Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureFlaskNode1.png", + ["stats"]= { + "Flasks applied to you have 5% increased Effect", + "Tinctures applied to you have 5% increased Effect" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "64888", + "24974", + "63139" + }, + ["in"]= {} + }, + [53809]= { + ["skill"]= 53809, + ["name"]= "Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Effect Duration" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "2275" + }, + ["in"]= { + "24974" + } + }, + [24974]= { + ["skill"]= 24974, + ["name"]= "Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Effect Duration" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "53809" + }, + ["in"]= { + "53882" + } + }, + [62721]= { + ["skill"]= 62721, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "2275" + }, + ["in"]= { + "64888" + } + }, + [64888]= { + ["skill"]= 64888, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62721" + }, + ["in"]= { + "53882" + } + }, + [2275]= { + ["skill"]= 2275, + ["name"]= "Nature's Concoction", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureFlaskNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "IndigoOil" + }, + ["stats"]= { + "Flasks adjacent to active Tinctures gain 2 charges when you Hit an\nEnemy with a Melee Weapon, no more than once every second" + }, + ["group"]= 562, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44330" + }, + ["in"]= { + "53809", + "62721" + } + }, + [43787]= { + ["skill"]= 43787, + ["name"]= "Accuracy and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "10% increased Accuracy Rating" + }, + ["group"]= 563, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "56589", + "29379" + } + }, + [29379]= { + ["skill"]= 29379, + ["name"]= "Accuracy and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "+4% to all Elemental Resistances", + "10% increased Accuracy Rating" + }, + ["group"]= 563, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "43787", + "52230" + }, + ["in"]= {} + }, + [52230]= { + ["skill"]= 52230, + ["name"]= "Weathered Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "TealOil" + }, + ["stats"]= { + "+100 to Accuracy Rating", + "+10% to all Elemental Resistances", + "20% increased Accuracy Rating" + }, + ["group"]= 563, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "42533" + }, + ["in"]= { + "29379" + } + }, + [42533]= { + ["skill"]= 42533, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 563, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52230" + } + }, + [37175]= { + ["skill"]= 37175, + ["name"]= "Damage if Consumed a Corpse", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseDamage.png", + ["stats"]= { + "14% increased Damage if you have Consumed a corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "16970", + "27415", + "36371" + }, + ["in"]= {} + }, + [36371]= { + ["skill"]= 36371, + ["name"]= "Corpse Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseLife.png", + ["stats"]= { + "Corpses you Spawn have 5% increased Maximum Life" + }, + ["reminderText"]= { + "(Killing an Enemy is not Spawning a corpse)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "37175", + "11200" + } + }, + [11200]= { + ["skill"]= 11200, + ["name"]= "Corpse Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseLife.png", + ["stats"]= { + "Corpses you Spawn have 5% increased Maximum Life" + }, + ["reminderText"]= { + "(Killing an Enemy is not Spawning a corpse)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "36371", + "25439" + }, + ["in"]= {} + }, + [25439]= { + ["skill"]= 25439, + ["name"]= "Undertaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpsesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Damage if you have Consumed a corpse Recently", + "Desecrate and Unearth have +2 to Maximum number of corpses allowed", + "Regenerate 2% of Life per second if you've Consumed a corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "32278" + }, + ["in"]= { + "11200", + "16970" + } + }, + [16970]= { + ["skill"]= 16970, + ["name"]= "Damage if Consumed a Corpse", + ["icon"]= "Art/2DArt/SkillIcons/passives/CorpseDamage.png", + ["stats"]= { + "16% increased Damage if you have Consumed a corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 564, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25439" + }, + ["in"]= { + "37175" + } + }, + [32278]= { + ["skill"]= 32278, + ["name"]= "Minion Offence Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMinions.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMinionOffenseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47429, + ["stats"]= { + "Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 9876, + ["stats"]= { + "Minions Penetrate 8% of Cursed Enemies' Elemental Resistances" + } + }, + { + ["effect"]= 40073, + ["stats"]= { + "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + { + ["effect"]= 41544, + ["stats"]= { + "Minions have 30% increased Area of Effect" + } + }, + { + ["effect"]= 11723, + ["stats"]= { + "Minions have 20% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 57179, + ["stats"]= { + "20% increased effect of Offerings" + } + } + }, + ["stats"]= {}, + ["group"]= 564, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25439" + } + }, + [63139]= { + ["skill"]= 63139, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 565, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5408", + "53882", + "15837", + "61306" + } + }, + [24358]= { + ["skill"]= 24358, + ["name"]= "Selective Precision", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadeyeAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "First and Final shots of Barrage sequences fire Projectiles that Return to you" + }, + ["group"]= 566, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [23471]= { + ["skill"]= 23471, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 567, + ["orbit"]= 6, + ["orbitIndex"]= 36, + ["out"]= { + "56589", + "5237", + "40287", + "23237" + }, + ["in"]= { + "20010", + "53002", + "36874", + "15027", + "3469" + } + }, + [52423]= { + ["skill"]= 52423, + ["name"]= "Blind Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindNode.png", + ["stats"]= { + "10% chance to Blind Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 568, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "40287" + }, + ["in"]= { + "570" + } + }, + [40287]= { + ["skill"]= 40287, + ["name"]= "Critical Strikes against Blinded Enemies", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindNode.png", + ["stats"]= { + "25% increased Critical Strike Chance against Blinded Enemies" + }, + ["group"]= 568, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "23471", + "52423" + } + }, + [570]= { + ["skill"]= 570, + ["name"]= "Dazzling Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance against Blinded Enemies", + "20% chance to Blind Enemies on Hit with Attacks", + "20% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 568, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "52423", + "59501" + }, + ["in"]= {} + }, + [59501]= { + ["skill"]= 59501, + ["name"]= "Blind Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43524, + ["stats"]= { + "40% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 7831, + ["stats"]= { + "100% increased Blind duration" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 57463, + ["stats"]= { + "60% increased Critical Strike Chance against Blinded Enemies" + } + }, + { + ["effect"]= 12100, + ["stats"]= { + "100% chance to Avoid Blind" + } + } + }, + ["stats"]= {}, + ["group"]= 568, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "570" + } + }, + [15027]= { + ["skill"]= 15027, + ["name"]= "Beef", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 569, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471" + }, + ["in"]= {} + }, + [4036]= { + ["skill"]= 4036, + ["name"]= "Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + ["stats"]= { + "+12% to Critical Strike Multiplier" + }, + ["group"]= 570, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "41635", + "15228" + } + }, + [15228]= { + ["skill"]= 15228, + ["name"]= "Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier.png", + ["stats"]= { + "+12% to Critical Strike Multiplier" + }, + ["group"]= 570, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "4036" + }, + ["in"]= { + "47306" + } + }, + [9586]= { + ["skill"]= 9586, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 570, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47306" + } + }, + [47306]= { + ["skill"]= 47306, + ["name"]= "Throatseeker", + ["icon"]= "Art/2DArt/SkillIcons/passives/throatseeker.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier" + }, + ["group"]= 570, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "15228", + "9586" + }, + ["in"]= {} + }, + [32345]= { + ["skill"]= 32345, + ["name"]= "Alacrity", + ["icon"]= "Art/2DArt/SkillIcons/passives/grace.png", + ["isNotable"]= true, + ["grantedDexterity"]= 30, + ["stats"]= { + "+30 to Dexterity" + }, + ["group"]= 571, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32710" + } + }, + [41476]= { + ["skill"]= 41476, + ["name"]= "Elder Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/elderpower.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "10% increased Wand Damage per Power Charge", + "10% chance to gain a Power Charge on Kill" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "52848", + "53828" + }, + ["in"]= { + "40840" + } + }, + [16243]= { + ["skill"]= 16243, + ["name"]= "Fusillade", + ["icon"]= "Art/2DArt/SkillIcons/passives/fussilade.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "VerdantOil" + }, + ["stats"]= { + "15% increased Attack Speed with Wands", + "30% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "48878", + "27879", + "53828" + }, + ["in"]= {} + }, + [53828]= { + ["skill"]= 53828, + ["name"]= "Wand Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupWand.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryWandActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWandPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16545, + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike with Wands" + } + }, + { + ["effect"]= 26785, + ["stats"]= { + "25% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" + } + }, + { + ["effect"]= 42540, + ["stats"]= { + "Wand Attacks fire an additional Projectile" + } + }, + { + ["effect"]= 61352, + ["stats"]= { + "Attacks have 100% Arcane Might while wielding a Wand" + }, + ["reminderText"]= { + "(Arcane Might causes Increases and Reductions to Spell Damage to also apply to Attack Damage at that percentage of their value)" + } + }, + { + ["effect"]= 15133, + ["stats"]= { + "0.5% of Attack Damage Leeched as Life", + "0.5% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 63280, + ["stats"]= { + "Intelligence is added to Accuracy Rating with Wands" + } + } + }, + ["stats"]= {}, + ["group"]= 572, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41476", + "16243", + "52031" + } + }, + [52031]= { + ["skill"]= 52031, + ["name"]= "Disintegration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "BlackOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "60% increased Critical Strike Chance with Wands", + "+30% to Critical Strike Multiplier with Wands", + "+20 to Intelligence" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "53828" + }, + ["in"]= { + "52848", + "27879" + } + }, + [52848]= { + ["skill"]= 52848, + ["name"]= "Wand Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandCritical.png", + ["stats"]= { + "30% increased Critical Strike Chance with Wands", + "+12% to Critical Strike Multiplier with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "52031" + }, + ["in"]= { + "41476" + } + }, + [27879]= { + ["skill"]= 27879, + ["name"]= "Wand Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandCritical.png", + ["stats"]= { + "30% increased Critical Strike Chance with Wands", + "+12% to Critical Strike Multiplier with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "52031" + }, + ["in"]= { + "16243" + } + }, + [39521]= { + ["skill"]= 39521, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "49779", + "33310" + }, + ["in"]= { + "51146" + } + }, + [40840]= { + ["skill"]= 40840, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 16% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "41476" + }, + ["in"]= { + "29552" + } + }, + [49779]= { + ["skill"]= 49779, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 16% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "29552" + }, + ["in"]= { + "39521" + } + }, + [29552]= { + ["skill"]= 29552, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterywand.png", + ["stats"]= { + "Wand Attacks deal 16% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "40840" + }, + ["in"]= { + "49779" + } + }, + [48878]= { + ["skill"]= 48878, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "4% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "51524" + }, + ["in"]= { + "16243" + } + }, + [51524]= { + ["skill"]= 51524, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "4% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "51146" + }, + ["in"]= { + "48878" + } + }, + [51146]= { + ["skill"]= 51146, + ["name"]= "Wand Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandSpeedAccuracyNode.png", + ["stats"]= { + "4% increased Attack Speed with Wands", + "8% increased Accuracy Rating with Wands" + }, + ["group"]= 572, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "39521" + }, + ["in"]= { + "51524" + } + }, + [53290]= { + ["skill"]= 53290, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "40483" + }, + ["in"]= { + "33310" + } + }, + [40483]= { + ["skill"]= 40483, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62849" + }, + ["in"]= { + "53290" + } + }, + [62849]= { + ["skill"]= 62849, + ["name"]= "Glacial Cage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChillThemedNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "Enemies permanently take 1% increased Damage for each second they've ever been Chilled by you, up to a maximum of 10%" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "38207" + }, + ["in"]= { + "40483" + } + }, + [12831]= { + ["skill"]= 12831, + ["name"]= "Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "53005" + }, + ["in"]= { + "33310" + } + }, + [53005]= { + ["skill"]= 53005, + ["name"]= "Freeze Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "15% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41870" + }, + ["in"]= { + "12831" + } + }, + [41870]= { + ["skill"]= 41870, + ["name"]= "Winter's Embrace", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamageEnemyNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "60% increased Freeze Duration on Enemies", + "30% increased Damage if you've Shattered an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 573, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "38207" + }, + ["in"]= { + "53005" + } + }, + [38207]= { + ["skill"]= 38207, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 573, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62849", + "41870" + } + }, + [444]= { + ["skill"]= 444, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 574, + ["orbit"]= 5, + ["orbitIndex"]= 36, + ["out"]= { + "61306" + }, + ["in"]= { + "52904" + } + }, + [52904]= { + ["skill"]= 52904, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 574, + ["orbit"]= 5, + ["orbitIndex"]= 60, + ["out"]= { + "444" + }, + ["in"]= { + "39821" + } + }, + [2094]= { + ["skill"]= 2094, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "+30 to Evasion Rating", + "5% increased maximum Life" + }, + ["group"]= 574, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60803", + "720" + }, + ["in"]= { + "39821" + } + }, + [21301]= { + ["skill"]= 21301, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 575, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20546" + }, + ["in"]= { + "37671", + "57746" + } + }, + [465]= { + ["skill"]= 465, + ["name"]= "Projectile Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "10% increased Projectile Damage" + }, + ["group"]= 576, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41536", + "65033" + }, + ["in"]= { + "45035" + } + }, + [51801]= { + ["skill"]= 51801, + ["name"]= "Spell Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["stats"]= { + "Spell Skills have 10% increased Area of Effect" + }, + ["group"]= 577, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "14745" + }, + ["in"]= { + "32710" + } + }, + [14745]= { + ["skill"]= 14745, + ["name"]= "Spell Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/areaofeffect.png", + ["stats"]= { + "Spell Skills have 10% increased Area of Effect" + }, + ["group"]= 577, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "53573" + }, + ["in"]= { + "51801" + } + }, + [53573]= { + ["skill"]= 53573, + ["name"]= "Arcane Expanse", + ["icon"]= "Art/2DArt/SkillIcons/passives/blastradius.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "Spell Skills have 20% increased Area of Effect" + }, + ["group"]= 577, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "14113" + }, + ["in"]= { + "14745" + } + }, + [14113]= { + ["skill"]= 14113, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 577, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53573" + } + }, + [57746]= { + ["skill"]= 57746, + ["name"]= "Chaos Resistance and Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedAndPoisonMitigateNode.png", + ["stats"]= { + "+7% to Chaos Resistance", + "10% chance to Avoid being Poisoned", + "10% chance to Avoid Bleeding" + }, + ["group"]= 578, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "57044", + "21301", + "62490", + "52095" + }, + ["in"]= {} + }, + [52095]= { + ["skill"]= 52095, + ["name"]= "Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", + ["stats"]= { + "+13% to Chaos Resistance" + }, + ["group"]= 578, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "10511" + }, + ["in"]= { + "57746" + } + }, + [57044]= { + ["skill"]= 57044, + ["name"]= "Bleed Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "20% chance to Avoid Bleeding" + }, + ["group"]= 578, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "57746", + "10511" + } + }, + [62490]= { + ["skill"]= 62490, + ["name"]= "Poison Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "20% chance to Avoid being Poisoned" + }, + ["group"]= 578, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "10511" + }, + ["in"]= { + "57746" + } + }, + [10511]= { + ["skill"]= 10511, + ["name"]= "Tolerance", + ["icon"]= "Art/2DArt/SkillIcons/passives/BleedPoisonMitigateNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+19% to Chaos Resistance", + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding" + }, + ["group"]= 578, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "57044", + "12873" + }, + ["in"]= { + "52095", + "62490" + } + }, + [12873]= { + ["skill"]= 12873, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 578, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "10511" + } + }, + [23549]= { + ["skill"]= 23549, + ["name"]= "Incorporeal", + ["icon"]= "Art/2DArt/SkillIcons/passives/AssassinAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "Elusive on you reduces in effect 50% slower", + "Elusive is removed from you at 20% effect" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 579, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [45838]= { + ["skill"]= 45838, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 580, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "4011" + }, + ["in"]= { + "8640" + } + }, + [8640]= { + ["skill"]= 8640, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 580, + ["orbit"]= 4, + ["orbitIndex"]= 24, + ["out"]= { + "45838", + "45272" + }, + ["in"]= {} + }, + [45272]= { + ["skill"]= 45272, + ["name"]= "Physical and Chaos Damage and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "14% increased Chaos Damage", + "+12 to maximum Life", + "14% increased Physical Damage" + }, + ["group"]= 580, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "53992", + "44683", + "8640", + "41689" + } + }, + [45033]= { + ["skill"]= 45033, + ["name"]= "Evasion and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "10% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 581, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "15344" + }, + ["in"]= { + "53324" + } + }, + [53324]= { + ["skill"]= 53324, + ["name"]= "Evasion and Phasing", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "10% chance to gain Phasing for 4 seconds on Kill" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)" + }, + ["group"]= 581, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "45033" + }, + ["in"]= { + "3469" + } + }, + [15344]= { + ["skill"]= 15344, + ["name"]= "Freedom of Movement", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionAndPhasingNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "VioletOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "40% increased Evasion Rating while Phasing", + "10% increased Movement Speed while Phasing", + "+20 to Dexterity" + }, + ["group"]= 581, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "3883" + }, + ["in"]= { + "45033" + } + }, + [3883]= { + ["skill"]= 3883, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 581, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15344" + } + }, + [55307]= { + ["skill"]= 55307, + ["name"]= "Ignite Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidburning.png", + ["stats"]= { + "20% chance to Avoid being Ignited" + }, + ["group"]= 582, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15837" + }, + ["in"]= { + "40743" + } + }, + [64241]= { + ["skill"]= 64241, + ["name"]= "Freeze and Chill Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/avoidchilling.png", + ["stats"]= { + "20% chance to Avoid being Chilled", + "20% chance to Avoid being Frozen" + }, + ["group"]= 582, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "15837", + "40743" + }, + ["in"]= {} + }, + [26471]= { + ["skill"]= 26471, + ["name"]= "Shock Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningdex.png", + ["stats"]= { + "20% chance to Avoid being Shocked" + }, + ["group"]= 582, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "40743" + }, + ["in"]= { + "15837" + } + }, + [15837]= { + ["skill"]= 15837, + ["name"]= "Avoid Status Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/crystalskin.png", + ["stats"]= { + "10% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 582, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "63139", + "26471" + }, + ["in"]= { + "55307", + "64241" + } + }, + [40743]= { + ["skill"]= 40743, + ["name"]= "Crystal Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/diamondskin.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1% to all maximum Elemental Resistances", + "20% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)", + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 582, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "55307" + }, + ["in"]= { + "64241", + "26471", + "31818" + } + }, + [31818]= { + ["skill"]= 31818, + ["name"]= "Protection Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryResistancesAndAilmentProtectionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19422, + ["stats"]= { + "50% of Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 4319, + ["stats"]= { + "Your Elemental Resistances cannot be lowered by Curses" + } + }, + { + ["effect"]= 9074, + ["stats"]= { + "Corrupted Blood cannot be inflicted on you" + } + }, + { + ["effect"]= 46807, + ["stats"]= { + "You cannot be Maimed", + "You cannot be Hindered" + } + }, + { + ["effect"]= 53837, + ["stats"]= { + "You cannot be Impaled" + } + }, + { + ["effect"]= 31331, + ["stats"]= { + "Damaging Ailments Cannot Be inflicted on you while you already have one", + "Non-Damaging Ailments Cannot Be inflicted on you while you already have one" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + } + }, + ["stats"]= {}, + ["group"]= 582, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "40743" + }, + ["in"]= {} + }, + [24496]= { + ["skill"]= 24496, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 583, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "51786" + }, + ["in"]= { + "39861" + } + }, + [39861]= { + ["skill"]= 39861, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 583, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "24496", + "33989" + }, + ["in"]= { + "49978" + } + }, + [33989]= { + ["skill"]= 33989, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 583, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "39861" + } + }, + [1365]= { + ["skill"]= 1365, + ["name"]= "Knowledge Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/TricksterAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "6% increased Energy Shield Recharge Rate for each different type of Mastery you have Allocated" + }, + ["group"]= 584, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [10153]= { + ["skill"]= 10153, + ["name"]= "Physique", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 585, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32710" + } + }, + [46495]= { + ["skill"]= 46495, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 586, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58851" + } + }, + [19196]= { + ["skill"]= 19196, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Reservation Efficiency of Skills" + }, + ["group"]= 586, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "58851" + }, + ["in"]= { + "23237" + } + }, + [23237]= { + ["skill"]= 23237, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 586, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "19196" + }, + ["in"]= { + "23471" + } + }, + [58851]= { + ["skill"]= 58851, + ["name"]= "Leader of the Pack", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraReservationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased Area of Effect of Aura Skills", + "12% increased Reservation Efficiency of Skills" + }, + ["group"]= 586, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46495" + }, + ["in"]= { + "19196" + } + }, + [10204]= { + ["skill"]= 10204, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 587, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65093" + } + }, + [40135]= { + ["skill"]= 40135, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "Sword Attacks deal 14% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 587, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "5237" + }, + ["in"]= { + "9262" + } + }, + [9262]= { + ["skill"]= 9262, + ["name"]= "Sword Damage and Melee Range", + ["icon"]= "Art/2DArt/SkillIcons/passives/damagesword.png", + ["stats"]= { + "Sword Attacks deal 10% increased Damage with Hits and Ailments", + "+0.1 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 587, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "40135" + }, + ["in"]= { + "65093" + } + }, + [65093]= { + ["skill"]= 65093, + ["name"]= "Bladedancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/SwordNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "CrimsonOil" + }, + ["stats"]= { + "Sword Attacks deal 30% increased Damage with Hits and Ailments", + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 587, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "9262", + "10204" + }, + ["in"]= {} + }, + [3195]= { + ["skill"]= 3195, + ["name"]= "Legacy of the Wilds", + ["icon"]= "Art/2DArt/SkillIcons/passives/WardenAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "Tinctures have 40% increased effect while at or above 10 stacks of Mana Burn" + }, + ["group"]= 588, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [59370]= { + ["skill"]= 59370, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 589, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "63795" + }, + ["in"]= { + "45035" + } + }, + [63795]= { + ["skill"]= 63795, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 589, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "38662" + }, + ["in"]= { + "59370" + } + }, + [54142]= { + ["skill"]= 54142, + ["name"]= "Finesse", + ["icon"]= "Art/2DArt/SkillIcons/passives/finesse.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "BlackOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "8% increased Attack Speed", + "+20 to Dexterity", + "15% increased Accuracy Rating" + }, + ["group"]= 590, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "9373", + "32117", + "30894", + "3187" + }, + ["in"]= { + "94", + "56149", + "61306" + } + }, + [64265]= { + ["skill"]= 64265, + ["name"]= "Aura Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraareaofeffect.png", + ["stats"]= { + "12% increased Area of Effect of Aura Skills" + }, + ["group"]= 591, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "63194", + "6538" + }, + ["in"]= {} + }, + [6799]= { + ["skill"]= 6799, + ["name"]= "Charisma", + ["icon"]= "Art/2DArt/SkillIcons/passives/authority.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "16% increased Mana Reservation Efficiency of Skills", + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 591, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "53615" + }, + ["in"]= { + "63194" + } + }, + [53615]= { + ["skill"]= 53615, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 591, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6799" + } + }, + [63194]= { + ["skill"]= 63194, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 591, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "6799" + }, + ["in"]= { + "64265" + } + }, + [41307]= { + ["skill"]= 41307, + ["name"]= "Deadly Inclinations", + ["icon"]= "Art/2DArt/SkillIcons/passives/EyesOfTheDeadly.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "BlackOil" + }, + ["grantedDexterity"]= 30, + ["stats"]= { + "18% increased Evasion Rating", + "+12 to maximum Life", + "16% increased Projectile Damage", + "+30 to Dexterity" + }, + ["group"]= 592, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [63639]= { + ["skill"]= 63639, + ["name"]= "Damage and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage_blue.png", + ["stats"]= { + "12% increased Damage", + "+10 to maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "64501", + "62069" + }, + ["in"]= { + "38129" + } + }, + [64501]= { + ["skill"]= 64501, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46136" + }, + ["in"]= { + "63639" + } + }, + [46136]= { + ["skill"]= 46136, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "58649" + }, + ["in"]= { + "64501" + } + }, + [58649]= { + ["skill"]= 58649, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35894" + }, + ["in"]= { + "46136" + } + }, + [62069]= { + ["skill"]= 62069, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "31583" + }, + ["in"]= { + "63639" + } + }, + [31583]= { + ["skill"]= 31583, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "1600" + }, + ["in"]= { + "62069" + } + }, + [1600]= { + ["skill"]= 1600, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 593, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "35894" + }, + ["in"]= { + "31583" + } + }, + [38344]= { + ["skill"]= 38344, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "50338" + }, + ["in"]= { + "10017" + } + }, + [65033]= { + ["skill"]= 65033, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "10017" + }, + ["in"]= { + "465" + } + }, + [10017]= { + ["skill"]= 10017, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "38344" + }, + ["in"]= { + "65033" + } + }, + [41250]= { + ["skill"]= 41250, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "10% increased Projectile Damage" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "50338" + }, + ["in"]= { + "62712" + } + }, + [41536]= { + ["skill"]= 41536, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "10% increased Projectile Damage" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "62712" + }, + ["in"]= { + "465" + } + }, + [62712]= { + ["skill"]= 62712, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "10% increased Projectile Damage" + }, + ["group"]= 594, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "41250" + }, + ["in"]= { + "41536" + } + }, + [6542]= { + ["skill"]= 6542, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "14% increased Evasion Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "94" + }, + ["in"]= { + "60803" + } + }, + [60803]= { + ["skill"]= 60803, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "14% increased Evasion Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "6542" + }, + ["in"]= { + "2094" + } + }, + [94]= { + ["skill"]= 94, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evade.png", + ["stats"]= { + "14% increased Evasion Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "54142" + }, + ["in"]= { + "6542" + } + }, + [29870]= { + ["skill"]= 29870, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56149" + }, + ["in"]= { + "720" + } + }, + [56149]= { + ["skill"]= 56149, + ["name"]= "Accuracy and Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "8% increased Attack Damage", + "8% increased Accuracy Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54142" + }, + ["in"]= { + "29870" + } + }, + [720]= { + ["skill"]= 720, + ["name"]= "Accuracy and Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracy.png", + ["stats"]= { + "8% increased Attack Damage", + "8% increased Accuracy Rating" + }, + ["group"]= 595, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "29870" + }, + ["in"]= { + "2094" + } + }, + [51360]= { + ["skill"]= 51360, + ["name"]= "Mixed Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/SaboteurAnointNotable.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "5% increased Cooldown Recovery Rate for throwing Traps per Mine Detonated Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 596, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [11334]= { + ["skill"]= 11334, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 597, + ["orbit"]= 6, + ["orbitIndex"]= 54, + ["out"]= { + "15549" + }, + ["in"]= { + "38129" + } + }, + [15549]= { + ["skill"]= 15549, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 597, + ["orbit"]= 6, + ["orbitIndex"]= 0, + ["out"]= { + "20546" + }, + ["in"]= { + "11334" + } + }, + [8620]= { + ["skill"]= 8620, + ["name"]= "Flask Charges against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Marked Enemy grants 20% increased Flask Charges to you" + }, + ["group"]= 598, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "41595" + }, + ["in"]= { + "27325" + } + }, + [27325]= { + ["skill"]= 27325, + ["name"]= "Flask Charges against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Marked Enemy grants 20% increased Flask Charges to you" + }, + ["group"]= 598, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "8620" + }, + ["in"]= { + "5237" + } + }, + [41595]= { + ["skill"]= 41595, + ["name"]= "Marked for Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Culling Strike against Marked Enemy" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + }, + ["group"]= 598, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "58563" + }, + ["in"]= { + "8620" + } + }, + [58563]= { + ["skill"]= 58563, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 598, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41595" + } + }, + [48477]= { + ["skill"]= 48477, + ["name"]= "Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "4% increased Cast Speed" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "5823" + }, + ["in"]= { + "23507" + } + }, + [23507]= { + ["skill"]= 23507, + ["name"]= "Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "4% increased Cast Speed" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48477" + }, + ["in"]= { + "57248" + } + }, + [57248]= { + ["skill"]= 57248, + ["name"]= "Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed", + "4% increased Cast Speed" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "23507" + }, + ["in"]= { + "41689" + } + }, + [41689]= { + ["skill"]= 41689, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "12% increased Chaos Damage", + "12% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "45272", + "57248" + }, + ["in"]= { + "51220" + } + }, + [27276]= { + ["skill"]= 27276, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62831" + }, + ["in"]= { + "5823" + } + }, + [62831]= { + ["skill"]= 62831, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "51220" + }, + ["in"]= { + "27276" + } + }, + [51220]= { + ["skill"]= 51220, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 599, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "41689" + }, + ["in"]= { + "62831" + } + }, + [58968]= { + ["skill"]= 58968, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+5% to Chaos Damage over Time Multiplier" + }, + ["group"]= 600, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9355" + }, + ["in"]= { + "37663" + } + }, + [37663]= { + ["skill"]= 37663, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+5% to Chaos Damage over Time Multiplier" + }, + ["group"]= 600, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "58968", + "44988" + }, + ["in"]= {} + }, + [44988]= { + ["skill"]= 44988, + ["name"]= "Wasting", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+10% to Chaos Damage over Time Multiplier", + "+17% to Chaos Resistance" + }, + ["group"]= 600, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "21801" + }, + ["in"]= { + "37663" + } + }, + [21801]= { + ["skill"]= 21801, + ["name"]= "Chaos Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50933, + ["stats"]= { + "Recover 1% of Life per Withered Debuff on each Enemy you Kill" + } + }, + { + ["effect"]= 59574, + ["stats"]= { + "+1 to Level of all Chaos Skill Gems", + "Lose 10% of Life and Energy Shield when you use a Chaos Skill" + } + }, + { + ["effect"]= 1727, + ["stats"]= { + "+1% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 21652, + ["stats"]= { + "40% of Physical Damage Converted to Chaos Damage" + } + }, + { + ["effect"]= 28678, + ["stats"]= { + "Deal 10% more Chaos Damage to enemies which have Energy Shield" + } + }, + { + ["effect"]= 65015, + ["stats"]= { + "5% chance when you inflict Withered to inflict up to 15 Withered Debuffs instead" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + } + }, + ["stats"]= {}, + ["group"]= 600, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44988" + } + }, + [39524]= { + ["skill"]= 39524, + ["name"]= "Critical Ailment Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AilmentDamageCritMultiplier.png", + ["stats"]= { + "+14% to Damage over Time Multiplier for Ailments from Critical Strikes" + }, + ["group"]= 601, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23439", + "49978" + }, + ["in"]= {} + }, + [23439]= { + ["skill"]= 23439, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "25% increased Critical Strike Chance" + }, + ["group"]= 601, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "9015" + }, + ["in"]= { + "39524" + } + }, + [9015]= { + ["skill"]= 9015, + ["name"]= "Dire Torment", + ["icon"]= "Art/2DArt/SkillIcons/passives/DireTorment.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "+25% to Damage over Time Multiplier for Ailments from Critical Strikes", + "40% increased Critical Strike Chance" + }, + ["group"]= 601, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "60834" + }, + ["in"]= { + "23439" + } + }, + [60834]= { + ["skill"]= 60834, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 601, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9015" + } + }, + [56075]= { + ["skill"]= 56075, + ["name"]= "Eldritch Battery", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.png", + ["isKeystone"]= true, + ["stats"]= { + "Spend Energy Shield before Mana for Skill Mana Costs\nEnergy Shield protects Mana instead of Life\n50% less Energy Shield Recharge Rate" + }, + ["flavourText"]= { + "What need have I for defence when my enemies", + "are reduced to ash and splinters?" + }, + ["group"]= 602, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "33310" + } + }, + [34625]= { + ["skill"]= 34625, + ["name"]= "Bow Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Accuracy Rating with Bows" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "46106" + }, + ["in"]= { + "16851" + } + }, + [46106]= { + ["skill"]= 46106, + ["name"]= "Bow Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Accuracy Rating with Bows" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "47743" + }, + ["in"]= { + "34625" + } + }, + [12068]= { + ["skill"]= 12068, + ["name"]= "Bow Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "12% increased Damage with Bows", + "3% increased Attack Speed with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "47743" + }, + ["in"]= { + "16851" + } + }, + [16851]= { + ["skill"]= 16851, + ["name"]= "Bow Damage and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "10% increased Damage with Bows", + "8% increased Accuracy Rating with Bows", + "10% increased Damage Over Time with Bow Skills" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "3469", + "12068", + "34625" + }, + ["in"]= {} + }, + [47743]= { + ["skill"]= 47743, + ["name"]= "Farsight", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "24% increased Damage with Bows", + "6% increased Attack Speed with Bows", + "16% increased Accuracy Rating with Bows", + "24% increased Damage Over Time with Bow Skills" + }, + ["group"]= 603, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "37502" + }, + ["in"]= { + "46106", + "12068" + } + }, + [37502]= { + ["skill"]= 37502, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 603, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47743" + } + }, + [6588]= { + ["skill"]= 6588, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 604, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45945" + } + }, + [48275]= { + ["skill"]= 48275, + ["name"]= "Avoid Interruption while Casting", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 604, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "21184" + }, + ["in"]= { + "32710" + } + }, + [21184]= { + ["skill"]= 21184, + ["name"]= "Avoid Interruption while Casting", + ["icon"]= "Art/2DArt/SkillIcons/passives/castavoidinterruption.png", + ["stats"]= { + "15% chance to Ignore Stuns while Casting" + }, + ["group"]= 604, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45945" + }, + ["in"]= { + "48275" + } + }, + [45945]= { + ["skill"]= 45945, + ["name"]= "Conjured Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AvoidInterruptionFromCastingNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "30% chance to Ignore Stuns while Casting", + "50% increased Stun and Block Recovery", + "30% increased Mana Regeneration Rate while stationary" + }, + ["group"]= 604, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "6588" + }, + ["in"]= { + "21184" + } + }, + [3469]= { + ["skill"]= 3469, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 605, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "23471", + "34678", + "53324", + "6383", + "63620" + }, + ["in"]= { + "16851", + "64709" + } + }, + [49639]= { + ["skill"]= 49639, + ["name"]= "Supreme Ego", + ["icon"]= "Art/2DArt/SkillIcons/passives/SupremeEgo.png", + ["isKeystone"]= true, + ["stats"]= { + "Auras from your Skills can only affect you\nAura Skills have 1% more Aura Effect per 2% of maximum Mana they Reserve\n40% more Mana Reservation of Aura Skills" + }, + ["flavourText"]= { + "You are the heart of the empire, shining bright so that all are lifted up by your light.", + "Let none tell you otherwise." + }, + ["group"]= 606, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49978" + }, + ["in"]= {} + }, + [37147]= { + ["skill"]= 37147, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 607, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "3109" + }, + ["in"]= {} + }, + [63754]= { + ["skill"]= 63754, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 608, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "9797" + }, + ["in"]= {} + }, + [34678]= { + ["skill"]= 34678, + ["name"]= "Life and Elemental Ailment Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life", + "4% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "3469", + "26528", + "19069" + } + }, + [26528]= { + ["skill"]= 26528, + ["name"]= "Life and Elemental Ailment Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life", + "4% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "58271", + "34678" + }, + ["in"]= {} + }, + [58271]= { + ["skill"]= 58271, + ["name"]= "Life and Elemental Ailment Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life", + "4% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "30679" + }, + ["in"]= { + "26528" + } + }, + [3042]= { + ["skill"]= 3042, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 609, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19069" + } + }, + [19069]= { + ["skill"]= 19069, + ["name"]= "Thick Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/thickskin.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "8% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 609, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34678", + "3042" + }, + ["in"]= {} + }, + [53759]= { + ["skill"]= 53759, + ["name"]= "Cleansed Thoughts", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaoticPotential.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "Chaos Resistance is doubled" + }, + ["group"]= 610, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [49605]= { + ["skill"]= 49605, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 611, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32710", + "60440", + "22618", + "33310", + "42006" + }, + ["in"]= { + "52407" + } + }, + [53738]= { + ["skill"]= 53738, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 612, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44102" + } + }, + [42006]= { + ["skill"]= 42006, + ["name"]= "Mine Damage and Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineManaReservationNode.png", + ["stats"]= { + "8% increased Mine Damage", + "10% increased Mana Reservation Efficiency of Skills that throw Mines" + }, + ["group"]= 612, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18661" + }, + ["in"]= { + "49605" + } + }, + [18661]= { + ["skill"]= 18661, + ["name"]= "Mine Damage and Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineManaReservationNode.png", + ["stats"]= { + "8% increased Mine Damage", + "10% increased Mana Reservation Efficiency of Skills that throw Mines" + }, + ["group"]= 612, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "44102" + }, + ["in"]= { + "42006" + } + }, + [44102]= { + ["skill"]= 44102, + ["name"]= "Efficient Explosives", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineManaReservationNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Mana Reservation Efficiency of Skills that throw Mines", + "Mines have a 15% chance to be Detonated an Additional Time" + }, + ["group"]= 612, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "53738" + }, + ["in"]= { + "18661" + } + }, + [52157]= { + ["skill"]= 52157, + ["name"]= "Soul Siphon", + ["icon"]= "Art/2DArt/SkillIcons/passives/soulsyphon.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "VioletOil" + }, + ["stats"]= { + "+20 to maximum Mana", + "18% increased maximum Mana", + "Gain 10 Mana per Enemy Killed" + }, + ["group"]= 613, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "59009" + }, + ["in"]= { + "1891" + } + }, + [10166]= { + ["skill"]= 10166, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 614, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6233" + } + }, + [31371]= { + ["skill"]= 31371, + ["name"]= "Mine Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + ["stats"]= { + "Skills used by Mines have 10% increased Area of Effect" + }, + ["group"]= 614, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "40751" + }, + ["in"]= { + "20546" + } + }, + [40751]= { + ["skill"]= 40751, + ["name"]= "Mine Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.png", + ["stats"]= { + "Skills used by Mines have 10% increased Area of Effect" + }, + ["group"]= 614, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "6233" + }, + ["in"]= { + "31371" + } + }, + [6233]= { + ["skill"]= 6233, + ["name"]= "Blast Waves", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineAreaOfEffectNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "CrimsonOil" + }, + ["stats"]= { + "Skills used by Mines deal 30% increased Area Damage if you Detonated a Mine Recently", + "Skills used by Mines have 15% increased Area of Effect if you Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 614, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "10166" + }, + ["in"]= { + "40751" + } + }, + [57199]= { + ["skill"]= 57199, + ["name"]= "Fangs of Frost", + ["icon"]= "Art/2DArt/SkillIcons/passives/icebite.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "SilverOil" + }, + ["stats"]= { + "Damage with Weapons Penetrates 8% Cold Resistance", + "30% increased Cold Damage with Attack Skills" + }, + ["group"]= 615, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "61327", + "7023" + }, + ["in"]= {} + }, + [7023]= { + ["skill"]= 7023, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 615, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "57199" + } + }, + [61327]= { + ["skill"]= 61327, + ["name"]= "Weapon Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage with Attack Skills" + }, + ["group"]= 615, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "51404" + }, + ["in"]= { + "57199" + } + }, + [51404]= { + ["skill"]= 51404, + ["name"]= "Weapon Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage with Attack Skills" + }, + ["group"]= 615, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "61327", + "5237" + } + }, + [5237]= { + ["skill"]= 5237, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 616, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6363", + "42178", + "58854", + "30679", + "51404", + "27325" + }, + ["in"]= { + "23471", + "40135" + } + }, + [50338]= { + ["skill"]= 50338, + ["name"]= "Ballistics", + ["icon"]= "Art/2DArt/SkillIcons/passives/perfectaim.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "OpalescentOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "20% increased Projectile Speed", + "20% increased Projectile Damage", + "+20 to Dexterity" + }, + ["group"]= 617, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38662", + "42964" + }, + ["in"]= { + "38344", + "41250", + "57240", + "48099" + } + }, + [6538]= { + ["skill"]= 6538, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 618, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "38662" + }, + ["in"]= { + "64265", + "49978", + "17788" + } + }, + [38662]= { + ["skill"]= 38662, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 619, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63795", + "50338", + "6538", + "5616" + } + }, + [61306]= { + ["skill"]= 61306, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 620, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60942", + "63139", + "54142" + }, + ["in"]= { + "444", + "17421", + "16602" + } + }, + [17421]= { + ["skill"]= 17421, + ["name"]= "Mana and Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Flask Charges gained" + }, + ["group"]= 621, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61306" + }, + ["in"]= { + "51440" + } + }, + [29104]= { + ["skill"]= 29104, + ["name"]= "Mana and Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "10% increased Flask Charges gained" + }, + ["group"]= 621, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "51440", + "64709" + }, + ["in"]= {} + }, + [51440]= { + ["skill"]= 51440, + ["name"]= "Druidic Rite", + ["icon"]= "Art/2DArt/SkillIcons/passives/DruidicRite.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "20% increased maximum Mana", + "20% increased Flask Effect Duration" + }, + ["group"]= 621, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "17421", + "9458" + }, + ["in"]= { + "29104" + } + }, + [9458]= { + ["skill"]= 9458, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 621, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51440" + } + }, + [9355]= { + ["skill"]= 9355, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + }, + ["group"]= 622, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49978" + }, + ["in"]= { + "58968", + "4011", + "64509" + } + }, + [49978]= { + ["skill"]= 49978, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 623, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6538", + "39861", + "6042" + }, + ["in"]= { + "39524", + "49639", + "9355", + "41819", + "8938" + } + }, + [4011]= { + ["skill"]= 4011, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 624, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "9355" + }, + ["in"]= { + "45838", + "5823", + "28012" + } + }, + [35853]= { + ["skill"]= 35853, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 625, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "3109" + }, + ["in"]= { + "46393" + } + }, + [3109]= { + ["skill"]= 3109, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "37147", + ["parent"]= "46393" + }, + ["stats"]= {}, + ["group"]= 625, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "37147", + "35853" + } + }, + [63620]= { + ["skill"]= 63620, + ["name"]= "Precise Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/PreciseTechnique.png", + ["isKeystone"]= true, + ["stats"]= { + "40% more Attack Damage if Accuracy Rating is higher than Maximum Life\nNever deal Critical Strikes" + }, + ["flavourText"]= { + "Fear not the warrior that has practiced ten thousand techniques once.", + "Fear the warrior that has practiced one technique ten thousand times." + }, + ["group"]= 626, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3469" + } + }, + [65210]= { + ["skill"]= 65210, + ["name"]= "Heart of Oak", + ["icon"]= "Art/2DArt/SkillIcons/passives/HeartoftheOak.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "8% increased maximum Life", + "20% chance to Avoid being Stunned", + "Regenerate 2% of Life per Second if you've used a Life Flask in the past 10 seconds" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "32117", + "48099" + } + }, + [25178]= { + ["skill"]= 25178, + ["name"]= "Primal Spirit", + ["icon"]= "Art/2DArt/SkillIcons/passives/animalspirit.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "BlackOil" + }, + ["grantedStrength"]= 20, + ["grantedIntelligence"]= 20, + ["stats"]= { + "20% increased maximum Mana", + "Gain 4 Mana per Enemy Hit with Attacks if you've used a Mana Flask in the past 10 seconds", + "+20 to Strength and Intelligence" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "9373" + }, + ["in"]= { + "57240" + } + }, + [57240]= { + ["skill"]= 57240, + ["name"]= "Mana and Flask Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "25178", + "50338" + }, + ["in"]= {} + }, + [9373]= { + ["skill"]= 9373, + ["name"]= "Mana and Flask Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "54142", + "25178" + } + }, + [32117]= { + ["skill"]= 32117, + ["name"]= "Life and Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "8% chance to Avoid being Stunned" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "65210" + }, + ["in"]= { + "54142" + } + }, + [48099]= { + ["skill"]= 48099, + ["name"]= "Life and Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "4% increased maximum Life", + "8% chance to Avoid being Stunned" + }, + ["group"]= 627, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "65210", + "50338" + }, + ["in"]= {} + }, + [40132]= { + ["skill"]= 40132, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "8% increased Evasion Rating" + }, + ["group"]= 628, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= { + "46882" + }, + ["in"]= { + "58854" + } + }, + [58854]= { + ["skill"]= 58854, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "8% increased Evasion Rating" + }, + ["group"]= 628, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "40132" + }, + ["in"]= { + "5237" + } + }, + [46882]= { + ["skill"]= 46882, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 1, + ["proxy"]= "25134" + }, + ["stats"]= {}, + ["group"]= 628, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "40132", + "25134" + } + }, + [1891]= { + ["skill"]= 1891, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 629, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35894", + "52157" + }, + ["in"]= {} + }, + [59009]= { + ["skill"]= 59009, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 630, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5823" + }, + ["in"]= { + "52157" + } + }, + [21984]= { + ["skill"]= 21984, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 5, + ["proxy"]= "18756" + }, + ["stats"]= {}, + ["group"]= 631, + ["orbit"]= 1, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "21033", + "18756" + } + }, + [22618]= { + ["skill"]= 22618, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "4% increased maximum Mana" + }, + ["group"]= 631, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "21033" + }, + ["in"]= { + "49605" + } + }, + [21033]= { + ["skill"]= 21033, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "4% increased maximum Mana" + }, + ["group"]= 631, + ["orbit"]= 1, + ["orbitIndex"]= 0, + ["out"]= { + "21984" + }, + ["in"]= { + "22618" + } + }, + [58194]= { + ["skill"]= 58194, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 632, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "9797", + "64583" + } + }, + [9797]= { + ["skill"]= 9797, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "63754", + ["parent"]= "64583" + }, + ["stats"]= {}, + ["group"]= 632, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "58194" + }, + ["in"]= { + "63754" + } + }, + [20546]= { + ["skill"]= 20546, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 633, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "3656", + "31371" + }, + ["in"]= { + "21301", + "15549", + "35894", + "14157" + } + }, + [35894]= { + ["skill"]= 35894, + ["name"]= "Trickery", + ["icon"]= "Art/2DArt/SkillIcons/passives/mentalacuity.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "BlackOil" + }, + ["grantedDexterity"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "20% increased Damage", + "20% increased Critical Strike Chance", + "+10 to Dexterity and Intelligence" + }, + ["group"]= 634, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "20546", + "21575" + }, + ["in"]= { + "58649", + "1600", + "1891", + "21835", + "35283" + } + }, + [5823]= { + ["skill"]= 5823, + ["name"]= "Coordination", + ["icon"]= "Art/2DArt/SkillIcons/passives/Coordination.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "BlackOil" + }, + ["grantedDexterity"]= 10, + ["grantedIntelligence"]= 10, + ["stats"]= { + "10% increased Attack Speed", + "8% increased Cast Speed", + "+10 to Dexterity and Intelligence" + }, + ["group"]= 635, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "4011", + "27276", + "30205", + "46289" + }, + ["in"]= { + "48477", + "59009", + "9877" + } + }, + [6042]= { + ["skill"]= 6042, + ["name"]= "Life Gain on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "Gain 5 Life per Enemy Hit with Attacks" + }, + ["group"]= 636, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "19401" + }, + ["in"]= { + "49978" + } + }, + [19401]= { + ["skill"]= 19401, + ["name"]= "Life Gain on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "Gain 5 Life per Enemy Hit with Attacks" + }, + ["group"]= 636, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "63453" + }, + ["in"]= { + "6042" + } + }, + [63453]= { + ["skill"]= 63453, + ["name"]= "Excess Sustenance", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "15% chance to gain 200 Life on Hit with Attacks" + }, + ["group"]= 636, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "10141" + }, + ["in"]= { + "19401" + } + }, + [10141]= { + ["skill"]= 10141, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 636, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63453" + } + }, + [42178]= { + ["skill"]= 42178, + ["name"]= "Point Blank", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystonePointBlankArcher.png", + ["isKeystone"]= true, + ["stats"]= { + "Projectile Attack Hits deal up to 30% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther" + }, + ["flavourText"]= { + "Look your foe in the eyes before you pierce him. Delight in his fear." + }, + ["group"]= 637, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "5237" + } + }, + [32227]= { + ["skill"]= 32227, + ["name"]= "Adder's Touch", + ["icon"]= "Art/2DArt/SkillIcons/passives/adderstouch.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "+25% to Damage over Time Multiplier for Poison from Critical Strikes", + "Critical Strikes with Daggers Poison the Enemy" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "20167", + "62853" + }, + ["in"]= { + "3863" + } + }, + [64509]= { + ["skill"]= 64509, + ["name"]= "Dagger Ailment Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 16% increased Damage with Ailments" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "3863", + "20167", + "9355" + }, + ["in"]= {} + }, + [3863]= { + ["skill"]= 3863, + ["name"]= "Dagger Critical Strike Multiplier and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Daggers", + "5% increased Poison Duration" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "32227" + }, + ["in"]= { + "64509" + } + }, + [20167]= { + ["skill"]= 20167, + ["name"]= "Dagger Ailment Damage and Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 20% increased Damage with Ailments", + "15% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 638, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "32227", + "64509" + } + }, + [62853]= { + ["skill"]= 62853, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 638, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32227" + } + }, + [17788]= { + ["skill"]= 17788, + ["name"]= "Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Charges gained" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "57259", + "42133", + "6538" + }, + ["in"]= {} + }, + [42133]= { + ["skill"]= 42133, + ["name"]= "Life Flask Charge Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "50690" + }, + ["in"]= { + "17788" + } + }, + [57259]= { + ["skill"]= 57259, + ["name"]= "Mana Flask Charge Gain", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskint.png", + ["stats"]= { + "Mana Flasks gain 1 Charge every 3 seconds" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "50690" + }, + ["in"]= { + "17788" + } + }, + [50690]= { + ["skill"]= 50690, + ["name"]= "Replenishing Remedies", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeandManaFlasks.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "IndigoOil" + }, + ["stats"]= { + "15% increased Flask Charges gained", + "Life Flasks gain 2 Charges every 3 seconds", + "Mana Flasks gain 2 Charges every 3 seconds" + }, + ["group"]= 639, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "41016" + }, + ["in"]= { + "42133", + "57259" + } + }, + [41016]= { + ["skill"]= 41016, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 639, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "50690" + } + }, + [62094]= { + ["skill"]= 62094, + ["name"]= "Taste for Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/TasteforBlood.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Life", + "30% increased Maximum total Life Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 640, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "43495" + }, + ["in"]= { + "3634" + } + }, + [43495]= { + ["skill"]= 43495, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 640, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "62094" + } + }, + [3634]= { + ["skill"]= 3634, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "0.4% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 640, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "62094", + "41819" + }, + ["in"]= {} + }, + [41819]= { + ["skill"]= 41819, + ["name"]= "Life Leech Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "60% increased total Recovery per second from Life Leech" + }, + ["group"]= 640, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49978" + }, + ["in"]= { + "3634" + } + }, + [21835]= { + ["skill"]= 21835, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 641, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35894", + "25058" + }, + ["in"]= {} + }, + [9877]= { + ["skill"]= 9877, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "5% increased maximum Life" + }, + ["group"]= 642, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5823" + }, + ["in"]= { + "25058" + } + }, + [23438]= { + ["skill"]= 23438, + ["name"]= "Life Flasks and Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "10% increased Life Recovery from Flasks", + "10% increased Flask Effect Duration" + }, + ["group"]= 643, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "41137" + }, + ["in"]= { + "64709" + } + }, + [16602]= { + ["skill"]= 16602, + ["name"]= "Life Flasks and Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskstr.png", + ["stats"]= { + "10% increased Life Recovery from Flasks", + "10% increased Flask Effect Duration" + }, + ["group"]= 643, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "41137", + "61306" + }, + ["in"]= {} + }, + [41137]= { + ["skill"]= 41137, + ["name"]= "Field Medicine", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeFlasks.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "30% increased Life Recovery from Flasks", + "Life Flasks gain a Charge when you hit an Enemy, no more than once each second" + }, + ["group"]= 643, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "46761" + }, + ["in"]= { + "23438", + "16602" + } + }, + [46761]= { + ["skill"]= 46761, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 643, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41137" + } + }, + [22994]= { + ["skill"]= 22994, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "51233", + ["parent"]= "46882" + }, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "51233" + }, + ["in"]= { + "40400", + "25134" + } + }, + [40400]= { + ["skill"]= 40400, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "57194", + ["parent"]= "46882" + }, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "22994" + }, + ["in"]= { + "46393", + "57194" + } + }, + [46393]= { + ["skill"]= 46393, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "35853", + ["parent"]= "46882" + }, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "35853", + "40400", + "25134" + }, + ["in"]= {} + }, + [25134]= { + ["skill"]= 25134, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 644, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "22994", + "46882" + }, + ["in"]= { + "46393" + } + }, + [14157]= { + ["skill"]= 14157, + ["name"]= "Dagger Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "20% increased Critical Strike Chance with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "39443", + "28758", + "20546" + }, + ["in"]= {} + }, + [28758]= { + ["skill"]= 28758, + ["name"]= "Dagger Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56276" + }, + ["in"]= { + "14157" + } + }, + [39443]= { + ["skill"]= 39443, + ["name"]= "Dagger Critical Strike Chance and Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + ["stats"]= { + "20% increased Critical Strike Chance with Daggers", + "0.8% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "56276" + }, + ["in"]= { + "14157" + } + }, + [15409]= { + ["skill"]= 15409, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 645, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56276" + } + }, + [56276]= { + ["skill"]= 56276, + ["name"]= "Nightstalker", + ["icon"]= "Art/2DArt/SkillIcons/passives/nightstalker.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier with Daggers", + "0.6% of Attack Damage Leeched as Life", + "0.6% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 645, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "15409" + }, + ["in"]= { + "28758", + "39443" + } + }, + [58168]= { + ["skill"]= 58168, + ["name"]= "High Voltage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IntensifyNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "IndigoOil", + "IndigoOil" + }, + ["stats"]= { + "100% increased Critical Strike Chance against Shocked Enemies" + }, + ["group"]= 646, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "54645", + "14122" + }, + ["in"]= {} + }, + [52407]= { + ["skill"]= 52407, + ["name"]= "Lightning Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Lightning Skills" + }, + ["group"]= 646, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49605" + }, + ["in"]= { + "54645" + } + }, + [54645]= { + ["skill"]= 54645, + ["name"]= "Lightning Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "+12% to Critical Strike Multiplier with Lightning Skills" + }, + ["group"]= 646, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "52407" + }, + ["in"]= { + "58168" + } + }, + [14122]= { + ["skill"]= 14122, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 646, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58168" + } + }, + [38622]= { + ["skill"]= 38622, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 647, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "26763" + } + }, + [50734]= { + ["skill"]= 50734, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 647, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "13965" + }, + ["in"]= { + "64709" + } + }, + [13965]= { + ["skill"]= 13965, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 647, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "26763" + }, + ["in"]= { + "50734" + } + }, + [26763]= { + ["skill"]= 26763, + ["name"]= "Perfected Formula", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNotable3.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "15% chance for Tinctures to not inflict Mana Burn", + "Tinctures applied to you have 10% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Mana Burn causes you to lose 1% of your maximum Mana per stack per second)", + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 647, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "38622" + }, + ["in"]= { + "13965" + } + }, + [50382]= { + ["skill"]= 50382, + ["name"]= "Dual Wield Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "4% increased Cast Speed while Dual Wielding" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "60440" + }, + ["in"]= { + "48093", + "34560" + } + }, + [6616]= { + ["skill"]= 6616, + ["name"]= "Dual Wield Cast Speed and Movement Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "3% increased Cast Speed while Dual Wielding", + "15% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "48093" + }, + ["in"]= { + "44824" + } + }, + [48093]= { + ["skill"]= 48093, + ["name"]= "Dual Wield Cast Speed and Movement Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "3% increased Cast Speed while Dual Wielding", + "15% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "50382" + }, + ["in"]= { + "6616" + } + }, + [44824]= { + ["skill"]= 44824, + ["name"]= "Mysticism", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "AzureOil", + "OpalescentOil" + }, + ["stats"]= { + "20% increased Spell Damage while Dual Wielding", + "6% increased Cast Speed while Dual Wielding", + "40% increased Mana Regeneration if you've used a Movement Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "6616", + "16743", + "17411" + }, + ["in"]= {} + }, + [16743]= { + ["skill"]= 16743, + ["name"]= "Dual Wield Spell Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "10% increased Spell Damage while Dual Wielding", + "3% increased Movement Speed while Dual Wielding" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "34560" + }, + ["in"]= { + "44824" + } + }, + [34560]= { + ["skill"]= 34560, + ["name"]= "Dual Wield Spell Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldNodeOffensive.png", + ["stats"]= { + "10% increased Spell Damage while Dual Wielding", + "3% increased Movement Speed while Dual Wielding" + }, + ["group"]= 648, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "50382" + }, + ["in"]= { + "16743" + } + }, + [17411]= { + ["skill"]= 17411, + ["name"]= "Caster Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCasterActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48358, + ["stats"]= { + "Final Repeat of Spells has 40% increased Area of Effect" + } + }, + { + ["effect"]= 33089, + ["stats"]= { + "Gain a Power Charge each second while Channelling a Spell" + } + }, + { + ["effect"]= 61071, + ["stats"]= { + "6% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 50906, + ["stats"]= { + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + { + ["effect"]= 27401, + ["stats"]= { + "Skills supported by Unleash have +1 to maximum number of Seals" + } + }, + { + ["effect"]= 23471, + ["stats"]= { + "25% chance to open nearby Chests when you Cast a Spell" + } + } + }, + ["stats"]= {}, + ["group"]= 648, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "44824" + } + }, + [8370]= { + ["skill"]= 8370, + ["name"]= "Attributes Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/WarcryMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttributesActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 5356, + ["stats"]= { + "5% increased Attributes" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 41483, + ["stats"]= { + "1% increased Damage per 5 of your lowest Attribute" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)" + } + }, + { + ["effect"]= 26621, + ["stats"]= { + "+5 to Strength per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 52604, + ["stats"]= { + "+5 to Intelligence per Allocated Mastery Passive Skill" + } + }, + { + ["effect"]= 15826, + ["stats"]= { + "+5 to Dexterity per Allocated Mastery Passive Skill" + } + } + }, + ["stats"]= {}, + ["group"]= 649, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63921" + } + }, + [63439]= { + ["skill"]= 63439, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 15, + ["stats"]= { + "+15 to Dexterity" + }, + ["group"]= 649, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "63921" + }, + ["in"]= { + "43608" + } + }, + [43608]= { + ["skill"]= 43608, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 15, + ["stats"]= { + "+15 to Dexterity" + }, + ["group"]= 649, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "63439" + }, + ["in"]= { + "30679" + } + }, + [63921]= { + ["skill"]= 63921, + ["name"]= "Utmost Swiftness", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "CrimsonOil" + }, + ["grantedDexterity"]= 40, + ["stats"]= { + "+40 to Dexterity", + "8% increased Dexterity" + }, + ["group"]= 649, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "8370" + }, + ["in"]= { + "63439" + } + }, + [20852]= { + ["skill"]= 20852, + ["name"]= "Fire and Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNode.png", + ["stats"]= { + "8% increased Fire Damage", + "8% increased Cold Damage" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "36585", + "6785", + "4502" + }, + ["in"]= {} + }, + [6785]= { + ["skill"]= 6785, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/firedamage.png", + ["stats"]= { + "16% increased Fire Damage" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "42649" + }, + ["in"]= { + "20852" + } + }, + [36585]= { + ["skill"]= 36585, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "16% increased Cold Damage" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "42649" + }, + ["in"]= { + "20852" + } + }, + [42649]= { + ["skill"]= 42649, + ["name"]= "Snowforged", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "25% increased Fire Damage", + "25% increased Cold Damage", + "Enemies Ignited or Chilled by you have -5% to Elemental Resistances" + }, + ["group"]= 650, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "13387" + }, + ["in"]= { + "6785", + "36585" + } + }, + [13387]= { + ["skill"]= 13387, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 650, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42649" + } + }, + [64709]= { + ["skill"]= 64709, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 651, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60942", + "3469", + "32802", + "23438", + "34660", + "50734" + }, + ["in"]= { + "29104" + } + }, + [64583]= { + ["skill"]= 64583, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "58194", + ["parent"]= "21984" + }, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "61288", + "58194" + }, + ["in"]= { + "18756" + } + }, + [61288]= { + ["skill"]= 61288, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "34013", + ["parent"]= "21984" + }, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "13170" + }, + ["in"]= { + "64583", + "34013" + } + }, + [13170]= { + ["skill"]= 13170, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "24452", + ["parent"]= "21984" + }, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "18756" + }, + ["in"]= { + "61288", + "24452" + } + }, + [18756]= { + ["skill"]= 18756, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 652, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "21984", + "64583" + }, + ["in"]= { + "13170" + } + }, + [25058]= { + ["skill"]= 25058, + ["name"]= "Blood Siphon", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodSiphon.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "OpalescentOil", + "SilverOil" + }, + ["grantedStrength"]= 20, + ["stats"]= { + "10% increased maximum Life", + "Gain 10 Life per Enemy Killed", + "+20 to Strength" + }, + ["group"]= 653, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "9877" + }, + ["in"]= { + "21835" + } + }, + [41380]= { + ["skill"]= 41380, + ["name"]= "Bow Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% increased Accuracy Rating with Bows" + }, + ["group"]= 654, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "57819" + }, + ["in"]= { + "65224" + } + }, + [57819]= { + ["skill"]= 57819, + ["name"]= "Bow Attack Speed and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "4% increased Attack Speed with Bows", + "8% increased Accuracy Rating with Bows" + }, + ["group"]= 654, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "31508" + }, + ["in"]= { + "41380" + } + }, + [6654]= { + ["skill"]= 6654, + ["name"]= "Bow Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "15% increased Damage with Bows", + "20% increased Critical Strike Chance with Bows", + "15% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "31508" + }, + ["in"]= { + "6913" + } + }, + [6913]= { + ["skill"]= 6913, + ["name"]= "Bow Damage and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "15% increased Damage with Bows", + "20% increased Critical Strike Chance with Bows", + "15% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "6654" + }, + ["in"]= { + "65224" + } + }, + [42964]= { + ["skill"]= 42964, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "50338", + "65224" + } + }, + [65224]= { + ["skill"]= 65224, + ["name"]= "Aspect of the Eagle", + ["icon"]= "Art/2DArt/SkillIcons/passives/AspectoftheEagle.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "VerdantOil" + }, + ["stats"]= { + "20% increased Damage with Bows", + "6% increased Attack Speed with Bows", + "10% increased Accuracy Rating with Bows", + "20% increased Damage Over Time with Bow Skills" + }, + ["group"]= 654, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "6913", + "42964", + "41380" + }, + ["in"]= {} + }, + [44206]= { + ["skill"]= 44206, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 655, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "34978" + } + }, + [22845]= { + ["skill"]= 22845, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 8% increased Effect" + }, + ["group"]= 655, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "21019" + }, + ["in"]= { + "8938" + } + }, + [21019]= { + ["skill"]= 21019, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 655, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "34978" + }, + ["in"]= { + "22845" + } + }, + [34978]= { + ["skill"]= 34978, + ["name"]= "Colloidal Mixture", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "VerdantOil" + }, + ["stats"]= { + "Tinctures applied to you have 15% increased Effect", + "Tinctures applied to you have 15% increased Effect if you've used a Life Flask Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 655, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44206" + }, + ["in"]= { + "21019" + } + }, + [20730]= { + ["skill"]= 20730, + ["name"]= "Spell Suppression Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 58447, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 7677, + ["stats"]= { + "Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance for 4 seconds)" + } + }, + { + ["effect"]= 42014, + ["stats"]= { + "Prevent +1% of Suppressed Spell Damage per Hit Suppressed Recently", + "-2% chance to Suppress Spell Damage per Hit Suppressed Recently" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 2474, + ["stats"]= { + "Suppressed Spell Damage cannot inflict Elemental Ailments on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 13757, + ["stats"]= { + "You have Phasing if you have Suppressed Spell Damage Recently", + "+8% chance to Suppress Spell Damage while Phasing" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 45317, + ["stats"]= { + "Chance to Suppress Spell Damage is Lucky" + } + } + }, + ["stats"]= {}, + ["group"]= 656, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59866" + } + }, + [4656]= { + ["skill"]= 4656, + ["name"]= "Spell Suppression and Life Flask Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "12% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "59866" + }, + ["in"]= { + "22217", + "30679" + } + }, + [22217]= { + ["skill"]= 22217, + ["name"]= "Spell Suppression and Life Flask Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "12% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "4656" + }, + ["in"]= { + "6383" + } + }, + [6383]= { + ["skill"]= 6383, + ["name"]= "Spell Suppression and Life Flask Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasks.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "12% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "22217" + }, + ["in"]= { + "3469" + } + }, + [59866]= { + ["skill"]= 59866, + ["name"]= "Entrench", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionLifeFlasksN.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "+12% chance to Suppress Spell Damage", + "Life Flasks gain 3 Charges when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 656, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "20730" + }, + ["in"]= { + "4656" + } + }, + [64217]= { + ["skill"]= 64217, + ["name"]= "Aspect of Stone", + ["icon"]= "Art/2DArt/SkillIcons/passives/IgnorePain.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "20% chance to Avoid Physical Damage from Hits" + }, + ["reminderText"]= { + "(No chance to avoid damage can be higher than 75%)" + }, + ["group"]= 657, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [8938]= { + ["skill"]= 8938, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 658, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "49978", + "56090", + "22845" + }, + ["in"]= { + "12801", + "59606" + } + }, + [2715]= { + ["skill"]= 2715, + ["name"]= "Quickstep", + ["icon"]= "Art/2DArt/SkillIcons/passives/quickstep.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "VerdantOil" + }, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "6% increased Movement Speed" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3187", + "903" + } + }, + [3187]= { + ["skill"]= 3187, + ["name"]= "Movement Speed and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", + ["stats"]= { + "+3% chance to Suppress Spell Damage", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "2715" + }, + ["in"]= { + "54142" + } + }, + [903]= { + ["skill"]= 903, + ["name"]= "Movement Speed and Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/MovementSpeedandEvasionPassive.png", + ["stats"]= { + "+3% chance to Suppress Spell Damage", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2715", + "37504" + }, + ["in"]= {} + }, + [30894]= { + ["skill"]= 30894, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15842" + }, + ["in"]= { + "54142" + } + }, + [18670]= { + ["skill"]= 18670, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "15842", + "37504" + }, + ["in"]= {} + }, + [15842]= { + ["skill"]= 15842, + ["name"]= "One With Nature", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "CrimsonOil", + "BlackOil" + }, + ["stats"]= { + "+8% to all Elemental Resistances", + "24% increased Critical Strike Chance for Attacks", + "24% increased Elemental Damage with Attack Skills" + }, + ["group"]= 659, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "30894", + "18670" + } + }, + [57194]= { + ["skill"]= 57194, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 660, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "40400", + "12161" + }, + ["in"]= {} + }, + [12161]= { + ["skill"]= 12161, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "44470", + ["parent"]= "40400" + }, + ["stats"]= {}, + ["group"]= 660, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "44470" + }, + ["in"]= { + "57194" + } + }, + [30679]= { + ["skill"]= 30679, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 661, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "22266", + "11678", + "43608", + "4656", + "5632" + }, + ["in"]= { + "58271", + "5237", + "30626" + } + }, + [5632]= { + ["skill"]= 5632, + ["name"]= "Bleed and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "15% increased Critical Strike Chance for Attacks" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "36764", + "57651" + }, + ["in"]= { + "30679" + } + }, + [57651]= { + ["skill"]= 57651, + ["name"]= "Aggravate Bleeding On Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Critically Strike with Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "12215" + }, + ["in"]= { + "5632" + } + }, + [12215]= { + ["skill"]= 12215, + ["name"]= "Aggravate Bleeding On Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Critically Strike with Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "45283" + }, + ["in"]= { + "57651" + } + }, + [36764]= { + ["skill"]= 36764, + ["name"]= "Bleed and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Blood2.png", + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "15% increased Critical Strike Chance for Attacks" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "45283" + }, + ["in"]= { + "5632" + } + }, + [45283]= { + ["skill"]= 45283, + ["name"]= "Cornered Prey", + ["icon"]= "Art/2DArt/SkillIcons/passives/CritStrikeBleedingNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "IndigoOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier against Bleeding Enemies", + "80% increased Critical Strike Chance against Bleeding Enemies" + }, + ["group"]= 662, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "40170" + }, + ["in"]= { + "12215", + "36764" + } + }, + [40170]= { + ["skill"]= 40170, + ["name"]= "Bleeding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBleedingActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59626, + ["stats"]= { + "Moving while Bleeding doesn't cause you to take extra Damage" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)" + } + }, + { + ["effect"]= 10546, + ["stats"]= { + "50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 3449, + ["stats"]= { + "Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + }, + { + ["effect"]= 23936, + ["stats"]= { + "80% increased Critical Strike Chance against Bleeding Enemies" + } + }, + { + ["effect"]= 38703, + ["stats"]= { + "+3% to Damage over Time Multiplier for Bleeding per Endurance Charge" + } + }, + { + ["effect"]= 59281, + ["stats"]= { + "25% chance to Aggravate Bleeding on targets you Hit with Exerted Attacks" + }, + ["reminderText"]= { + "(Bleeding which has been Aggravated always deals higher Damage as though the target was moving)" + } + } + }, + ["stats"]= {}, + ["group"]= 662, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45283" + } + }, + [55571]= { + ["skill"]= 55571, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/auraeffect.png", + ["stats"]= { + "6% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 663, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "60440" + }, + ["in"]= { + "28859" + } + }, + [12143]= { + ["skill"]= 12143, + ["name"]= "Influence", + ["icon"]= "Art/2DArt/SkillIcons/passives/influence.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "14% increased effect of Non-Curse Auras from your Skills" + }, + ["group"]= 663, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "28859", + "55491" + }, + ["in"]= {} + }, + [55491]= { + ["skill"]= 55491, + ["name"]= "Reservation Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryAuras.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryReservationActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28638, + ["stats"]= { + "8% increased Damage for each of your Aura or Herald Skills affecting you" + } + }, + { + ["effect"]= 34383, + ["stats"]= { + "+1% to all maximum Elemental Resistances if you have Reserved Life and Mana" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 23621, + ["stats"]= { + "20% increased Life Reservation Efficiency of Skills" + } + }, + { + ["effect"]= 56471, + ["stats"]= { + "30% increased Area of Effect of Aura Skills" + } + }, + { + ["effect"]= 61097, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + { + ["effect"]= 12046, + ["stats"]= { + "Non-Curse Aura Skills have 50% increased Duration" + } + } + }, + ["stats"]= {}, + ["group"]= 663, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "12143" + } + }, + [28859]= { + ["skill"]= 28859, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/manareservationreduction.png", + ["stats"]= { + "8% increased Mana Reservation Efficiency of Skills" + }, + ["group"]= 663, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "55571" + }, + ["in"]= { + "12143" + } + }, + [62795]= { + ["skill"]= 62795, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49408", + "48698" + } + }, + [56090]= { + ["skill"]= 56090, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "4219" + }, + ["in"]= { + "8938" + } + }, + [49408]= { + ["skill"]= 49408, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "62795", + "59252" + }, + ["in"]= {} + }, + [4219]= { + ["skill"]= 4219, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48698" + }, + ["in"]= { + "56090" + } + }, + [11032]= { + ["skill"]= 11032, + ["name"]= "Evasion and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 11541, + ["stats"]= { + "30% increased Evasion Rating while you have Energy Shield" + } + }, + { + ["effect"]= 46099, + ["stats"]= { + "20% increased Energy Shield Recovery Rate if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 47151, + ["stats"]= { + "20% increased Maximum Energy Shield if both Equipped Left and Right Rings have an Explicit Evasion Modifier", + "40% increased Energy Shield Recharge Rate if Equipped Amulet has an Explicit Evasion Modifier" + } + }, + { + ["effect"]= 38423, + ["stats"]= { + "100% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds" + } + }, + { + ["effect"]= 4606, + ["stats"]= { + "1% increased Evasion Rating per 10 Intelligence", + "Dexterity provides no inherent bonus to Evasion Rating" + } + }, + { + ["effect"]= 27103, + ["stats"]= { + "Every 4 seconds, Regenerate Energy Shield equal to 1% of Evasion Rating over 1 second" + } + } + }, + ["stats"]= {}, + ["group"]= 664, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "48698" + } + }, + [48698]= { + ["skill"]= 48698, + ["name"]= "Void Barrier", + ["icon"]= "Art/2DArt/SkillIcons/passives/VoidBarrier.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "18% increased Evasion Rating", + "12% increased maximum Energy Shield", + "+10% chance to Suppress Spell Damage while on Full Energy Shield" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 664, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "62795", + "11032" + }, + ["in"]= { + "4219" + } + }, + [33783]= { + ["skill"]= 33783, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 665, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "4502", + "42744" + }, + ["in"]= { + "3656", + "62791", + "46896" + } + }, + [4502]= { + ["skill"]= 4502, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 665, + ["orbit"]= 4, + ["orbitIndex"]= 3, + ["out"]= { + "49515" + }, + ["in"]= { + "32710", + "20852", + "33783", + "1822" + } + }, + [34013]= { + ["skill"]= 34013, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 666, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "61288" + }, + ["in"]= { + "41876" + } + }, + [41876]= { + ["skill"]= 41876, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "54600", + ["parent"]= "61288" + }, + ["stats"]= {}, + ["group"]= 666, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "34013" + }, + ["in"]= { + "54600" + } + }, + [38579]= { + ["skill"]= 38579, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 667, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "16236" + } + }, + [25766]= { + ["skill"]= 25766, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 667, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "16236" + }, + ["in"]= { + "32802" + } + }, + [32802]= { + ["skill"]= 32802, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 667, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "25766" + }, + ["in"]= { + "64709" + } + }, + [16236]= { + ["skill"]= 16236, + ["name"]= "Toxic Strikes", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "CrimsonOil" + }, + ["stats"]= { + "+15% to Damage over Time Multiplier for Poison", + "15% chance to Poison on Hit" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 667, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "38579" + }, + ["in"]= { + "25766" + } + }, + [46965]= { + ["skill"]= 46965, + ["name"]= "Saboteur", + ["icon"]= "Art/2DArt/SkillIcons/passives/saboteur.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "30% increased Trap Damage", + "30% increased Mine Damage", + "Can have up to 2 additional Traps placed at a time", + "Can have up to 2 additional Remote Mines placed at a time" + }, + ["group"]= 668, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60949" + }, + ["in"]= { + "7920" + } + }, + [28754]= { + ["skill"]= 28754, + ["name"]= "Assassination", + ["icon"]= "Art/2DArt/SkillIcons/passives/newincreasedcritical.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "OpalescentOil", + "GoldenOil" + }, + ["stats"]= { + "+25% to Critical Strike Multiplier", + "25% increased Critical Strike Chance" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "35283" + }, + ["in"]= { + "10763" + } + }, + [35283]= { + ["skill"]= 35283, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "35894", + "7920" + }, + ["in"]= { + "28754" + } + }, + [10763]= { + ["skill"]= 10763, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "20% increased Critical Strike Chance" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "28754" + }, + ["in"]= { + "60949", + "24050" + } + }, + [21575]= { + ["skill"]= 21575, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "42686", + "7920" + }, + ["in"]= { + "35894" + } + }, + [40644]= { + ["skill"]= 40644, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/elementaldamage.png", + ["stats"]= { + "10% increased Elemental Damage" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "24050" + }, + ["in"]= { + "42686", + "60949" + } + }, + [42686]= { + ["skill"]= 42686, + ["name"]= "Elemental Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalFocus.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "AzureOil" + }, + ["stats"]= { + "20% increased Duration of Elemental Ailments on Enemies", + "20% increased Elemental Damage", + "20% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 668, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "40644" + }, + ["in"]= { + "21575" + } + }, + [60949]= { + ["skill"]= 60949, + ["name"]= "Trap and Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "14% increased Trap Damage", + "14% increased Mine Damage" + }, + ["group"]= 668, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "10763", + "40644" + }, + ["in"]= { + "46965" + } + }, + [7920]= { + ["skill"]= 7920, + ["name"]= "Trap and Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "4% increased Trap Throwing Speed", + "4% increased Mine Throwing Speed" + }, + ["group"]= 668, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "46965" + }, + ["in"]= { + "35283", + "21575" + } + }, + [46289]= { + ["skill"]= 46289, + ["name"]= "Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "10% increased Damage over Time" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "58069" + }, + ["in"]= { + "5823", + "51212" + } + }, + [30338]= { + ["skill"]= 30338, + ["name"]= "Damage Over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "10% increased Damage over Time" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "51212", + "46408" + }, + ["in"]= { + "42623" + } + }, + [51212]= { + ["skill"]= 51212, + ["name"]= "Entropy", + ["icon"]= "Art/2DArt/SkillIcons/passives/Entropy.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "CrimsonOil" + }, + ["stats"]= { + "23% increased Damage over Time", + "10% increased Skill Effect Duration" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "46289" + }, + ["in"]= { + "30338" + } + }, + [58069]= { + ["skill"]= 58069, + ["name"]= "One Handed Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "Attacks with One Handed Weapons deal 20% increased Damage with Ailments", + "14% increased Damage with One Handed Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 669, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "30205", + "60737" + }, + ["in"]= { + "46289" + } + }, + [42623]= { + ["skill"]= 42623, + ["name"]= "One Handed Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "Attacks with One Handed Weapons deal 20% increased Damage with Ailments", + "14% increased Damage with One Handed Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 669, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "54338", + "30338" + }, + ["in"]= { + "60737" + } + }, + [30205]= { + ["skill"]= 30205, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "10% increased Physical Damage" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "33903" + }, + ["in"]= { + "5823", + "58069" + } + }, + [54338]= { + ["skill"]= 54338, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "10% increased Physical Damage" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "46408" + }, + ["in"]= { + "42623", + "33903" + } + }, + [33903]= { + ["skill"]= 33903, + ["name"]= "Will of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNotableGreen.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "BlackOil" + }, + ["stats"]= { + "40% increased Critical Strike Chance", + "20% increased Physical Damage" + }, + ["group"]= 669, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "54338" + }, + ["in"]= { + "30205" + } + }, + [60737]= { + ["skill"]= 60737, + ["name"]= "Sleight of Hand", + ["icon"]= "Art/2DArt/SkillIcons/passives/swashbuckler.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "OpalescentOil" + }, + ["stats"]= { + "Attacks with One Handed Weapons deal 30% increased Damage with Ailments", + "8% increased Attack Speed with One Handed Weapons", + "20% increased Damage with One Handed Weapons" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 669, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "42623" + }, + ["in"]= { + "58069" + } + }, + [89]= { + ["skill"]= 89, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 670, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45608" + } + }, + [52522]= { + ["skill"]= 52522, + ["name"]= "Mine Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsradius.png", + ["stats"]= { + "30% increased Critical Strike Chance with Mines" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "45608" + }, + ["in"]= { + "42744" + } + }, + [11716]= { + ["skill"]= 11716, + ["name"]= "Mine Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Mines" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "45608" + }, + ["in"]= { + "42744" + } + }, + [42744]= { + ["skill"]= 42744, + ["name"]= "Mine Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsradius.png", + ["stats"]= { + "15% increased Critical Strike Chance with Mines", + "+8% to Critical Strike Multiplier with Mines" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "52522", + "11716" + }, + ["in"]= { + "33783" + } + }, + [45608]= { + ["skill"]= 45608, + ["name"]= "Successive Detonations", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "CrimsonOil" + }, + ["stats"]= { + "10% increased Critical Strike Chance for each Mine Detonated\nRecently, up to 100%", + "+4% to Critical Strike Multiplier for each Mine Detonated\nRecently, up to 40%" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 670, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "89" + }, + ["in"]= { + "52522", + "11716" + } + }, + [9769]= { + ["skill"]= 9769, + ["name"]= "Spell Suppression and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "10% increased Energy Shield Recharge Rate" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 671, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "49515", + "24067" + }, + ["in"]= {} + }, + [49515]= { + ["skill"]= 49515, + ["name"]= "Spell Suppression and Energy Shield Recharge Rate", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppressionEnergyShield.png", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "10% increased Energy Shield Recharge Rate" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 671, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "4502", + "9769" + } + }, + [24067]= { + ["skill"]= 24067, + ["name"]= "Instinct", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSupressionAndEnergyShieldNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "AzureOil" + }, + ["stats"]= { + "+12% chance to Suppress Spell Damage", + "Recover 50 Energy Shield when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 671, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "54413" + }, + ["in"]= { + "9769" + } + }, + [54413]= { + ["skill"]= 54413, + ["name"]= "Spell Suppression Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 58447, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 7677, + ["stats"]= { + "Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance for 4 seconds)" + } + }, + { + ["effect"]= 42014, + ["stats"]= { + "Prevent +1% of Suppressed Spell Damage per Hit Suppressed Recently", + "-2% chance to Suppress Spell Damage per Hit Suppressed Recently" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 2474, + ["stats"]= { + "Suppressed Spell Damage cannot inflict Elemental Ailments on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 13757, + ["stats"]= { + "You have Phasing if you have Suppressed Spell Damage Recently", + "+8% chance to Suppress Spell Damage while Phasing" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 45317, + ["stats"]= { + "Chance to Suppress Spell Damage is Lucky" + } + } + }, + ["stats"]= {}, + ["group"]= 671, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24067" + } + }, + [34660]= { + ["skill"]= 34660, + ["name"]= "Mark Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "8% increased Effect of your Marks" + }, + ["group"]= 672, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "9933" + }, + ["in"]= { + "64709" + } + }, + [30974]= { + ["skill"]= 30974, + ["name"]= "Expert Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotableIncreasedEffect.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "BlackOil" + }, + ["stats"]= { + "20% increased Effect of your Marks" + }, + ["group"]= 672, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "56865" + }, + ["in"]= { + "9933" + } + }, + [9933]= { + ["skill"]= 9933, + ["name"]= "Mark Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "8% increased Effect of your Marks" + }, + ["group"]= 672, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "30974" + }, + ["in"]= { + "34660" + } + }, + [56865]= { + ["skill"]= 56865, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 672, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "30974" + } + }, + [44470]= { + ["skill"]= 44470, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 673, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "12161" + } + }, + [45593]= { + ["skill"]= 45593, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "53114" + }, + ["in"]= { + "12801" + } + }, + [12801]= { + ["skill"]= 12801, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "45593", + "8938" + }, + ["in"]= {} + }, + [53114]= { + ["skill"]= 53114, + ["name"]= "Revenge of the Hunted", + ["icon"]= "Art/2DArt/SkillIcons/passives/revengeofthehunted.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "18% increased Evasion Rating", + "10% increased maximum Life", + "+10% chance to Suppress Spell Damage while on Full Life" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "25067", + "65528" + }, + ["in"]= { + "45593" + } + }, + [25067]= { + ["skill"]= 25067, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "5% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31315" + }, + ["in"]= { + "53114" + } + }, + [31315]= { + ["skill"]= 31315, + ["name"]= "Evasion and Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "10% increased Evasion Rating", + "4% increased maximum Life" + }, + ["group"]= 674, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "39718" + }, + ["in"]= { + "25067" + } + }, + [65528]= { + ["skill"]= 65528, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 674, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53114" + } + }, + [38520]= { + ["skill"]= 38520, + ["name"]= "Claw Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalclaw.png", + ["stats"]= { + "+15% to Critical Strike Multiplier with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "56648" + }, + ["in"]= { + "265" + } + }, + [47321]= { + ["skill"]= 47321, + ["name"]= "Claw Critical Strike Chance and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalclaw.png", + ["stats"]= { + "8% increased Accuracy Rating with Claws", + "20% increased Critical Strike Chance with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56648" + }, + ["in"]= { + "265" + } + }, + [265]= { + ["skill"]= 265, + ["name"]= "Claw Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalclaw.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "38520", + "47321", + "3656" + }, + ["in"]= {} + }, + [56648]= { + ["skill"]= 56648, + ["name"]= "Claws of the Falcon", + ["icon"]= "Art/2DArt/SkillIcons/passives/eagletalons.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "GoldenOil" + }, + ["stats"]= { + "15% increased Accuracy Rating with Claws", + "+40% to Critical Strike Multiplier with Claws" + }, + ["group"]= 675, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "53365" + }, + ["in"]= { + "38520", + "47321" + } + }, + [53365]= { + ["skill"]= 53365, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 675, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "56648" + } + }, + [32314]= { + ["skill"]= 32314, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "43010" + }, + ["in"]= { + "30767" + } + }, + [31973]= { + ["skill"]= 31973, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "1652" + }, + ["in"]= { + "2785", + "22535" + } + }, + [10992]= { + ["skill"]= 10992, + ["name"]= "Hex Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png", + ["stats"]= { + "15% increased Area of Effect of Hex Skills" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "30767" + }, + ["in"]= { + "1652" + } + }, + [1652]= { + ["skill"]= 1652, + ["name"]= "Hex Area of Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseAreaofEffect.png", + ["stats"]= { + "15% increased Area of Effect of Hex Skills" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "10992" + }, + ["in"]= { + "31973" + } + }, + [3359]= { + ["skill"]= 3359, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "6250" + }, + ["in"]= { + "30767" + } + }, + [6250]= { + ["skill"]= 6250, + ["name"]= "Curse Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseCastSpeed.png", + ["stats"]= { + "Curse Skills have 10% increased Cast Speed" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "22535" + }, + ["in"]= { + "3359" + } + }, + [2785]= { + ["skill"]= 2785, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "31973" + }, + ["in"]= { + "51191" + } + }, + [51191]= { + ["skill"]= 51191, + ["name"]= "Curse Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseDuration.png", + ["stats"]= { + "15% increased Curse Duration" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "2785" + }, + ["in"]= { + "30767" + } + }, + [30767]= { + ["skill"]= 30767, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "5% increased Effect of your Curses" + }, + ["group"]= 676, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "3359", + "60440", + "32314", + "51191" + }, + ["in"]= { + "10992" + } + }, + [43010]= { + ["skill"]= 43010, + ["name"]= "Curse Mana Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseManaReservation.png", + ["stats"]= { + "10% increased Mana Reservation Efficiency of Curse Aura Skills" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "22535" + }, + ["in"]= { + "32314" + } + }, + [6570]= { + ["skill"]= 6570, + ["name"]= "Curse Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryCurse.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCurseActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13382, + ["stats"]= { + "+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + { + ["effect"]= 43250, + ["stats"]= { + "You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies" + } + }, + { + ["effect"]= 45691, + ["stats"]= { + "Non-Cursed Enemies you inflict Non-Aura Curses on are Blinded for 4 seconds" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 35426, + ["stats"]= { + "Your Curses have 20% increased Effect if 50% of Curse Duration expired" + } + }, + { + ["effect"]= 34663, + ["stats"]= { + "Enemies you Curse are Hindered, with 15% reduced Movement Speed" + }, + ["reminderText"]= { + "(Hinder reduces movement speed)" + } + }, + { + ["effect"]= 18130, + ["stats"]= { + "Recover 1% of Life when you Curse a Non-Cursed Enemy", + "Recover 1% of Mana when you Curse a Non-Cursed Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 676, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "22535" + } + }, + [22535]= { + ["skill"]= 22535, + ["name"]= "Whispers of Doom", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.png", + ["isNotable"]= true, + ["recipe"]= { + "GoldenOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "You can apply an additional Curse" + }, + ["group"]= 676, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31973", + "6570" + }, + ["in"]= { + "6250", + "43010" + } + }, + [60440]= { + ["skill"]= 60440, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 677, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "11455" + }, + ["in"]= { + "49605", + "50382", + "55571", + "30767", + "5018", + "36858" + } + }, + [26820]= { + ["skill"]= 26820, + ["name"]= "Life Gain on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "Gain 6 Life per Enemy Hit with Attacks" + }, + ["group"]= 678, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61039" + }, + ["in"]= { + "50038" + } + }, + [50038]= { + ["skill"]= 50038, + ["name"]= "Life Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifegainpertarget.png", + ["stats"]= { + "0.5% of Attack Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 678, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "26820", + "61039" + }, + ["in"]= { + "22266" + } + }, + [40383]= { + ["skill"]= 40383, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 678, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61039" + } + }, + [61039]= { + ["skill"]= 61039, + ["name"]= "Wild Hunger", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "GoldenOil", + "GoldenOil" + }, + ["stats"]= { + "0.8% of Attack Damage Leeched as Life", + "30% increased Maximum total Life Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 678, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "40383" + }, + ["in"]= { + "26820", + "50038" + } + }, + [51233]= { + ["skill"]= 51233, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 679, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "61305" + }, + ["in"]= { + "22994" + } + }, + [61305]= { + ["skill"]= 61305, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "35313", + ["parent"]= "22994" + }, + ["stats"]= {}, + ["group"]= 679, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "35313" + }, + ["in"]= { + "51233" + } + }, + [54600]= { + ["skill"]= 54600, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 680, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "41876" + }, + ["in"]= {} + }, + [45788]= { + ["skill"]= 45788, + ["name"]= "Claw Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "5% increased Attack Speed with Claws" + }, + ["group"]= 681, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "28503" + }, + ["in"]= { + "2121" + } + }, + [2121]= { + ["skill"]= 2121, + ["name"]= "Claw Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "5% increased Attack Speed with Claws" + }, + ["group"]= 681, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "45788", + "59252" + }, + ["in"]= {} + }, + [12518]= { + ["skill"]= 12518, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 681, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "28503" + } + }, + [28503]= { + ["skill"]= 28503, + ["name"]= "Life Raker", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "12% increased Attack Speed with Claws", + "12% increased Accuracy Rating with Claws", + "Gain 6 Life per Enemy Hit with Attacks" + }, + ["group"]= 681, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "12518" + }, + ["in"]= { + "45788" + } + }, + [52714]= { + ["skill"]= 52714, + ["name"]= "Prowess", + ["icon"]= "Art/2DArt/SkillIcons/passives/oxblood.png", + ["isNotable"]= true, + ["grantedStrength"]= 30, + ["stats"]= { + "+30 to Strength" + }, + ["group"]= 682, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59606" + } + }, + [60180]= { + ["skill"]= 60180, + ["name"]= "Thief's Craft", + ["icon"]= "Art/2DArt/SkillIcons/passives/savant.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 30, + ["stats"]= { + "+30 to Intelligence" + }, + ["group"]= 683, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59606" + } + }, + [11239]= { + ["skill"]= 11239, + ["name"]= "Wind Dancer", + ["icon"]= "Art/2DArt/SkillIcons/passives/WindDancer.png", + ["isKeystone"]= true, + ["stats"]= { + "20% less Attack Damage taken if you haven't been Hit by an Attack Recently\n10% more chance to Evade Attacks if you have been Hit by an Attack Recently\n20% more Attack Damage taken if you have been Hit by an Attack Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "Invite the enemy when you are strong, evade them when you are weak;", + "strike with the coming of the storm." + }, + ["group"]= 684, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "39718" + }, + ["in"]= {} + }, + [5622]= { + ["skill"]= 5622, + ["name"]= "Dual Wield Critical Strike Multiplier and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png", + ["stats"]= { + "8% increased Accuracy Rating while Dual Wielding", + "+10% to Attack Critical Strike Multiplier while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "25209" + }, + ["in"]= { + "6" + } + }, + [25209]= { + ["skill"]= 25209, + ["name"]= "Dual Wield Critical Strike Multiplier and Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikemultiplier2.png", + ["stats"]= { + "8% increased Accuracy Rating while Dual Wielding", + "+10% to Attack Critical Strike Multiplier while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "5622", + "30626" + } + }, + [30626]= { + ["skill"]= 30626, + ["name"]= "Dual Wield Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance2.png", + ["stats"]= { + "20% increased Attack Critical Strike Chance while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "30679", + "25209" + }, + ["in"]= {} + }, + [8872]= { + ["skill"]= 8872, + ["name"]= "Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDualWieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 14796, + ["stats"]= { + "+20% Chance to Block Spell Damage while Dual Wielding", + "Dual Wielding does not inherently grant chance to Block Attack Damage" + } + }, + { + ["effect"]= 6090, + ["stats"]= { + "+1% to Off Hand Critical Strike Chance while Dual Wielding" + } + }, + { + ["effect"]= 46493, + ["stats"]= { + "60% increased Damage while wielding two different Weapon Types" + } + }, + { + ["effect"]= 7972, + ["stats"]= { + "20% chance to gain Elusive when you Block while Dual Wielding" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + { + ["effect"]= 60440, + ["stats"]= { + "+15% Chance to Block Attack Damage if you have not Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 33959, + ["stats"]= { + "20% chance to Maim Enemies with Main Hand Hits", + "20% chance to Blind Enemies with Off Hand Hits" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)", + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 685, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6" + } + }, + [6]= { + ["skill"]= 6, + ["name"]= "Twin Terrors", + ["icon"]= "Art/2DArt/SkillIcons/passives/scissorblades.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "BlackOil" + }, + ["stats"]= { + "100% increased Attack Critical Strike Chance while Dual Wielding" + }, + ["group"]= 685, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "8872", + "5622" + }, + ["in"]= {} + }, + [24452]= { + ["skill"]= 24452, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 686, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "13170" + }, + ["in"]= { + "59585" + } + }, + [59585]= { + ["skill"]= 59585, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "27819", + ["parent"]= "13170" + }, + ["stats"]= {}, + ["group"]= 686, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "24452" + }, + ["in"]= { + "27819" + } + }, + [1201]= { + ["skill"]= 1201, + ["name"]= "Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "12% increased Attack Damage" + }, + ["group"]= 687, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31508", + "7085" + }, + ["in"]= { + "45491" + } + }, + [45491]= { + ["skill"]= 45491, + ["name"]= "Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/onehandspeed.png", + ["stats"]= { + "12% increased Attack Damage" + }, + ["group"]= 687, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "7085", + "1201" + }, + ["in"]= { + "37504" + } + }, + [7085]= { + ["skill"]= 7085, + ["name"]= "Weapon Artistry", + ["icon"]= "Art/2DArt/SkillIcons/passives/blademistress.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "VioletOil" + }, + ["stats"]= { + "+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "8% increased Attack Speed", + "+0.2 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + }, + ["group"]= 687, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "1201", + "45491" + } + }, + [41866]= { + ["skill"]= 41866, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 688, + ["orbit"]= 5, + ["orbitIndex"]= 18, + ["out"]= { + "63843", + "60942" + }, + ["in"]= { + "37504", + "9206" + } + }, + [60942]= { + ["skill"]= 60942, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 688, + ["orbit"]= 5, + ["orbitIndex"]= 36, + ["out"]= { + "33196", + "19228", + "32555" + }, + ["in"]= { + "61306", + "64709", + "41866" + } + }, + [36801]= { + ["skill"]= 36801, + ["name"]= "Claw Ailment Damage and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "Claw Attacks deal 15% increased Damage with Ailments", + "5% increased Poison Duration" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "529" + }, + ["in"]= { + "19228" + } + }, + [19228]= { + ["skill"]= 19228, + ["name"]= "Claw Ailment Damage and Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "Claw Attacks deal 15% increased Damage with Ailments", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "36801" + }, + ["in"]= { + "60942", + "3362" + } + }, + [3362]= { + ["skill"]= 3362, + ["name"]= "Claw Attack Speed and Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "4% increased Attack Speed with Claws", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19228" + }, + ["in"]= { + "529" + } + }, + [4788]= { + ["skill"]= 4788, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 689, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "529" + } + }, + [529]= { + ["skill"]= 529, + ["name"]= "Poisonous Fangs", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "AzureOil" + }, + ["stats"]= { + "+10% to Damage over Time Multiplier for Poison", + "Claw Attacks deal 25% increased Damage with Ailments", + "6% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 689, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "3362", + "4788" + }, + ["in"]= { + "36801" + } + }, + [60210]= { + ["skill"]= 60210, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 690, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "58032" + } + }, + [5018]= { + ["skill"]= 5018, + ["name"]= "Chance to Poison with Spells", + ["icon"]= "Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png", + ["stats"]= { + "10% chance to Poison on Hit with Spell Damage" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "45810", + "11984", + "60440" + }, + ["in"]= {} + }, + [45810]= { + ["skill"]= 45810, + ["name"]= "Poison Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "15% increased Damage with Poison" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "13168" + }, + ["in"]= { + "5018" + } + }, + [13168]= { + ["skill"]= 13168, + ["name"]= "Poison Damage and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/castspeed.png", + ["stats"]= { + "3% increased Cast Speed", + "15% increased Damage with Poison" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "58032" + }, + ["in"]= { + "45810" + } + }, + [11984]= { + ["skill"]= 11984, + ["name"]= "Chance to Poison with Spells", + ["icon"]= "Art/2DArt/SkillIcons/passives/PoisonSpellsNode.png", + ["stats"]= { + "15% chance to Poison on Hit with Spell Damage" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "58032" + }, + ["in"]= { + "5018" + } + }, + [58032]= { + ["skill"]= 58032, + ["name"]= "Serpentine Spellslinger", + ["icon"]= "Art/2DArt/SkillIcons/passives/PoisonSpellsNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "VioletOil", + "OpalescentOil" + }, + ["stats"]= { + "Enemies Poisoned by you have -5% to Chaos Resistance", + "Spell Skills have +12% to Damage over Time Multiplier for Poison" + }, + ["group"]= 690, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "60210" + }, + ["in"]= { + "13168", + "11984" + } + }, + [11455]= { + ["skill"]= 11455, + ["name"]= "Chaos Inoculation", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.png", + ["isKeystone"]= true, + ["stats"]= { + "Maximum Life becomes 1, Immune to Chaos Damage" + }, + ["flavourText"]= { + "Give up everything in pursuit of greatness - even life itself." + }, + ["group"]= 691, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "60440" + } + }, + [12794]= { + ["skill"]= 12794, + ["name"]= "Projectile Attack Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 10% increased Critical Strike Chance", + "Projectile Attack Skills have +10% to Critical Strike Multiplier" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "30455" + }, + ["in"]= { + "14804" + } + }, + [30455]= { + ["skill"]= 30455, + ["name"]= "Projectile Attack Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 10% increased Critical Strike Chance", + "Projectile Attack Skills have +10% to Critical Strike Multiplier" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "41119" + }, + ["in"]= { + "12794" + } + }, + [28658]= { + ["skill"]= 28658, + ["name"]= "Projectile Attack Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 25% increased Critical Strike Chance" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "14804", + "41119" + } + }, + [14804]= { + ["skill"]= 14804, + ["name"]= "Projectile Attack Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "Projectile Attack Skills have 20% increased Critical Strike Chance" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "28658", + "12794" + }, + ["in"]= { + "22266" + } + }, + [41119]= { + ["skill"]= 41119, + ["name"]= "Lethality", + ["icon"]= "Art/2DArt/SkillIcons/passives/heartpierce.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "Projectile Attack Skills have 50% increased Critical Strike Chance", + "Projectile Attack Skills have +30% to Critical Strike Multiplier" + }, + ["group"]= 692, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "28658", + "47212" + }, + ["in"]= { + "30455" + } + }, + [47212]= { + ["skill"]= 47212, + ["name"]= "Projectile Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16644, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each Enemy Pierced" + } + }, + { + ["effect"]= 2198, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each time they have Chained" + } + }, + { + ["effect"]= 52404, + ["stats"]= { + "1% increased Projectile Damage per 16 Dexterity" + } + }, + { + ["effect"]= 14813, + ["stats"]= { + "Knock Back Enemies if you get a Critical Strike with Projectile Damage" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + { + ["effect"]= 1167, + ["stats"]= { + "15% more Projectile Speed" + } + }, + { + ["effect"]= 44240, + ["stats"]= { + "15% less Projectile Speed" + } + } + }, + ["stats"]= {}, + ["group"]= 692, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41119" + } + }, + [56023]= { + ["skill"]= 56023, + ["name"]= "Projectile Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16644, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each Enemy Pierced" + } + }, + { + ["effect"]= 2198, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each time they have Chained" + } + }, + { + ["effect"]= 52404, + ["stats"]= { + "1% increased Projectile Damage per 16 Dexterity" + } + }, + { + ["effect"]= 14813, + ["stats"]= { + "Knock Back Enemies if you get a Critical Strike with Projectile Damage" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + { + ["effect"]= 1167, + ["stats"]= { + "15% more Projectile Speed" + } + }, + { + ["effect"]= 44240, + ["stats"]= { + "15% less Projectile Speed" + } + } + }, + ["stats"]= {}, + ["group"]= 693, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "8458", + "31513" + } + }, + [11678]= { + ["skill"]= 11678, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNode.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "44306", + "52288" + }, + ["in"]= { + "30679" + } + }, + [44306]= { + ["skill"]= 44306, + ["name"]= "Projectile Damage and Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNode2.png", + ["stats"]= { + "10% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "8458" + }, + ["in"]= { + "11678" + } + }, + [8458]= { + ["skill"]= 8458, + ["name"]= "Longshot", + ["icon"]= "Art/2DArt/SkillIcons/passives/BarragingProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Projectile Speed", + "Projectiles gain Damage as they travel farther, dealing up\nto 60% increased Damage with Hits to targets" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56023" + }, + ["in"]= { + "44306" + } + }, + [52288]= { + ["skill"]= 52288, + ["name"]= "Projectile Damage and Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNode2.png", + ["stats"]= { + "10% reduced Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31513" + }, + ["in"]= { + "11678" + } + }, + [31513]= { + ["skill"]= 31513, + ["name"]= "Adjacent Animosity", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedProjectileSpeedNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "10% reduced Projectile Speed", + "Projectiles deal 40% increased Damage with Hits to targets at the start\nof their movement, reducing to 0% as they travel farther" + }, + ["group"]= 693, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "56023" + }, + ["in"]= { + "52288" + } + }, + [3656]= { + ["skill"]= 3656, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 694, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "58244", + "27962", + "33783" + }, + ["in"]= { + "20546", + "265", + "24050" + } + }, + [58244]= { + ["skill"]= 58244, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 694, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "7112" + }, + ["in"]= { + "3656", + "1767", + "11018", + "49308" + } + }, + [59252]= { + ["skill"]= 59252, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 695, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "59606" + }, + ["in"]= { + "49408", + "2121", + "28012", + "19210" + } + }, + [59606]= { + ["skill"]= 59606, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 696, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "8938", + "39718", + "60180", + "52714", + "1461", + "1427" + }, + ["in"]= { + "59252", + "54868" + } + }, + [13885]= { + ["skill"]= 13885, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 697, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "28012", + "40362" + }, + ["in"]= { + "47362", + "7112", + "8012" + } + }, + [28012]= { + ["skill"]= 28012, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 697, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= { + "59252", + "4011" + }, + ["in"]= { + "13885", + "46408" + } + }, + [39718]= { + ["skill"]= 39718, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 698, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31315", + "11239", + "59606", + "5616", + "56646" + } + }, + [27283]= { + ["skill"]= 27283, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 699, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= { + "63843", + "37619" + }, + ["in"]= { + "5616", + "31508" + } + }, + [5616]= { + ["skill"]= 5616, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 699, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "38662", + "39718", + "27283", + "56814" + }, + ["in"]= {} + }, + [22266]= { + ["skill"]= 22266, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 700, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32555", + "9786", + "14804", + "50038" + }, + ["in"]= { + "30679", + "16882" + } + }, + [62791]= { + ["skill"]= 62791, + ["name"]= "Lethe Shade", + ["icon"]= "Art/2DArt/SkillIcons/passives/MomentofRespite.png", + ["isKeystone"]= true, + ["stats"]= { + "Take 50% less Damage over Time if you've started taking Damage over Time in the past second\n100% more Duration of Ailments on you" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["flavourText"]= { + "A sip of poison each day keeps the shadow of death at bay." + }, + ["group"]= 701, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "33783" + }, + ["in"]= {} + }, + [31508]= { + ["skill"]= 31508, + ["name"]= "Aspect of the Lynx", + ["icon"]= "Art/2DArt/SkillIcons/passives/AspectOfTheLynx.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "20% increased Attack Damage", + "5% increased Movement Speed", + "20% increased Critical Strike Chance for Attacks" + }, + ["group"]= 702, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "27283" + }, + ["in"]= { + "57819", + "6654", + "1201" + } + }, + [37504]= { + ["skill"]= 37504, + ["name"]= "Intuition", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSupressionNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "+8% chance to Suppress Spell Damage", + "15% increased Evasion Rating", + "5% increased maximum Life" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 703, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41866", + "45491" + }, + ["in"]= { + "903", + "18670" + } + }, + [9786]= { + ["skill"]= 9786, + ["name"]= "Evasion and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "3% increased Movement Speed" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "4573", + "33558" + }, + ["in"]= { + "22266" + } + }, + [4573]= { + ["skill"]= 4573, + ["name"]= "Evasion and Movement Skill Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "14% increased Evasion Rating", + "15% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "9786", + "3309" + } + }, + [33558]= { + ["skill"]= 33558, + ["name"]= "Evasion and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "14% increased Evasion Rating", + "3% increased Movement Speed" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "3309" + }, + ["in"]= { + "9786" + } + }, + [3309]= { + ["skill"]= 3309, + ["name"]= "Fleetfoot", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AmberOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Evasion Rating", + "5% increased Movement Speed", + "30% increased Cooldown Recovery Rate of Movement Skills" + }, + ["group"]= 704, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "4573", + "41163" + }, + ["in"]= { + "33558" + } + }, + [41163]= { + ["skill"]= 41163, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 704, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "3309" + } + }, + [41989]= { + ["skill"]= 41989, + ["name"]= "Resourcefulness", + ["icon"]= "Art/2DArt/SkillIcons/passives/Resourcefulness.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "+8% chance to Suppress Spell Damage", + "10% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 705, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47362", + "1767" + } + }, + [35313]= { + ["skill"]= 35313, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 706, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= {}, + ["in"]= { + "61305" + } + }, + [51420]= { + ["skill"]= 51420, + ["name"]= "Mana Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + ["stats"]= { + "0.4% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 707, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "65053" + }, + ["in"]= { + "49481", + "32555" + } + }, + [49481]= { + ["skill"]= 49481, + ["name"]= "Mana on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.png", + ["stats"]= { + "Gain 3 Mana per Enemy Hit with Attacks" + }, + ["group"]= 707, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "51420" + }, + ["in"]= { + "65053" + } + }, + [65053]= { + ["skill"]= 65053, + ["name"]= "Essence Sap", + ["icon"]= "Art/2DArt/SkillIcons/passives/minddrinker.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "0.5% of Attack Damage Leeched as Mana", + "50% increased Maximum total Mana Recovery per second from Leech", + "100% increased total Recovery per second from Mana Leech" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 707, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "49481", + "6384" + }, + ["in"]= { + "51420" + } + }, + [6384]= { + ["skill"]= 6384, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 707, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65053" + } + }, + [24050]= { + ["skill"]= 24050, + ["name"]= "Coldhearted Calculation", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdheartedCalculation2.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "CrimsonOil", + "CrimsonOil" + }, + ["grantedIntelligence"]= 20, + ["stats"]= { + "12% increased Damage", + "20% increased Mana Regeneration Rate", + "+20 to Intelligence" + }, + ["group"]= 708, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "10763", + "3656", + "1767" + }, + ["in"]= { + "40644" + } + }, + [46408]= { + ["skill"]= 46408, + ["name"]= "Fangs of the Viper", + ["icon"]= "Art/2DArt/SkillIcons/passives/newnewattackspeed.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "AzureOil" + }, + ["grantedDexterity"]= 20, + ["stats"]= { + "20% increased Chaos Damage", + "5% increased Movement Speed", + "+20 to Dexterity", + "20% increased Physical Damage" + }, + ["group"]= 709, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "28012" + }, + ["in"]= { + "30338", + "54338", + "47362" + } + }, + [46896]= { + ["skill"]= 46896, + ["name"]= "Damage Over Time Multiplier and Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+3% to Damage over Time Multiplier", + "Regenerate 0.4% of Life per second" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "33783" + }, + ["in"]= { + "5129", + "59482" + } + }, + [4973]= { + ["skill"]= 4973, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+5% to Damage over Time Multiplier" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "5129" + }, + ["in"]= { + "9864" + } + }, + [5129]= { + ["skill"]= 5129, + ["name"]= "Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTime.png", + ["stats"]= { + "+5% to Damage over Time Multiplier" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "46896" + }, + ["in"]= { + "4973" + } + }, + [9864]= { + ["skill"]= 9864, + ["name"]= "Growth and Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/GrowthandDecay.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "GoldenOil" + }, + ["stats"]= { + "+12% to Damage over Time Multiplier", + "Regenerate 1% of Life per second" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59482", + "4973", + "47294" + }, + ["in"]= {} + }, + [59482]= { + ["skill"]= 59482, + ["name"]= "Life Regeneration", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifepercentage.png", + ["stats"]= { + "Regenerate 0.8% of Life per second" + }, + ["group"]= 710, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "46896" + }, + ["in"]= { + "9864" + } + }, + [47294]= { + ["skill"]= 47294, + ["name"]= "Damage Over Time Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/BloodMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDamageOverTimeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2459, + ["stats"]= { + "30% increased Effect of Cruelty" + } + }, + { + ["effect"]= 1251, + ["stats"]= { + "+10% to Damage over Time Multiplier if you've Killed Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 34420, + ["stats"]= { + "15% increased Duration of Ailments on Enemies", + "15% increased Skill Effect Duration" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + { + ["effect"]= 11521, + ["stats"]= { + "10% less Damage Taken from Damage over Time" + } + } + }, + ["stats"]= {}, + ["group"]= 710, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9864" + } + }, + [18769]= { + ["skill"]= 18769, + ["name"]= "Written in Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/WritteninBlood.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VioletOil", + "GoldenOil" + }, + ["grantedStrength"]= 10, + ["stats"]= { + "10% increased maximum Energy Shield", + "10% increased maximum Life", + "+10 to Strength" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "857" + }, + ["in"]= { + "61653" + } + }, + [61653]= { + ["skill"]= 61653, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "18769" + }, + ["in"]= { + "38190", + "36858" + } + }, + [38190]= { + ["skill"]= 38190, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "61653" + }, + ["in"]= { + "1822" + } + }, + [1822]= { + ["skill"]= 1822, + ["name"]= "Life and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "5% increased maximum Energy Shield", + "5% increased maximum Life" + }, + ["group"]= 711, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "38190", + "4502" + }, + ["in"]= {} + }, + [857]= { + ["skill"]= 857, + ["name"]= "Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEnergyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 51424, + ["stats"]= { + "Light Radius is based on Energy Shield instead of Life", + "30% increased Light Radius" + } + }, + { + ["effect"]= 30520, + ["stats"]= { + "10% less Physical Damage Taken while on Full Energy Shield" + } + }, + { + ["effect"]= 571, + ["stats"]= { + "50% of your Energy Shield is added to your Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 35810, + ["stats"]= { + "Regenerate 2% of Energy Shield per second" + } + }, + { + ["effect"]= 29586, + ["stats"]= { + "30% of Chaos Damage taken does not bypass Energy Shield" + } + }, + { + ["effect"]= 31556, + ["stats"]= { + "100% increased Energy Shield from Equipped Helmet" + } + } + }, + ["stats"]= {}, + ["group"]= 711, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18769" + } + }, + [37616]= { + ["skill"]= 37616, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 712, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59556" + } + }, + [27962]= { + ["skill"]= 27962, + ["name"]= "Trap Throwing Speed and Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "20% increased Trap Trigger Area of Effect", + "4% increased Trap Throwing Speed" + }, + ["group"]= 712, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "31501" + }, + ["in"]= { + "3656" + } + }, + [31501]= { + ["skill"]= 31501, + ["name"]= "Trap Throwing Speed and Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "20% increased Trap Trigger Area of Effect", + "4% increased Trap Throwing Speed" + }, + ["group"]= 712, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= {}, + ["in"]= { + "27962", + "59556" + } + }, + [59556]= { + ["skill"]= 59556, + ["name"]= "Expeditious Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/expeditiousmunitions.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "VioletOil" + }, + ["stats"]= { + "50% increased Trap Trigger Area of Effect", + "12% increased Trap Throwing Speed" + }, + ["group"]= 712, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31501", + "37616" + }, + ["in"]= {} + }, + [27819]= { + ["skill"]= 27819, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 713, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "59585" + }, + ["in"]= {} + }, + [44540]= { + ["skill"]= 44540, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 714, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27190" + } + }, + [39814]= { + ["skill"]= 39814, + ["name"]= "Trap Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsduration.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for throwing Traps" + }, + ["group"]= 714, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "25770" + }, + ["in"]= { + "36858" + } + }, + [27190]= { + ["skill"]= 27190, + ["name"]= "Overprepared", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trap.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AmberOil", + "AzureOil" + }, + ["stats"]= { + "Skills which Throw Traps have +1 Cooldown Use" + }, + ["group"]= 714, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44540" + }, + ["in"]= { + "25770" + } + }, + [25770]= { + ["skill"]= 25770, + ["name"]= "Trap Cooldown Recovery", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsduration.png", + ["stats"]= { + "10% increased Cooldown Recovery Rate for throwing Traps" + }, + ["group"]= 714, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27190" + }, + ["in"]= { + "39814" + } + }, + [47362]= { + ["skill"]= 47362, + ["name"]= "Life and Energy Shield on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "Gain 15 Energy Shield per Enemy Killed" + }, + ["group"]= 715, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41989", + "13885", + "46408" + }, + ["in"]= {} + }, + [1767]= { + ["skill"]= 1767, + ["name"]= "Life and Energy Shield on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeAndEnergyShield.png", + ["stats"]= { + "Gain 15 Life per Enemy Killed", + "Gain 15 Energy Shield per Enemy Killed" + }, + ["group"]= 716, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41989", + "58244" + }, + ["in"]= { + "24050" + } + }, + [20675]= { + ["skill"]= 20675, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 717, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47065" + } + }, + [19210]= { + ["skill"]= 19210, + ["name"]= "Physical Damage and Ignore Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "14% increased Physical Damage" + }, + ["group"]= 717, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "59252" + }, + ["in"]= { + "43316" + } + }, + [43316]= { + ["skill"]= 43316, + ["name"]= "Physical Damage and Ignore Physical Damage Reduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "Hits have 10% chance to ignore Enemy Physical Damage Reduction", + "14% increased Physical Damage" + }, + ["group"]= 717, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "19210" + }, + ["in"]= { + "47065" + } + }, + [47065]= { + ["skill"]= 47065, + ["name"]= "Master of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasterofForce.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "OpalescentOil", + "GoldenOil" + }, + ["grantedStrength"]= 30, + ["stats"]= { + "Hits have 30% chance to ignore Enemy Physical Damage Reduction", + "+30 to Strength", + "30% increased Physical Damage" + }, + ["group"]= 717, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "43316", + "20675" + }, + ["in"]= {} + }, + [54868]= { + ["skill"]= 54868, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "16% increased Damage Over Time with Bow Skills" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "39938", + "59606", + "45360" + }, + ["in"]= {} + }, + [39938]= { + ["skill"]= 39938, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "20% increased Damage Over Time with Bow Skills" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9535" + }, + ["in"]= { + "54868" + } + }, + [45360]= { + ["skill"]= 45360, + ["name"]= "Poison Chance and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+4% to Damage over Time Multiplier for Poison", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "57030" + }, + ["in"]= { + "54868" + } + }, + [57030]= { + ["skill"]= 57030, + ["name"]= "Poison Chance and Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+4% to Damage over Time Multiplier for Poison", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "9535" + }, + ["in"]= { + "45360" + } + }, + [9535]= { + ["skill"]= 9535, + ["name"]= "Hunter's Gambit", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "+10% to Chaos Damage over Time Multiplier", + "10% increased Skill Effect Duration", + "25% increased Damage Over Time with Bow Skills" + }, + ["group"]= 718, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "27865" + }, + ["in"]= { + "39938", + "57030" + } + }, + [27865]= { + ["skill"]= 27865, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 718, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9535" + } + }, + [18707]= { + ["skill"]= 18707, + ["name"]= "Perfectionist", + ["icon"]= "Art/2DArt/SkillIcons/passives/StunAvoidNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "5% increased Movement Speed", + "30% chance to Avoid being Stunned", + "50% increased Stun and Block Recovery" + }, + ["group"]= 719, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "19725" + }, + ["in"]= { + "51235" + } + }, + [1427]= { + ["skill"]= 1427, + ["name"]= "Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/stundex.png", + ["stats"]= { + "15% chance to Avoid being Stunned" + }, + ["group"]= 719, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "59606", + "51235" + } + }, + [51235]= { + ["skill"]= 51235, + ["name"]= "Stun Avoidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/stundex.png", + ["stats"]= { + "15% chance to Avoid being Stunned" + }, + ["group"]= 719, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "1427", + "18707" + }, + ["in"]= {} + }, + [19725]= { + ["skill"]= 19725, + ["name"]= "Stun Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/PassiveStunMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryStunActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 52274, + ["stats"]= { + "100% increased Enemy Stun Threshold", + "200% increased Stun Duration on Enemies" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + { + ["effect"]= 45652, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit" + } + }, + { + ["effect"]= 6906, + ["stats"]= { + "+50% to Critical Strike Multiplier against Stunned Enemies" + } + }, + { + ["effect"]= 52557, + ["stats"]= { + "Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 18881, + ["stats"]= { + "25% chance to deal a Stunning Hit to Nearby Enemy Monsters when you're Stunned" + } + }, + { + ["effect"]= 4842, + ["stats"]= { + "Gain Adrenaline when Stunned, for 2 seconds per 100ms of Stun Duration" + }, + ["reminderText"]= { + "(Adrenaline grants 100% increased Damage, 25% increased Attack, Cast and Movement Speed and 10% additional Physical Damage Reduction. You cannot gain Adrenaline if you already have it)" + } + } + }, + ["stats"]= {}, + ["group"]= 719, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "18707" + } + }, + [34317]= { + ["skill"]= 34317, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 720, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "4481" + } + }, + [4481]= { + ["skill"]= 4481, + ["name"]= "Forces of Nature", + ["icon"]= "Art/2DArt/SkillIcons/passives/ForceOfNature.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "SilverOil" + }, + ["stats"]= { + "Attack Damage Penetrates 10% of Enemy Elemental Resistances" + }, + ["group"]= 720, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "25511", + "34317" + }, + ["in"]= {} + }, + [56646]= { + ["skill"]= 56646, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 720, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "39718" + }, + ["in"]= { + "25511" + } + }, + [25511]= { + ["skill"]= 25511, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 720, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "56646" + }, + ["in"]= { + "4481" + } + }, + [63843]= { + ["skill"]= 63843, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 721, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41866", + "27283", + "38348", + "21758" + } + }, + [7112]= { + ["skill"]= 7112, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 722, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "13885" + }, + ["in"]= { + "58244", + "53213" + } + }, + [16882]= { + ["skill"]= 16882, + ["name"]= "Flask Effect Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Effect Duration" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "43491", + "14400", + "22266" + }, + ["in"]= {} + }, + [43491]= { + ["skill"]= 43491, + ["name"]= "Flask Charges Used", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "5% reduced Flask Charges used" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "41420" + }, + ["in"]= { + "16882" + } + }, + [14400]= { + ["skill"]= 14400, + ["name"]= "Flask Effect Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "15% increased Flask Effect Duration" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "41420" + }, + ["in"]= { + "16882" + } + }, + [41420]= { + ["skill"]= 41420, + ["name"]= "Natural Remedies", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "20% increased Flask Effect Duration", + "Flasks applied to you have 10% increased Effect", + "Remove Maim and Hinder when you use a Flask" + }, + ["group"]= 723, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "9393" + }, + ["in"]= { + "43491", + "14400" + } + }, + [9393]= { + ["skill"]= 9393, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 723, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "41420" + } + }, + [33196]= { + ["skill"]= 33196, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "58474" + }, + ["in"]= { + "60942", + "13202" + } + }, + [13202]= { + ["skill"]= 13202, + ["name"]= "Cold Damage and Cold Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "12% increased Cold Damage", + "10% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "33196" + }, + ["in"]= { + "17171" + } + }, + [17171]= { + ["skill"]= 17171, + ["name"]= "Flash Freeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/newcolddamage.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "25% increased Cold Damage", + "15% chance to Freeze", + "30% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Cold Ailments are Chilled, Frozen and Brittle)" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13202", + "44179" + }, + ["in"]= {} + }, + [44179]= { + ["skill"]= 44179, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 724, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "17171", + "43385" + } + }, + [43385]= { + ["skill"]= 43385, + ["name"]= "Winter Spirit", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdWeaponDmg.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "Gain 10% of Physical Damage as Extra Cold Damage" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "44179" + }, + ["in"]= { + "58474" + } + }, + [58474]= { + ["skill"]= 58474, + ["name"]= "Physical Damage as Extra Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "Gain 4% of Physical Damage as Extra Cold Damage" + }, + ["group"]= 724, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "43385" + }, + ["in"]= { + "33196" + } + }, + [56814]= { + ["skill"]= 56814, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11850", + "46694" + }, + ["in"]= { + "5616" + } + }, + [46694]= { + ["skill"]= 46694, + ["name"]= "Evasion and Blind Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "15% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "56814", + "43457" + } + }, + [43457]= { + ["skill"]= 43457, + ["name"]= "Evasion and Blind Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "12% increased Evasion Rating", + "15% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "46694", + "17608" + }, + ["in"]= {} + }, + [11850]= { + ["skill"]= 11850, + ["name"]= "Blind Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/evasion.png", + ["stats"]= { + "40% increased Blind duration" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "17608" + }, + ["in"]= { + "56814" + } + }, + [17608]= { + ["skill"]= 17608, + ["name"]= "Silent Steps", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "VioletOil" + }, + ["stats"]= { + "20% increased Evasion Rating", + "40% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 725, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "38568" + }, + ["in"]= { + "43457", + "11850" + } + }, + [38568]= { + ["skill"]= 38568, + ["name"]= "Blind Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBlindActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 43524, + ["stats"]= { + "40% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 7831, + ["stats"]= { + "100% increased Blind duration" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + { + ["effect"]= 57463, + ["stats"]= { + "60% increased Critical Strike Chance against Blinded Enemies" + } + }, + { + ["effect"]= 12100, + ["stats"]= { + "100% chance to Avoid Blind" + } + } + }, + ["stats"]= {}, + ["group"]= 725, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "17608" + } + }, + [34763]= { + ["skill"]= 34763, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+6% to Chaos Damage over Time Multiplier" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "42907" + }, + ["in"]= { + "23616" + } + }, + [30110]= { + ["skill"]= 30110, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+6% to Chaos Damage over Time Multiplier" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "53013" + }, + ["in"]= { + "42907" + } + }, + [42907]= { + ["skill"]= 42907, + ["name"]= "Chaos Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage.png", + ["stats"]= { + "+6% to Chaos Damage over Time Multiplier" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30110" + }, + ["in"]= { + "34763" + } + }, + [53013]= { + ["skill"]= 53013, + ["name"]= "Atrophy", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamage2.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "SepiaOil", + "GoldenOil" + }, + ["stats"]= { + "27% increased Chaos Damage", + "12% increased Skill Effect Duration" + }, + ["group"]= 726, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "42361" + }, + ["in"]= { + "30110" + } + }, + [42361]= { + ["skill"]= 42361, + ["name"]= "Chaos Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryChaos.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryChaosActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 50933, + ["stats"]= { + "Recover 1% of Life per Withered Debuff on each Enemy you Kill" + } + }, + { + ["effect"]= 59574, + ["stats"]= { + "+1 to Level of all Chaos Skill Gems", + "Lose 10% of Life and Energy Shield when you use a Chaos Skill" + } + }, + { + ["effect"]= 1727, + ["stats"]= { + "+1% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + { + ["effect"]= 21652, + ["stats"]= { + "40% of Physical Damage Converted to Chaos Damage" + } + }, + { + ["effect"]= 28678, + ["stats"]= { + "Deal 10% more Chaos Damage to enemies which have Energy Shield" + } + }, + { + ["effect"]= 65015, + ["stats"]= { + "5% chance when you inflict Withered to inflict up to 15 Withered Debuffs instead" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + } + }, + ["stats"]= {}, + ["group"]= 726, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "53013" + } + }, + [48660]= { + ["skill"]= 48660, + ["name"]= "Elemental Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryElementalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryElementalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 48385, + ["stats"]= { + "Exposure you inflict applies at least -18% to the affected Resistance" + } + }, + { + ["effect"]= 4119, + ["stats"]= { + "60% of Elemental Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 59343, + ["stats"]= { + "50% reduced Effect of Exposure on you" + } + }, + { + ["effect"]= 17942, + ["stats"]= { + "Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted" + } + }, + { + ["effect"]= 30502, + ["stats"]= { + "Critical Strikes against you do not inherently inflict Elemental Ailments" + } + }, + { + ["effect"]= 25681, + ["stats"]= { + "3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element" + } + } + }, + ["stats"]= {}, + ["group"]= 727, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "36281" + } + }, + [50150]= { + ["skill"]= 50150, + ["name"]= "Weapon Elemental Damage, Status Ailment Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% chance to Freeze, Shock and Ignite", + "10% increased Elemental Damage with Attack Skills" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "45436" + }, + ["in"]= { + "64878" + } + }, + [45436]= { + ["skill"]= 45436, + ["name"]= "Weapon Elemental Damage, Status Ailment Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% chance to Freeze, Shock and Ignite", + "10% increased Elemental Damage with Attack Skills" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "50150", + "36281" + } + }, + [64878]= { + ["skill"]= 64878, + ["name"]= "Weapon Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "12% increased Elemental Damage with Attack Skills" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "30969", + "50150", + "32555" + }, + ["in"]= {} + }, + [30969]= { + ["skill"]= 30969, + ["name"]= "Weapon Elemental Damage and Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% increased Elemental Damage with Attack Skills", + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "32477" + }, + ["in"]= { + "64878" + } + }, + [32477]= { + ["skill"]= 32477, + ["name"]= "Weapon Elemental Damage and Ailment Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/weaponelementaldamagepercentage.png", + ["stats"]= { + "10% increased Elemental Damage with Attack Skills", + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "36281" + }, + ["in"]= { + "30969" + } + }, + [36281]= { + ["skill"]= 36281, + ["name"]= "Primeval Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/WeaponElementalNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "25% increased Elemental Damage during any Flask Effect", + "25% increased Elemental Damage with Attack Skills" + }, + ["group"]= 727, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "48660", + "45436" + }, + ["in"]= { + "32477" + } + }, + [32555]= { + ["skill"]= 32555, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 728, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12412", + "51420", + "54922", + "53574" + }, + ["in"]= { + "60942", + "22266", + "64878" + } + }, + [36858]= { + ["skill"]= 36858, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 729, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "60440", + "61653", + "53456", + "23616", + "39814" + }, + ["in"]= { + "60405" + } + }, + [61981]= { + ["skill"]= 61981, + ["name"]= "Doom Cast", + ["icon"]= "Art/2DArt/SkillIcons/passives/doomcast.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "AzureOil", + "GoldenOil" + }, + ["stats"]= { + "60% increased Spell Critical Strike Chance", + "+15% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "47507", + "63861" + }, + ["in"]= { + "25757" + } + }, + [63861]= { + ["skill"]= 63861, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 730, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "61981" + } + }, + [60405]= { + ["skill"]= 60405, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "20% increased Spell Critical Strike Chance" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "25757", + "36858" + }, + ["in"]= { + "49929" + } + }, + [25757]= { + ["skill"]= 25757, + ["name"]= "Spell Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/spellcritical.png", + ["stats"]= { + "25% increased Spell Critical Strike Chance" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "61981" + }, + ["in"]= { + "60405" + } + }, + [47507]= { + ["skill"]= 47507, + ["name"]= "Spell Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + ["stats"]= { + "+10% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "49929" + }, + ["in"]= { + "61981" + } + }, + [49929]= { + ["skill"]= 49929, + ["name"]= "Spell Critical Strike Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellMultiplyer2.png", + ["stats"]= { + "+10% to Critical Strike Multiplier for Spell Damage" + }, + ["group"]= 730, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "60405" + }, + ["in"]= { + "47507" + } + }, + [25789]= { + ["skill"]= 25789, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "0.3% of Spell Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "54452", + "43328", + "53456" + }, + ["in"]= {} + }, + [54452]= { + ["skill"]= 54452, + ["name"]= "Increased Energy Shield Leeched", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "80% increased total Recovery per second from Energy Shield Leech" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "15852" + }, + ["in"]= { + "25789" + } + }, + [43328]= { + ["skill"]= 43328, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "15% increased Maximum total Energy Shield Recovery per second from Leech" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "59699" + }, + ["in"]= { + "25789" + } + }, + [59699]= { + ["skill"]= 59699, + ["name"]= "Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyshieldLeechPassivessmall.png", + ["stats"]= { + "15% increased Maximum total Energy Shield Recovery per second from Leech" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "15852" + }, + ["in"]= { + "43328" + } + }, + [15852]= { + ["skill"]= 15852, + ["name"]= "Ethereal Feast", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArcaneReaping.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "1% of Spell Damage Leeched as Energy Shield", + "40% increased Maximum total Energy Shield Recovery per second from Leech" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 731, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "16141" + }, + ["in"]= { + "54452", + "59699" + } + }, + [16141]= { + ["skill"]= 16141, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 731, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15852" + } + }, + [14292]= { + ["skill"]= 14292, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "20807", + "60735" + }, + ["in"]= {} + }, + [38348]= { + ["skill"]= 38348, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "60735", + "63843" + }, + ["in"]= {} + }, + [16079]= { + ["skill"]= 16079, + ["name"]= "Evasion Per Frenzy Charge", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "4% increased Evasion Rating per Frenzy Charge" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "20807" + }, + ["in"]= { + "48614" + } + }, + [21758]= { + ["skill"]= 21758, + ["name"]= "Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "20% increased Frenzy Charge Duration" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "48614", + "63843" + }, + ["in"]= {} + }, + [60735]= { + ["skill"]= 60735, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "14292", + "38348" + } + }, + [48614]= { + ["skill"]= 48614, + ["name"]= "Fervour", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 732, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "16079" + }, + ["in"]= { + "21758" + } + }, + [37619]= { + ["skill"]= 37619, + ["name"]= "Evasion and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "12% increased Evasion Rating", + "+4% to all Elemental Resistances" + }, + ["group"]= 733, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "24133" + }, + ["in"]= { + "27283" + } + }, + [64235]= { + ["skill"]= 64235, + ["name"]= "Evasion and Elemental Resistances", + ["icon"]= "Art/2DArt/SkillIcons/passives/evadepercentage.png", + ["stats"]= { + "12% increased Evasion Rating", + "+4% to all Elemental Resistances" + }, + ["group"]= 733, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "36287" + }, + ["in"]= { + "24133" + } + }, + [24133]= { + ["skill"]= 24133, + ["name"]= "Survivalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Survivalist.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "CrimsonOil", + "GoldenOil" + }, + ["stats"]= { + "24% increased Evasion Rating", + "+8% to all Elemental Resistances", + "+1% to maximum Cold Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + }, + ["group"]= 733, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "64235", + "27371" + }, + ["in"]= { + "37619" + } + }, + [27371]= { + ["skill"]= 27371, + ["name"]= "Evasion Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 25487, + ["stats"]= { + "Cannot be Stunned if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 37190, + ["stats"]= { + "40% increased Evasion Rating if you have been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 6462, + ["stats"]= { + "10% increased Movement Speed if you haven't taken Damage Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 61741, + ["stats"]= { + "30% chance to Avoid being Poisoned", + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled" + } + }, + { + ["effect"]= 57074, + ["stats"]= { + "+15% chance to Suppress Spell Damage if Equipped Helmet, Body Armour, Gloves, and Boots all have Evasion Rating" + } + }, + { + ["effect"]= 28676, + ["stats"]= { + "100% increased Evasion Rating from Equipped Body Armour" + } + } + }, + ["stats"]= {}, + ["group"]= 733, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "24133" + } + }, + [19858]= { + ["skill"]= 19858, + ["name"]= "Herbalism", + ["icon"]= "Art/2DArt/SkillIcons/passives/arcaneefficiency.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "30% increased Flask Recovery rate" + }, + ["group"]= 734, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "9206", + "44316" + }, + ["in"]= {} + }, + [36221]= { + ["skill"]= 36221, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 734, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "12412" + }, + ["in"]= { + "9206" + } + }, + [9206]= { + ["skill"]= 9206, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 734, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "36221", + "41866" + }, + ["in"]= { + "19858" + } + }, + [44316]= { + ["skill"]= 44316, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 734, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "19858" + } + }, + [23616]= { + ["skill"]= 23616, + ["name"]= "Physical and Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalandChaosDamage.png", + ["stats"]= { + "10% increased Chaos Damage", + "10% increased Physical Damage" + }, + ["group"]= 735, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "34763", + "21693" + }, + ["in"]= { + "36858" + } + }, + [32176]= { + ["skill"]= 32176, + ["name"]= "Soul Thief", + ["icon"]= "Art/2DArt/SkillIcons/passives/newenergyshield.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "OpalescentOil" + }, + ["stats"]= { + "15% increased Evasion Rating", + "10% increased maximum Energy Shield", + "Recover 2% of Energy Shield on Kill" + }, + ["group"]= 736, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "60259", + "1215" + }, + ["in"]= { + "11018" + } + }, + [60259]= { + ["skill"]= 60259, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "8% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 736, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "18182" + }, + ["in"]= { + "32176" + } + }, + [11018]= { + ["skill"]= 11018, + ["name"]= "Evasion and Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.png", + ["stats"]= { + "8% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 736, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "58244", + "32176" + }, + ["in"]= {} + }, + [1215]= { + ["skill"]= 1215, + ["name"]= "Evasion and Energy Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryEvasionAndEnergyShieldActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 11541, + ["stats"]= { + "30% increased Evasion Rating while you have Energy Shield" + } + }, + { + ["effect"]= 46099, + ["stats"]= { + "20% increased Energy Shield Recovery Rate if you haven't been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 47151, + ["stats"]= { + "20% increased Maximum Energy Shield if both Equipped Left and Right Rings have an Explicit Evasion Modifier", + "40% increased Energy Shield Recharge Rate if Equipped Amulet has an Explicit Evasion Modifier" + } + }, + { + ["effect"]= 38423, + ["stats"]= { + "100% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds" + } + }, + { + ["effect"]= 4606, + ["stats"]= { + "1% increased Evasion Rating per 10 Intelligence", + "Dexterity provides no inherent bonus to Evasion Rating" + } + }, + { + ["effect"]= 27103, + ["stats"]= { + "Every 4 seconds, Regenerate Energy Shield equal to 1% of Evasion Rating over 1 second" + } + } + }, + ["stats"]= {}, + ["group"]= 736, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32176" + } + }, + [38995]= { + ["skill"]= 38995, + ["name"]= "Life and Mana on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "Gain 4 Life per Enemy Hit with Attacks", + "Gain 2 Mana per Enemy Hit with Attacks" + }, + ["group"]= 737, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "46277" + }, + ["in"]= { + "8001" + } + }, + [8012]= { + ["skill"]= 8012, + ["name"]= "Life and Mana on Hit", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "Gain 4 Life per Enemy Hit with Attacks", + "Gain 2 Mana per Enemy Hit with Attacks" + }, + ["group"]= 737, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "13885" + }, + ["in"]= { + "8001" + } + }, + [7488]= { + ["skill"]= 7488, + ["name"]= "Leech Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLeechActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62252, + ["stats"]= { + "5% of Leech is Instant" + } + }, + { + ["effect"]= 2249, + ["stats"]= { + "40% increased Armour and Evasion Rating while Leeching" + } + }, + { + ["effect"]= 5995, + ["stats"]= { + "25% more Damage with Hits against Enemies that cannot have Life Leeched from them" + } + }, + { + ["effect"]= 53627, + ["stats"]= { + "25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 57298, + ["stats"]= { + "100% increased total Recovery per second from Life, Mana, or Energy Shield Leech" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 52876, + ["stats"]= { + "25% increased Maximum total Life, Mana and Energy Shield Recovery per second from Leech" + } + } + }, + ["stats"]= {}, + ["group"]= 737, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "8001" + } + }, + [8001]= { + ["skill"]= 8001, + ["name"]= "Clever Thief", + ["icon"]= "Art/2DArt/SkillIcons/passives/CleverThief.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VerdantOil", + "IndigoOil" + }, + ["stats"]= { + "1% of Attack Damage Leeched as Life", + "1% of Attack Damage Leeched as Mana" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + }, + ["group"]= 737, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "38995", + "8012", + "7488" + }, + ["in"]= {} + }, + [54922]= { + ["skill"]= 54922, + ["name"]= "Arrow Dancing", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneArrowDodging.png", + ["isKeystone"]= true, + ["stats"]= { + "Evasion Rating is Doubled against Projectile Attacks\n25% less Evasion Rating against Melee Attacks" + }, + ["flavourText"]= { + "Let the whistling of arrows and stones be your music." + }, + ["group"]= 738, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32555" + } + }, + [63228]= { + ["skill"]= 63228, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 739, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "18182" + }, + ["in"]= { + "42804" + } + }, + [49308]= { + ["skill"]= 49308, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/mana.png", + ["stats"]= { + "8% increased maximum Mana" + }, + ["group"]= 739, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "58244" + }, + ["in"]= { + "42804" + } + }, + [10495]= { + ["skill"]= 10495, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 739, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "42804" + } + }, + [42804]= { + ["skill"]= 42804, + ["name"]= "Mind Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/minddrinker.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "TealOil", + "TealOil" + }, + ["stats"]= { + "20% increased maximum Mana", + "Recover 2% of Mana on Kill" + }, + ["group"]= 739, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "49308", + "63228", + "10495" + }, + ["in"]= {} + }, + [53213]= { + ["skill"]= 53213, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "61834", + "7112" + }, + ["in"]= { + "42443", + "3537" + } + }, + [3314]= { + ["skill"]= 3314, + ["name"]= "Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["stats"]= { + "20% increased Frenzy Charge Duration" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "27656" + }, + ["in"]= { + "42443" + } + }, + [27656]= { + ["skill"]= 27656, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "56295" + }, + ["in"]= { + "3314", + "61834", + "25411" + } + }, + [61834]= { + ["skill"]= 61834, + ["name"]= "Basic Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["stats"]= {}, + ["group"]= 740, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "27656" + }, + ["in"]= { + "53213" + } + }, + [42443]= { + ["skill"]= 42443, + ["name"]= "Frenetic", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargedex.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "3314", + "53213" + }, + ["in"]= {} + }, + [25411]= { + ["skill"]= 25411, + ["name"]= "Infused", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["isNotable"]= true, + ["recipe"]= { + "CrimsonOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "+1 to Maximum Power Charges" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "27656" + }, + ["in"]= { + "3537" + } + }, + [3537]= { + ["skill"]= 3537, + ["name"]= "Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/chargeint.png", + ["stats"]= { + "20% increased Power Charge Duration" + }, + ["group"]= 740, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "25411", + "53213" + }, + ["in"]= {} + }, + [40362]= { + ["skill"]= 40362, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 741, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "27788" + }, + ["in"]= { + "13885" + } + }, + [25260]= { + ["skill"]= 25260, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/life1.png", + ["stats"]= { + "6% increased maximum Life" + }, + ["group"]= 741, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "46277" + }, + ["in"]= { + "27788" + } + }, + [27788]= { + ["skill"]= 27788, + ["name"]= "Blood Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifeleech.png", + ["isNotable"]= true, + ["recipe"]= { + "OpalescentOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "10% increased maximum Life", + "Recover 2% of Life on Kill" + }, + ["group"]= 741, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "25260", + "292" + }, + ["in"]= { + "40362" + } + }, + [292]= { + ["skill"]= 292, + ["name"]= "Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLife.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLifeActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 64381, + ["stats"]= { + "10% more Maximum Life if you have at least 6 Life Masteries allocated" + } + }, + { + ["effect"]= 34242, + ["stats"]= { + "15% increased maximum Life if there are no Life Modifiers on Equipped Body Armour" + } + }, + { + ["effect"]= 47642, + ["stats"]= { + "+30 to maximum Life" + } + }, + { + ["effect"]= 31822, + ["stats"]= { + "You count as on Low Life while at 55% of maximum Life or below" + } + }, + { + ["effect"]= 21468, + ["stats"]= { + "You count as on Full Life while at 90% of maximum Life or above" + } + }, + { + ["effect"]= 38454, + ["stats"]= { + "Skills Cost Life instead of 15% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 741, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "27788" + } + }, + [6615]= { + ["skill"]= 6615, + ["name"]= "Arcing Blows", + ["icon"]= "Art/2DArt/SkillIcons/passives/sparkingattacks.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "ClearOil", + "SilverOil" + }, + ["stats"]= { + "Damage with Weapons Penetrates 8% Lightning Resistance", + "30% increased Lightning Damage with Attack Skills" + }, + ["group"]= 742, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "44339", + "37532" + }, + ["in"]= {} + }, + [5022]= { + ["skill"]= 5022, + ["name"]= "Weapon Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "12% increased Lightning Damage with Attack Skills" + }, + ["group"]= 742, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "44339" + }, + ["in"]= { + "53456" + } + }, + [37532]= { + ["skill"]= 37532, + ["name"]= "Lightning Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupLightning.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryLightningActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 53046, + ["stats"]= { + "40% of Physical Damage Converted to Lightning Damage" + } + }, + { + ["effect"]= 64241, + ["stats"]= { + "60% increased Critical Strike Chance against enemies with Lightning Exposure" + } + }, + { + ["effect"]= 50993, + ["stats"]= { + "+15% to Maximum Effect of Shock" + }, + ["reminderText"]= { + "(Base Maximum Effect of Shock is 50% increased Damage taken)" + } + }, + { + ["effect"]= 28569, + ["stats"]= { + "Shocks you inflict spread to other Enemies within 1 metre" + } + }, + { + ["effect"]= 64063, + ["stats"]= { + "Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value" + } + }, + { + ["effect"]= 20364, + ["stats"]= { + "Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky" + }, + ["reminderText"]= { + "(Unlucky things are rolled twice and the worst result used)" + } + } + }, + ["stats"]= {}, + ["group"]= 742, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "6615" + } + }, + [44339]= { + ["skill"]= 44339, + ["name"]= "Weapon Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/lightningint.png", + ["stats"]= { + "12% increased Lightning Damage with Attack Skills" + }, + ["group"]= 742, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "6615", + "5022" + } + }, + [64042]= { + ["skill"]= 64042, + ["name"]= "Physical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPhysicalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 62782, + ["stats"]= { + "60% of Physical Damage from your Hits cannot be Reflected" + } + }, + { + ["effect"]= 32255, + ["stats"]= { + "10% more Maximum Physical Attack Damage" + } + }, + { + ["effect"]= 20173, + ["stats"]= { + "Cannot be Stunned by Hits that deal only Physical Damage" + } + }, + { + ["effect"]= 39010, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction" + } + }, + { + ["effect"]= 18859, + ["stats"]= { + "40% increased Physical Damage with Skills that Cost Life" + } + }, + { + ["effect"]= 59010, + ["stats"]= { + "+6% to Damage over Time Multiplier for Bleeding per Impale on Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 743, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "54713" + } + }, + [21693]= { + ["skill"]= 21693, + ["name"]= "Physical Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "3% increased Attack and Cast Speed", + "8% increased Physical Damage" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "5613" + }, + ["in"]= { + "23616" + } + }, + [5613]= { + ["skill"]= 5613, + ["name"]= "Physical Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "3% increased Attack and Cast Speed", + "8% increased Physical Damage" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "38539" + }, + ["in"]= { + "21693" + } + }, + [38539]= { + ["skill"]= 38539, + ["name"]= "Physical Damage and Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenPhysicalDamageNode.png", + ["stats"]= { + "3% increased Attack and Cast Speed", + "8% increased Physical Damage" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "54713" + }, + ["in"]= { + "5613" + } + }, + [54713]= { + ["skill"]= 54713, + ["name"]= "Force Shaper", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "SilverOil" + }, + ["stats"]= { + "Gain 10% of Physical Damage as Extra Chaos Damage", + "4% increased Attack and Cast Speed" + }, + ["group"]= 743, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "64042" + }, + ["in"]= { + "38539" + } + }, + [64769]= { + ["skill"]= 64769, + ["name"]= "Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "15% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "23449", + "12412" + }, + ["in"]= { + "36849" + } + }, + [23449]= { + ["skill"]= 23449, + ["name"]= "Poison Damage and Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "+4% to Damage over Time Multiplier for Poison", + "10% chance to Poison on Hit with Attacks" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "7263" + }, + ["in"]= { + "64769" + } + }, + [36849]= { + ["skill"]= 36849, + ["name"]= "Attack Speed and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "3% increased Attack Speed", + "5% increased Poison Duration" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "64769", + "23886" + }, + ["in"]= {} + }, + [23886]= { + ["skill"]= 23886, + ["name"]= "Attack Speed and Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNode.png", + ["stats"]= { + "3% increased Attack Speed", + "5% increased Poison Duration" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "7263" + }, + ["in"]= { + "36849" + } + }, + [7263]= { + ["skill"]= 7263, + ["name"]= "Swift Venoms", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackPoisonNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "GoldenOil" + }, + ["stats"]= { + "+14% to Damage over Time Multiplier for Poison", + "10% increased Attack Speed" + }, + ["group"]= 744, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "1205" + }, + ["in"]= { + "23449", + "23886" + } + }, + [1205]= { + ["skill"]= 1205, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 744, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "7263" + } + }, + [29454]= { + ["skill"]= 29454, + ["name"]= "Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + ["stats"]= { + "+8% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "18770" + }, + ["in"]= { + "62744" + } + }, + [62744]= { + ["skill"]= 62744, + ["name"]= "Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + ["stats"]= { + "+8% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "29454" + }, + ["in"]= { + "36287" + } + }, + [18770]= { + ["skill"]= 18770, + ["name"]= "Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSuppresionNode.png", + ["stats"]= { + "+8% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "63251" + }, + ["in"]= { + "29454" + } + }, + [63251]= { + ["skill"]= 63251, + ["name"]= "Inveterate", + ["icon"]= "Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage", + "+15% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 745, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49820" + }, + ["in"]= { + "18770" + } + }, + [49820]= { + ["skill"]= 49820, + ["name"]= "Spell Suppression Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySpellSuppressionActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 58447, + ["stats"]= { + "Prevent +3% of Suppressed Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 7677, + ["stats"]= { + "Inflict Fire, Cold and Lightning Exposure on Enemies when you Suppress their Spell Damage" + }, + ["reminderText"]= { + "(Each Exposure applies -10% to the matching Resistance for 4 seconds)" + } + }, + { + ["effect"]= 42014, + ["stats"]= { + "Prevent +1% of Suppressed Spell Damage per Hit Suppressed Recently", + "-2% chance to Suppress Spell Damage per Hit Suppressed Recently" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 2474, + ["stats"]= { + "Suppressed Spell Damage cannot inflict Elemental Ailments on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 13757, + ["stats"]= { + "You have Phasing if you have Suppressed Spell Damage Recently", + "+8% chance to Suppress Spell Damage while Phasing" + }, + ["reminderText"]= { + "(While you have Phasing, your movement is not blocked by Enemies)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 45317, + ["stats"]= { + "Chance to Suppress Spell Damage is Lucky" + } + } + }, + ["stats"]= {}, + ["group"]= 745, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "63251" + } + }, + [1461]= { + ["skill"]= 1461, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 746, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= { + "49900", + "6797" + }, + ["in"]= { + "59606", + "17790", + "30826", + "36287", + "23407" + } + }, + [53456]= { + ["skill"]= 53456, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 747, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18182", + "2260", + "11162", + "5022" + }, + ["in"]= { + "36858", + "25789", + "24426" + } + }, + [2959]= { + ["skill"]= 2959, + ["name"]= "Season of Ice", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "GoldenOil" + }, + ["stats"]= { + "+12% to Cold Damage over Time Multiplier", + "20% increased Effect of Chill" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "54887" + }, + ["in"]= { + "30427", + "56186" + } + }, + [30427]= { + ["skill"]= 30427, + ["name"]= "Chill Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "20% increased Effect of Chill" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "2959" + }, + ["in"]= { + "11162" + } + }, + [56186]= { + ["skill"]= 56186, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+6% to Cold Damage over Time Multiplier" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "2959" + }, + ["in"]= { + "11162" + } + }, + [11162]= { + ["skill"]= 11162, + ["name"]= "Cold Damage Over Time Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/colddamage.png", + ["stats"]= { + "+4% to Cold Damage over Time Multiplier" + }, + ["group"]= 748, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56186", + "30427" + }, + ["in"]= { + "53456" + } + }, + [54887]= { + ["skill"]= 54887, + ["name"]= "Cold Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCold.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryColdActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 4116, + ["stats"]= { + "40% of Physical Damage Converted to Cold Damage" + } + }, + { + ["effect"]= 13267, + ["stats"]= { + "10% Chance to Inflict Cold Exposure on Hit with Cold Damage" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)" + } + }, + { + ["effect"]= 38814, + ["stats"]= { + "-30% to Fire Resistance", + "+1 to Level of all Cold Skill Gems" + } + }, + { + ["effect"]= 33129, + ["stats"]= { + "+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance" + }, + ["reminderText"]= { + "(Overcapped Resistance is the amount by whch Uncapped Resistance is higher than Maximum Resistance)" + } + }, + { + ["effect"]= 19495, + ["stats"]= { + "Chills from your Hits always reduce Action Speed by at least 10%" + } + }, + { + ["effect"]= 26782, + ["stats"]= { + "Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%" + } + } + }, + ["stats"]= {}, + ["group"]= 748, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "2959" + } + }, + [53574]= { + ["skill"]= 53574, + ["name"]= "Mark Cast Speed and Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Mark Skills have 5% increased Cast Speed", + "10% increased Mana Cost Efficiency of Mark Skills" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "26002", + "7659" + }, + ["in"]= { + "32555" + } + }, + [26002]= { + ["skill"]= 26002, + ["name"]= "Mark Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "Mark Skills have 10% increased Cast Speed" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "25738" + }, + ["in"]= { + "53574" + } + }, + [7659]= { + ["skill"]= 7659, + ["name"]= "Mark Mana Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "20% increased Mana Cost Efficiency of Mark Skills" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "25738" + }, + ["in"]= { + "53574" + } + }, + [25738]= { + ["skill"]= 25738, + ["name"]= "Relentless Pursuit", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotable2.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "CrimsonOil" + }, + ["stats"]= { + "10% increased Attack Speed if you've cast a Mark Spell Recently", + "10% increased Movement Speed if you've cast a Mark Spell Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 749, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "62759" + }, + ["in"]= { + "26002", + "7659" + } + }, + [62759]= { + ["skill"]= 62759, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 749, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "25738" + } + }, + [31585]= { + ["skill"]= 31585, + ["name"]= "Careful Conservationist", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "10% reduced Flask Charges used", + "Flasks applied to you have 5% increased Effect", + "20% increased Flask Charges gained if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 750, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "20736" + }, + ["in"]= { + "3676" + } + }, + [3676]= { + ["skill"]= 3676, + ["name"]= "Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Charges gained" + }, + ["group"]= 750, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "31585" + }, + ["in"]= { + "17790" + } + }, + [17790]= { + ["skill"]= 17790, + ["name"]= "Flask Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaskdex.png", + ["stats"]= { + "10% increased Flask Charges gained" + }, + ["group"]= 750, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "3676", + "1461" + }, + ["in"]= {} + }, + [20736]= { + ["skill"]= 20736, + ["name"]= "Flask Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryFlasks.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryFlaskActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29214, + ["stats"]= { + "Life Flasks gain 1 Charge every 3 seconds", + "Mana Flasks gain 1 Charge every 3 seconds" + } + }, + { + ["effect"]= 59906, + ["stats"]= { + "Remove a random Elemental Ailment when you use a Mana Flask" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 11869, + ["stats"]= { + "Remove a random Non-Elemental Ailment when you use a Life Flask" + } + }, + { + ["effect"]= 40906, + ["stats"]= { + "25% chance to gain a Flask Charge when you deal a Critical Strike" + } + }, + { + ["effect"]= 20464, + ["stats"]= { + "Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 10815, + ["stats"]= { + "Recover 4% of Life when you use a Flask" + } + } + }, + ["stats"]= {}, + ["group"]= 750, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31585" + } + }, + [15697]= { + ["skill"]= 15697, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 751, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52030" + } + }, + [2413]= { + ["skill"]= 2413, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "52030" + }, + ["in"]= { + "30826" + } + }, + [30826]= { + ["skill"]= 30826, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "2413", + "11800", + "1461" + }, + ["in"]= {} + }, + [31438]= { + ["skill"]= 31438, + ["name"]= "Tincture Mana on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode2.png", + ["stats"]= { + "Recover 1% of Mana on Kill while you have a Tincture active" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "52030" + }, + ["in"]= { + "11800" + } + }, + [11800]= { + ["skill"]= 11800, + ["name"]= "Tincture Mana on Kill", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode2.png", + ["stats"]= { + "Recover 1% of Mana on Kill while you have a Tincture active" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31438" + }, + ["in"]= { + "30826" + } + }, + [52030]= { + ["skill"]= 52030, + ["name"]= "Burst of Energy", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureManaNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AmberOil", + "AmberOil" + }, + ["stats"]= { + "Recover 15% of Mana when you activate a Tincture" + }, + ["group"]= 751, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15697" + }, + ["in"]= { + "2413", + "31438" + } + }, + [9469]= { + ["skill"]= 9469, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "25% increased Critical Strike Chance" + }, + ["group"]= 752, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= {}, + ["in"]= { + "59220", + "65502" + } + }, + [59220]= { + ["skill"]= 59220, + ["name"]= "Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalstrikechance.png", + ["stats"]= { + "25% increased Critical Strike Chance" + }, + ["group"]= 752, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "9469", + "20807" + }, + ["in"]= {} + }, + [65502]= { + ["skill"]= 65502, + ["name"]= "Heartseeker", + ["icon"]= "Art/2DArt/SkillIcons/passives/heartseeker.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "CrimsonOil", + "CrimsonOil" + }, + ["stats"]= { + "+30% to Critical Strike Multiplier" + }, + ["group"]= 752, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "9469", + "31039" + }, + ["in"]= {} + }, + [31039]= { + ["skill"]= 31039, + ["name"]= "Critical Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupCrit.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryCriticalActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 9986, + ["stats"]= { + "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + { + ["effect"]= 2987, + ["stats"]= { + "+25% to Critical Strike Multiplier against Unique Enemies" + } + }, + { + ["effect"]= 59734, + ["stats"]= { + "Stuns from Critical Strikes have 100% increased Duration" + } + }, + { + ["effect"]= 38070, + ["stats"]= { + "+3 to Level of all Critical Support Gems" + } + }, + { + ["effect"]= 61534, + ["stats"]= { + "You take 30% reduced Extra Damage from Critical Strikes" + } + }, + { + ["effect"]= 52684, + ["stats"]= { + "150% increased Critical Strike Chance against Enemies that are on Full Life" + } + } + }, + ["stats"]= {}, + ["group"]= 752, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "65502" + } + }, + [57080]= { + ["skill"]= 57080, + ["name"]= "Accuracy and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "4% increased Attack Speed", + "10% increased Accuracy Rating" + }, + ["group"]= 753, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42104", + "20807" + }, + ["in"]= {} + }, + [42104]= { + ["skill"]= 42104, + ["name"]= "Accuracy and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "4% increased Attack Speed", + "10% increased Accuracy Rating" + }, + ["group"]= 753, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "57080", + "49621" + } + }, + [49621]= { + ["skill"]= 49621, + ["name"]= "Acuity", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "BlackOil" + }, + ["stats"]= { + "6% increased Attack Speed", + "+100 to Accuracy Rating", + "20% increased Accuracy Rating" + }, + ["group"]= 753, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "42104", + "58302" + }, + ["in"]= {} + }, + [58302]= { + ["skill"]= 58302, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 753, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "49621" + } + }, + [5802]= { + ["skill"]= 5802, + ["name"]= "Dagger Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 10% increased Damage with Hits and Ailments", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 754, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "3424", + "49900" + }, + ["in"]= {} + }, + [3424]= { + ["skill"]= 3424, + ["name"]= "Dagger Damage and Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterydaggerdex.png", + ["stats"]= { + "Dagger Attacks deal 10% increased Damage with Hits and Ailments", + "3% increased Movement Speed" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 754, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "1405" + }, + ["in"]= { + "5802" + } + }, + [1405]= { + ["skill"]= 1405, + ["name"]= "From the Shadows", + ["icon"]= "Art/2DArt/SkillIcons/passives/daggerpenetration.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "12% increased Attack Speed with Daggers", + "40% increased Elusive Effect" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 754, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "31197" + }, + ["in"]= { + "3424" + } + }, + [31197]= { + ["skill"]= 31197, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 754, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "1405" + } + }, + [35255]= { + ["skill"]= 35255, + ["name"]= "Ghost Dance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/AcrobaticWillpower.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Recover Energy Shield to above Evasion Rating\nEvery 2 seconds, gain a Ghost Shroud, up to a maximum of 3\nWhen Hit, lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating" + }, + ["flavourText"]= { + "Surround yourself with the dead,", + "so that you may avoid joining them." + }, + ["group"]= 755, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18182" + }, + ["in"]= {} + }, + [13375]= { + ["skill"]= 13375, + ["name"]= "Multishot", + ["icon"]= "Art/2DArt/SkillIcons/passives/GreenProjectileAttackNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "BlackOil", + "SilverOil" + }, + ["stats"]= { + "Attacks fire an additional Projectile" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 2, + ["out"]= { + "49391" + }, + ["in"]= { + "20953" + } + }, + [65427]= { + ["skill"]= 65427, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 10, + ["out"]= { + "20953" + }, + ["in"]= { + "45202" + } + }, + [45202]= { + ["skill"]= 45202, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 6, + ["out"]= { + "65427" + }, + ["in"]= { + "36287" + } + }, + [20953]= { + ["skill"]= 20953, + ["name"]= "Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeed.png", + ["stats"]= { + "4% increased Attack Speed" + }, + ["group"]= 756, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "13375" + }, + ["in"]= { + "65427" + } + }, + [49391]= { + ["skill"]= 49391, + ["name"]= "Attack Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackBlindMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAttackActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 28524, + ["stats"]= { + "+0.3 metres to Melee Strike Range" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 39154, + ["stats"]= { + "Non-Vaal Strike Skills target 1 additional nearby Enemy" + } + }, + { + ["effect"]= 38401, + ["stats"]= { + "Remove Damaging Ailments when you Change Stance", + "Stance Skills have +6 seconds to Cooldown" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + { + ["effect"]= 64511, + ["stats"]= { + "Monsters cannot Block your Attacks" + } + }, + { + ["effect"]= 11938, + ["stats"]= { + "5% increased Attack Speed per Enemy in Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 19500, + ["stats"]= { + "Attack Skills Cost Life instead of 20% of Mana Cost" + } + } + }, + ["stats"]= {}, + ["group"]= 756, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13375" + } + }, + [17749]= { + ["skill"]= 17749, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 757, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "18747" + }, + ["in"]= { + "18182" + } + }, + [18747]= { + ["skill"]= 18747, + ["name"]= "Life Recoup", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNode.png", + ["stats"]= { + "6% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 757, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "52789" + }, + ["in"]= { + "17749" + } + }, + [52789]= { + ["skill"]= 52789, + ["name"]= "Circle of Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeRecoupNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "VioletOil" + }, + ["stats"]= { + "Gain 10 Life per Enemy Hit with Attacks", + "12% of Damage taken Recouped as Life" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + }, + ["group"]= 757, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "10414" + }, + ["in"]= { + "18747" + } + }, + [10414]= { + ["skill"]= 10414, + ["name"]= "Recovery Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryRecovery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryRecoveryActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 19002, + ["stats"]= { + "3% chance to Recover all Life when you Kill an Enemy" + } + }, + { + ["effect"]= 24305, + ["stats"]= { + "Life Recoup Effects instead occur over 3 seconds" + } + }, + { + ["effect"]= 6630, + ["stats"]= { + "Every 3 seconds, Consume a nearby Corpse to Recover 10% of Life" + } + }, + { + ["effect"]= 36081, + ["stats"]= { + "Nearby Enemies have 50% reduced Life Regeneration Rate" + } + }, + { + ["effect"]= 16013, + ["stats"]= { + "Life Recovery from Regeneration is not applied", + "Every 4 seconds, Recover 1 Life for every 0.1 Life Recovery per second from Regeneration" + } + }, + { + ["effect"]= 45653, + ["stats"]= { + "Regenerate 50 Life per second" + } + } + }, + ["stats"]= {}, + ["group"]= 757, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "52789" + } + }, + [35851]= { + ["skill"]= 35851, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Critical Strike Chance", + "10% increased Accuracy Rating" + }, + ["group"]= 758, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "47484" + }, + ["in"]= { + "60592" + } + }, + [60592]= { + ["skill"]= 60592, + ["name"]= "Accuracy and Critical Strike Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["stats"]= { + "15% increased Critical Strike Chance", + "10% increased Accuracy Rating" + }, + ["group"]= 758, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "35851" + }, + ["in"]= { + "46277" + } + }, + [47484]= { + ["skill"]= 47484, + ["name"]= "Depth Perception", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracydex.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VerdantOil", + "TealOil" + }, + ["stats"]= { + "+100 to Accuracy Rating", + "25% increased Critical Strike Chance", + "20% increased Accuracy Rating" + }, + ["group"]= 758, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "26148" + }, + ["in"]= { + "35851" + } + }, + [26148]= { + ["skill"]= 26148, + ["name"]= "Accuracy Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryAccuracyActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 57597, + ["stats"]= { + "40% more Accuracy Rating against Unique Enemies" + } + }, + { + ["effect"]= 51147, + ["stats"]= { + "Gain Accuracy Rating equal to your Intelligence" + } + }, + { + ["effect"]= 64775, + ["stats"]= { + "Dexterity's Accuracy Bonus instead grants +3 to Accuracy Rating per Dexterity" + } + }, + { + ["effect"]= 39178, + ["stats"]= { + "50% more Accuracy Rating at Close Range" + }, + ["reminderText"]= { + "(Close Range is up to 2 metres)" + } + }, + { + ["effect"]= 9755, + ["stats"]= { + "+500 to Accuracy Rating", + "-2 to Accuracy Rating per Level" + } + } + }, + ["stats"]= {}, + ["group"]= 758, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "47484" + } + }, + [24426]= { + ["skill"]= 24426, + ["name"]= "Ghost Reaver", + ["icon"]= "Art/2DArt/SkillIcons/passives/ghostreaver.png", + ["isKeystone"]= true, + ["stats"]= { + "Leech Energy Shield instead of Life\nMaximum total Energy Shield Recovery per second from Leech is doubled\nCannot Recharge Energy Shield" + }, + ["flavourText"]= { + "I will wear your ghost, and you will die twice: against me, and for me." + }, + ["group"]= 759, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "53456" + }, + ["in"]= {} + }, + [18182]= { + ["skill"]= 18182, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 760, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "28753", + "55414", + "17749" + }, + ["in"]= { + "60259", + "63228", + "53456", + "35255", + "56295" + } + }, + [56295]= { + ["skill"]= 56295, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + }, + ["group"]= 761, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "18182" + }, + ["in"]= { + "27656", + "46277" + } + }, + [46277]= { + ["skill"]= 46277, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 762, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "56295", + "5629", + "60592", + "4269" + }, + ["in"]= { + "38995", + "25260", + "49900" + } + }, + [49900]= { + ["skill"]= 49900, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 763, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "46277" + }, + ["in"]= { + "1461", + "5802", + "1648" + } + }, + [36287]= { + ["skill"]= 36287, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 764, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "1461", + "20807", + "10843", + "62744", + "45202" + }, + ["in"]= { + "64235", + "54307" + } + }, + [20807]= { + ["skill"]= 20807, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 765, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12412", + "61573", + "10840" + }, + ["in"]= { + "14292", + "16079", + "59220", + "57080", + "36287", + "38149" + } + }, + [12412]= { + ["skill"]= 12412, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + }, + ["group"]= 766, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "54354" + }, + ["in"]= { + "32555", + "36221", + "64769", + "20807", + "63618" + } + }, + [48508]= { + ["skill"]= 48508, + ["name"]= "Totem Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AttackTotemMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTotemActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 60050, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value" + } + }, + { + ["effect"]= 27718, + ["stats"]= { + "Skills that Summon a Totem have 30% chance to Summon two Totems instead of one" + } + }, + { + ["effect"]= 12747, + ["stats"]= { + "5% of Damage from Hits is taken from your nearest Totem's Life before you" + } + }, + { + ["effect"]= 53005, + ["stats"]= { + "1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + { + ["effect"]= 32279, + ["stats"]= { + "40% increased Critical Strike Chance if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 16950, + ["stats"]= { + "Totems Taunt Enemies around them for 1 second when Summoned" + } + } + }, + ["stats"]= {}, + ["group"]= 767, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15290" + } + }, + [42632]= { + ["skill"]= 42632, + ["name"]= "Totem Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png", + ["stats"]= { + "20% increased Critical Strike Chance with Totem Skills", + "+10% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "15290" + }, + ["in"]= { + "27444" + } + }, + [27444]= { + ["skill"]= 27444, + ["name"]= "Totem Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemAttackSpeed.png", + ["stats"]= { + "20% increased Critical Strike Chance with Totem Skills", + "+10% to Critical Strike Multiplier with Totem Skills" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "42632" + }, + ["in"]= { + "63618" + } + }, + [4750]= { + ["skill"]= 4750, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "15% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "58288" + }, + ["in"]= { + "63618" + } + }, + [58288]= { + ["skill"]= 58288, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "15% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "15290" + }, + ["in"]= { + "4750" + } + }, + [63618]= { + ["skill"]= 63618, + ["name"]= "Totem Damage and Placement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemDamage.png", + ["stats"]= { + "10% increased Totem Damage", + "10% increased Totem Placement speed" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "12412", + "27444", + "4750" + }, + ["in"]= {} + }, + [15290]= { + ["skill"]= 15290, + ["name"]= "Watchtowers", + ["icon"]= "Art/2DArt/SkillIcons/passives/RangedTotemOffensive.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "SilverOil", + "SilverOil" + }, + ["stats"]= { + "24% increased Totem Damage", + "Attack Skills have +1 to maximum number of Summoned Ballista Totems", + "1% increased Movement Speed per Summoned Totem" + }, + ["group"]= 767, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "48508" + }, + ["in"]= { + "42632", + "58288" + } + }, + [27872]= { + ["skill"]= 27872, + ["name"]= "Mine Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMineActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 29161, + ["stats"]= { + "Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 47823, + ["stats"]= { + "Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%" + } + }, + { + ["effect"]= 18391, + ["stats"]= { + "30% increased Effect of Auras from Mines" + } + }, + { + ["effect"]= 21313, + ["stats"]= { + "Detonate Mines is Triggered while you are moving" + } + }, + { + ["effect"]= 533, + ["stats"]= { + "Mines cannot be Damaged" + } + }, + { + ["effect"]= 6510, + ["stats"]= { + "Regenerate 2.5% of Life per Second if you've Detonated a Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + } + }, + ["stats"]= {}, + ["group"]= 768, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "9055", + "33777", + "61689" + } + }, + [40409]= { + ["skill"]= 40409, + ["name"]= "Mine Detonation Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "Mines have 20% increased Detonation Speed" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "9055" + }, + ["in"]= { + "33777" + } + }, + [4546]= { + ["skill"]= 4546, + ["name"]= "Mine Detonation Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsspeed.png", + ["stats"]= { + "Mines have 20% increased Detonation Speed" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "61689" + }, + ["in"]= { + "9055" + } + }, + [9055]= { + ["skill"]= 9055, + ["name"]= "Volatile Mines", + ["icon"]= "Art/2DArt/SkillIcons/passives/volitilemines.png", + ["isNotable"]= true, + ["recipe"]= { + "AzureOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "30% increased Mine Duration", + "Can have up to 3 additional Remote Mines placed at a time", + "Mines have 30% increased Detonation Speed" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "4546", + "27872" + }, + ["in"]= { + "40409" + } + }, + [33777]= { + ["skill"]= 33777, + ["name"]= "Devastating Devices", + ["icon"]= "Art/2DArt/SkillIcons/passives/MineCriticalStrikesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance with Mines", + "+25% to Critical Strike Multiplier with Mines", + "10% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "27872", + "40409" + }, + ["in"]= { + "35334" + } + }, + [1655]= { + ["skill"]= 1655, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Mine Damage" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "61689" + }, + ["in"]= { + "29549" + } + }, + [8027]= { + ["skill"]= 8027, + ["name"]= "Mine Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "20% increased Critical Strike Chance with Mines", + "+10% to Critical Strike Multiplier with Mines" + }, + ["group"]= 768, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "35334" + }, + ["in"]= { + "2260" + } + }, + [2260]= { + ["skill"]= 2260, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Mine Damage" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "29549", + "8027" + }, + ["in"]= { + "53456" + } + }, + [35334]= { + ["skill"]= 35334, + ["name"]= "Mine Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "20% increased Critical Strike Chance with Mines", + "+10% to Critical Strike Multiplier with Mines" + }, + ["group"]= 768, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "33777" + }, + ["in"]= { + "8027" + } + }, + [29549]= { + ["skill"]= 29549, + ["name"]= "Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Mine Damage" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "1655" + }, + ["in"]= { + "2260" + } + }, + [61689]= { + ["skill"]= 61689, + ["name"]= "Explosive Elements", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapsradius.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Mine Damage Penetrates 10% Elemental Resistances" + }, + ["group"]= 768, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "27872" + }, + ["in"]= { + "4546", + "1655" + } + }, + [54307]= { + ["skill"]= 54307, + ["name"]= "Acrobatics", + ["icon"]= "Art/2DArt/SkillIcons/passives/KeystoneAcrobatics.png", + ["isKeystone"]= true, + ["stats"]= { + "Modifiers to Chance to Suppress Spell Damage instead apply to Chance to Dodge Spell Hits at 50% of their value\nMaximum Chance to Dodge Spell Hits is 75%" + }, + ["flavourText"]= { + "Light and unadorned, like wind on water, you will be." + }, + ["group"]= 769, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "36287" + }, + ["in"]= {} + }, + [23407]= { + ["skill"]= 23407, + ["name"]= "Perfect Agony", + ["icon"]= "Art/2DArt/SkillIcons/passives/CritAilments.png", + ["isKeystone"]= true, + ["stats"]= { + "Damage over Time Multiplier for Ailments is equal to Critical Strike Multiplier\nCritical Strikes do not deal extra Damage\nNon-Critical Strikes cannot inflict Ailments" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + }, + ["flavourText"]= { + "Your foes will beg not for their pitiful lives, but for a quick, merciful death." + }, + ["group"]= 770, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "1461" + }, + ["in"]= {} + }, + [10840]= { + ["skill"]= 10840, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 771, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "35086", + "13935" + }, + ["in"]= { + "20807" + } + }, + [35086]= { + ["skill"]= 35086, + ["name"]= "Attack Cost Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/lifemana.png", + ["stats"]= { + "15% increased Cost Efficiency of Attacks" + }, + ["group"]= 771, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "13935" + }, + ["in"]= { + "10840" + } + }, + [13935]= { + ["skill"]= 13935, + ["name"]= "Thrill of Battle", + ["icon"]= "Art/2DArt/SkillIcons/passives/ReducedManaNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "IndigoOil", + "SilverOil", + "GoldenOil" + }, + ["stats"]= { + "Gain 2 Mana per Enemy Hit with Attacks", + "25% increased Cost Efficiency of Attacks" + }, + ["group"]= 771, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "3571" + }, + ["in"]= { + "10840", + "35086" + } + }, + [3571]= { + ["skill"]= 3571, + ["name"]= "Mana Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryManaActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2902, + ["stats"]= { + "Regenerate 5 Mana per second" + } + }, + { + ["effect"]= 55886, + ["stats"]= { + "Recover 10% of Mana over 1 second when you use a Guard Skill" + } + }, + { + ["effect"]= 59064, + ["stats"]= { + "10% of Damage taken Recouped as Mana" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + { + ["effect"]= 12119, + ["stats"]= { + "15% increased Mana Cost Efficiency" + } + }, + { + ["effect"]= 64642, + ["stats"]= { + "10% chance to Recover 10% of Mana when you use a Skill" + } + }, + { + ["effect"]= 64875, + ["stats"]= { + "12% increased Mana Reservation Efficiency of Skills" + } + } + }, + ["stats"]= {}, + ["group"]= 771, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "13935" + } + }, + [56519]= { + ["skill"]= 56519, + ["name"]= "Tincture Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupMana.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTinctureInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveBannerTinctureActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTincturePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 44252, + ["stats"]= { + "The first 6 Mana Burn applied to you have no effect" + } + }, + { + ["effect"]= 17267, + ["stats"]= { + "30% increased Evasion Rating while you have an active Tincture" + } + }, + { + ["effect"]= 8875, + ["stats"]= { + "1% increased Flask Charges gained per Mana Burn on you" + } + }, + { + ["effect"]= 20111, + ["stats"]= { + "Flasks adjacent to applied Tincture have 10% increased Effect when\nused if you've Hit an enemy with a Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + { + ["effect"]= 26997, + ["stats"]= { + "Tinctures deactivate when you have 12 or more Mana Burn" + } + } + }, + ["stats"]= {}, + ["group"]= 772, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "37425" + } + }, + [655]= { + ["skill"]= 655, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "45246" + }, + ["in"]= { + "61573" + } + }, + [45246]= { + ["skill"]= 45246, + ["name"]= "Slower Mana Burn", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode1.png", + ["stats"]= { + "Tinctures applied to you have 5% reduced Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "37425" + }, + ["in"]= { + "655" + } + }, + [61573]= { + ["skill"]= 61573, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 8% increased Effect" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "655" + }, + ["in"]= { + "20807", + "6264" + } + }, + [6264]= { + ["skill"]= 6264, + ["name"]= "Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNode3.png", + ["stats"]= { + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "61573" + }, + ["in"]= { + "37425" + } + }, + [37425]= { + ["skill"]= 37425, + ["name"]= "Practised Reapplication", + ["icon"]= "Art/2DArt/SkillIcons/passives/TinctureNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "SepiaOil", + "SepiaOil" + }, + ["stats"]= { + "25% increased Tincture Cooldown Recovery Rate" + }, + ["group"]= 772, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "56519", + "6264" + }, + ["in"]= { + "45246" + } + }, + [32763]= { + ["skill"]= 32763, + ["name"]= "Large Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 2, + ["index"]= 4, + ["proxy"]= "48132" + }, + ["stats"]= {}, + ["group"]= 773, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "23334" + }, + ["in"]= { + "48132" + } + }, + [23334]= { + ["skill"]= 23334, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "4% increased Projectile Damage" + }, + ["group"]= 773, + ["orbit"]= 1, + ["orbitIndex"]= 1, + ["out"]= { + "6797" + }, + ["in"]= { + "32763" + } + }, + [6797]= { + ["skill"]= 6797, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "4% increased Projectile Damage" + }, + ["group"]= 773, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "1461", + "23334" + } + }, + [4269]= { + ["skill"]= 4269, + ["name"]= "Damage against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "20% increased Damage with Hits and Ailments against Marked Enemy" + }, + ["group"]= 774, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "55880" + }, + ["in"]= { + "46277" + } + }, + [55880]= { + ["skill"]= 55880, + ["name"]= "Damage against Marked Enemy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNode.png", + ["stats"]= { + "20% increased Damage with Hits and Ailments against Marked Enemy" + }, + ["group"]= 774, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "32681" + }, + ["in"]= { + "4269" + } + }, + [32681]= { + ["skill"]= 32681, + ["name"]= "Mark the Prey", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkNotableMarkSpellRecently.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "IndigoOil", + "BlackOil" + }, + ["stats"]= { + "Marked Enemy has 10% reduced Accuracy Rating", + "Marked Enemy takes 10% increased Damage" + }, + ["group"]= 774, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "32657" + }, + ["in"]= { + "55880" + } + }, + [32657]= { + ["skill"]= 32657, + ["name"]= "Mark Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MarkMastery.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryMarkActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 2800, + ["stats"]= { + "Marked Enemy cannot Regenerate Life" + } + }, + { + ["effect"]= 34031, + ["stats"]= { + "Enemies near your Marked Enemy are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + } + }, + { + ["effect"]= 48980, + ["stats"]= { + "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy" + } + }, + { + ["effect"]= 50841, + ["stats"]= { + "Marked Enemy cannot deal Critical Strikes" + } + }, + { + ["effect"]= 52153, + ["stats"]= { + "Your Mark Transfers to another Enemy when Marked Enemy dies" + } + }, + { + ["effect"]= 23152, + ["stats"]= { + "50% more Accuracy Rating against Marked Enemy" + } + } + }, + ["stats"]= {}, + ["group"]= 774, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "32681" + } + }, + [55414]= { + ["skill"]= 55414, + ["name"]= "Dagger Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerint.png", + ["stats"]= { + "Dagger Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "47422" + }, + ["in"]= { + "18182", + "22261" + } + }, + [22261]= { + ["skill"]= 22261, + ["name"]= "Dagger Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + ["stats"]= { + "Dagger Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "55414" + }, + ["in"]= { + "56174" + } + }, + [56174]= { + ["skill"]= 56174, + ["name"]= "Dagger Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + ["stats"]= { + "Dagger Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "38864", + "22261" + }, + ["in"]= {} + }, + [38864]= { + ["skill"]= 38864, + ["name"]= "Dagger Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeeddagger.png", + ["stats"]= { + "Dagger Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "36490" + }, + ["in"]= { + "56174" + } + }, + [47422]= { + ["skill"]= 47422, + ["name"]= "Dagger Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + ["stats"]= { + "18% increased Critical Strike Chance with Daggers", + "+14% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "44134" + }, + ["in"]= { + "55414" + } + }, + [44134]= { + ["skill"]= 44134, + ["name"]= "Dagger Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + ["stats"]= { + "18% increased Critical Strike Chance with Daggers", + "+14% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "11489" + }, + ["in"]= { + "47422" + } + }, + [11489]= { + ["skill"]= 11489, + ["name"]= "Dagger Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticaldaggerdex.png", + ["stats"]= { + "18% increased Critical Strike Chance with Daggers", + "+14% to Critical Strike Multiplier with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "8920" + }, + ["in"]= { + "44134" + } + }, + [8920]= { + ["skill"]= 8920, + ["name"]= "Backstabbing", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerNotable1.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "TealOil", + "SilverOil" + }, + ["stats"]= { + "30% increased Critical Strike Chance with Daggers", + "+30% to Critical Strike Multiplier with Daggers", + "100% increased Critical Strike Chance against Enemies that are on Full Life" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "7634" + }, + ["in"]= { + "11489" + } + }, + [36490]= { + ["skill"]= 36490, + ["name"]= "Flaying", + ["icon"]= "Art/2DArt/SkillIcons/passives/flaying.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "CrimsonOil" + }, + ["stats"]= { + "Dagger Attacks deal 24% increased Damage with Hits and Ailments", + "12% increased Attack Speed with Daggers", + "18% increased Accuracy Rating with Daggers" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 775, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "7634" + }, + ["in"]= { + "38864" + } + }, + [7634]= { + ["skill"]= 7634, + ["name"]= "Dagger Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupDagger.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryDaggerActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDaggersPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 63223, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are on Full Life" + } + }, + { + ["effect"]= 33315, + ["stats"]= { + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + { + ["effect"]= 20515, + ["stats"]= { + "+10% chance to Suppress Spell Damage for each Dagger you're Wielding" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + { + ["effect"]= 42559, + ["stats"]= { + "8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons" + } + }, + { + ["effect"]= 58309, + ["stats"]= { + "50% increased Projectile Speed while wielding a Dagger" + }, + ["reminderText"]= { + "(Rune Daggers are considered Daggers)" + } + }, + { + ["effect"]= 44869, + ["stats"]= { + "Elusive also grants +40% to Critical Strike Multiplier for Skills Supported by Nightblade" + } + } + }, + ["stats"]= {}, + ["group"]= 775, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "8920", + "36490" + } + }, + [36225]= { + ["skill"]= 36225, + ["name"]= "Claw Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws", + "+10% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "49568" + }, + ["in"]= { + "5629" + } + }, + [30745]= { + ["skill"]= 30745, + ["name"]= "Claw Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws", + "+10% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "15614" + }, + ["in"]= { + "49568" + } + }, + [49568]= { + ["skill"]= 49568, + ["name"]= "Claw Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawCritStrikeChanceNode.png", + ["stats"]= { + "20% increased Critical Strike Chance with Claws", + "+10% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "30745" + }, + ["in"]= { + "36225" + } + }, + [17908]= { + ["skill"]= 17908, + ["name"]= "Claw Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "Claw Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "5629" + }, + ["in"]= { + "35384" + } + }, + [25775]= { + ["skill"]= 25775, + ["name"]= "Claw Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "Claw Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "35384" + }, + ["in"]= { + "54791" + } + }, + [5629]= { + ["skill"]= 5629, + ["name"]= "Claw Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/clawmasterydex.png", + ["stats"]= { + "Claw Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "36225" + }, + ["in"]= { + "46277", + "17908" + } + }, + [35384]= { + ["skill"]= 35384, + ["name"]= "Claw Damage and Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedclaw.png", + ["stats"]= { + "Claw Attacks deal 8% increased Damage with Hits and Ailments", + "4% increased Attack Speed with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "17908" + }, + ["in"]= { + "25775" + } + }, + [15614]= { + ["skill"]= 15614, + ["name"]= "Claws of the Hawk", + ["icon"]= "Art/2DArt/SkillIcons/passives/talonsofmurder.png", + ["isNotable"]= true, + ["recipe"]= { + "VioletOil", + "BlackOil", + "OpalescentOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance with Claws", + "+20% to Critical Strike Multiplier with Claws" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "19050" + }, + ["in"]= { + "30745" + } + }, + [54791]= { + ["skill"]= 54791, + ["name"]= "Claws of the Magpie", + ["icon"]= "Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "AzureOil" + }, + ["stats"]= { + "Claw Attacks deal 25% increased Damage with Hits and Ailments", + "10% increased Attack Speed with Claws", + "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 776, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "25775", + "19050" + }, + ["in"]= {} + }, + [19050]= { + ["skill"]= 19050, + ["name"]= "Claw Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupClaw.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryClawsActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryClawsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 40041, + ["stats"]= { + "Gain 25 Life per Enemy Hit with Main Hand Claw Attacks", + "Gain 25 Mana per Enemy Hit with Off Hand Claw Attacks" + } + }, + { + ["effect"]= 7389, + ["stats"]= { + "Inherent Attack Speed bonus from Dual Wielding is doubled while wielding two Claws" + } + }, + { + ["effect"]= 36475, + ["stats"]= { + "60% increased Damage with Claws against Enemies that are on Low Life" + } + }, + { + ["effect"]= 4516, + ["stats"]= { + "10% of Life Leech is Instant per Equipped Claw" + } + }, + { + ["effect"]= 2823, + ["stats"]= { + "50% increased Stealth if you've Hit With a Claw Recently" + } + }, + { + ["effect"]= 22056, + ["stats"]= { + "Skills Supported by Nightblade have 40% increased Effect of Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + } + }, + ["stats"]= {}, + ["group"]= 776, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "15614", + "54791" + } + }, + [11811]= { + ["skill"]= 11811, + ["name"]= "Poison Chance and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "5% increased Poison Duration", + "10% chance to Poison on Hit" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "31359" + }, + ["in"]= { + "1648" + } + }, + [28903]= { + ["skill"]= 28903, + ["name"]= "Poison Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryPoison.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryPoisonActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 34563, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + { + ["effect"]= 62897, + ["stats"]= { + "Poisons you inflict deal Damage 20% faster" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)", + "(They will deal the same total damage over a shorter duration)" + } + }, + { + ["effect"]= 45300, + ["stats"]= { + "+12% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + { + ["effect"]= 64264, + ["stats"]= { + "Enemies Poisoned by you cannot deal Critical Strikes" + } + }, + { + ["effect"]= 16264, + ["stats"]= { + "Recover 3% of Life on Killing a Poisoned Enemy" + } + }, + { + ["effect"]= 52120, + ["stats"]= { + "Plague Bearer has 20% increased Maximum Plague Value" + } + } + }, + ["stats"]= {}, + ["group"]= 777, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "31359" + } + }, + [20127]= { + ["skill"]= 20127, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "31359" + }, + ["in"]= { + "37785" + } + }, + [1648]= { + ["skill"]= 1648, + ["name"]= "Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "15% chance to Poison on Hit" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "11811", + "37785", + "49900" + }, + ["in"]= {} + }, + [31359]= { + ["skill"]= 31359, + ["name"]= "Fatal Toxins", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "+10% to Damage over Time Multiplier for Poison", + "+10% to Chaos Resistance", + "30% increased Damage with Poison" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "28903" + }, + ["in"]= { + "11811", + "20127" + } + }, + [37785]= { + ["skill"]= 37785, + ["name"]= "Poison Damage Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Poison.png", + ["stats"]= { + "+6% to Damage over Time Multiplier for Poison" + }, + ["group"]= 777, + ["orbit"]= 2, + ["orbitIndex"]= 13, + ["out"]= { + "20127" + }, + ["in"]= { + "1648" + } + }, + [10429]= { + ["skill"]= 10429, + ["name"]= "Trap Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryTraps.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryTrapActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 13257, + ["stats"]= { + "5% chance to throw up to 4 additional Traps" + } + }, + { + ["effect"]= 8298, + ["stats"]= { + "8% Chance for Traps to Trigger an additional time" + } + }, + { + ["effect"]= 50265, + ["stats"]= { + "Can have up to 5 additional Traps placed at a time" + } + }, + { + ["effect"]= 20694, + ["stats"]= { + "60% increased Trap Trigger Area of Effect" + } + }, + { + ["effect"]= 763, + ["stats"]= { + "Recover 30 Life when your Trap is triggered by an Enemy" + } + }, + { + ["effect"]= 43061, + ["stats"]= { + "Traps cannot be Damaged" + } + } + }, + ["stats"]= {}, + ["group"]= 778, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "55380", + "59605", + "21297" + } + }, + [12824]= { + ["skill"]= 12824, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Trap Damage" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "55380" + }, + ["in"]= { + "45827" + } + }, + [45827]= { + ["skill"]= 45827, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "16% increased Trap Damage" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "12824" + }, + ["in"]= { + "28753" + } + }, + [28753]= { + ["skill"]= 28753, + ["name"]= "Trap Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "12% increased Trap Damage" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "45827", + "30319" + }, + ["in"]= { + "18182" + } + }, + [55380]= { + ["skill"]= 55380, + ["name"]= "Clever Construction", + ["icon"]= "Art/2DArt/SkillIcons/passives/cleverconstruction.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "AzureOil", + "CrimsonOil" + }, + ["stats"]= { + "10% Chance for Traps to Trigger an additional time" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "10429" + }, + ["in"]= { + "12824", + "54574" + } + }, + [30319]= { + ["skill"]= 30319, + ["name"]= "Trap Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "24% increased Critical Strike Chance with Traps", + "+8% to Critical Strike Multiplier with Traps" + }, + ["group"]= 778, + ["orbit"]= 2, + ["orbitIndex"]= 11, + ["out"]= { + "32432" + }, + ["in"]= { + "28753" + } + }, + [54574]= { + ["skill"]= 54574, + ["name"]= "Trap Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "30% increased Trap Trigger Area of Effect" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "55380" + }, + ["in"]= { + "59605" + } + }, + [59605]= { + ["skill"]= 59605, + ["name"]= "Unstable Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trap2.png", + ["isNotable"]= true, + ["recipe"]= { + "TealOil", + "VioletOil", + "VioletOil" + }, + ["stats"]= { + "30% increased Trap Damage", + "12% increased Area of Effect", + "50% increased Trap Trigger Area of Effect" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "10429", + "54574" + }, + ["in"]= { + "54974" + } + }, + [54974]= { + ["skill"]= 54974, + ["name"]= "Trap Trigger Area", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapdamage.png", + ["stats"]= { + "30% increased Trap Trigger Area of Effect" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "59605" + }, + ["in"]= { + "21297" + } + }, + [32432]= { + ["skill"]= 32432, + ["name"]= "Trap Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/trapcriticalstrike.png", + ["stats"]= { + "24% increased Critical Strike Chance with Traps", + "+8% to Critical Strike Multiplier with Traps" + }, + ["group"]= 778, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "30319", + "21297" + } + }, + [21297]= { + ["skill"]= 21297, + ["name"]= "High Explosives", + ["icon"]= "Art/2DArt/SkillIcons/passives/highexplosives.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VerdantOil", + "SilverOil" + }, + ["stats"]= { + "60% increased Critical Strike Chance with Traps", + "+20% to Critical Strike Multiplier with Traps", + "15% chance to gain a Power Charge when your Trap is triggered by an Enemy" + }, + ["group"]= 778, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "32432", + "10429", + "54974" + }, + ["in"]= {} + }, + [59151]= { + ["skill"]= 59151, + ["name"]= "Brutal Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/cruelblade.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "VerdantOil", + "GoldenOil" + }, + ["stats"]= { + "+6% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 24% increased Damage with Hits and Ailments", + "20% chance to gain a Frenzy Charge when you Block Attack Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "56509", + "31291" + }, + ["in"]= {} + }, + [31291]= { + ["skill"]= 31291, + ["name"]= "Sword Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupSword.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasterySwordActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 47595, + ["stats"]= { + "+0.3 metres to Melee Strike Range with Swords" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + { + ["effect"]= 47299, + ["stats"]= { + "20% chance to Impale Enemies on Hit with Attacks" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + { + ["effect"]= 8018, + ["stats"]= { + "8% chance to gain a Frenzy Charge when you Hit a Unique Enemy" + } + }, + { + ["effect"]= 23247, + ["stats"]= { + "Off Hand Accuracy is equal to Main Hand Accuracy while wielding a Sword" + } + }, + { + ["effect"]= 50922, + ["stats"]= { + "120% increased Critical Strike Chance with Swords", + "-20% to Critical Strike Multiplier with Swords" + } + }, + { + ["effect"]= 54067, + ["stats"]= { + "50% reduced Enemy Chance to Block Sword Attacks" + } + } + }, + ["stats"]= {}, + ["group"]= 779, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59151", + "1568" + } + }, + [12720]= { + ["skill"]= 12720, + ["name"]= "Sword Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "56509" + }, + ["in"]= { + "52213" + } + }, + [29856]= { + ["skill"]= 29856, + ["name"]= "Sword Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracysword.png", + ["stats"]= { + "20% increased Critical Strike Chance with Swords", + "+10% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "54354" + }, + ["in"]= { + "1698" + } + }, + [1698]= { + ["skill"]= 1698, + ["name"]= "Sword Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracysword.png", + ["stats"]= { + "20% increased Critical Strike Chance with Swords", + "+10% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "29856" + }, + ["in"]= { + "6108" + } + }, + [1568]= { + ["skill"]= 1568, + ["name"]= "Fatal Blade", + ["icon"]= "Art/2DArt/SkillIcons/passives/FatalBlade.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "OpalescentOil", + "OpalescentOil" + }, + ["stats"]= { + "50% increased Critical Strike Chance with Swords", + "+25% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "6108", + "31291" + }, + ["in"]= {} + }, + [54354]= { + ["skill"]= 54354, + ["name"]= "Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedsworddex.png", + ["stats"]= { + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "12412", + "29856", + "52213" + } + }, + [6108]= { + ["skill"]= 6108, + ["name"]= "Sword Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/accuracysword.png", + ["stats"]= { + "20% increased Critical Strike Chance with Swords", + "+10% to Critical Strike Multiplier with Swords" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "1698" + }, + ["in"]= { + "1568" + } + }, + [56509]= { + ["skill"]= 56509, + ["name"]= "Sword Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59151", + "12720" + } + }, + [52213]= { + ["skill"]= 52213, + ["name"]= "Sword Damage and Block", + ["icon"]= "Art/2DArt/SkillIcons/passives/dualwieldblock.png", + ["stats"]= { + "+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + }, + ["group"]= 779, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "54354", + "12720" + }, + ["in"]= {} + }, + [57006]= { + ["skill"]= 57006, + ["name"]= "Vengeant Cascade", + ["icon"]= "Art/2DArt/SkillIcons/passives/Boomerang.png", + ["isNotable"]= true, + ["isBlighted"]= true, + ["recipe"]= { + "PrismaticOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Returning Projectiles have 150% increased Speed" + }, + ["group"]= 780, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {} + }, + [45329]= { + ["skill"]= 45329, + ["name"]= "Trick Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChainingProjectiles.png", + ["isNotable"]= true, + ["recipe"]= { + "AmberOil", + "VioletOil", + "GoldenOil" + }, + ["stats"]= { + "30% increased Chaining range" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "38947", + "5826" + }, + ["in"]= {} + }, + [7069]= { + ["skill"]= 7069, + ["name"]= "Split Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/ForkingProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "ClearOil", + "IndigoOil", + "OpalescentOil" + }, + ["stats"]= { + "Projectiles have 50% chance for an additional Projectile when Forking" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "5826" + }, + ["in"]= { + "51953", + "7609" + } + }, + [5826]= { + ["skill"]= 5826, + ["name"]= "Projectile Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryProjectiles.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryProjectileActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern.png", + ["masteryEffects"]= { + { + ["effect"]= 16644, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each Enemy Pierced" + } + }, + { + ["effect"]= 2198, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for each time they have Chained" + } + }, + { + ["effect"]= 52404, + ["stats"]= { + "1% increased Projectile Damage per 16 Dexterity" + } + }, + { + ["effect"]= 14813, + ["stats"]= { + "Knock Back Enemies if you get a Critical Strike with Projectile Damage" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + { + ["effect"]= 1167, + ["stats"]= { + "15% more Projectile Speed" + } + }, + { + ["effect"]= 44240, + ["stats"]= { + "15% less Projectile Speed" + } + } + }, + ["stats"]= {}, + ["group"]= 781, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "45329", + "7069", + "21228" + } + }, + [10843]= { + ["skill"]= 10843, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/projectilespeed.png", + ["stats"]= { + "12% increased Projectile Damage" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "33374" + }, + ["in"]= { + "36287", + "31222", + "38947" + } + }, + [33374]= { + ["skill"]= 33374, + ["name"]= "Chance for Extra Fork Projectile", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "Projectiles have 25% chance for an additional Projectile when Forking" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "51953", + "7609" + }, + ["in"]= { + "10843" + } + }, + [31222]= { + ["skill"]= 31222, + ["name"]= "Pierce", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "Projectiles Pierce an additional Target" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "10843" + }, + ["in"]= { + "21228" + } + }, + [38947]= { + ["skill"]= 38947, + ["name"]= "Chain Distance", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "15% increased Chaining range" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "10843" + }, + ["in"]= { + "45329" + } + }, + [21228]= { + ["skill"]= 21228, + ["name"]= "Piercing Shots", + ["icon"]= "Art/2DArt/SkillIcons/passives/UpwardsFiringProjectilesNotable.png", + ["isNotable"]= true, + ["recipe"]= { + "BlackOil", + "OpalescentOil", + "SilverOil" + }, + ["stats"]= { + "Projectiles Pierce 2 additional Targets" + }, + ["group"]= 781, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "31222", + "5826" + }, + ["in"]= {} + }, + [51953]= { + ["skill"]= 51953, + ["name"]= "Forking Angle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "50% increased Projectile Fork angle" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= { + "7069" + }, + ["in"]= { + "33374" + } + }, + [7609]= { + ["skill"]= 7609, + ["name"]= "Forking Angle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.png", + ["stats"]= { + "50% reduced Projectile Fork angle" + }, + ["group"]= 781, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "7069" + }, + ["in"]= { + "33374" + } + }, + [39665]= { + ["skill"]= 39665, + ["name"]= "Bow Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "5% increased Attack Speed with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "2185" + }, + ["in"]= { + "23912" + } + }, + [38149]= { + ["skill"]= 38149, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "55750", + "2185", + "20807" + }, + ["in"]= {} + }, + [32514]= { + ["skill"]= 32514, + ["name"]= "Bow Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "18% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "12948", + "49459" + }, + ["in"]= {} + }, + [55750]= { + ["skill"]= 55750, + ["name"]= "Bow Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "18% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "38149", + "12948" + } + }, + [2185]= { + ["skill"]= 2185, + ["name"]= "Bow Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "5% increased Attack Speed with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "39665", + "38149" + } + }, + [23912]= { + ["skill"]= 23912, + ["name"]= "Bow Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/attackspeedbow.png", + ["stats"]= { + "5% increased Attack Speed with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 8, + ["out"]= { + "39665" + }, + ["in"]= { + "51881" + } + }, + [12948]= { + ["skill"]= 12948, + ["name"]= "Bow Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/criticalbow.png", + ["stats"]= { + "18% increased Critical Strike Chance with Bows", + "+12% to Critical Strike Multiplier with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "55750" + }, + ["in"]= { + "32514" + } + }, + [51881]= { + ["skill"]= 51881, + ["name"]= "Master Fletcher", + ["icon"]= "Art/2DArt/SkillIcons/passives/masterfletcher.png", + ["isNotable"]= true, + ["recipe"]= { + "SepiaOil", + "CrimsonOil", + "SilverOil" + }, + ["stats"]= { + "Bow Attacks fire an additional Arrow" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "23912", + "6427" + }, + ["in"]= {} + }, + [49459]= { + ["skill"]= 49459, + ["name"]= "King of the Hill", + ["icon"]= "Art/2DArt/SkillIcons/passives/kingofthehill.png", + ["isNotable"]= true, + ["recipe"]= { + "VerdantOil", + "VioletOil", + "SilverOil" + }, + ["stats"]= { + "100% increased Critical Strike Chance with Bows" + }, + ["group"]= 782, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "6427" + }, + ["in"]= { + "32514" + } + }, + [6427]= { + ["skill"]= 6427, + ["name"]= "Bow Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryGroupBow.png", + ["isMastery"]= true, + ["inactiveIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowInactive.png", + ["activeIcon"]= "Art/2DArt/SkillIcons/passives/MasteryPassiveIcons/PassiveMasteryBowActive.png", + ["activeEffectImage"]= "Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern.png", + ["masteryEffects"]= { + { + ["effect"]= 59634, + ["stats"]= { + "Blink Arrow and Mirror Arrow have 100% increased Cooldown Recovery Rate" + } + }, + { + ["effect"]= 45512, + ["stats"]= { + "20% increased Area of Effect while wielding a Bow" + } + }, + { + ["effect"]= 42952, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance" + } + }, + { + ["effect"]= 26894, + ["stats"]= { + "100% increased Mirage Archer Duration" + } + }, + { + ["effect"]= 36967, + ["stats"]= { + "20% increased bonuses gained from Equipped Quiver" + } + }, + { + ["effect"]= 56951, + ["stats"]= { + "Increases and Reductions to Projectile Speed also apply to Damage with Bows" + } + } + }, + ["stats"]= {}, + ["group"]= 782, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51881", + "49459" + } + }, + [6910]= { + ["skill"]= 6910, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 0, + ["proxy"]= "35926", + ["parent"]= "32763" + }, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "35926", + "48132" + }, + ["in"]= { + "49684" + } + }, + [49684]= { + ["skill"]= 49684, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 1, + ["proxy"]= "33833", + ["parent"]= "32763" + }, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "6910" + }, + ["in"]= { + "33753", + "33833" + } + }, + [33753]= { + ["skill"]= 33753, + ["name"]= "Medium Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 1, + ["index"]= 2, + ["proxy"]= "50179", + ["parent"]= "32763" + }, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "49684" + }, + ["in"]= { + "48132", + "50179" + } + }, + [48132]= { + ["skill"]= 48132, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 783, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "32763", + "33753" + }, + ["in"]= { + "6910" + } + }, + [35926]= { + ["skill"]= 35926, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 784, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "6910", + "18436" + } + }, + [18436]= { + ["skill"]= 18436, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "36414", + ["parent"]= "6910" + }, + ["stats"]= {}, + ["group"]= 784, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "35926" + }, + ["in"]= { + "36414" + } + }, + [50179]= { + ["skill"]= 50179, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 785, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= { + "33753" + }, + ["in"]= { + "22748" + } + }, + [22748]= { + ["skill"]= 22748, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "56439", + ["parent"]= "33753" + }, + ["stats"]= {}, + ["group"]= 785, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "50179" + }, + ["in"]= { + "56439" + } + }, + [36414]= { + ["skill"]= 36414, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 786, + ["orbit"]= 1, + ["orbitIndex"]= 3, + ["out"]= { + "18436" + }, + ["in"]= {} + }, + [56439]= { + ["skill"]= 56439, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 787, + ["orbit"]= 1, + ["orbitIndex"]= 5, + ["out"]= { + "22748" + }, + ["in"]= {} + }, + [33833]= { + ["skill"]= 33833, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 788, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "49684" + }, + ["in"]= { + "11150" + } + }, + [11150]= { + ["skill"]= 11150, + ["name"]= "Small Jewel Socket", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isJewelSocket"]= true, + ["expansionJewel"]= { + ["size"]= 0, + ["index"]= 0, + ["proxy"]= "10643", + ["parent"]= "49684" + }, + ["stats"]= {}, + ["group"]= 788, + ["orbit"]= 2, + ["orbitIndex"]= 4, + ["out"]= { + "33833" + }, + ["in"]= { + "10643" + } + }, + [10643]= { + ["skill"]= 10643, + ["name"]= "Position Proxy", + ["icon"]= "Art/2DArt/SkillIcons/passives/MasteryBlank.png", + ["isProxy"]= true, + ["stats"]= {}, + ["group"]= 789, + ["orbit"]= 1, + ["orbitIndex"]= 4, + ["out"]= { + "11150" + }, + ["in"]= {} + }, + [21264]= { + ["skill"]= 21264, + ["name"]= "Knife in the Back", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png", + ["ascendancyName"]= "Assassin", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "100% more Critical Strike Chance against Enemies that are not on Low Life", + "+100% to Critical Strike Multiplier against Enemies that are on Low Life", + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)", + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + }, + ["group"]= 790, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46676" + } + }, + [18335]= { + ["skill"]= 18335, + ["name"]= "For the Jugular", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Ambush.png", + ["ascendancyName"]= "Assassin", + ["isMultipleChoiceOption"]= true, + ["stats"]= { + "+100% to Critical Strike Multiplier against Enemies that are not on Low Life", + "100% more Critical Strike Chance against Enemies that are on Low Life", + "Critical Strikes have Culling Strike" + }, + ["reminderText"]= { + "(You are on Low Life if you have 50% of your Maximum Life or less)", + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + }, + ["group"]= 791, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "46676" + } + }, + [12850]= { + ["skill"]= 12850, + ["name"]= "Critical Strike Chance, Power Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "15% increased Power Charge Duration", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "4242" + }, + ["in"]= { + "58229" + } + }, + [19598]= { + ["skill"]= 19598, + ["name"]= "Toxic Delivery", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/ToxicDelivery.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Poison you inflict with Critical Strikes deals 20% more Damage", + "5% increased Poison Duration for each Poison you have inflicted Recently, up\nto a maximum of 100%", + "Recover 0.5% of Life per Poison affecting Enemies you Kill" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "23024", + "47531" + }, + ["in"]= {} + }, + [33954]= { + ["skill"]= 33954, + ["name"]= "Critical Strike Chance, Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "10% increased Spell Damage", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 25, + ["out"]= { + "1945" + }, + ["in"]= { + "4242" + } + }, + [1945]= { + ["skill"]= 1945, + ["name"]= "Mystical Infusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/DeadlyInfusion.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Spell Critical Strike Chance {BifurcatedCrit|Bifurcates}", + "30% less Spell Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= {}, + ["in"]= { + "33954" + } + }, + [43215]= { + ["skill"]= 43215, + ["name"]= "Critical Strike Chance, Elusive Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "10% increased Elusive Effect", + "15% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "28782" + }, + ["in"]= { + "58229" + } + }, + [28782]= { + ["skill"]= 28782, + ["name"]= "Mistwalker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Elusive.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Gain Elusive on Critical Strike", + "You take no Extra Damage from Critical Strikes while Elusive" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "43215" + } + }, + [51402]= { + ["skill"]= 51402, + ["name"]= "Critical Strike Chance, Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "4% increased maximum Life", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "29844" + }, + ["in"]= { + "58229" + } + }, + [29844]= { + ["skill"]= 29844, + ["name"]= "Shadowed Blood", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeGainOnHitNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "40% of Physical Damage taken Recouped as Life", + "Unaffected by Damaging Ailments" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "51402" + } + }, + [46676]= { + ["skill"]= 46676, + ["name"]= "Assassination Style", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DamageOverTime.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["isMultipleChoice"]= true, + ["stats"]= {}, + ["reminderText"]= { + "(Choose one of the two attached options)" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "21264", + "18335" + }, + ["in"]= { + "9014", + "6064" + } + }, + [21192]= { + ["skill"]= 21192, + ["name"]= "Infused Toxins", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "All Damage from Hits can Poison" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "47531" + } + }, + [4242]= { + ["skill"]= 4242, + ["name"]= "Unstable Infusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/UnstableInfusion.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "10% chance to gain a Power Charge on Critical Strike", + "20% chance to gain a Power Charge on Non-Critical Strike" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "55686", + "33954" + }, + ["in"]= { + "12850" + } + }, + [47531]= { + ["skill"]= 47531, + ["name"]= "Critical Strike Chance, Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "15% chance to Poison on Hit", + "15% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 39, + ["out"]= { + "21192" + }, + ["in"]= { + "19598" + } + }, + [55686]= { + ["skill"]= 55686, + ["name"]= "Critical Strike Chance, Mark Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "10% increased Effect of your Marks", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 22, + ["out"]= { + "48239" + }, + ["in"]= { + "4242" + } + }, + [48239]= { + ["skill"]= 48239, + ["name"]= "Deathmarked", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/NoxiousStrike.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "Trigger Level 30 Assassin's Mark on Attack Critical Strike against\na Rare or Unique Enemy and you have no Mark", + "Mark Skills Cost no Mana", + "10% increased Effect of your Marks per maximum Power Charge", + "3% of Leech is Instant per maximum Power Charge" + }, + ["reminderText"]= { + "(Curses a single enemy, making them more vulnerable to Critical Strikes. Killing the cursed enemy will grant life and mana, and a power charge. You can only have one Mark at a time)" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 19, + ["out"]= {}, + ["in"]= { + "55686" + } + }, + [9014]= { + ["skill"]= 9014, + ["name"]= "Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "+10% to Critical Strike Multiplier", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "46676" + }, + ["in"]= { + "19083" + } + }, + [6064]= { + ["skill"]= 6064, + ["name"]= "Critical Strike Chance and Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "+10% to Critical Strike Multiplier", + "15% increased Critical Strike Chance" + }, + ["group"]= 792, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "46676" + }, + ["in"]= { + "58229" + } + }, + [19083]= { + ["skill"]= 19083, + ["name"]= "Opportunistic", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/Assassinate.png", + ["isNotable"]= true, + ["ascendancyName"]= "Assassin", + ["stats"]= { + "20% more Damage while there is at most one Rare or Unique Enemy nearby", + "20% less Damage taken while there are at least two Rare or Unique Enemies nearby" + }, + ["group"]= 792, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "9014" + }, + ["in"]= {} + }, + [23024]= { + ["skill"]= 23024, + ["name"]= "Critical Strike Chance, Poison Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/Assassin/SmallNode.png", + ["ascendancyName"]= "Assassin", + ["stats"]= { + "15% chance to Poison on Hit", + "15% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + }, + ["group"]= 792, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "19598", + "58229" + } + }, + [58229]= { + ["skill"]= 58229, + ["name"]= "Assassin", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Assassin", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 792, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "12850", + "6064", + "43215", + "23024", + "51402" + }, + ["in"]= { + "44683" + } + }, + [36242]= { + ["skill"]= 36242, + ["name"]= "Flask Effect and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "8% increased Flask Effect Duration", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "51101" + }, + ["in"]= { + "63293" + } + }, + [6038]= { + ["skill"]= 6038, + ["name"]= "Master Distiller", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/VeteranBowyer.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Grant bonuses to Non-Channelling Skills you use by consuming 3 Charges from a Flask of\neach of the following types, if possible:", + "If Diamond Flask Charges are consumed, 150% increased Critical Strike Chance", + "If Bismuth Flask Charges are consumed, Penetrate 20% Elemental Resistances", + "If Amethyst Flask Charges are consumed, 23% of Physical Damage as Extra Chaos Damage" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "59800" + } + }, + [32662]= { + ["skill"]= 32662, + ["name"]= "Flask Effect, Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "15% increased Chaos Damage", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "40813" + }, + ["in"]= { + "64111" + } + }, + [40813]= { + ["skill"]= 40813, + ["name"]= "Nature's Reprisal", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/MasterHerbalist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "35% increased Effect of Withered" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= {}, + ["in"]= { + "32662" + } + }, + [20480]= { + ["skill"]= 20480, + ["name"]= "Flask Effect, Poison Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectDamageOverTime.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Flasks applied to you have 5% increased Effect", + "10% increased Poison Duration" + }, + ["group"]= 793, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "1697", + "64111" + } + }, + [1697]= { + ["skill"]= 1697, + ["name"]= "Master Toxicist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/Master Toxicist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "20480" + }, + ["in"]= {} + }, + [51101]= { + ["skill"]= 51101, + ["name"]= "Nature's Adrenaline", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/NaturesAdrenaline.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Flasks gain a Charge every 3 seconds" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "14156" + }, + ["in"]= { + "36242" + } + }, + [14156]= { + ["skill"]= 14156, + ["name"]= "Flask Effect and Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectFlaskDuration.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "8% increased Flask Effect Duration", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "51101", + "64111" + } + }, + [63293]= { + ["skill"]= 63293, + ["name"]= "Master Surgeon", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/MasterSurgeon.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Life Flask Effects are not removed when Unreserved Life is Filled\nLife Flask Effects do not Queue", + "50% less Life Recovery from Flasks" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 29, + ["out"]= { + "36242" + }, + ["in"]= {} + }, + [32640]= { + ["skill"]= 32640, + ["name"]= "Flask Effect and Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "10% increased Flask Charges gained", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "65296", + "64111" + } + }, + [65296]= { + ["skill"]= 65296, + ["name"]= "Nature's Boon", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/AlchemistGift.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Magic Utility Flasks applied to you have 20% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "32640" + }, + ["in"]= { + "40631" + } + }, + [40631]= { + ["skill"]= 40631, + ["name"]= "Flask Effect and Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "10% increased Flask Charges gained", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 39, + ["out"]= { + "65296", + "61805" + }, + ["in"]= {} + }, + [61805]= { + ["skill"]= 61805, + ["name"]= "Master Alchemist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/MasterAlchemist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "Utility Flasks can gain Charges During their Flask Effect" + }, + ["group"]= 793, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= {}, + ["in"]= { + "40631" + } + }, + [59800]= { + ["skill"]= 59800, + ["name"]= "Flask Effect and Charges Gained", + ["icon"]= "Art/2DArt/SkillIcons/passives/PathFinder/FlaskEffectElementalResistance.png", + ["ascendancyName"]= "Pathfinder", + ["stats"]= { + "10% increased Flask Charges gained", + "Flasks applied to you have 5% increased Effect" + }, + ["group"]= 793, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "6038" + }, + ["in"]= { + "64111" + } + }, + [64111]= { + ["skill"]= 64111, + ["name"]= "Pathfinder", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Pathfinder", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 793, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "32662", + "59800", + "32640", + "14156", + "20480" + }, + ["in"]= { + "50459" + } + }, + [48999]= { + ["skill"]= 48999, + ["name"]= "Soul Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/SoulThiefTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "Energy Shield Leech effects are not removed when Energy Shield is Filled" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 20, + ["out"]= {}, + ["in"]= { + "2336" + } + }, + [37191]= { + ["skill"]= 37191, + ["name"]= "Evasion and Energy Shield, Frenzy Charge Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "15% increased Frenzy Charge Duration" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= {}, + ["in"]= { + "32947", + "55236" + } + }, + [41891]= { + ["skill"]= 41891, + ["name"]= "Spellbreaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/SupressionEnergyShieldTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "Prevent +15% of Suppressed Spell Damage while on Full Energy Shield", + "50% chance for Energy Shield Recharge to start when you Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= {}, + ["in"]= { + "58454" + } + }, + [2336]= { + ["skill"]= 2336, + ["name"]= "Evasion and Energy Shield, Energy Shield Leech", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "40% increased total Recovery per second from Energy Shield Leech" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 18, + ["out"]= { + "48999" + }, + ["in"]= { + "29825" + } + }, + [23225]= { + ["skill"]= 23225, + ["name"]= "One Step Ahead", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OneStepAheadTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "Your Action Speed is at least 90% of base value", + "Nearby Enemy Monsters' Action Speed is at most 90% of base value" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 23, + ["out"]= {}, + ["in"]= { + "35598" + } + }, + [13219]= { + ["skill"]= 13219, + ["name"]= "Evasion and Energy Shield, Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "10% increased Damage", + "14% increased Evasion Rating", + "5% increased maximum Energy Shield" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "55867" + }, + ["in"]= { + "55236" + } + }, + [58454]= { + ["skill"]= 58454, + ["name"]= "Evasion and Energy Shield, Energy Shield Recharge", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "10% increased Energy Shield Recharge Rate" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 16, + ["out"]= { + "41891" + }, + ["in"]= { + "29825" + } + }, + [32947]= { + ["skill"]= 32947, + ["name"]= "Swift Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/UncontrolledVigour.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "200% increased Charge Duration", + "+2 to Maximum Frenzy Charges" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= { + "37191" + }, + ["in"]= {} + }, + [55867]= { + ["skill"]= 55867, + ["name"]= "Polymath", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/PolymathTrickster.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "1% more Damage for each different type of Mastery you have Allocated", + "Recover 1% of Life on Kill for each different type of Mastery you have Allocated", + "Recover 1% of Energy Shield on Kill for each different type of Mastery you have Allocated", + "Recover 1% of Mana on Kill for each different type of Mastery you have Allocated" + }, + ["group"]= 794, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "13219" + } + }, + [63908]= { + ["skill"]= 63908, + ["name"]= "Evasion and Energy Shield, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "4% increased Movement Speed" + }, + ["group"]= 794, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "28884" + }, + ["in"]= { + "55236" + } + }, + [28884]= { + ["skill"]= 28884, + ["name"]= "Heartstopper", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/ImmuneToDoT.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "Every 10 seconds:\nTake 50% less Damage from Hits for 5 seconds\nTake 50% less Damage over Time for 5 seconds" + }, + ["reminderText"]= { + "(These are consecutive)" + }, + ["group"]= 794, + ["orbit"]= 2, + ["orbitIndex"]= 15, + ["out"]= {}, + ["in"]= { + "63908" + } + }, + [19587]= { + ["skill"]= 19587, + ["name"]= "Evasion and Energy Shield, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/DefensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "4% increased Movement Speed" + }, + ["group"]= 794, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "29825" + }, + ["in"]= { + "55236" + } + }, + [29825]= { + ["skill"]= 29825, + ["name"]= "Escape Artist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/HeedfulRecovery.png", + ["isNotable"]= true, + ["ascendancyName"]= "Trickster", + ["stats"]= { + "+4 to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", + "+1 to maximum Energy Shield per 8 Evasion Rating on Equipped Body Armour" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 7, + ["out"]= { + "58454", + "2336" + }, + ["in"]= { + "19587" + } + }, + [35598]= { + ["skill"]= 35598, + ["name"]= "Evasion and Energy Shield, Attack and Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Trickster/OffensiveNodeTrickster.png", + ["ascendancyName"]= "Trickster", + ["stats"]= { + "14% increased Evasion Rating", + "5% increased maximum Energy Shield", + "4% increased Attack and Cast Speed" + }, + ["group"]= 794, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= { + "23225" + }, + ["in"]= { + "55236" + } + }, + [55236]= { + ["skill"]= 55236, + ["name"]= "Trickster", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Trickster", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 794, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "35598", + "63908", + "37191", + "13219", + "19587" + }, + ["in"]= { + "44683" + } + }, + [64842]= { + ["skill"]= 64842, + ["name"]= "Area of Effect, Blind Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "15% increased Blind Effect" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "5087" + }, + ["in"]= { + "18635" + } + }, + [28535]= { + ["skill"]= 28535, + ["name"]= "Perfect Crime", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/PerfectCrime.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Triggers Level 20 Summon Triggerbots when Allocated", + "40% less Damage with Triggered Spells" + }, + ["reminderText"]= { + "(Summon two Triggerbots which follow you around and run towards enemies. Your Triggered Spells Trigger twice, once from each Triggerbot's location)" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= { + "869" + } + }, + [25167]= { + ["skill"]= 25167, + ["name"]= "Area of Effect, Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Mine Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "39834" + }, + ["in"]= { + "18635" + } + }, + [39834]= { + ["skill"]= 39834, + ["name"]= "Demolitions Specialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/DemolitionSpecialist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "150% increased Effect of Auras from Mines" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= {}, + ["in"]= { + "25167", + "47366" + } + }, + [869]= { + ["skill"]= 869, + ["name"]= "Area of Effect, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "4% increased Movement Speed", + "8% increased Area of Effect" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "28535" + }, + ["in"]= { + "18635" + } + }, + [38918]= { + ["skill"]= 38918, + ["name"]= "Chain Reaction", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ChainReaction.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "When your Traps Trigger, your nearby Traps also Trigger" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= {}, + ["in"]= { + "16212", + "26446" + } + }, + [16212]= { + ["skill"]= 16212, + ["name"]= "Area of Effect, Trap Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Trap Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "38918" + }, + ["in"]= { + "18635" + } + }, + [47778]= { + ["skill"]= 47778, + ["name"]= "Bomb Specialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/BombSpecialist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Hits have 30% chance to deal 50% more Area Damage", + "30% chance to take 50% less Area Damage from Hits" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "63135" + }, + ["in"]= { + "62067" + } + }, + [62067]= { + ["skill"]= 62067, + ["name"]= "Area of Effect, Area Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "10% increased Area Damage" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 3, + ["out"]= { + "47778" + }, + ["in"]= { + "18635" + } + }, + [57175]= { + ["skill"]= 57175, + ["name"]= "Shrapnel Specialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ShrapnelSpecialist.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Projectiles have 30% chance to Return to you", + "Projectiles are fired in random directions" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 5, + ["out"]= { + "65085" + }, + ["in"]= { + "64785" + } + }, + [64785]= { + ["skill"]= 64785, + ["name"]= "Projectile Speed, Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 4, + ["out"]= { + "57175" + }, + ["in"]= { + "18635" + } + }, + [16940]= { + ["skill"]= 16940, + ["name"]= "Pyromaniac", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/BlindedAssult.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second", + "Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "26446", + "47366" + }, + ["in"]= { + "1953" + } + }, + [65085]= { + ["skill"]= 65085, + ["name"]= "Projectile Speed, Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 12, + ["out"]= { + "14103" + }, + ["in"]= { + "57175" + } + }, + [1953]= { + ["skill"]= 1953, + ["name"]= "Area of Effect, Trap and Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Trap Throwing Speed", + "5% increased Mine Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "16940" + }, + ["in"]= { + "5087" + } + }, + [41081]= { + ["skill"]= 41081, + ["name"]= "Area of Effect, Movement Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMovementSpeed.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "4% increased Movement Speed", + "8% increased Area of Effect" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 5, + ["out"]= { + "51462" + }, + ["in"]= { + "18635" + } + }, + [5087]= { + ["skill"]= 5087, + ["name"]= "Born in the Shadows", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ShadowsDarknessBlind.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Cannot be Blinded", + "10% reduced Damage taken from Blinded Enemies", + "Nearby Enemies are Blinded" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating)" + }, + ["group"]= 795, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "1953" + }, + ["in"]= { + "64842" + } + }, + [63135]= { + ["skill"]= 63135, + ["name"]= "Area of Effect, Area Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageElementalResistance.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "10% increased Area Damage" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 8, + ["out"]= { + "14103" + }, + ["in"]= { + "47778" + } + }, + [14103]= { + ["skill"]= 14103, + ["name"]= "Calculated Risk", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ExplosivesExpert.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "Your Critical Strike Chance is Lucky", + "Damage of Enemies Hitting you is Unlucky", + "Damage with Hits is Unlucky" + }, + ["reminderText"]= { + "(Lucky things are rolled twice and the best result used)", + "(Unlucky things are rolled twice and the worst result used)" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "65085", + "63135" + } + }, + [47366]= { + ["skill"]= 47366, + ["name"]= "Area of Effect, Mine Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Mine Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 31, + ["out"]= { + "39834" + }, + ["in"]= { + "16940" + } + }, + [51462]= { + ["skill"]= 51462, + ["name"]= "Like Clockwork", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/LikeClockworkNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "50% increased Cooldown Recovery Rate", + "Nearby Enemies have 10% reduced Cooldown Recovery Rate" + }, + ["group"]= 795, + ["orbit"]= 2, + ["orbitIndex"]= 8, + ["out"]= {}, + ["in"]= { + "41081" + } + }, + [26446]= { + ["skill"]= 26446, + ["name"]= "Area of Effect, Trap Throwing Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/Saboteur/ElementalDamageMines.png", + ["ascendancyName"]= "Saboteur", + ["stats"]= { + "8% increased Area of Effect", + "5% increased Trap Throwing Speed" + }, + ["group"]= 795, + ["orbit"]= 4, + ["orbitIndex"]= 36, + ["out"]= { + "38918" + }, + ["in"]= { + "16940" + } + }, + [18635]= { + ["skill"]= 18635, + ["name"]= "Saboteur", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Saboteur", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 795, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "41081", + "64842", + "62067", + "16212", + "25167", + "869", + "64785" + }, + ["in"]= { + "44683" + } + }, + [53421]= { + ["skill"]= 53421, + ["name"]= "Evasion, Chance to Freeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% chance to Freeze" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "16848" + }, + ["in"]= { + "58427" + } + }, + [33645]= { + ["skill"]= 33645, + ["name"]= "Oath of Summer", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenFireAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Hits that would Ignite instead Scorch", + "You can inflict an additional Scorch on each Enemy" + }, + ["reminderText"]= { + "(Scorched Enemies have their Elemental Resistances lowered by up to 30%, based on the Fire Damage of the Hit, for 4 seconds)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 37, + ["out"]= { + "15550" + }, + ["in"]= { + "24432" + } + }, + [15550]= { + ["skill"]= 15550, + ["name"]= "Evasion, Elemental Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 33, + ["out"]= { + "55509" + }, + ["in"]= { + "33645" + } + }, + [55509]= { + ["skill"]= 55509, + ["name"]= "Avatar of the Wilds", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenAllAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Grants Level 20 Unbound Avatar Skill", + "Gain 1 Unbound Fury when you inflict an Elemental Ailment with a Hit on an Enemy, no more than once every 0.2 seconds for each type of Ailment\nCannot gain Unbound Fury while Unbound", + "Your Hits always inflict Freeze, Shock and Ignite while Unbound", + "50% more Elemental Damage while Unbound" + }, + ["reminderText"]= { + "(Unbound Avatar requires 100 Unbound Fury to use and causes you to become Unbound for 10 seconds, which has no effects beyond those listed here)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= {}, + ["in"]= { + "15550", + "61761", + "63940" + } + }, + [2060]= { + ["skill"]= 2060, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "40104" + }, + ["in"]= { + "58427" + } + }, + [58650]= { + ["skill"]= 58650, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 2, + ["out"]= { + "29662" + }, + ["in"]= { + "40104" + } + }, + [61761]= { + ["skill"]= 61761, + ["name"]= "Evasion, Elemental Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "55509" + }, + ["in"]= { + "16848" + } + }, + [63940]= { + ["skill"]= 63940, + ["name"]= "Evasion, Elemental Ailment Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% increased Duration of Elemental Ailments on Enemies" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 28, + ["out"]= { + "55509" + }, + ["in"]= { + "31364" + } + }, + [29662]= { + ["skill"]= 29662, + ["name"]= "Experienced Herbalist", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "You can have an additional Tincture active" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 5, + ["out"]= {}, + ["in"]= { + "58650", + "19488" + } + }, + [40104]= { + ["skill"]= 40104, + ["name"]= "Enduring Suffusion", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenSaps3.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Tincture Effects Linger on you for 0.5 seconds per Mana Burn on you when the Tincture was deactivated, up to a maximum of 6 seconds", + "Tinctures applied to you have 30% less Mana Burn rate" + }, + ["reminderText"]= { + "(Tinctures periodically inflict Mana Burn on you while active)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 0, + ["out"]= { + "58650" + }, + ["in"]= { + "2060" + } + }, + [36958]= { + ["skill"]= 36958, + ["name"]= "Seasoned Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TinctureRangedNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Tincture Effects also apply to Ranged Weapons" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= {}, + ["in"]= { + "24214", + "19488" + } + }, + [31364]= { + ["skill"]= 31364, + ["name"]= "Oath of Spring", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenLightningAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Maximum Effect of Shock is 2% increased Damage taken", + "You can apply up to 50 Shocks to each Enemy" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "63940" + }, + ["in"]= { + "5926" + } + }, + [24214]= { + ["skill"]= 24214, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 1, + ["out"]= { + "36958" + }, + ["in"]= { + "58427" + } + }, + [19488]= { + ["skill"]= 19488, + ["name"]= "Evasion, Tincture Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/TincturesNode.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "Tinctures applied to you have 10% increased Effect" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 3, + ["out"]= { + "36958", + "29662" + }, + ["in"]= {} + }, + [5926]= { + ["skill"]= 5926, + ["name"]= "Evasion, Chance to Shock", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% chance to Shock" + }, + ["reminderText"]= { + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "31364" + }, + ["in"]= { + "58427" + } + }, + [16848]= { + ["skill"]= 16848, + ["name"]= "Oath of Winter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenColdAilments.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Enemies you Freeze remain Frozen for at least 2 seconds", + "Hits that fail to Freeze due to insufficient Freeze Duration inflict Hoarfrost" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Freezes that would have a duration of 0.3 seconds or below are not inflicted)", + "(Hoarfrost lasts 10 seconds and can be inflicted multiple times, each refreshing the duration of existing Hoarfrost on the target. Each Hoarfost increases Freeze Duration on the target by 20%. All Hoarfrost is removed if the target is Frozen)" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "61761" + }, + ["in"]= { + "53421" + } + }, + [27536]= { + ["skill"]= 27536, + ["name"]= "Evasion, Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "15% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= { + "4849" + }, + ["in"]= { + "58427" + } + }, + [4849]= { + ["skill"]= 4849, + ["name"]= "Mother's Teachings", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin1.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "Grants Level 20 Barkskin Skill" + }, + ["reminderText"]= { + "(Adopt the power of the forest, gradually covering your body in bark. Getting hit by enemy attacks causes bark to be removed. You take reduced damage from physical attack hits the more bark builds up, but higher chance to evade when less covered in bark)" + }, + ["group"]= 796, + ["orbit"]= 3, + ["orbitIndex"]= 6, + ["out"]= { + "12146" + }, + ["in"]= { + "27536" + } + }, + [12146]= { + ["skill"]= 12146, + ["name"]= "Evasion, Spell Suppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/SpellSuppressionEvasion.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "+5% chance to Suppress Spell Damage", + "15% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 13, + ["out"]= { + "11597" + }, + ["in"]= { + "4849" + } + }, + [11597]= { + ["skill"]= 11597, + ["name"]= "Lesson of the Seasons", + ["icon"]= "Art/2DArt/SkillIcons/passives/Warden/WardenBarkskin2.png", + ["isNotable"]= true, + ["ascendancyName"]= "Raider", + ["stats"]= { + "-25 Damage taken of each Damage Type from Spell Hits per Bark", + "Prevent +3% of Suppressed Spell Damage per Bark below maximum", + "Lose 1 Bark when Hit by Enemy Spell Damage" + }, + ["reminderText"]= { + "(The Damage Types are Physical, Fire, Cold, Lightning, and Chaos)" + }, + ["group"]= 796, + ["orbit"]= 4, + ["orbitIndex"]= 10, + ["out"]= {}, + ["in"]= { + "12146" + } + }, + [24432]= { + ["skill"]= 24432, + ["name"]= "Evasion, Chance to Ignite", + ["icon"]= "Art/2DArt/SkillIcons/passives/Raider/IncreasedElementalDamage.png", + ["ascendancyName"]= "Raider", + ["stats"]= { + "15% increased Evasion Rating", + "10% chance to Ignite" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + }, + ["group"]= 796, + ["orbit"]= 2, + ["orbitIndex"]= 14, + ["out"]= { + "33645" + }, + ["in"]= { + "58427" + } + }, + [58427]= { + ["skill"]= 58427, + ["name"]= "Warden", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Raider", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 796, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5926", + "24432", + "2060", + "24214", + "27536", + "53421" + }, + ["in"]= { + "50459" + } + }, + [53086]= { + ["skill"]= 53086, + ["name"]= "Projectile Damage, Mark Cast Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "Mark Skills have 25% increased Cast Speed" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 11, + ["out"]= { + "5443" + }, + ["in"]= { + "56856" + } + }, + [44482]= { + ["skill"]= 44482, + ["name"]= "Avidity", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargeNotable.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Gain a Frenzy Charge every 3 seconds while Moving", + "+1 to Maximum Frenzy Charges" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 7, + ["out"]= {}, + ["in"]= { + "55985" + } + }, + [55985]= { + ["skill"]= 55985, + ["name"]= "Projectile Damage, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "10% increased Accuracy Rating" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 9, + ["out"]= { + "44482" + }, + ["in"]= { + "56856" + } + }, + [62136]= { + ["skill"]= 62136, + ["name"]= "Projectile Damage, Mirage Archer Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "15% increased Mirage Archer Duration" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 35, + ["out"]= { + "26067" + }, + ["in"]= { + "2872" + } + }, + [24848]= { + ["skill"]= 24848, + ["name"]= "Gathering Winds", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/GatherWinds.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Gain 1 Gale Force when you use a Skill\n5% increased Effect of Tailwind on you per Gale Force", + "You and nearby Allies have Tailwind" + }, + ["reminderText"]= { + "(Each instance of Gale Force lasts 4 seconds. Maximum 10 Gale Force)", + "(Tailwind increases Action Speed by 8%)" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 12, + ["out"]= { + "22852" + }, + ["in"]= { + "59837" + } + }, + [1729]= { + ["skill"]= 1729, + ["name"]= "Projectile Damage, Mirage Archer Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "15% increased Mirage Archer Duration" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 13, + ["out"]= { + "2872" + }, + ["in"]= { + "56856" + } + }, + [2872]= { + ["skill"]= 2872, + ["name"]= "Occupying Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/Mirage.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Mirage Archers are not attached to you", + "+1 to maximum number of Summoned Mirage Archers", + "Cannot Summon Mirage Archers while near your Mirage Archers" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 32, + ["out"]= { + "62136" + }, + ["in"]= { + "1729" + } + }, + [56134]= { + ["skill"]= 56134, + ["name"]= "Projectile Damage, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "10% increased Accuracy Rating" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 15, + ["out"]= { + "26067" + }, + ["in"]= { + "61627" + } + }, + [64028]= { + ["skill"]= 64028, + ["name"]= "Projectile Damage, Projectile Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 1, + ["out"]= { + "26067" + }, + ["in"]= { + "45313" + } + }, + [22852]= { + ["skill"]= 22852, + ["name"]= "Projectile Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 30, + ["out"]= { + "23169" + }, + ["in"]= { + "24848" + } + }, + [5443]= { + ["skill"]= 5443, + ["name"]= "Focal Point", + ["icon"]= "Art/2DArt/SkillIcons/passives/Mark.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% more Damage taken from other Enemies near your Marked Enemy", + "20% less Damage taken from Marked Enemy" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 9, + ["out"]= {}, + ["in"]= { + "53086" + } + }, + [23169]= { + ["skill"]= 23169, + ["name"]= "Wind Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProtectiveWinds.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "4% less Damage taken per Gale Force", + "Lose all Gale Force when Hit" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 27, + ["out"]= {}, + ["in"]= { + "22852" + } + }, + [59837]= { + ["skill"]= 59837, + ["name"]= "Projectile Damage, Attack Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAttackSpeed.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "5% increased Attack Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 12, + ["out"]= { + "24848" + }, + ["in"]= { + "56856" + } + }, + [61627]= { + ["skill"]= 61627, + ["name"]= "Ricochet", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/Ricochet.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Skills Chain +1 times", + "Projectiles have 30% chance to be able to Chain when colliding with terrain" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 0, + ["out"]= { + "56134" + }, + ["in"]= { + "5082" + } + }, + [5082]= { + ["skill"]= 5082, + ["name"]= "Projectile Damage, Accuracy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Damage", + "10% increased Accuracy Rating" + }, + ["group"]= 797, + ["orbit"]= 2, + ["orbitIndex"]= 0, + ["out"]= { + "61627" + }, + ["in"]= { + "56856" + } + }, + [26067]= { + ["skill"]= 26067, + ["name"]= "Endless Munitions", + ["icon"]= "Art/2DArt/SkillIcons/passives/Additionalprojectile.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Skills fire 2 additional Projectiles" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 38, + ["out"]= {}, + ["in"]= { + "62136", + "56134", + "64028" + } + }, + [28995]= { + ["skill"]= 28995, + ["name"]= "Projectile Damage, Projectile Speed", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/ProjectileDamageAccuracy.png", + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "10% increased Projectile Speed", + "10% increased Projectile Damage" + }, + ["group"]= 797, + ["orbit"]= 3, + ["orbitIndex"]= 1, + ["out"]= { + "45313" + }, + ["in"]= { + "56856" + } + }, + [45313]= { + ["skill"]= 45313, + ["name"]= "Far Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/DeadEye/FarShot.png", + ["isNotable"]= true, + ["ascendancyName"]= "Deadeye", + ["stats"]= { + "Projectiles gain Damage as they travel farther, dealing up\nto 30% more Damage with Hits and Ailments", + "Projectile Barrages have no spread" + }, + ["group"]= 797, + ["orbit"]= 4, + ["orbitIndex"]= 4, + ["out"]= { + "64028" + }, + ["in"]= { + "28995" + } + }, + [56856]= { + ["skill"]= 56856, + ["name"]= "Deadeye", + ["icon"]= "Art/2DArt/SkillIcons/passives/damage.png", + ["ascendancyName"]= "Deadeye", + ["isAscendancyStart"]= true, + ["stats"]= {}, + ["group"]= 797, + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= { + "5082", + "55985", + "28995", + "53086", + "59837", + "1729" + }, + ["in"]= { + "50459" + } + }, + [12953]= { + ["skill"]= 12953, + ["name"]= "Disciple of Kitava", + ["icon"]= "Art/2DArt/SkillIcons/passives/DiscipleOfKitava.png", + ["isKeystone"]= true, + ["stats"]= { + "Every second, Consume a nearby Corpse to Recover 5% of Life and Mana\n10% more Damage taken if you haven't Consumed a Corpse Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "All are invited to his feast, one way or another." + } + }, + [3354]= { + ["skill"]= 3354, + ["name"]= "Lone Messenger", + ["icon"]= "Art/2DArt/SkillIcons/passives/LoneMessenger.png", + ["isKeystone"]= true, + ["stats"]= { + "You can only have one Herald\n50% more Effect of Herald Buffs on you\n100% more Damage with Hits from Herald Skills\n50% more Damage Over Time with Herald Skills\nMinions from Herald Skills deal 25% more Damage\nYour Aura Skills are Disabled" + }, + ["flavourText"]= { + "Some tasks are too important to entrust to others." + } + }, + [30847]= { + ["skill"]= 30847, + ["name"]= "Nature's Patience", + ["icon"]= "Art/2DArt/SkillIcons/passives/NaturesPatience.png", + ["isKeystone"]= true, + ["stats"]= { + "Gain 2 Grasping Vines each second while stationary\n2% chance to deal Double Damage per Grasping Vine\n1% less Damage taken per Grasping Vine" + }, + ["reminderText"]= { + "(Up to 10 Vines can grasp you, inflicting 8% less Movement Speed per Vine. Broken by moving)" + }, + ["flavourText"]= { + "To win, all you must do is outlast." + } + }, + [57280]= { + ["skill"]= 57280, + ["name"]= "Secrets of Suffering", + ["icon"]= "Art/2DArt/SkillIcons/passives/SecretOfAgony.png", + ["isKeystone"]= true, + ["stats"]= { + "Cannot Ignite, Chill, Freeze or Shock\nCritical Strikes inflict Scorch, Brittle and Sapped" + }, + ["reminderText"]= { + "(Scorched Enemies have their Elemental Resistances lowered by up to 30%, based on the Fire Damage of the Hit, for 4 seconds)", + "(Hits have up to +6% Critical Strike Chance against Brittle Enemies, based on the Cold Damage of the Hit which inflicted Brittle, for 4 seconds)", + "(Sapped Enemies deal up to 20% less Damage, based on the Lightning Damage of the Hit, for 4 seconds)" + }, + ["flavourText"]= { + "Even within the realm of torture, there are subtle intricacies." + } + }, + [40561]= { + ["skill"]= 40561, + ["name"]= "Kineticism", + ["icon"]= "Art/2DArt/SkillIcons/passives/Kineticism.png", + ["isKeystone"]= true, + ["stats"]= { + "Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies\nProjectiles cannot Pierce, Fork or Chain" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)", + "(Maimed enemies have 30% reduced Movement Speed)" + }, + ["flavourText"]= { + "No force wasted, no time wasted." + } + }, + [32118]= { + ["skill"]= 32118, + ["name"]= "Veteran's Awareness", + ["icon"]= "Art/2DArt/SkillIcons/passives/VeteransAwareness.png", + ["isKeystone"]= true, + ["stats"]= { + "+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill\n20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill\n20% more Damage taken if a Non-Vaal Guard Buff was lost Recently" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)", + "(Recently refers to the past 4 seconds)" + }, + ["flavourText"]= { + "Know when you'll be hit, and you'll barely feel it." + } + }, + [60069]= { + ["skill"]= 60069, + ["name"]= "Hollow Palm Technique", + ["icon"]= "Art/2DArt/SkillIcons/passives/DragonStyle.png", + ["isKeystone"]= true, + ["stats"]= { + "You count as Dual Wielding while you are Unencumbered\n40% more Attack Speed with Melee Skills while you are Unencumbered\nAdds 14 to 20 Attack Physical Damage to Melee Skills per 10 Dexterity while you are Unencumbered" + }, + ["reminderText"]= { + "(You are Unencumbered while you have no Gloves, no Main Hand Item, and no Off Hand Item Equipped)" + }, + ["flavourText"]= { + "\"The mastodons of yore were each born with two weapons greater than any sword. So, too, were you.\" - Maraketh Proverb" + } + }, + [37081]= { + ["skill"]= 37081, + ["name"]= "Pitfighter", + ["icon"]= "Art/2DArt/SkillIcons/passives/Pitfighter.png", + ["isKeystone"]= true, + ["stats"]= { + "1% increased Fishing Line Strength" + }, + ["flavourText"]= { + "When winning is all that matters, you'll use everything at your disposal." + } + }, + [44237]= { + ["skill"]= 44237, + ["name"]= "Prodigious Defence", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "4% Chance to Block Spell Damage", + "30% increased Attack Damage while holding a Shield", + "+4% Chance to Block Attack Damage" + } + }, + [35790]= { + ["skill"]= 35790, + ["name"]= "Advance Guard", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 30% increased Damage while holding a Shield", + "Ignore all Movement Penalties from Armour", + "5% increased Movement Speed while holding a Shield" + } + }, + [36455]= { + ["skill"]= 36455, + ["name"]= "Gladiatorial Combat", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["stats"]= { + "2% increased Attack Damage per 75 Armour or Evasion Rating on Shield", + "+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield" + } + }, + [12806]= { + ["skill"]= 12806, + ["name"]= "Strike Leader", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 30% increased Damage while holding a Shield", + "+4% Chance to Block Attack Damage", + "+0.2 metres to Melee Strike Range while Holding a Shield" + }, + ["reminderText"]= { + "(Affects Melee Strikes, including the Default Attack. Does not apply to Areas of Effect)" + } + }, + [28384]= { + ["skill"]= 28384, + ["name"]= "Powerful Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% chance to gain a Power Charge when you Block", + "+10% Chance to Block Spell Damage while at Maximum Power Charges" + } + }, + [9042]= { + ["skill"]= 9042, + ["name"]= "Enduring Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% chance to gain an Endurance Charge when you Block", + "+10% Chance to Block Attack Damage while at Maximum Endurance Charges" + } + }, + [36807]= { + ["skill"]= 36807, + ["name"]= "Gladiator's Fortitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/HoldingShieldDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 25% increased Damage while holding a Shield", + "5% increased maximum Life" + } + }, + [28398]= { + ["skill"]= 28398, + ["name"]= "Precise Retaliation", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "60% increased Critical Strike Chance if you haven't Blocked Recently", + "+30% to Critical Strike Multiplier if you have Blocked Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [23989]= { + ["skill"]= 23989, + ["name"]= "Veteran Defender", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 15, + ["grantedDexterity"]= 15, + ["grantedIntelligence"]= 15, + ["stats"]= { + "+15 to all Attributes", + "+15% Elemental Resistances while holding a Shield", + "60% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Attributes are Strength, Dexterity, and Intelligence)", + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + [28015]= { + ["skill"]= 28015, + ["name"]= "Iron Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Hits have 50% chance to ignore Enemy Physical Damage Reduction", + "30% increased Physical Damage" + } + }, + [56760]= { + ["skill"]= 56760, + ["name"]= "Deep Cuts", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% chance to Impale Enemies on Hit with Attacks", + "Impales you inflict last 1 additional Hit" + }, + ["reminderText"]= { + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + [2796]= { + ["skill"]= 2796, + ["name"]= "Master the Fundamentals", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to all Elemental Resistances", + "35% reduced Elemental Damage", + "35% increased Physical Damage" + } + }, + [3805]= { + ["skill"]= 3805, + ["name"]= "Force Multiplier", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "5% chance to deal Double Damage", + "25% increased Physical Damage" + } + }, + [981]= { + ["skill"]= 981, + ["name"]= "Furious Assault", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack and Cast Speed", + "25% increased Physical Damage" + } + }, + [28635]= { + ["skill"]= 28635, + ["name"]= "Vicious Skewering", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks have 10% chance to cause Bleeding", + "10% chance to Impale Enemies on Hit with Attacks", + "15% increased Effect of Impales inflicted by Hits that also inflict Bleeding" + }, + ["reminderText"]= { + "(Bleeding deals Physical Damage over time, based on the base Physical Damage of the Skill. Damage is 200% higher while moving)", + "(When an Impaled enemy is hit, the Impale reflects 10% of the physical damage of the Impaling hit to that enemy. Impale lasts for 5 hits or 8 seconds)" + } + }, + [23335]= { + ["skill"]= 23335, + ["name"]= "Grim Oath", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 10% of Physical Damage as Extra Chaos Damage" + } + }, + [53318]= { + ["skill"]= 53318, + ["name"]= "Battle-Hardened", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Evasion Rating and Armour", + "35% increased Physical Damage" + } + }, + [62634]= { + ["skill"]= 62634, + ["name"]= "Replenishing Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Non-Curse Aura Skills have 20% increased Duration", + "You and nearby Allies Regenerate 1.00% of Life per second" + } + }, + [29540]= { + ["skill"]= 29540, + ["name"]= "Master of Command", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Banner Skills have 10% increased Aura Effect", + "Banner Skills have 20% increased Area of Effect" + } + }, + [47393]= { + ["skill"]= 47393, + ["name"]= "Spiteful Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Effect of Cold Ailments", + "Hatred has 50% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + } + }, + [51870]= { + ["skill"]= 51870, + ["name"]= "Purposeful Harbinger", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Auras from your Skills have 8% increased Effect on you for\neach Herald affecting you, up to a maximum of 40%" + } + }, + [58221]= { + ["skill"]= 58221, + ["name"]= "Destructive Aspect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "12% increased Area of Effect of Aura Skills", + "Pride has 50% increased Mana Reservation Efficiency" + } + }, + [59350]= { + ["skill"]= 59350, + ["name"]= "Electric Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Effect of Lightning Ailments", + "Wrath has 50% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + } + }, + [61616]= { + ["skill"]= 61616, + ["name"]= "Volatile Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Anger has 50% increased Mana Reservation Efficiency", + "20% increased Duration of Fire Ailments" + }, + ["reminderText"]= { + "(Fire Ailments are Ignited and Scorched)" + } + }, + [28338]= { + ["skill"]= 28338, + ["name"]= "Righteous Path", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Effect of Consecrated Ground you create", + "Zealotry has 50% increased Mana Reservation Efficiency" + } + }, + [63142]= { + ["skill"]= 63142, + ["name"]= "Skullbreaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% reduced Enemy Stun Threshold", + "+15% to Critical Strike Multiplier" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + [38633]= { + ["skill"]= 38633, + ["name"]= "Pressure Points", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Your Critical Strikes have a 5% chance to deal Double Damage", + "30% increased Critical Strike Chance" + } + }, + [2977]= { + ["skill"]= 2977, + ["name"]= "Overwhelming Malice", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to gain Unholy Might for 4 seconds on Critical Strike" + }, + ["reminderText"]= { + "(Unholy Might grants 100% of Physical Damage converted to Chaos Damage and 25% chance to apply Withered on Hit)" + } + }, + [60617]= { + ["skill"]= 60617, + ["name"]= "Magnifier", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Area of Effect", + "+10% to Critical Strike Multiplier" + } + }, + [25966]= { + ["skill"]= 25966, + ["name"]= "Savage Response", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+30% to Critical Strike Multiplier if you've taken a Savage Hit Recently", + "30% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [51541]= { + ["skill"]= 51541, + ["name"]= "Eye of the Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to Damage over Time Multiplier for Ignite from Critical Strikes", + "20% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", + "40% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [44544]= { + ["skill"]= 44544, + ["name"]= "Basics of Pain", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Damage", + "30% increased Critical Strike Chance" + } + }, + [23238]= { + ["skill"]= 23238, + ["name"]= "Quick Getaway", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Attack and Cast Speed", + "5% increased Movement Speed if you've dealt a Critical Strike Recently", + "25% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [12149]= { + ["skill"]= 12149, + ["name"]= "Assert Dominance", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Area of Effect if you've Killed at least 5 Enemies Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [63969]= { + ["skill"]= 63969, + ["name"]= "Vast Power", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Area Damage", + "3% increased Area of Effect per Power Charge, up to a maximum of 50%" + } + }, + [11661]= { + ["skill"]= 11661, + ["name"]= "Powerful Assault", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Area Damage", + "Area Skills have 10% chance to Knock Enemies Back on Hit" + }, + ["reminderText"]= { + "(Knockback pushes Enemies away when Hit)" + } + }, + [42145]= { + ["skill"]= 42145, + ["name"]= "Intensity", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Area Damage", + "Spells which can gain Intensity have +1 to maximum Intensity" + } + }, + [48550]= { + ["skill"]= 48550, + ["name"]= "Titanic Swings", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Area Damage while wielding a Two Handed Melee Weapon", + "15% increased Area of Effect while wielding a Two Handed Melee Weapon" + } + }, + [63607]= { + ["skill"]= 63607, + ["name"]= "Towering Threat", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "10% increased Area of Effect" + } + }, + [31440]= { + ["skill"]= 31440, + ["name"]= "Ancestral Echo", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Totem Placement speed", + "10% increased Attack and Cast Speed if you've summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [57212]= { + ["skill"]= 57212, + ["name"]= "Ancestral Reach", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Totem Damage", + "25% increased Totem Placement speed", + "25% increased Totem Placement range" + } + }, + [60864]= { + ["skill"]= 60864, + ["name"]= "Ancestral Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Totem Life", + "30% increased Totem Duration", + "30% increased Totem Damage if you haven't Summoned a Totem in the past 2 seconds" + } + }, + [56686]= { + ["skill"]= 56686, + ["name"]= "Ancestral Preservation", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Totems gain +20% to all Elemental Resistances", + "Totems have 15% additional Physical Damage Reduction", + "Totems gain +25% to Chaos Resistance" + } + }, + [2004]= { + ["skill"]= 2004, + ["name"]= "Snaring Spirits", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Totem Damage", + "Totems Hinder Enemies near them when Summoned" + }, + ["reminderText"]= { + "(Hinder reduces movement speed by 30% for 4 seconds)" + } + }, + [57383]= { + ["skill"]= 57383, + ["name"]= "Sleepless Sentries", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Totem Duration", + "You have Onslaught if you've Summoned a Totem Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [54209]= { + ["skill"]= 54209, + ["name"]= "Ancestral Guidance", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Totems' Action Speed cannot be modified to below Base Value", + "Totems Regenerate 2% of Life per second" + } + }, + [13950]= { + ["skill"]= 13950, + ["name"]= "Ancestral Inspiration", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain Arcane Surge when you Summon a Totem", + "Spells cast by Totems deal 25% increased Damage" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [54382]= { + ["skill"]= 54382, + ["name"]= "Vital Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Channelling Skills deal 30% increased Damage", + "Regenerate 1.5% of Life per second while Channelling" + } + }, + [45935]= { + ["skill"]= 45935, + ["name"]= "Unrestrained Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Channelling Skills have 8% increased Attack and Cast Speed", + "Unaffected by Chill while Channelling" + } + }, + [38275]= { + ["skill"]= 38275, + ["name"]= "Unwavering Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "50% chance to Avoid being Stunned while Channelling", + "Channelling Skills deal 30% increased Damage" + } + }, + [46264]= { + ["skill"]= 46264, + ["name"]= "Enduring Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Channelling Skills deal 25% increased Damage", + "25% chance to gain an Endurance Charge each second while Channelling" + } + }, + [55714]= { + ["skill"]= 55714, + ["name"]= "Precise Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Critical Strike Chance while Channelling", + "+20% to Critical Strike Multiplier if you've been Channelling for at least 1 second" + } + }, + [35363]= { + ["skill"]= 35363, + ["name"]= "Stoic Focus", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% Chance to Block Attack Damage while Channelling", + "+5% Chance to Block Spell Damage while Channelling", + "Channelling Skills deal 25% increased Damage" + } + }, + [65117]= { + ["skill"]= 65117, + ["name"]= "Hex Breaker", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack and Cast Speed while Channelling", + "Remove a Curse after Channelling for 2 seconds" + } + }, + [15990]= { + ["skill"]= 15990, + ["name"]= "Arcane Adept", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Attack and Cast Speed while Channelling", + "Channelling Skills deal 20% increased Damage", + "Gain Arcane Surge after Channelling for 1 second" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [56886]= { + ["skill"]= 56886, + ["name"]= "Distilled Perfection", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Life Recovery from Flasks", + "25% increased Mana Recovery from Flasks", + "10% increased Flask Effect Duration" + } + }, + [25282]= { + ["skill"]= 25282, + ["name"]= "Spiked Concoction", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskDuration.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Attack and Cast Speed during any Flask Effect", + "Gain Alchemist's Genius when you use a Flask" + }, + ["reminderText"]= { + "(Alchemist's Genius increases Flask Charges gained by 20% and effect of Flasks by 10%, for 4 seconds)" + } + }, + [5075]= { + ["skill"]= 5075, + ["name"]= "Fasting", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskDuration.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Flask Charges gained", + "10% increased Movement Speed while under no Flask Effects" + } + }, + [41509]= { + ["skill"]= 41509, + ["name"]= "Mender's Wellspring", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Life Recovery from Flasks", + "Life Flasks gain 1 Charge every 3 seconds", + "Remove Bleeding when you use a Life Flask" + } + }, + [47584]= { + ["skill"]= 47584, + ["name"]= "Special Reserve", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Damage during any Flask Effect", + "Regenerate 2% of Life per second during any Flask Effect" + } + }, + [62707]= { + ["skill"]= 62707, + ["name"]= "Numbing Elixir", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecovery.png", + ["isNotable"]= true, + ["stats"]= { + "40% reduced Effect of Curses on you during Effect of any Mana Flask", + "40% reduced Effect of Non-Damaging Ailments on you during Effect of any Life Flask" + } + }, + [28744]= { + ["skill"]= 28744, + ["name"]= "Mob Mentality", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Exerted Attacks deal 25% increased Damage", + "Warcries have 5% Chance to grant an Endurance, Frenzy or Power Charge per Power" + }, + ["reminderText"]= { + "(Normal Monsters have 1 Power, Magic Monsters 2, Rare Monsters 10, Unique Monsters 20, and Players 5)" + } + }, + [17816]= { + ["skill"]= 17816, + ["name"]= "Cry Wolf", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Exerted Attacks deal 30% increased Damage", + "20% increased total Power counted by Warcries" + } + }, + [6696]= { + ["skill"]= 6696, + ["name"]= "Haunting Shout", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies Taunted by your Warcries are Intimidated" + }, + ["reminderText"]= { + "(Intimidated enemies take 10% increased Attack Damage)" + } + }, + [36655]= { + ["skill"]= 36655, + ["name"]= "Lead By Example", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 10, + ["grantedDexterity"]= 10, + ["stats"]= { + "When you Warcry, you and nearby Allies gain Onslaught for 4 seconds", + "+10 to Strength and Dexterity" + }, + ["reminderText"]= { + "(Onslaught grants 20% increased Attack and Cast Speed)" + } + }, + [33182]= { + ["skill"]= 33182, + ["name"]= "Provocateur", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Critical Strike Chance against Taunted Enemies", + "+10% to Critical Strike Multiplier against Taunted Enemies" + } + }, + [7107]= { + ["skill"]= 7107, + ["name"]= "Warning Call", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 25% increased Armour per 5 Power for 8 seconds when you Warcry, up to a maximum of 100%" + }, + ["reminderText"]= { + "(Normal Monsters have 1 Power, Magic Monsters 2, Rare Monsters 10, Unique Monsters 20, and Players 5)" + } + }, + [29450]= { + ["skill"]= 29450, + ["name"]= "Rattling Bellow", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "Exerted Attacks have 8% chance to deal Double Damage", + "+20 to Strength" + } + }, + [39006]= { + ["skill"]= 39006, + ["name"]= "Bloodscent", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 2 Rage on Hit with Axes or Swords" + }, + ["reminderText"]= { + "(Every Rage grants 1% more Attack Damage. Maximum Rage is 30. Lose 10 Rage per second if you have not been Hit or gained Rage in the last 2 seconds)", + "(Only one Hit every 0.5 seconds can cause you to gain Rage)" + } + }, + [58189]= { + ["skill"]= 58189, + ["name"]= "Run Through", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Axe or Sword Attacks deal 15% increased Damage with Ailments", + "10% increased Impale Effect", + "10% chance to Impale Enemies on Hit with Axes or Swords", + "15% increased Physical Damage with Axes or Swords" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [60894]= { + ["skill"]= 60894, + ["name"]= "Wound Aggravation", + ["icon"]= "Art/2DArt/SkillIcons/passives/AxeandSwordDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Axe or Sword Attacks deal 20% increased Damage with Ailments", + "20% increased Physical Damage with Axes or Swords", + "+5% to Physical Damage over Time Multiplier while wielding an Axe or Sword" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [13054]= { + ["skill"]= 13054, + ["name"]= "Overlord", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Damage with Maces, Sceptres or Staves", + "Melee Hits with Maces, Sceptres or Staves Fortify for 6 seconds" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)" + } + }, + [48925]= { + ["skill"]= 48925, + ["name"]= "Expansive Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Mace, Sceptre or Staff Attacks deal 20% increased Damage with Hits and Ailments", + "10% increased Area of Effect per second you've been stationary, up to a maximum of 50%" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [4205]= { + ["skill"]= 4205, + ["name"]= "Weight Advantage", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaceandStaffDamage.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "Mace, Sceptre or Staff Attacks deal 30% increased Damage with Hits and Ailments", + "4% chance to deal Double Damage while wielding a Mace, Sceptre or Staff", + "+20 to Strength" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [1067]= { + ["skill"]= 1067, + ["name"]= "Wind-up", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+15% to Critical Strike Multiplier with Claws or Daggers", + "10% chance to gain a Power Charge on Non-Critical Strike with a Claw or Dagger" + } + }, + [39738]= { + ["skill"]= 39738, + ["name"]= "Fan of Blades", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills fire an additional Projectile while wielding a Claw or Dagger", + "20% increased Projectile Attack Damage with Claws or Daggers" + } + }, + [57141]= { + ["skill"]= 57141, + ["name"]= "Disease Vector", + ["icon"]= "Art/2DArt/SkillIcons/passives/DaggerandClawDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies Poisoned by you cannot Regenerate Life", + "+6% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger" + } + }, + [7343]= { + ["skill"]= 7343, + ["name"]= "Arcing Shot", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance", + "Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets" + } + }, + [38563]= { + ["skill"]= 38563, + ["name"]= "Tempered Arrowheads", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Bow Skills have +6% to Damage over Time Multiplier", + "Bow Skills have 10% increased Skill Effect Duration", + "10% increased Duration of Ailments inflicted while wielding a Bow" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + [20834]= { + ["skill"]= 20834, + ["name"]= "Broadside", + ["icon"]= "Art/2DArt/SkillIcons/passives/BowDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Bow Skills have 25% increased Area of Effect" + } + }, + [33002]= { + ["skill"]= 33002, + ["name"]= "Explosive Force", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage", + "Gain 10% of Wand Physical Damage as Extra Chaos Damage" + } + }, + [41056]= { + ["skill"]= 41056, + ["name"]= "Opportunistic Fusilade", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandDamage.png", + ["isNotable"]= true, + ["stats"]= { + "50% increased Critical Strike Chance with Wands", + "35% increased Damage with Wands if you've dealt a Critical Strike Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [30622]= { + ["skill"]= 30622, + ["name"]= "Storm's Hand", + ["icon"]= "Art/2DArt/SkillIcons/passives/WandDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 10% of Wand Physical Damage as Extra Lightning Damage", + "25% of Wand Physical Damage converted to Lightning Damage" + } + }, + [18463]= { + ["skill"]= 18463, + ["name"]= "Battlefield Dominator", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks with Two Handed Weapons deal 25% increased Damage with Hits and Ailments", + "10% reduced Enemy Stun Threshold", + "15% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(The Stun Threshold determines how much Damage can Stun something)", + "(Recently refers to the past 4 seconds)" + } + }, + [14431]= { + ["skill"]= 14431, + ["name"]= "Martial Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "10% increased Attack Speed with Two Handed Melee Weapons", + "10% increased Attack Speed if you have at least 600 Strength", + "+20 to Strength" + } + }, + [61474]= { + ["skill"]= 61474, + ["name"]= "Surefooted Striker", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Critical Strike Chance with Two Handed Melee Weapons", + "5% chance to deal Double Damage if you've dealt a Critical Strike with a Two Handed Melee Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [42687]= { + ["skill"]= 42687, + ["name"]= "Graceful Execution", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["grantedDexterity"]= 15, + ["grantedIntelligence"]= 15, + ["stats"]= { + "5% increased Attack Speed with Two Handed Melee Weapons", + "15% increased Accuracy Rating with Two Handed Melee Weapons", + "25% increased Critical Strike Chance with Two Handed Melee Weapons", + "+15 to Dexterity and Intelligence" + } + }, + [6553]= { + ["skill"]= 6553, + ["name"]= "Brutal Infamy", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks with Two Handed Melee Weapons deal 20% increased Damage with Hits and Ailments", + "40% increased Damage with Hits and Ailments against Unique Enemies" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [20996]= { + ["skill"]= 20996, + ["name"]= "Fearsome Warrior", + ["icon"]= "Art/2DArt/SkillIcons/passives/TwoHandedMeleeDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attacks with Two Handed Melee Weapons deal 25% increased Damage with Hits and Ailments", + "8% increased Area of Effect", + "25% chance to Intimidate nearby Enemies for 4 seconds on Melee Kill" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Intimidated enemies take 10% increased Attack Damage)" + } + }, + [24484]= { + ["skill"]= 24484, + ["name"]= "Combat Rhythm", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Attack Speed if you've Hit with your Main Hand Weapon Recently", + "10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [62618]= { + ["skill"]= 62618, + ["name"]= "Hit and Run", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 25% increased Damage while Dual Wielding", + "+10% chance to Suppress Spell Damage if you've Hit an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [23232]= { + ["skill"]= 23232, + ["name"]= "Insatiable Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Attack Skills deal 20% increased Damage while Dual Wielding", + "5% increased Attack Speed while Dual Wielding", + "5% chance to gain a Frenzy Charge on Kill while Dual Wielding" + } + }, + [24889]= { + ["skill"]= 24889, + ["name"]= "Mage Bane", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Spell Damage while Dual Wielding", + "Attack Skills deal 20% increased Damage while Dual Wielding", + "20% chance to gain a Power Charge when you Block" + } + }, + [2655]= { + ["skill"]= 2655, + ["name"]= "Martial Momentum", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack Speed while Dual Wielding", + "16% increased Accuracy Rating while Dual Wielding", + "32% increased Damage if you've used a Travel Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [1478]= { + ["skill"]= 1478, + ["name"]= "Deadly Repartee", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Attack Damage while Dual Wielding", + "Attack Skills deal 25% increased Damage while Dual Wielding", + "30% increased Attack Critical Strike Chance while Dual Wielding" + } + }, + [39058]= { + ["skill"]= 39058, + ["name"]= "Quick and Deadly", + ["icon"]= "Art/2DArt/SkillIcons/passives/DualWieldingDamage.png", + ["isNotable"]= true, + ["stats"]= { + "60% increased Main Hand Attack Damage while wielding two different Weapon Types", + "30% increased Off Hand Attack Speed while wielding two different Weapon Types" + } + }, + [44670]= { + ["skill"]= 44670, + ["name"]= "Smite the Weak", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Attack Damage against Maimed Enemies", + "Attacks have 10% chance to Maim on Hit" + }, + ["reminderText"]= { + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + [38790]= { + ["skill"]= 38790, + ["name"]= "Heavy Hitter", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Attack Damage", + "10% reduced Enemy Stun Threshold", + "20% chance to double Stun Duration", + "30% increased Damage with Ailments from Attack Skills" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [37]= { + ["skill"]= 37, + ["name"]= "Martial Prowess", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Attack Damage", + "6% increased Attack Speed", + "20% increased Damage with Ailments from Attack Skills", + "15% increased Accuracy Rating" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [41594]= { + ["skill"]= 41594, + ["name"]= "Calamitous", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to Freeze, Shock and Ignite", + "30% increased Elemental Damage with Attack Skills", + "15% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Freeze lowers Enemy Action Speed to zero, preventing them from acting. Duration is based on the Cold Damage of the Hit)", + "(Shock increases Damage taken by up to 50%, depending on the amount of Lightning Damage in the hit, for 2 seconds)", + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [22581]= { + ["skill"]= 22581, + ["name"]= "Devastator", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Attack Damage", + "20% increased Damage with Ailments from Attack Skills", + "Enemies Killed with Attack Hits have a 15% chance to Explode, dealing a tenth of their Life as Physical Damage" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [14518]= { + ["skill"]= 14518, + ["name"]= "Fuel the Fight", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Attack Speed", + "0.4% of Attack Damage Leeched as Mana", + "20% increased Damage while Leeching" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [41284]= { + ["skill"]= 41284, + ["name"]= "Drive the Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.8% of Attack Damage Leeched as Life", + "25% increased Attack Damage when on Full Life", + "Attacks have 10% chance to Maim on Hit" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Maimed enemies have 30% reduced Movement Speed)" + } + }, + [26197]= { + ["skill"]= 26197, + ["name"]= "Feed the Fury", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.4% of Attack Damage Leeched as Life", + "30% increased Damage while Leeching", + "15% increased Attack Speed while Leeching" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [1066]= { + ["skill"]= 1066, + ["name"]= "Seal Mender", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Skills Supported by Unleash have 30% increased Seal gain frequency" + } + }, + [784]= { + ["skill"]= 784, + ["name"]= "Conjured Wall", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Spell Damage", + "+8% Chance to Block Spell Damage if you've Cast a Spell Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [20533]= { + ["skill"]= 20533, + ["name"]= "Arcane Heroism", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Effect of Arcane Surge on you", + "10% chance to gain Arcane Surge when you Hit a Unique enemy" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [34205]= { + ["skill"]= 34205, + ["name"]= "Practiced Caster", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Spell Damage", + "5% increased Cast Speed", + "35% chance to Ignore Stuns while Casting" + } + }, + [5190]= { + ["skill"]= 5190, + ["name"]= "Burden Projection", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Spell Damage", + "8% chance to Knock Enemies Back on Hit with Spell Damage" + } + }, + [14085]= { + ["skill"]= 14085, + ["name"]= "Thaumophage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.6% of Spell Damage Leeched as Energy Shield", + "25% increased Spell Damage while on Full Energy Shield", + "10% chance to Hinder Enemies on Hit with Spells" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)", + "(Hinder reduces movement speed by 30% for 4 seconds)" + } + }, + [32415]= { + ["skill"]= 32415, + ["name"]= "Essence Rush", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "40% increased Damage while Leeching Energy Shield", + "0.3% of Spell Damage Leeched as Energy Shield", + "5% increased Attack and Cast Speed while Leeching Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [42648]= { + ["skill"]= 42648, + ["name"]= "Sap Psyche", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Spell Damage", + "30% increased Mana Regeneration Rate", + "Regenerate 1% of Energy Shield per second if you've Cursed an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [42117]= { + ["skill"]= 42117, + ["name"]= "Sadist", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Elemental Damage if you've Chilled an Enemy Recently", + "20% increased Elemental Damage if you've Ignited an Enemy Recently", + "25% increased Elemental Damage if you've Shocked an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [2306]= { + ["skill"]= 2306, + ["name"]= "Corrosive Elements", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Elemental Damage", + "Cold Skills have a 25% chance to apply Cold Exposure on Hit", + "Fire Skills have a 25% chance to apply Fire Exposure on Hit", + "Lightning Skills have a 25% chance to apply Lightning Exposure on Hit" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)", + "(Fire Exposure applies -10% to Fire Resistance for 4 seconds)", + "(Lightning Exposure applies -10% to Lightning Resistance for 4 seconds)" + } + }, + [7039]= { + ["skill"]= 7039, + ["name"]= "Doryani's Lesson", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "0.2% of Elemental Damage Leeched as Life", + "25% increased Elemental Damage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [17255]= { + ["skill"]= 17255, + ["name"]= "Disorienting Display", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Elemental Damage", + "10% chance to Blind nearby Enemies when you use an Elemental Skill" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [17050]= { + ["skill"]= 17050, + ["name"]= "Prismatic Heart", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to all Elemental Resistances", + "30% increased Elemental Damage" + } + }, + [36776]= { + ["skill"]= 36776, + ["name"]= "Widespread Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedElementalDamage.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased Area of Effect", + "20% increased Elemental Damage" + } + }, + [33482]= { + ["skill"]= 33482, + ["name"]= "Master of Fire", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Nearby Enemies have Fire Exposure" + }, + ["reminderText"]= { + "(Fire Exposure applies -10% to Fire Resistance for 4 seconds)" + } + }, + [13790]= { + ["skill"]= 13790, + ["name"]= "Smoking Remains", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png", + ["isNotable"]= true, + ["stats"]= { + "35% increased Fire Damage", + "10% chance to create a Smoke Cloud on Kill" + } + }, + [56696]= { + ["skill"]= 56696, + ["name"]= "Cremator", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedFireDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Fire Damage", + "Ignited Enemies Killed by your Hits are destroyed" + } + }, + [40870]= { + ["skill"]= 40870, + ["name"]= "Snowstorm", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 8% of Lightning Damage as Extra Cold Damage against Chilled Enemies" + } + }, + [22607]= { + ["skill"]= 22607, + ["name"]= "Storm Drinker", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Damage Penetrates 8% Lightning Resistance", + "0.5% of Lightning Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [31825]= { + ["skill"]= 31825, + ["name"]= "Paralysis", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Lightning Damage", + "10% chance to double Stun Duration", + "Lightning Skills have 10% reduced Enemy Stun Threshold" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + [59646]= { + ["skill"]= 59646, + ["name"]= "Supercharge", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedLightningDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Lightning Damage with Non-Critical Strikes is Lucky" + } + }, + [6258]= { + ["skill"]= 6258, + ["name"]= "Blanketed Snow", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Damage Penetrates 10% Cold Resistance against Chilled Enemies" + } + }, + [54436]= { + ["skill"]= 54436, + ["name"]= "Cold to the Core", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png", + ["isNotable"]= true, + ["stats"]= { + "1% increased Cold Damage per 25 Dexterity", + "1% increased Cold Damage per 25 Intelligence", + "1% increased Cold Damage per 25 Strength" + } + }, + [23113]= { + ["skill"]= 23113, + ["name"]= "Cold-Blooded Killer", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedColdDamage.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Cold Damage over Time Multiplier", + "Recover 2% of Life on Killing a Chilled Enemy" + } + }, + [49273]= { + ["skill"]= 49273, + ["name"]= "Touch of Cruelty", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Chaos Spells have 10% chance to Hinder Enemies on Hit", + "Enemies Hindered by you take 10% increased Chaos Damage" + }, + ["reminderText"]= { + "(Hinder reduces movement speed by 30% for 4 seconds)" + } + }, + [38592]= { + ["skill"]= 38592, + ["name"]= "Unwaveringly Evil", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Chaos Damage", + "Chaos Skills ignore interruption from Stuns" + } + }, + [1494]= { + ["skill"]= 1494, + ["name"]= "Unspeakable Gifts", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage" + } + }, + [40828]= { + ["skill"]= 40828, + ["name"]= "Dark Ideation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "2% increased Chaos Damage per 100 maximum Mana, up to a maximum of 80%" + } + }, + [2264]= { + ["skill"]= 2264, + ["name"]= "Unholy Grace", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Chaos Damage", + "10% increased Attack and Cast Speed" + } + }, + [34595]= { + ["skill"]= 34595, + ["name"]= "Wicked Pall", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Chaos Damage", + "5% increased Skill Effect Duration" + } + }, + [58949]= { + ["skill"]= 58949, + ["name"]= "Renewal", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions Regenerate 1% of Life per second", + "Minions have 5% chance to deal Double Damage while they are on Full Life" + } + }, + [6703]= { + ["skill"]= 6703, + ["name"]= "Raze and Pillage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 20% chance to Ignite", + "Minions deal 20% increased Damage with Hits and Ailments against Ignited Enemies", + "Minions gain 6% of Physical Damage as Extra Fire Damage" + } + }, + [16650]= { + ["skill"]= 16650, + ["name"]= "Rotten Claws", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have a 12% chance to Impale on Hit with Attacks" + } + }, + [55022]= { + ["skill"]= 55022, + ["name"]= "Call to the Slaughter", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 15% increased Damage", + "Minions created Recently have 10% increased Attack and Cast Speed", + "Minions created Recently have 30% increased Movement Speed" + } + }, + [11535]= { + ["skill"]= 11535, + ["name"]= "Skeletal Atrophy", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit", + "Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage" + } + }, + [68]= { + ["skill"]= 68, + ["name"]= "Hulking Corpses", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 25% increased maximum Life", + "Raised Zombies have 5% chance to Taunt Enemies on Hit" + } + }, + [41983]= { + ["skill"]= 41983, + ["name"]= "Vicious Bite", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 30% increased Critical Strike Chance", + "Minions have +15% to Critical Strike Multiplier" + } + }, + [57892]= { + ["skill"]= 57892, + ["name"]= "Primordial Bond", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased Damage per Summoned Golem", + "20% increased Effect of Buffs granted by your Golems", + "Golems have 25% increased Maximum Life" + } + }, + [29748]= { + ["skill"]= 29748, + ["name"]= "Blowback", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to Ignite", + "Ignites you inflict deal Damage 8% faster" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)", + "(They will deal the same total damage over a shorter duration)" + } + }, + [45128]= { + ["skill"]= 45128, + ["name"]= "Fan the Flames", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Ignites you inflict spread to other Enemies within a Radius of 1.5 metres" + } + }, + [408]= { + ["skill"]= 408, + ["name"]= "Cooked Alive", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% chance to Ignite", + "Enemies Ignited by you have -5% to Fire Resistance" + }, + ["reminderText"]= { + "(Ignite deals Fire Damage over time, based on the base Fire Damage of the Skill, for 4 seconds)" + } + }, + [56065]= { + ["skill"]= 56065, + ["name"]= "Burning Bright", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Burning Damage", + "8% increased Area of Effect" + } + }, + [10952]= { + ["skill"]= 10952, + ["name"]= "Wrapped in Flame", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Fire Damage", + "Cannot be Chilled while Burning", + "5% chance to Cover Enemies in Ash on Hit while you are Burning" + }, + ["reminderText"]= { + "(Being Covered in Ash applies 20% less Movement Speed and 20% increased Fire Damage Taken, for 4 seconds)" + } + }, + [4942]= { + ["skill"]= 4942, + ["name"]= "Vivid Hues", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "2% of Attack Damage Leeched as Life against Bleeding Enemies", + "20% increased total Recovery per second from Life Leech", + "20% increased Damage with Bleeding" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [8258]= { + ["skill"]= 8258, + ["name"]= "Rend", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Physical Damage over Time Multiplier", + "20% increased Bleeding Duration" + } + }, + [42338]= { + ["skill"]= 42338, + ["name"]= "Disorienting Wounds", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Damage with Bleeding", + "25% chance to Blind with Hits against Bleeding Enemies" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [37384]= { + ["skill"]= 37384, + ["name"]= "Compound Injury", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "35% increased Damage with Bleeding you inflict on Maimed Enemies" + } + }, + [9372]= { + ["skill"]= 9372, + ["name"]= "Blood Artist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "+6% to Physical Damage over Time Multiplier if you've Spent Life Recently", + "+20 to Strength" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [18412]= { + ["skill"]= 18412, + ["name"]= "Phlebotomist", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+6% to Physical Damage over Time Multiplier if you've dealt a Critical Strike Recently", + "20% increased Critical Strike Chance" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [38399]= { + ["skill"]= 38399, + ["name"]= "Septic Spells", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Cast Speed", + "Spell Skills have +5% to Damage over Time Multiplier for Poison", + "20% chance to Poison on Hit with Spell Damage" + }, + ["reminderText"]= { + "(Poison deals Chaos Damage over time, based on the base Physical and Chaos Damage of the Skill. Multiple instances of Poison stack)" + } + }, + [36370]= { + ["skill"]= 36370, + ["name"]= "Low Tolerance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage" + } + }, + [47424]= { + ["skill"]= 47424, + ["name"]= "Steady Torment", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Poison Duration", + "15% increased Bleeding Duration", + "+6% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies", + "+6% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies" + } + }, + [11995]= { + ["skill"]= 11995, + ["name"]= "Eternal Suffering", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Chaos Damage", + "50% chance to inflict Withered for two seconds on Hit if there are 5 or fewer Withered Debuffs on Enemy" + }, + ["reminderText"]= { + "(Withered applies 6% increased Chaos Damage Taken, and can be inflicted up to 15 times)" + } + }, + [61043]= { + ["skill"]= 61043, + ["name"]= "Eldritch Inspiration", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Chaos Damage", + "16% increased maximum Mana", + "20% increased Mana Regeneration Rate" + } + }, + [19686]= { + ["skill"]= 19686, + ["name"]= "Wasting Affliction", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Damage with Ailments", + "Damaging Ailments deal damage 5% faster" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(They will deal the same total damage over a shorter duration)" + } + }, + [56879]= { + ["skill"]= 56879, + ["name"]= "Haemorrhage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to Damage over Time Multiplier for Ailments from Critical Strikes", + "30% increased Critical Strike Chance" + } + }, + [34581]= { + ["skill"]= 34581, + ["name"]= "Flow of Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "24% increased Damage over Time", + "4% increased maximum Life", + "Regenerate 0.6% of Life per second" + } + }, + [56070]= { + ["skill"]= 56070, + ["name"]= "Exposure Therapy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Damage over Time Multiplier", + "+30% Chaos Resistance against Damage Over Time" + } + }, + [28146]= { + ["skill"]= 28146, + ["name"]= "Brush with Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Damage over Time Multiplier", + "Recover 1% of Life on Kill", + "Recover 1% of Energy Shield on Kill" + } + }, + [65110]= { + ["skill"]= 65110, + ["name"]= "Vile Reinvigoration", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "24% increased Damage over Time", + "6% increased maximum Energy Shield", + "Regenerate 2% of Energy Shield per second if you've Killed an Enemy Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [10355]= { + ["skill"]= 10355, + ["name"]= "Circling Oblivion", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Damage over Time", + "15% increased Duration of Ailments on Enemies" + }, + ["reminderText"]= { + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)" + } + }, + [4094]= { + ["skill"]= 4094, + ["name"]= "Brewed for Potency", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "24% increased Damage over Time", + "10% increased Flask Charges gained", + "20% increased Life and Mana Recovery from Flasks" + } + }, + [51467]= { + ["skill"]= 51467, + ["name"]= "Astonishing Affliction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Duration of Elemental Ailments on Enemies", + "20% increased Damage with Hits and Ailments against Enemies affected by Ailments", + "20% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)", + "(Ailments are Bleeding, Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, Sapped, and Poisoned)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [25563]= { + ["skill"]= 25563, + ["name"]= "Cold Conduction", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Effect of Cold Ailments you inflict on Shocked Enemies", + "25% increased Effect of Lightning Ailments you inflict on Chilled Enemies" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)", + "(Lightning Ailments are Shocked and Sapped)" + } + }, + [20343]= { + ["skill"]= 20343, + ["name"]= "Inspired Oppression", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Elemental Damage", + "30% increased Mana Regeneration Rate if you have Frozen an Enemy Recently", + "30% increased Mana Regeneration Rate if you have Shocked an Enemy Recently", + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [58248]= { + ["skill"]= 58248, + ["name"]= "Chilling Presence", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Nearby Enemies are Chilled" + }, + ["reminderText"]= { + "(Chill reduces Enemy Action Speed by 10%)" + } + }, + [18861]= { + ["skill"]= 18861, + ["name"]= "Deep Chill", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% to Cold Damage over Time Multiplier", + "30% increased Effect of Cold Ailments" + }, + ["reminderText"]= { + "(Cold Ailments are Chilled, Frozen and Brittle)" + } + }, + [39874]= { + ["skill"]= 39874, + ["name"]= "Blast-Freeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Cold Damage", + "Freezes you inflict spread to other Enemies within 1.2 metres" + } + }, + [35430]= { + ["skill"]= 35430, + ["name"]= "Thunderstruck", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Lightning Damage", + "Your Critical Strikes Knock Back Shocked Enemies", + "30% increased Critical Strike Chance" + } + }, + [37478]= { + ["skill"]= 37478, + ["name"]= "Stormrider", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to gain a Power Charge when you Shock a Chilled Enemy", + "25% increased Cold Damage with Hits against Shocked Enemies", + "25% increased Lightning Damage with Hits against Chilled Enemies" + } + }, + [28682]= { + ["skill"]= 28682, + ["name"]= "Overshock", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Lightning Damage", + "40% increased Effect of Lightning Ailments" + }, + ["reminderText"]= { + "(Lightning Ailments are Shocked and Sapped)" + } + }, + [42305]= { + ["skill"]= 42305, + ["name"]= "Evil Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Curse take 6% increased Damage" + } + }, + [57104]= { + ["skill"]= 57104, + ["name"]= "Evil Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Curse take 6% increased Damage" + } + }, + [61549]= { + ["skill"]= 61549, + ["name"]= "Forbidden Words", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Area of Effect of Curse Aura Skills", + "15% increased Mana Reservation Efficiency of Curse Aura Skills" + } + }, + [18624]= { + ["skill"]= 18624, + ["name"]= "Doedre's Spite", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enfeeble can affect Hexproof Enemies", + "35% increased Critical Strike Chance against Cursed Enemies" + } + }, + [42929]= { + ["skill"]= 42929, + ["name"]= "Victim Maker", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Curse Skills have 8% increased Cast Speed", + "Enemies Cursed by you have Malediction if 33% of Curse Duration expired" + }, + ["reminderText"]= { + "(Malediction causes 10% reduced Damage dealt and 10% increased Damage taken)" + } + }, + [14418]= { + ["skill"]= 14418, + ["name"]= "Master of Fear", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies you Curse are Unnerved" + }, + ["reminderText"]= { + "(Unnerved enemies take 10% increased Spell Damage)" + } + }, + [7279]= { + ["skill"]= 7279, + ["name"]= "Wish for Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "You have Culling Strike against Cursed Enemies" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + [28551]= { + ["skill"]= 28551, + ["name"]= "Heraldry", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Nearby Enemies have Cold Exposure while you are affected by Herald of Ice", + "Nearby Enemies have Fire Exposure while you are affected by Herald of Ash", + "Nearby Enemies have Lightning Exposure while you are affected by Herald of Thunder" + }, + ["reminderText"]= { + "(Cold Exposure applies -10% to Cold Resistance for 4 seconds)", + "(Fire Exposure applies -10% to Fire Resistance for 4 seconds)", + "(Lightning Exposure applies -10% to Lightning Resistance for 4 seconds)" + } + }, + [24038]= { + ["skill"]= 24038, + ["name"]= "Endbringer", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "5% increased Damage for each Herald affecting you", + "20% increased Damage while affected by a Herald" + } + }, + [16952]= { + ["skill"]= 16952, + ["name"]= "Cult-Leader", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 35% increased Damage while you are affected by a Herald" + } + }, + [17066]= { + ["skill"]= 17066, + ["name"]= "Empowered Envoy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Herald Skills deal 40% increased Damage", + "20% increased Effect of Herald Buffs on you" + } + }, + [8897]= { + ["skill"]= 8897, + ["name"]= "Dark Messenger", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Herald Skills have 25% increased Area of Effect", + "Herald Skills deal 20% increased Damage" + } + }, + [61998]= { + ["skill"]= 61998, + ["name"]= "Agent of Destruction", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to Freeze, Shock and Ignite while affected by a Herald", + "25% increased Elemental Damage while affected by a Herald" + } + }, + [17905]= { + ["skill"]= 17905, + ["name"]= "Lasting Impression", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Damage over Time while affected by a Herald", + "Herald Skills deal 50% increased Damage over Time" + } + }, + [65521]= { + ["skill"]= 65521, + ["name"]= "Self-Fulfilling Prophecy", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to Critical Strike Chance of Herald Skills", + "+15% to Critical Strike Multiplier if you dealt a Critical Strike with a Herald Skill Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [40402]= { + ["skill"]= 40402, + ["name"]= "Invigorating Portents", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 20% increased Damage while you are affected by a Herald", + "Minions have 10% increased Movement Speed for each Herald affecting you" + } + }, + [5781]= { + ["skill"]= 5781, + ["name"]= "Pure Agony", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5 to Maximum Virulence", + "Minions deal 20% increased Damage while you are affected by a Herald" + } + }, + [24357]= { + ["skill"]= 24357, + ["name"]= "Disciples", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions deal 20% increased Damage while you are affected by a Herald", + "Summoned Sentinels have 25% increased Cooldown Recovery Rate" + } + }, + [55171]= { + ["skill"]= 55171, + ["name"]= "Dread March", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions have 10% increased Movement Speed", + "Minions have 10% additional Physical Damage Reduction", + "Minions have +10% to Chaos Resistance" + } + }, + [42126]= { + ["skill"]= 42126, + ["name"]= "Blessed Rebirth", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 20% increased maximum Life", + "Minions created Recently cannot be Damaged" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [62318]= { + ["skill"]= 62318, + ["name"]= "Life from Death", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 15% increased maximum Life", + "Regenerate 2% of Life per second if a Minion has Died Recently", + "Minions Recover 4% of Life on Minion Death" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [22540]= { + ["skill"]= 22540, + ["name"]= "Feasting Fiends", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions deal 10% increased Damage", + "Minions Leech 0.4% of Damage as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [11199]= { + ["skill"]= 11199, + ["name"]= "Bodyguards", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Minions have 10% increased maximum Life", + "Minions have 10% chance to Knock Enemies Back on Hit with Attacks" + } + }, + [42068]= { + ["skill"]= 42068, + ["name"]= "Follow-Through", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Projectiles deal 20% increased Damage with Hits and Ailments for\neach remaining Chain, up to a maximum of 100%" + } + }, + [36645]= { + ["skill"]= 36645, + ["name"]= "Streamlined", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Projectile Speed", + "20% increased Projectile Damage" + } + }, + [12400]= { + ["skill"]= 12400, + ["name"]= "Shrieking Bolts", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "35% increased Projectile Damage", + "10% chance to Taunt Enemies on Projectile Hit" + }, + ["reminderText"]= { + "(Enemies you Taunt can only target you, and deal 10% less damage to anyone else. Taunt lasts for 3 seconds)" + } + }, + [54170]= { + ["skill"]= 54170, + ["name"]= "Eye to Eye", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Projectile Damage", + "Projectiles deal 35% increased Damage with Hits against nearby Enemies" + } + }, + [53285]= { + ["skill"]= 53285, + ["name"]= "Repeater", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Projectile Damage", + "8% increased Attack and Cast Speed" + } + }, + [13812]= { + ["skill"]= 13812, + ["name"]= "Aerodynamics", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Projectiles Pierce an additional Target", + "10% increased Projectile Speed", + "10% increased Projectile Damage" + } + }, + [26839]= { + ["skill"]= 26839, + ["name"]= "Chip Away", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Brand Recall grants 20% increased Brand Attachment range to recalled Brands", + "Brand Recall has 4% increased Cooldown Recovery Rate per Brand, up to a maximum of 40%" + } + }, + [37358]= { + ["skill"]= 37358, + ["name"]= "Seeker Runes", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Brand Damage", + "Unattached Brands gain 20% increased Brand Attachment Range per\nsecond, up to a maximum of 100%" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [59307]= { + ["skill"]= 59307, + ["name"]= "Remarkable", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased Cast Speed with Brand Skills", + "Skills which create Brands have 35% chance to create an additional Brand" + } + }, + [36276]= { + ["skill"]= 36276, + ["name"]= "Brand Loyalty", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Enemies take 3% increased Damage for each of your Brands Attached to them" + } + }, + [42636]= { + ["skill"]= 42636, + ["name"]= "Holy Conquest", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", + "25% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [13392]= { + ["skill"]= 13392, + ["name"]= "Grand Design", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Brand Damage", + "Brand Skills have 10% increased Duration", + "10% increased Brand Attachment range" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [29193]= { + ["skill"]= 29193, + ["name"]= "Set and Forget", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Trap Damage", + "40% increased Trap Trigger Area of Effect", + "Skills used by Traps have 15% increased Area of Effect" + } + }, + [54760]= { + ["skill"]= 54760, + ["name"]= "Expert Sabotage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Mines have 20% increased Detonation Speed", + "Mines have a 10% chance to be Detonated an Additional Time" + } + }, + [24645]= { + ["skill"]= 24645, + ["name"]= "Guerilla Tactics", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Trap Damage", + "20% increased Mine Damage", + "10% increased Trap Throwing Speed", + "10% increased Mine Throwing Speed", + "5% increased Movement Speed if you've thrown a Trap or Mine Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [65138]= { + ["skill"]= 65138, + ["name"]= "Expendability", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to throw up to 1 additional Trap or Mine" + }, + ["reminderText"]= { + "(Throwing Mines takes 10% more time for each additional Mine thrown)" + } + }, + [52058]= { + ["skill"]= 52058, + ["name"]= "Arcane Pyrotechnics", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Trap Damage", + "20% increased Mine Damage", + "Gain Arcane Surge when your Mine is Detonated targeting an Enemy", + "Gain Arcane Surge when your Trap is Triggered by an Enemy" + }, + ["reminderText"]= { + "(Arcane Surge grants 20% increased Cast Speed and 30% increased Mana Regeneration rate, for 4 seconds)" + } + }, + [22434]= { + ["skill"]= 22434, + ["name"]= "Surprise Sabotage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+8% to Critical Strike Multiplier with Traps", + "+8% to Critical Strike Multiplier with Mines", + "Trap Damage Penetrates 4% Elemental Resistances", + "Mine Damage Penetrates 4% Elemental Resistances" + } + }, + [20383]= { + ["skill"]= 20383, + ["name"]= "Careful Handling", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased Trap Damage", + "15% increased Mine Damage", + "4% increased maximum Life", + "6% increased maximum Mana" + } + }, + [8949]= { + ["skill"]= 8949, + ["name"]= "Peak Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "20% increased Life Recovery from Flasks" + } + }, + [52844]= { + ["skill"]= 52844, + ["name"]= "Fettle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+20 to maximum Life", + "10% increased maximum Life" + } + }, + [15538]= { + ["skill"]= 15538, + ["name"]= "Feast of Flesh", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "0.4% of Attack Damage Leeched as Life", + "Gain 10 Life per Enemy Hit with Attacks" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [62706]= { + ["skill"]= 62706, + ["name"]= "Sublime Sensation", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "8% increased maximum Life" + } + }, + [19723]= { + ["skill"]= 19723, + ["name"]= "Surging Vitality", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "Every 4 seconds, Regenerate 10% of Life over one second" + } + }, + [49694]= { + ["skill"]= 49694, + ["name"]= "Peace Amidst Chaos", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "20% increased Armour while stationary", + "Regenerate 2% of Life per second while stationary" + } + }, + [40858]= { + ["skill"]= 40858, + ["name"]= "Adrenaline", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "6% increased Attack Speed while Leeching" + } + }, + [3723]= { + ["skill"]= 3723, + ["name"]= "Wall of Muscle", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased maximum Life", + "5% increased Strength" + } + }, + [12867]= { + ["skill"]= 12867, + ["name"]= "Mindfulness", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased maximum Mana", + "80% increased Mana Regeneration Rate while stationary" + } + }, + [4958]= { + ["skill"]= 4958, + ["name"]= "Liquid Inspiration", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased maximum Mana", + "20% increased Mana Recovery from Flasks", + "25% chance to gain a Power Charge when you use a Mana Flask" + } + }, + [20968]= { + ["skill"]= 20968, + ["name"]= "Openness", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+30 to maximum Mana", + "20% increased maximum Mana", + "15% increased Mana Cost Efficiency" + } + }, + [15175]= { + ["skill"]= 15175, + ["name"]= "Daring Ideas", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "18% increased maximum Mana", + "0.4% of Attack Damage Leeched as Mana", + "25% increased Cost Efficiency of Attacks" + }, + ["reminderText"]= { + "(Leeched Mana is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [2220]= { + ["skill"]= 2220, + ["name"]= "Clarity of Purpose", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "15% increased maximum Mana", + "30% increased Mana Regeneration Rate" + } + }, + [43834]= { + ["skill"]= 43834, + ["name"]= "Scintillating Idea", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased maximum Mana", + "Damage Penetrates 5% Lightning Resistance" + } + }, + [23884]= { + ["skill"]= 23884, + ["name"]= "Holistic Health", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Life", + "10% increased maximum Mana" + } + }, + [62160]= { + ["skill"]= 62160, + ["name"]= "Genius", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Mana", + "5% increased Intelligence" + } + }, + [42024]= { + ["skill"]= 42024, + ["name"]= "Improvisor", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased Attack Speed", + "10% increased maximum Mana", + "Gain 3 Mana per Enemy Hit with Attacks" + } + }, + [32031]= { + ["skill"]= 32031, + ["name"]= "Stubborn Student", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Armour", + "15% increased maximum Mana", + "+1 Armour per 10 Unreserved Maximum Mana" + } + }, + [52544]= { + ["skill"]= 52544, + ["name"]= "Savour the Moment", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "Regenerate 3.00% of Energy Shield per second while stationary" + } + }, + [20241]= { + ["skill"]= 20241, + ["name"]= "Energy From Naught", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+70 to maximum Energy Shield", + "15% increased Energy Shield Recharge Rate" + } + }, + [33698]= { + ["skill"]= 33698, + ["name"]= "Will Shaper", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 5% of Maximum Mana as Extra Maximum Energy Shield" + } + }, + [64782]= { + ["skill"]= 64782, + ["name"]= "Spring Back", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "5% faster start of Energy Shield Recharge" + } + }, + [11513]= { + ["skill"]= 11513, + ["name"]= "Conservation of Energy", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% increased maximum Energy Shield", + "0.3% of Spell Damage Leeched as Energy Shield" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [39331]= { + ["skill"]= 39331, + ["name"]= "Heart of Iron", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Gain 10% of Maximum Life as Extra Armour" + } + }, + [54766]= { + ["skill"]= 54766, + ["name"]= "Prismatic Carapace", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [50820]= { + ["skill"]= 50820, + ["name"]= "Militarism", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "8% increased maximum Life" + } + }, + [60647]= { + ["skill"]= 60647, + ["name"]= "Second Skin", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "4% Chance to Block Spell Damage", + "30% increased Armour", + "+4% Chance to Block Attack Damage" + } + }, + [14412]= { + ["skill"]= 14412, + ["name"]= "Dragon Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "+20% to Fire Resistance", + "15% chance to Defend with 200% of Armour" + }, + ["reminderText"]= { + "(Armour is treated as this percentage of its actual value, only for calculating damage mitigation)" + } + }, + [57572]= { + ["skill"]= 57572, + ["name"]= "Enduring Composure", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Armour", + "Gain 1 Endurance Charge every second if you've been Hit Recently" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)" + } + }, + [42313]= { + ["skill"]= 42313, + ["name"]= "Prismatic Dance", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Evasion Rating", + "+1% to all maximum Elemental Resistances" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [64259]= { + ["skill"]= 64259, + ["name"]= "Natural Vigour", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Evasion Rating", + "8% increased maximum Life" + } + }, + [22704]= { + ["skill"]= 22704, + ["name"]= "Untouchable", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "30% increased Evasion Rating" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [46074]= { + ["skill"]= 46074, + ["name"]= "Shifting Shadow", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["grantedDexterity"]= 20, + ["stats"]= { + "20% increased Evasion Rating", + "+20 to Dexterity", + "10% chance to Blind Enemies on Hit" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [9245]= { + ["skill"]= 9245, + ["name"]= "Readiness", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% chance to Avoid Bleeding", + "30% chance to Avoid being Impaled", + "30% increased Evasion Rating if you haven't been Hit Recently" + } + }, + [11318]= { + ["skill"]= 11318, + ["name"]= "Confident Combatant", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "1% increased Damage per 1% Chance to Block Attack Damage" + } + }, + [4641]= { + ["skill"]= 4641, + ["name"]= "Flexible Sentry", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "4% Chance to Block Spell Damage", + "25% reduced Elemental Ailment Duration on you", + "+4% Chance to Block Attack Damage", + "25% reduced Effect of Chill and Shock on you" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [58944]= { + ["skill"]= 58944, + ["name"]= "Vicious Guard", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "0.4% of Attack Damage Leeched as Life", + "Regenerate 1.5% of Life per second", + "+6% Chance to Block Attack Damage" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [34108]= { + ["skill"]= 34108, + ["name"]= "Mystical Ward", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% Chance to Block Spell Damage", + "0.3% of Spell Damage Leeched as Energy Shield", + "Regenerate 1.5% of Energy Shield per second" + }, + ["reminderText"]= { + "(Leeched Energy Shield is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [11011]= { + ["skill"]= 11011, + ["name"]= "Rote Reinforcement", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+20 to maximum Life", + "20% chance to gain an Endurance Charge when you Block", + "+6% Chance to Block Attack Damage" + } + }, + [25450]= { + ["skill"]= 25450, + ["name"]= "Mage Hunter", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% Chance to Block Spell Damage", + "20% increased Spell Damage", + "20% chance to gain a Power Charge when you Block" + } + }, + [64407]= { + ["skill"]= 64407, + ["name"]= "Riot Queller", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Attack Damage", + "Enemies Taunted by you take 6% increased Damage" + } + }, + [53067]= { + ["skill"]= 53067, + ["name"]= "One with the Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+6% Chance to Block Attack Damage while holding a Shield", + "Recover 50 Life when you Block", + "50% increased Defences from Equipped Shield" + }, + ["reminderText"]= { + "(Armour, Evasion Rating and Energy Shield are the standard Defences)" + } + }, + [23042]= { + ["skill"]= 23042, + ["name"]= "Aerialist", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "5% increased Dexterity" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [40181]= { + ["skill"]= 40181, + ["name"]= "Elegant Form", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% chance to Suppress Spell Damage", + "20% chance to Avoid Elemental Ailments" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)", + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [9276]= { + ["skill"]= 9276, + ["name"]= "Darting Movements", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "3% increased Movement Speed", + "+12% chance to Suppress Spell Damage while moving" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [18155]= { + ["skill"]= 18155, + ["name"]= "No Witnesses", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNotable.png", + ["isNotable"]= true, + ["stats"]= { + "10% chance to gain Elusive on Kill", + "25% increased Elusive Effect" + }, + ["reminderText"]= { + "(Elusive initially grants 15% chance to Avoid All Damage from Hits, and 30% increased Movement Speed. The buff reduces its effect over time, removing itself at 0% effect. If you already have an Elusive buff, you cannot gain Elusive)" + } + }, + [48803]= { + ["skill"]= 48803, + ["name"]= "Molten One's Mark", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+2% to maximum Fire Resistance", + "Regenerate 1% of Life per second" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [42530]= { + ["skill"]= 42530, + ["name"]= "Fire Attunement", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% reduced Ignite Duration on you", + "You cannot be Ignited if you've been Ignited Recently", + "Unaffected by Burning Ground" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + } + }, + [17769]= { + ["skill"]= 17769, + ["name"]= "Pure Might", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["grantedStrength"]= 20, + ["stats"]= { + "40% increased Stun and Block Recovery", + "Purity of Fire has 80% increased Mana Reservation Efficiency", + "+20 to Strength" + } + }, + [13549]= { + ["skill"]= 13549, + ["name"]= "Blacksmith", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Armour", + "+20% to Fire Resistance", + "0.4% of Fire Damage Leeched as Life" + }, + ["reminderText"]= { + "(Leeched Life is recovered over time. Multiple Leeches can occur simultaneously, up to a maximum rate)" + } + }, + [1581]= { + ["skill"]= 1581, + ["name"]= "Non-Flammable", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Fire Resistance", + "+20% to Fire Resistance", + "30% chance to Avoid being Ignited" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [38683]= { + ["skill"]= 38683, + ["name"]= "Winter Prowler", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+2% to maximum Cold Resistance", + "10% increased Life Recovery from Flasks" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [19508]= { + ["skill"]= 19508, + ["name"]= "Hibernator", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% reduced Effect of Chill on you", + "30% reduced Freeze Duration on you", + "You cannot be Frozen if you've been Frozen Recently", + "Unaffected by Chilled Ground" + }, + ["reminderText"]= { + "(Chill reduces Action Speed by up to 30%)", + "(Recently refers to the past 4 seconds)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + } + }, + [26322]= { + ["skill"]= 26322, + ["name"]= "Pure Guile", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["grantedDexterity"]= 20, + ["stats"]= { + "Purity of Ice has 80% increased Mana Reservation Efficiency", + "+20 to Dexterity", + "5% chance to Blind Enemies on Hit" + }, + ["reminderText"]= { + "(Being Blinded causes 20% less Accuracy Rating and Evasion Rating, for 4 seconds)" + } + }, + [58904]= { + ["skill"]= 58904, + ["name"]= "Alchemist", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+20% to Cold Resistance", + "8% increased Attack and Cast Speed", + "20% increased Life Recovery from Flasks" + } + }, + [33676]= { + ["skill"]= 33676, + ["name"]= "Antifreeze", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Cold Resistance", + "+20% to Cold Resistance", + "30% chance to Avoid being Frozen" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [44203]= { + ["skill"]= 44203, + ["name"]= "Wizardry", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "8% increased maximum Mana", + "+2% to maximum Lightning Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [22002]= { + ["skill"]= 22002, + ["name"]= "Capacitor", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "You cannot be Shocked if you've been Shocked Recently", + "30% reduced Effect of Shock on you", + "Unaffected by Shocked Ground" + }, + ["reminderText"]= { + "(Recently refers to the past 4 seconds)", + "(Shock increases Damage taken by up to 50%)", + "(Debuffs you are Unaffected by can still be placed on you, but will not actually apply their effect)" + } + }, + [51421]= { + ["skill"]= 51421, + ["name"]= "Pure Aptitude", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["grantedIntelligence"]= 20, + ["stats"]= { + "15% increased Energy Shield Recharge Rate", + "Purity of Lightning has 80% increased Mana Reservation Efficiency", + "+20 to Intelligence" + } + }, + [10409]= { + ["skill"]= 10409, + ["name"]= "Sage", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Mana Regeneration Rate", + "+20% to Lightning Resistance", + "Regenerate 1.5% of Life per second" + } + }, + [54798]= { + ["skill"]= 54798, + ["name"]= "Insulated", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Lightning Resistance", + "+20% to Lightning Resistance", + "30% chance to Avoid being Shocked" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [51523]= { + ["skill"]= 51523, + ["name"]= "Born of Chaos", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+3% to maximum Chaos Resistance" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [21688]= { + ["skill"]= 21688, + ["name"]= "Antivenom", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+1% to maximum Chaos Resistance", + "+23% to Chaos Resistance", + "30% chance to Avoid being Poisoned" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [29096]= { + ["skill"]= 29096, + ["name"]= "Rot-Resistant", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+13% to Chaos Resistance", + "Regenerate 1.2% of Life per second", + "Regenerate 0.6% of Energy Shield per second", + "Regenerate 0.3% of Mana per second" + } + }, + [64717]= { + ["skill"]= 64717, + ["name"]= "Blessed", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "6% increased maximum Life", + "10% increased maximum Mana", + "+13% to Chaos Resistance" + } + }, + [26179]= { + ["skill"]= 26179, + ["name"]= "Student of Decay", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Damage over Time", + "+13% to Chaos Resistance" + } + }, + [33]= { + ["skill"]= 33, + ["name"]= "Lord of Drought", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Flammability can affect Hexproof Enemies", + "30% increased Damage with Ignites inflicted on Cursed Enemies" + } + }, + [25938]= { + ["skill"]= 25938, + ["name"]= "Blizzard Caller", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Frostbite can affect Hexproof Enemies", + "30% increased Duration of Freezes you inflict on Cursed Enemies" + } + }, + [17662]= { + ["skill"]= 17662, + ["name"]= "Tempt the Storm", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Conductivity can affect Hexproof Enemies", + "30% increased Effect of Shocks you inflict on Cursed Enemies" + } + }, + [14061]= { + ["skill"]= 14061, + ["name"]= "Misery Everlasting", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Despair can affect Hexproof Enemies", + "Recover 2% of Energy Shield when you Kill a Cursed Enemy" + } + }, + [42601]= { + ["skill"]= 42601, + ["name"]= "Exploit Weakness", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Vulnerability can affect Hexproof Enemies", + "Recover 2% of Life when you Kill a Cursed Enemy" + } + }, + [33232]= { + ["skill"]= 33232, + ["name"]= "Self-Control", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNotable.png", + ["isNotable"]= true, + ["stats"]= { + "25% increased Mana Regeneration Rate", + "Discipline has 80% increased Mana Reservation Efficiency" + } + }, + [21907]= { + ["skill"]= 21907, + ["name"]= "Uncompromising", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Stun Threshold", + "Determination has 50% increased Mana Reservation Efficiency" + }, + ["reminderText"]= { + "(The Stun Threshold determines how much Damage can Stun something)" + } + }, + [60690]= { + ["skill"]= 60690, + ["name"]= "Sublime Form", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+10% to all Elemental Resistances", + "Grace has 50% increased Mana Reservation Efficiency" + } + }, + [32259]= { + ["skill"]= 32259, + ["name"]= "Mortifying Aspect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+11% to Chaos Resistance", + "Malevolence has 50% increased Mana Reservation Efficiency" + } + }, + [31333]= { + ["skill"]= 31333, + ["name"]= "Frantic Aspect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Debuffs on you expire 10% faster", + "Haste has 50% increased Mana Reservation Efficiency" + } + }, + [907]= { + ["skill"]= 907, + ["name"]= "Introspection", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Auras from your Skills have 10% increased Effect on you" + } + }, + [9495]= { + ["skill"]= 9495, + ["name"]= "Hound's Mark", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "20% increased Effect of your Marks", + "20% increased Damage with Hits and Ailments against Marked Enemy" + } + }, + [37882]= { + ["skill"]= 37882, + ["name"]= "Doedre's Gluttony", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Punishment can affect Hexproof Enemies", + "You have Culling Strike against Cursed Enemies" + }, + ["reminderText"]= { + "(Culling Strike means enemies that are on 10% or lower life after your Hit are Killed)" + } + }, + [16540]= { + ["skill"]= 16540, + ["name"]= "Doedre's Apathy", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Temporal Chains can affect Hexproof Enemies", + "Enemies you Curse are Unnerved" + }, + ["reminderText"]= { + "(Unnerved enemies take 10% increased Spell Damage)" + } + }, + [44731]= { + ["skill"]= 44731, + ["name"]= "Master of the Maelstrom", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Elemental Weakness can affect Hexproof Enemies", + "+1% to all maximum Elemental Resistances if you have Killed a Cursed Enemy Recently" + }, + ["reminderText"]= { + "(Maximum Resistances cannot be raised above 90%)" + } + }, + [29764]= { + ["skill"]= 29764, + ["name"]= "Aggressive Defence", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.png", + ["isNotable"]= true, + ["stats"]= { + "30% increased Fortification Duration", + "20% increased Damage with Attack Skills while Fortified", + "Fortifying Hits grant 60% increased Fortification" + }, + ["reminderText"]= { + "(Fortifying grants an amount of Fortification based on the Damage of the Hit)" + } + }, + [44435]= { + ["skill"]= 44435, + ["name"]= "Holy Word", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNotable.png", + ["isNotable"]= true, + ["stats"]= { + "Your Warcries inflict Hallowing Flame" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)" + } + }, + [7431]= { + ["skill"]= 7431, + ["name"]= "Fiery Aegis", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNotable.png", + ["isNotable"]= true, + ["stats"]= { + "+5% Chance to Block Attack Damage", + "Hallowing Flame you inflict has 1% increased magnitude per 2% Attack Block chance" + }, + ["reminderText"]= { + "(Attacks made against Enemies affected by Hallowing Flame gain 25% of Physical Damage as Extra Fire Damage.", + "Hallowing Flame is removed once an Attack that benefits from this Damage as Extra is successfully made.", + "Hallowing Flame lasts for six seconds and cannot benefit the one who inflicted it)" + } + }, + [14084]= { + ["skill"]= 14084, + ["name"]= "Axe and Sword Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png", + ["stats"]= { + "Axe Attacks deal 12% increased Damage with Hits and Ailments", + "Sword Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [44810]= { + ["skill"]= 44810, + ["name"]= "Axe and Sword Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupSwordAndAxe.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [51642]= { + ["skill"]= 51642, + ["name"]= "Mace and Staff Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png", + ["stats"]= { + "Staff Attacks deal 12% increased Damage with Hits and Ailments", + "Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Warstaves are considered Staves)", + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [43130]= { + ["skill"]= 43130, + ["name"]= "Mace and Staff Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupMaceAndStaff.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [31680]= { + ["skill"]= 31680, + ["name"]= "Dagger and Claw Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png", + ["stats"]= { + "Claw Attacks deal 12% increased Damage with Hits and Ailments", + "Dagger Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)", + "(Rune Daggers are considered Daggers)" + } + }, + [42783]= { + ["skill"]= 42783, + ["name"]= "Dagger and Claw Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltDaggerClawDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [18870]= { + ["skill"]= 18870, + ["name"]= "Bow Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + ["stats"]= { + "12% increased Damage with Bows", + "12% increased Damage Over Time with Bow Skills" + } + }, + [54935]= { + ["skill"]= 54935, + ["name"]= "Bow Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupBow.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [41204]= { + ["skill"]= 41204, + ["name"]= "Wand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeWandDamage.png", + ["stats"]= { + "Wand Attacks deal 12% increased Damage with Hits and Ailments" + }, + ["reminderText"]= { + "(Ailments that deal Damage are Bleeding, Ignited, and Poisoned)" + } + }, + [38334]= { + ["skill"]= 38334, + ["name"]= "Wand Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupWand.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [58031]= { + ["skill"]= 58031, + ["name"]= "Damage with Two Handed Weapons", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png", + ["stats"]= { + "12% increased Damage with Two Handed Weapons" + } + }, + [52606]= { + ["skill"]= 52606, + ["name"]= "Damage with Two Handed Melee Weapons Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupTwoHands.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [16404]= { + ["skill"]= 16404, + ["name"]= "Attack Damage while Dual Wielding", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + ["stats"]= { + "12% increased Attack Damage while Dual Wielding" + } + }, + [44100]= { + ["skill"]= 44100, + ["name"]= "Attack Damage while Dual Wielding Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupDualWield.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [14303]= { + ["skill"]= 14303, + ["name"]= "Attack Damage while holding a Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png", + ["stats"]= { + "12% increased Attack Damage while holding a Shield" + } + }, + [25429]= { + ["skill"]= 25429, + ["name"]= "Attack Damage while holding a Shield Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupShield.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [747]= { + ["skill"]= 747, + ["name"]= "Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", + ["stats"]= { + "10% increased Attack Damage" + } + }, + [54888]= { + ["skill"]= 54888, + ["name"]= "Attack Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [21845]= { + ["skill"]= 21845, + ["name"]= "Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png", + ["stats"]= { + "10% increased Spell Damage" + } + }, + [21841]= { + ["skill"]= 21841, + ["name"]= "Spell Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupCast.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [49465]= { + ["skill"]= 49465, + ["name"]= "Elemental Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + ["stats"]= { + "10% increased Elemental Damage" + } + }, + [44078]= { + ["skill"]= 44078, + ["name"]= "Elemental Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryElementalDamage.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [37171]= { + ["skill"]= 37171, + ["name"]= "Physical Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + ["stats"]= { + "12% increased Physical Damage" + } + }, + [58618]= { + ["skill"]= 58618, + ["name"]= "Physical Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryPhysicalDamage.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [13146]= { + ["skill"]= 13146, + ["name"]= "Fire Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamagenode.png", + ["stats"]= { + "12% increased Fire Damage" + } + }, + [43904]= { + ["skill"]= 43904, + ["name"]= "Fire Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupFire.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [49817]= { + ["skill"]= 49817, + ["name"]= "Lightning Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + ["stats"]= { + "12% increased Lightning Damage" + } + }, + [15015]= { + ["skill"]= 15015, + ["name"]= "Lightning Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupLightning.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [41355]= { + ["skill"]= 41355, + ["name"]= "Cold Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + ["stats"]= { + "12% increased Cold Damage" + } + }, + [37977]= { + ["skill"]= 37977, + ["name"]= "Cold Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupCold.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [46248]= { + ["skill"]= 46248, + ["name"]= "Chaos Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + ["stats"]= { + "12% increased Chaos Damage" + } + }, + [12117]= { + ["skill"]= 12117, + ["name"]= "Chaos Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryChaos.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [49331]= { + ["skill"]= 49331, + ["name"]= "Minion Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png", + ["stats"]= { + "Minions deal 10% increased Damage" + } + }, + [16351]= { + ["skill"]= 16351, + ["name"]= "Minion Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [31549]= { + ["skill"]= 31549, + ["name"]= "Fire Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png", + ["stats"]= { + "12% increased Burning Damage" + } + }, + [57049]= { + ["skill"]= 57049, + ["name"]= "Fire Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltFireDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [35020]= { + ["skill"]= 35020, + ["name"]= "Chaos Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png", + ["stats"]= { + "12% increased Chaos Damage over Time" + } + }, + [40036]= { + ["skill"]= 40036, + ["name"]= "Chaos Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltChaosDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [14036]= { + ["skill"]= 14036, + ["name"]= "Physical Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + ["stats"]= { + "12% increased Physical Damage over Time" + } + }, + [20314]= { + ["skill"]= 20314, + ["name"]= "Physical Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltBloodMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [39222]= { + ["skill"]= 39222, + ["name"]= "Cold Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png", + ["stats"]= { + "12% increased Cold Damage over Time" + } + }, + [40966]= { + ["skill"]= 40966, + ["name"]= "Cold Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltColdDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [32169]= { + ["skill"]= 32169, + ["name"]= "Damage over Time", + ["icon"]= "Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png", + ["stats"]= { + "10% increased Damage over Time" + } + }, + [48978]= { + ["skill"]= 48978, + ["name"]= "Damage over Time Multiplier Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltDamageOverTimeMultiplierMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [61851]= { + ["skill"]= 61851, + ["name"]= "Effect of Non-Damaging Ailments", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png", + ["stats"]= { + "10% increased Effect of Non-Damaging Ailments" + }, + ["reminderText"]= { + "(Ailments that do not deal Damage are Scorched, Chilled, Frozen, Brittle, Shocked, and Sapped)" + } + }, + [45462]= { + ["skill"]= 45462, + ["name"]= "Effect of Non-Damaging Ailments Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltNonDamagingAilmentsMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [6265]= { + ["skill"]= 6265, + ["name"]= "Aura Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", + ["stats"]= { + "3% increased effect of Non-Curse Auras from your Skills" + } + }, + [2054]= { + ["skill"]= 2054, + ["name"]= "Aura Effect Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [18530]= { + ["skill"]= 18530, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "2% increased Effect of your Curses" + } + }, + [32642]= { + ["skill"]= 32642, + ["name"]= "Curse Effect Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryCurse.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [17198]= { + ["skill"]= 17198, + ["name"]= "Damage while you have a Herald", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png", + ["stats"]= { + "10% increased Damage while affected by a Herald" + } + }, + [33431]= { + ["skill"]= 33431, + ["name"]= "Damage while you have a Herald Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltDamageWithHeraldMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [3367]= { + ["skill"]= 3367, + ["name"]= "Minion Damage while you have a Herald", + ["icon"]= "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png", + ["stats"]= { + "Minions deal 10% increased Damage while you are affected by a Herald" + } + }, + [37971]= { + ["skill"]= 37971, + ["name"]= "Minion Damage while you have a Herald Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [3870]= { + ["skill"]= 3870, + ["name"]= "Exerted Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png", + ["stats"]= { + "Exerted Attacks deal 20% increased Damage" + } + }, + [10118]= { + ["skill"]= 10118, + ["name"]= "Warcry Buff Effect Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltWarcryMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [10695]= { + ["skill"]= 10695, + ["name"]= "Critical Chance", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png", + ["stats"]= { + "15% increased Critical Strike Chance" + } + }, + [2510]= { + ["skill"]= 2510, + ["name"]= "Critical Chance Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupCrit.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [20492]= { + ["skill"]= 20492, + ["name"]= "Minion Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png", + ["stats"]= { + "Minions have 12% increased maximum Life" + } + }, + [14933]= { + ["skill"]= 14933, + ["name"]= "Minion Life Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [44483]= { + ["skill"]= 44483, + ["name"]= "Area Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + ["stats"]= { + "10% increased Area Damage" + } + }, + [63454]= { + ["skill"]= 63454, + ["name"]= "Area Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltAreaDamageMastery.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [1371]= { + ["skill"]= 1371, + ["name"]= "Projectile Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", + ["stats"]= { + "10% increased Projectile Damage" + } + }, + [7883]= { + ["skill"]= 7883, + ["name"]= "Projectile Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryProjectiles.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [48881]= { + ["skill"]= 48881, + ["name"]= "Trap and Mine Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png", + ["stats"]= { + "12% increased Trap Damage", + "12% increased Mine Damage" + } + }, + [45474]= { + ["skill"]= 45474, + ["name"]= "Trap and Mine Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryTraps.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [46909]= { + ["skill"]= 46909, + ["name"]= "Totem Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/TotemDmgNode.png", + ["stats"]= { + "12% increased Totem Damage" + } + }, + [16808]= { + ["skill"]= 16808, + ["name"]= "Totem Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryTotem.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [21126]= { + ["skill"]= 21126, + ["name"]= "Brand Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BrandDmgNode.png", + ["stats"]= { + "12% increased Brand Damage" + }, + ["reminderText"]= { + "(Brand Damage is any Damage dealt by Brand Skills or by Skills Triggered by a Brand)" + } + }, + [49424]= { + ["skill"]= 49424, + ["name"]= "Brand Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryBrand.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [10493]= { + ["skill"]= 10493, + ["name"]= "Channelling Skill Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png", + ["stats"]= { + "Channelling Skills deal 12% increased Damage" + } + }, + [10576]= { + ["skill"]= 10576, + ["name"]= "Channelling Skill Damage Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [27625]= { + ["skill"]= 27625, + ["name"]= "Flask Duration", + ["icon"]= "Art/2DArt/SkillIcons/passives/FlaskDurationnode.png", + ["stats"]= { + "6% increased Flask Effect Duration" + } + }, + [27397]= { + ["skill"]= 27397, + ["name"]= "Flask Duration Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [51042]= { + ["skill"]= 51042, + ["name"]= "Life and Mana recovery from Flasks", + ["icon"]= "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png", + ["stats"]= { + "10% increased Life Recovery from Flasks", + "10% increased Mana Recovery from Flasks" + } + }, + [45259]= { + ["skill"]= 45259, + ["name"]= "Life and Mana recovery from Flasks Mastery", + ["icon"]= "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + ["isMastery"]= true, + ["stats"]= {} + }, + [47192]= { + ["skill"]= 47192, + ["name"]= "Life", + ["icon"]= "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png", + ["stats"]= { + "4% increased maximum Life" + } + }, + [38342]= { + ["skill"]= 38342, + ["name"]= "Energy Shield", + ["icon"]= "Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + ["stats"]= { + "6% increased maximum Energy Shield" + } + }, + [28321]= { + ["skill"]= 28321, + ["name"]= "Mana", + ["icon"]= "Art/2DArt/SkillIcons/passives/MaxManaNode.png", + ["stats"]= { + "6% increased maximum Mana" + } + }, + [3879]= { + ["skill"]= 3879, + ["name"]= "Armour", + ["icon"]= "Art/2DArt/SkillIcons/passives/ArmourNode.png", + ["stats"]= { + "15% increased Armour" + } + }, + [8073]= { + ["skill"]= 8073, + ["name"]= "Evasion", + ["icon"]= "Art/2DArt/SkillIcons/passives/EvasionNode.png", + ["stats"]= { + "15% increased Evasion Rating" + } + }, + [17271]= { + ["skill"]= 17271, + ["name"]= "Chance to Block Attack Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png", + ["stats"]= { + "+2% Chance to Block Attack Damage" + } + }, + [45180]= { + ["skill"]= 45180, + ["name"]= "Chance to Block Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png", + ["stats"]= { + "2% Chance to Block Spell Damage" + } + }, + [36551]= { + ["skill"]= 36551, + ["name"]= "Fire Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/FireResistNode.png", + ["stats"]= { + "+15% to Fire Resistance" + } + }, + [37926]= { + ["skill"]= 37926, + ["name"]= "Cold Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ColdResistNode.png", + ["stats"]= { + "+15% to Cold Resistance" + } + }, + [65026]= { + ["skill"]= 65026, + ["name"]= "Lightning Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/LightningResistNode.png", + ["stats"]= { + "+15% to Lightning Resistance" + } + }, + [28987]= { + ["skill"]= 28987, + ["name"]= "Chaos Resistance", + ["icon"]= "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", + ["stats"]= { + "+12% to Chaos Resistance" + } + }, + [45284]= { + ["skill"]= 45284, + ["name"]= "Chance to Suppress Spell Damage", + ["icon"]= "Art/2DArt/SkillIcons/passives/DodgeAtksNode.png", + ["stats"]= { + "+4% chance to Suppress Spell Damage" + }, + ["reminderText"]= { + "(40% of Damage from Suppressed Hits and Ailments they inflict is prevented)" + } + }, + [65506]= { + ["skill"]= 65506, + ["name"]= "Strength", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusstrength.png", + ["grantedStrength"]= 10, + ["stats"]= { + "+10 to Strength" + } + }, + [52919]= { + ["skill"]= 52919, + ["name"]= "Dexterity", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusdexterity.png", + ["grantedDexterity"]= 10, + ["stats"]= { + "+10 to Dexterity" + } + }, + [31472]= { + ["skill"]= 31472, + ["name"]= "Intelligence", + ["icon"]= "Art/2DArt/SkillIcons/passives/plusintelligence.png", + ["grantedIntelligence"]= 10, + ["stats"]= { + "+10 to Intelligence" + } + }, + [21796]= { + ["skill"]= 21796, + ["name"]= "Reservation Efficiency", + ["icon"]= "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", + ["stats"]= { + "6% increased Mana Reservation Efficiency of Skills" + } + }, + [23376]= { + ["skill"]= 23376, + ["name"]= "Curse Effect", + ["icon"]= "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + ["stats"]= { + "2% increased Effect of your Curses" + } + }, + [27602]= { + ["name"]= "Nine Lives", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Int.png", + ["isNotable"]= true, + ["skill"]= 27602, + ["group"]= 44472, + ["ascendancyName"]= "Necromancer", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "25% of Damage taken Recouped as Life, Mana and Energy Shield", + "Recoup Effects instead occur over 3 seconds" + }, + ["reminderText"]= { + "(Only Damage from Hits can be Recouped, over 4 seconds following the Hit)" + } + }, + [57568]= { + ["name"]= "Searing Purity", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrInt.png", + ["isNotable"]= true, + ["skill"]= 57568, + ["group"]= 50933, + ["ascendancyName"]= "Guardian", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "45% of Chaos Damage taken as Fire Damage", + "45% of Chaos Damage taken as Lightning Damage" + }, + ["reminderText"]= {} + }, + [52435]= { + ["name"]= "Indomitable Resolve", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Str.png", + ["isNotable"]= true, + ["skill"]= 52435, + ["group"]= 25519, + ["ascendancyName"]= "Berserker", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "Deal 10% less Damage", + "Take 25% less Damage" + }, + ["reminderText"]= {} + }, + [19355]= { + ["name"]= "Unleashed Potential", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.png", + ["skill"]= 19355, + ["group"]= 60495, + ["ascendancyName"]= "Ascendant", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "400% increased Endurance, Frenzy and Power Charge Duration", + "25% chance to gain a Power, Frenzy or Endurance Charge on Kill", + "+1 to Maximum Endurance Charges", + "+1 to Maximum Frenzy Charges", + "+1 to Maximum Power Charges" + }, + ["reminderText"]= {} + }, + [42469]= { + ["name"]= "Fatal Flourish", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/StrDex.png", + ["isNotable"]= true, + ["skill"]= 42469, + ["group"]= 63033, + ["ascendancyName"]= "Champion", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "Final Repeat of Attack Skills deals 60% more Damage", + "Non-Travel Attack Skills Repeat an additional Time" + }, + ["reminderText"]= {} + }, + [18054]= { + ["name"]= "Fury of Nature", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/Dex.png", + ["isNotable"]= true, + ["skill"]= 18054, + ["group"]= 56600, + ["ascendancyName"]= "Raider", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres", + "Non-Damaging Elemental Ailments you inflict have 100% more Effect" + }, + ["reminderText"]= { + "(Elemental Ailments are Ignited, Scorched, Chilled, Frozen, Brittled, Shocked, and Sapped)" + } + }, + [57331]= { + ["name"]= "Harness the Void", + ["icon"]= "Art/2DArt/SkillIcons/passives/Ascendants/DexInt.png", + ["isNotable"]= true, + ["skill"]= 57331, + ["group"]= 37841, + ["ascendancyName"]= "Saboteur", + ["orbit"]= 0, + ["orbitIndex"]= 0, + ["out"]= {}, + ["in"]= {}, + ["stats"]= { + "27% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", + "13% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage", + "7% chance to gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage" + }, + ["reminderText"]= {} + } + }, + ["jewelSlots"]= { + 26725, + 36634, + 33989, + 41263, + 60735, + 61834, + 31683, + 28475, + 6230, + 48768, + 34483, + 7960, + 46882, + 55190, + 61419, + 2491, + 54127, + 32763, + 26196, + 33631, + 21984, + 29712, + 48679, + 9408, + 12613, + 16218, + 2311, + 22994, + 40400, + 46393, + 61305, + 12161, + 3109, + 49080, + 17219, + 44169, + 24970, + 36931, + 14993, + 10532, + 23756, + 46519, + 23984, + 51198, + 61666, + 6910, + 49684, + 33753, + 18436, + 11150, + 22748, + 64583, + 61288, + 13170, + 9797, + 41876, + 59585, + 43670, + 29914, + 18060 + }, + ["min_x"]= -14159, + ["min_y"]= -10689, + ["max_x"]= 12430, + ["max_y"]= 10900, + ["constants"]= { + ["classes"]= { + ["StrDexIntClass"]= 0, + ["StrClass"]= 1, + ["DexClass"]= 2, + ["IntClass"]= 3, + ["StrDexClass"]= 4, + ["StrIntClass"]= 5, + ["DexIntClass"]= 6 + }, + ["characterAttributes"]= { + ["Strength"]= 0, + ["Dexterity"]= 1, + ["Intelligence"]= 2 + }, + ["PSSCentreInnerRadius"]= 130, + ["skillsPerOrbit"]= { + 1, + 6, + 16, + 16, + 40, + 72, + 72 + }, + ["orbitRadii"]= { + 0, + 82, + 162, + 335, + 493, + 662, + 846 + } + }, + ["points"]= { + ["totalPoints"]= 123, + ["ascendancyPoints"]= 8 + } +} \ No newline at end of file